Home
last modified time | relevance | path

Searched refs:FT (Results 1 – 22 of 22) sorted by relevance

/aosp12/frameworks/native/libs/vr/libdvrcommon/tests/
H A Dpose_test.cpp27 using FT = typename TestFixture::FT; in TYPED_TEST() typedef
32 FT(M_PI / 3.0), vec3_t(FT(3.0), FT(4.0), FT(5.0)).normalized())); in TYPED_TEST()
33 const vec3_t initial_position = vec3_t(FT(2.0), FT(10.0), FT(-4.0)); in TYPED_TEST()
51 Eigen::AngleAxis<FT>(FT(M_PI / 2.0), vec3_t(FT(0.0), FT(0.0), FT(1.0)))); in TYPED_TEST()
52 const auto pose_position = vec3_t(FT(1.0), FT(1.0), FT(2.0)); in TYPED_TEST()
75 FT(M_PI / 6.0), vec3_t(FT(3.0), FT(4.0), FT(5.0)).normalized())); in TYPED_TEST()
99 Eigen::AngleAxis<FT>(FT(M_PI / 2.0), vec3_t(FT(0.0), FT(0.0), FT(1.0)))); in TYPED_TEST()
100 const auto first_offset = vec3_t(FT(-3.0), FT(2.0), FT(-1.0)); in TYPED_TEST()
102 FT(M_PI / 3.0), vec3_t(FT(1.0), FT(-1.0), FT(0.0)).normalized())); in TYPED_TEST()
103 const auto second_offset = vec3_t(FT(6.0), FT(-7.0), FT(-8.0)); in TYPED_TEST()
[all …]
H A Dnumeric_test.cpp12 using FT = T; typedef in NumericTest
18 using FT = typename TestFixture::FT; in TYPED_TEST() typedef
21 const FT kLowRange = static_cast<FT>(-100); in TYPED_TEST()
22 const FT kHighRange = static_cast<FT>(100); in TYPED_TEST()
25 FT value = RandomInRange(kLowRange, kHighRange); in TYPED_TEST()
/aosp12/frameworks/av/media/extractors/amr/
H A DAMRExtractor.cpp73 static size_t getFrameSize(bool isWide, unsigned FT) { in getFrameSize() argument
88 if (FT > 15 || (isWide && FT > 9 && FT < 14) || (!isWide && FT > 11 && FT < 15)) { in getFrameSize()
89 ALOGE("illegal AMR frame type %d", FT); in getFrameSize()
93 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT]; in getFrameSize()
111 unsigned FT = (header >> 3) & 0x0f; in getFrameSizeByOffset() local
113 *frameSize = getFrameSize(isWide, FT); in getFrameSizeByOffset()
337 unsigned FT = (header >> 3) & 0x0f; in read() local
339 size_t frameSize = getFrameSize(mIsWide, FT); in read()
/aosp12/frameworks/av/media/libstagefright/rtsp/
H A DAAMRAssembler.cpp81 static size_t getFrameSize(bool isWide, unsigned FT) { in getFrameSize() argument
89 if (FT == 15) { in getFrameSize()
93 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT]; in getFrameSize()
165 unsigned FT = (toc >> 3) & 0x0f; in addPacket() local
167 || (mIsWide && FT > 9 && FT != 15) in addPacket()
168 || (!mIsWide && FT > 8 && FT != 15)) { in addPacket()
H A DARTPWriter.cpp1483 static size_t getFrameSize(bool isWide, unsigned FT) { in getFrameSize() argument
1491 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT]; in getFrameSize()
1520 unsigned FT = (toc >> 3) & 0x0f; in sendAMRData() local
1521 CHECK((isWide && FT <= 8) || (!isWide && FT <= 7)); in sendAMRData()
1524 srcOffset += getFrameSize(isWide, FT); in sendAMRData()
1569 unsigned FT = (toc >> 3) & 0x0f; in sendAMRData() local
1570 size_t frameSize = getFrameSize(isWide, FT); in sendAMRData()
/aosp12/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
H A Dnumeric.h15 template <typename FT>
16 static inline FT ToDeg(FT f) { in ToDeg()
17 return f * static_cast<FT>(180.0 / M_PI); in ToDeg()
20 template <typename FT>
21 static inline FT ToRad(FT f) { in ToRad()
22 return f * static_cast<FT>(M_PI / 180.0); in ToRad()
/aosp12/frameworks/compile/slang/
H A Dslang_rs_export_type.cpp325 FT = GetCanonicalType(FT); in TypeExportableHelper()
560 FT = GetCanonicalType(FT); in ValidateTypeHelper()
1059 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in IsStructureTypeWithRSObject() local
1060 slangAssert(FT); in IsStructureTypeWithRSObject()
1061 while (FT->isArrayType()) { in IsStructureTypeWithRSObject()
1062 FT = FT->getArrayElementTypeNoTypeQual(); in IsStructureTypeWithRSObject()
1063 slangAssert(FT); in IsStructureTypeWithRSObject()
1066 DataType DT = GetRSSpecificType(FT); in IsStructureTypeWithRSObject()
1082 if (FT->isStructureType()) { in IsStructureTypeWithRSObject()
1379 if ((FT == nullptr) || (FT->getTypeClass() != clang::Type::ConstantArray)) { in Create()
[all …]
H A Dslang_rs_object_ref_count.cpp526 if (CountRSObjectTypes(FT)) { in CountRSObjectTypes()
545 if (CountRSObjectTypes(FT)) { in CountRSObjectTypes()
589 slangAssert(FT); in ClearStructRSObject()
590 const clang::Type *OrigType = FT; in ClearStructRSObject()
591 while (FT->isArrayType()) { in ClearStructRSObject()
592 FT = FT->getArrayElementTypeNoTypeQual(); in ClearStructRSObject()
593 slangAssert(FT); in ClearStructRSObject()
633 } else if (FT->isStructureType() && CountRSObjectTypes(FT)) { in ClearStructRSObject()
926 if (!CountRSObjectTypes(FT)) { in CreateStructRSSetObject()
967 if (FT->isArrayType()) { in CreateStructRSSetObject()
[all …]
/aosp12/frameworks/av/media/codec2/components/amr_nb_wb/
H A DC2SoftAmrDec.cpp338 int16_t FT; in process() local
342 mInputSampleBuffer, &FT, &FM, 1, &mRxState); in process()
344 mDecoderBuf, FT, mDecoderCookie); in process()
/aosp12/frameworks/av/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.cpp324 static size_t getFrameSize(unsigned FT) { in getFrameSize() argument
329 if (FT >= 10) { in getFrameSize()
333 size_t frameSize = kFrameSizeWB[FT]; in getFrameSize()
/aosp12/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp292 FunctionType *FT = cast<FunctionType>(T); in WriteTypeTable() local
295 TypeVals.push_back(FT->isVarArg()); in WriteTypeTable()
297 TypeVals.push_back(VE.getTypeID(FT->getReturnType())); in WriteTypeTable()
298 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) in WriteTypeTable()
299 TypeVals.push_back(VE.getTypeID(FT->getParamType(i))); in WriteTypeTable()
/aosp12/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp277 FunctionType *FT = cast<FunctionType>(T); in WriteTypeTable() local
280 TypeVals.push_back(FT->isVarArg()); in WriteTypeTable()
282 TypeVals.push_back(VE.getTypeID(FT->getReturnType())); in WriteTypeTable()
283 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) in WriteTypeTable()
284 TypeVals.push_back(VE.getTypeID(FT->getParamType(i))); in WriteTypeTable()
/aosp12/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp280 FunctionType *FT = cast<FunctionType>(T); in WriteTypeTable() local
283 TypeVals.push_back(FT->isVarArg()); in WriteTypeTable()
284 TypeVals.push_back(VE.getTypeID(FT->getReturnType())); in WriteTypeTable()
285 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) in WriteTypeTable()
286 TypeVals.push_back(VE.getTypeID(FT->getParamType(i))); in WriteTypeTable()
/aosp12/frameworks/base/services/tests/servicestests/res/raw/
H A Dbackup_telephony_with_password137 �1 ���3D�lܧ��:b�����S�<>�Y��FTIg��̮ـ~h����GT���[���m���f�lF)u��l�t(!u�!�P?`��9� R)…
/aosp12/packages/apps/DocumentsUI/tests/res/raw/
H A Dimages_tar194 …��������HO#��3����g�€;�����r֎����y�is���q���t�g�Rjo�NFv>�46�q�#֬��FT�s�j��$ci�k欦�n��…
3433 …�NASא}i�*��Wi2��g�8��<S��(�m�9 @��M�yB��T�-��k���NN �����}�]ο��==�Lܫ˒�FT��;I�?쎔�&�"�A<b�,�M…
5213 …�;�`��ҵn5K�U��;��h�I�Ѹ$r�>�~��V<�ߖ3Z���.�ы�ތ�$\���M����0�3^)� �t������FT�����{���<�nF���=��…
6387 t��yR�FT�v�7�r�_� �`P�p �J�3׃@!h�#iPx���q!_5�+�?ʘ�bw�A���NYᜌ�OA@��O^�t�� �T�N0�=(�q��I�…
6475 3�&��tR8e �Ҁ��v�9��J��b�FT�QnV
8196 ��x;����)T|�y�g��眚\FT`������fg���B�9%s��Z|��2�
10695 cr. s���Ҵ�3�F8'���FT�p2A"��9�"�g
11341 …-=��o(y��3�5��IkN�X�Utٞ=}�<��v�s�x�mu��O��ߥjٽ��&Ki��pۻz����P_i�:��FT���~���5����nV8�;���…
11863 FT+ۏrFM\��i m1�a� �b�x�� ����ۊ�4�
14627 �(� �َ��p[A�< �!���@�Dn:�z��FT�@�l
[all …]
/aosp12/packages/apps/TV/tuner/tests/assets/
H A Dcapture_kqed.ts Error!