Home
last modified time | relevance | path

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

12

/frameworks/native/libs/vr/libdvrcommon/tests/
Dpose_test.cpp12 using FT = T; typedef in PoseTest
13 using Pose_t = android::dvr::Pose<FT>;
14 using quat_t = Eigen::Quaternion<FT>;
15 using vec3_t = Eigen::Vector3<FT>;
16 using mat4_t = Eigen::AffineMatrix<FT, 4>;
27 using FT = typename TestFixture::FT; in TYPED_TEST() typedef
29 const auto tolerance = FT(0.0001); in TYPED_TEST()
31 const quat_t initial_rotation(Eigen::AngleAxis<FT>( in TYPED_TEST()
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()
[all …]
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()
/frameworks/av/media/module/extractors/amr/
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()
/frameworks/av/media/libstagefright/rtsp/
DAAMRAssembler.cpp80 static size_t getFrameSize(bool isWide, unsigned FT) { in getFrameSize() argument
88 if (FT == 15) { in getFrameSize()
92 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT]; in getFrameSize()
164 unsigned FT = (toc >> 3) & 0x0f; in addPacket() local
166 || (mIsWide && FT > 9 && FT != 15) in addPacket()
167 || (!mIsWide && FT > 8 && FT != 15)) { in addPacket()
DARTPWriter.cpp1520 static size_t getFrameSize(bool isWide, unsigned FT) { in getFrameSize() argument
1528 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT]; in getFrameSize()
1557 unsigned FT = (toc >> 3) & 0x0f; in sendAMRData() local
1558 CHECK((isWide && FT <= 8) || (!isWide && FT <= 7)); in sendAMRData()
1561 srcOffset += getFrameSize(isWide, FT); in sendAMRData()
1606 unsigned FT = (toc >> 3) & 0x0f; in sendAMRData() local
1607 size_t frameSize = getFrameSize(isWide, FT); in sendAMRData()
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
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()
/frameworks/compile/slang/
Dslang_rs_export_type.cpp324 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in TypeExportableHelper() local
325 FT = GetCanonicalType(FT); in TypeExportableHelper()
327 if (!TypeExportableHelper(FT, SPS, Context, VD, TopLevelRecord, in TypeExportableHelper()
563 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in ValidateTypeHelper() local
564 FT = GetCanonicalType(FT); in ValidateTypeHelper()
566 if (!ValidateTypeHelper(Context, C, FT, ND, Loc, SPS, true, UnionDecl, in ValidateTypeHelper()
1065 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in IsStructureTypeWithRSObject() local
1066 slangAssert(FT); in IsStructureTypeWithRSObject()
1067 while (FT->isArrayType()) { in IsStructureTypeWithRSObject()
1068 FT = FT->getArrayElementTypeNoTypeQual(); in IsStructureTypeWithRSObject()
[all …]
Dslang_rs_object_ref_count.cpp525 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in CountRSObjectTypes() local
526 if (CountRSObjectTypes(FT)) { in CountRSObjectTypes()
544 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in CountRSObjectTypes() local
545 if (CountRSObjectTypes(FT)) { in CountRSObjectTypes()
588 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in ClearStructRSObject() local
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()
[all …]
/frameworks/av/media/codec2/components/amr_nb_wb/
DC2SoftAmrDec.cpp338 int16_t FT; in process() local
342 mInputSampleBuffer, &FT, &FM, 1, &mRxState); in process()
344 mDecoderBuf, FT, mDecoderCookie); in process()
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
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()
/frameworks/compile/slang/BitWriter_2_9/
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()
/frameworks/compile/slang/BitWriter_2_9_func/
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()
/frameworks/compile/slang/BitWriter_3_2/
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()
/frameworks/base/core/res/geoid_map_assets/
Dgeoid-height-disk-tile-7.textpb2 …25y*\264\225ZG\002\253J\331\252S\221\315f\\\340f\262.\3339\002\262\247^\265FT\252\317\025D\361b\25…
/frameworks/base/services/tests/mockingservicestests/res/raw/
Dbackup_telephony_with_password137 �1 ���3D�lܧ��:b�����S�<>�Y��FTIg��̮ـ~h����GT���[���m���f�lF)u��l�t(!u�!�P?`��9� R)…
/frameworks/av/media/libstagefright/httplive/fuzzer/corpus/
Dmeta291 …�M,����*��,�ܣQ��t��<:���}��'�cxz��bl�Ju����&e����&F�G)N��q�D����DZ@�FT>N����5J����K)��.J�<n…
791 …P]ę@s/J p�*ᩁn%A�50g�i�Ko�L�� ��0x Ae��V8m�CW�?yO�����0k+��OQ��FT�a@f� ����ϯ[����x6�…
1504 6b�b���je����d�"��GѝW�V����v��3�_�h�FT-����4��UZ�<YYZ�$1��,�(�>��Rz~�x=��*���\�B;50ML��…
6218 03E�D)����FT&'`�>#|�`��d� )�9�l�ǒ
8095 …[ =�D a���� �� � �-�n�&�7��e�o7�SQ��>���i�h�u���:�{-���e2�Z�Wd�b�۶�h��{��FT�FY�m�)_ԋ;ƹK�W�fCG�?…
9512 a��i'�5p�:����BS�FT�BNF�NN��i���k��rv�:�)>_V����O�J����6ӛ�D�޶����Q5�@�=� 먼t���s{+���������…
12135 …vH�j�y���$�l�������R�f;�JƁUDL^q�ny�[n��P# �U�cbdx�_v��r5,��Ñ����E�FT<����)�u�!�_���"����…
14552 ��4��0$FT���ysSs��5M�(T覃�Qu&�h��j�?������������������������������������ì
17021 ���w�f)oٍ?3��udy�,{D��&ۼ�ߋ�ӊH�|ji�odn K��y[m��r��fV<cP"\$Te� -����6�FT��`h�Mc��1K~�i��wӫ#��c…
17602 …�[��MJ"��#P�!9A �r׺19�s|�gs�h`_~��hO�(~*��l��h�8�p���0���N��E�Sd�h����FT�z��jY|��������������…
[all …]
Dmeta2333 …�M,����*��,�ܣQ��t��<:���}��'�cxz��bl�Ju����&e����&F�G)N��q�D����DZ@�FT>N����5J����K)��.J�<n…
833 …P]ę@s/J p�*ᩁn%A�50g�i�Ko�L�� ��0x Ae��V8m�CW�?yO�����0k+��OQ��FT�a@f� ����ϯ[����x6�…
1546 6b�b���je����d�"��GѝW�V����v��3�_�h�FT-����4��UZ�<YYZ�$1��,�(�>��Rz~�x=��*���\�B;50ML��…
6260 03E�D)����FT&'`�>#|�`��d� )�9�l�ǒ
8137 …[ =�D a���� �� � �-�n�&�7��e�o7�SQ��>���i�h�u���:�{-���e2�Z�Wd�b�۶�h��{��FT�FY�m�)_ԋ;ƹK�W�fCG�?…
9554 a��i'�5p�:����BS�FT�BNF�NN��i���k��rv�:�)>_V����O�J����6ӛ�D�޶����Q5�@�=� 먼t���s{+���������…
12177 …vH�j�y���$�l�������R�f;�JƁUDL^q�ny�[n��P# �U�cbdx�_v��r5,��Ñ����E�FT<����)�u�!�_���"����…
14594 ��4��0$FT���ysSs��5M�(T覃�Qu&�h��j�?������������������������������������ì
17063 ���w�f)oٍ?3��udy�,{D��&ۼ�ߋ�ӊH�|ji�odn K��y[m��r��fV<cP"\$Te� -����6�FT��`h�Mc��1K~�i��wӫ#��c…
17644 …�[��MJ"��#P�!9A �r׺19�s|�gs�h`_~��hO�(~*��l��h�8�p���0���N��E�Sd�h����FT�z��jY|��������������…
[all …]
Dindex9882 …��uiOw����7�;\k*����(�k�|ހ0p� Z�6 �&�:u&�#�k#������ �qLn��FG�'ۮFT�+M�����������7R�0"�…
Dindex13881 …��uiOw����7�;\k*����(�k�|ހ0p� Z�6 �&�:u&�#�k#������ �qLn��FG�'ۮFT�+M�����������7R�0"�…
Dindex11882 …��uiOw����7�;\k*����(�k�|ހ0p� Z�6 �&�:u&�#�k#������ �qLn��FG�'ۮFT�+M�����������7R�0"�…
Dindex10886 …��uiOw����7�;\k*����(�k�|ހ0p� Z�6 �&�:u&�#�k#������ �qLn��FG�'ۮFT�+M�����������7R�0"�…
Dindex12885 …��uiOw����7�;\k*����(�k�|ހ0p� Z�6 �&�:u&�#�k#������ �qLn��FG�'ۮFT�+M�����������7R�0"�…
Dindex15894 …��uiOw����7�;\k*����(�k�|ހ0p� Z�6 �&�:u&�#�k#������ �qLn��FG�'ۮFT�+M�����������7R�0"�…
Dindex16899 …��uiOw����7�;\k*����(�k�|ހ0p� Z�6 �&�:u&�#�k#������ �qLn��FG�'ۮFT�+M�����������7R�0"�…
Dindex18880 …��uiOw����7�;\k*����(�k�|ހ0p� Z�6 �&�:u&�#�k#������ �qLn��FG�'ۮFT�+M�����������7R�0"�…

12