Home
last modified time | relevance | path

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

/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/libstagefright/
DAMRExtractor.cpp72 static size_t getFrameSize(bool isWide, unsigned FT) { in getFrameSize() argument
87 if (FT > 15 || (isWide && FT > 9 && FT < 14) || (!isWide && FT > 11 && FT < 15)) { in getFrameSize()
88 ALOGE("illegal AMR frame type %d", FT); in getFrameSize()
92 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT]; in getFrameSize()
110 unsigned FT = (header >> 3) & 0x0f; in getFrameSizeByOffset() local
112 *frameSize = getFrameSize(isWide, FT); in getFrameSizeByOffset()
299 unsigned FT = (header >> 3) & 0x0f; in read() local
301 size_t frameSize = getFrameSize(mIsWide, FT); in read()
/frameworks/av/media/libstagefright/rtsp/
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()
DARTPWriter.cpp728 static size_t getFrameSize(bool isWide, unsigned FT) { in getFrameSize() argument
736 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT]; in getFrameSize()
765 unsigned FT = (toc >> 3) & 0x0f; in sendAMRData() local
766 CHECK((isWide && FT <= 8) || (!isWide && FT <= 7)); in sendAMRData()
769 srcOffset += getFrameSize(isWide, FT); in sendAMRData()
814 unsigned FT = (toc >> 3) & 0x0f; in sendAMRData() local
815 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()
559 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in ValidateTypeHelper() local
560 FT = GetCanonicalType(FT); in ValidateTypeHelper()
562 if (!ValidateTypeHelper(Context, C, FT, ND, Loc, SPS, true, UnionDecl, 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()
[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/libstagefright/codecs/amrnb/dec/
DSoftAMR.cpp327 static size_t getFrameSize(unsigned FT) { in getFrameSize() argument
332 if (FT >= 10) { in getFrameSize()
336 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_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/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/base/services/tests/servicestests/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)…