Searched refs:FT (Results 1 - 12 of 12) sorted by relevance

/frameworks/native/libs/vr/libdvrcommon/tests/
H A Dpose_test.cpp12 using FT = T;
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;
29 const auto tolerance = FT(0.0001);
31 const quat_t initial_rotation(Eigen::AngleAxis<FT>(
32 FT(M_P
[all...]
H A Dnumeric_test.cpp12 using FT = T;
18 using FT = typename TestFixture::FT;
21 const FT kLowRange = static_cast<FT>(-100);
22 const FT kHighRange = static_cast<FT>(100);
25 FT value = RandomInRange(kLowRange, kHighRange);
/frameworks/av/media/libstagefright/
H A DAMRExtractor.cpp72 static size_t getFrameSize(bool isWide, unsigned FT) { argument
87 if (FT > 15 || (isWide && FT > 9 && FT < 14) || (!isWide && FT > 11 && FT < 15)) {
88 ALOGE("illegal AMR frame type %d", FT);
92 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT];
110 unsigned FT local
299 unsigned FT = (header >> 3) & 0x0f; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAAMRAssembler.cpp81 static size_t getFrameSize(bool isWide, unsigned FT) { argument
89 if (FT == 15) {
93 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT];
165 unsigned FT = (toc >> 3) & 0x0f; local
167 || (mIsWide && FT > 9 && FT != 15)
168 || (!mIsWide && FT > 8 && FT != 15)) {
H A DARTPWriter.cpp728 static size_t getFrameSize(bool isWide, unsigned FT) { argument
736 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT];
765 unsigned FT = (toc >> 3) & 0x0f; local
766 CHECK((isWide && FT <= 8) || (!isWide && FT <= 7));
769 srcOffset += getFrameSize(isWide, FT);
814 unsigned FT = (toc >> 3) & 0x0f; local
815 size_t frameSize = getFrameSize(isWide, FT);
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
H A Dnumeric.h15 template <typename FT>
16 static inline FT ToDeg(FT f) {
17 return f * static_cast<FT>(180.0 / M_PI);
20 template <typename FT>
21 static inline FT ToRad(FT f) {
22 return f * static_cast<FT>(M_PI / 180.0);
/frameworks/compile/slang/
H A Dslang_rs_export_type.cpp324 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
325 FT = GetCanonicalType(FT);
327 if (!TypeExportableHelper(FT, SPS, Context, VD, TopLevelRecord,
559 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
560 FT = GetCanonicalType(FT);
562 if (!ValidateTypeHelper(Context, C, FT, ND, Loc, SPS, true, UnionDecl,
1059 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
1060 slangAssert(FT);
1378 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
[all...]
H A Dslang_rs_object_ref_count.cpp525 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
526 if (CountRSObjectTypes(FT)) {
544 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
545 if (CountRSObjectTypes(FT)) {
588 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
589 slangAssert(FT);
590 const clang::Type *OrigType = FT;
591 while (FT->isArrayType()) {
592 FT = FT
923 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.cpp327 static size_t getFrameSize(unsigned FT) { argument
332 if (FT >= 10) {
336 size_t frameSize = kFrameSizeWB[FT];
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp292 FunctionType *FT = cast<FunctionType>(T); local
295 TypeVals.push_back(FT->isVarArg());
297 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
298 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
299 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp277 FunctionType *FT = cast<FunctionType>(T); local
280 TypeVals.push_back(FT->isVarArg());
282 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
283 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
284 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp280 FunctionType *FT = cast<FunctionType>(T); local
283 TypeVals.push_back(FT->isVarArg());
284 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
285 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
286 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));

Completed in 306 milliseconds