Home
last modified time | relevance | path

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

/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/compile/slang/
Dslang_rs_export_type.cpp325 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in TypeExportableHelper() local
326 FT = GetCanonicalType(FT); in TypeExportableHelper()
328 if (!TypeExportableHelper(FT, SPS, Context, VD, TopLevelRecord, in TypeExportableHelper()
555 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in ValidateTypeHelper() local
556 FT = GetCanonicalType(FT); in ValidateTypeHelper()
558 if (!ValidateTypeHelper(Context, C, FT, ND, Loc, SPS, true, UnionDecl, in ValidateTypeHelper()
1054 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in IsStructureTypeWithRSObject() local
1055 while (FT && FT->isArrayType()) { in IsStructureTypeWithRSObject()
1056 FT = FT->getArrayElementTypeNoTypeQual(); in IsStructureTypeWithRSObject()
1059 DataType DT = GetRSSpecificType(FT); in IsStructureTypeWithRSObject()
[all …]
Dslang_rs_object_ref_count.cpp526 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in CountRSObjectTypes() local
527 if (CountRSObjectTypes(FT)) { in CountRSObjectTypes()
545 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in CountRSObjectTypes() local
546 if (CountRSObjectTypes(FT)) { in CountRSObjectTypes()
589 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in ClearStructRSObject() local
590 const clang::Type *OrigType = FT; in ClearStructRSObject()
591 while (FT && FT->isArrayType()) { in ClearStructRSObject()
592 FT = FT->getArrayElementTypeNoTypeQual(); in ClearStructRSObject()
601 if (RSExportPrimitiveType::IsRSObjectType(FT)) { in ClearStructRSObject()
632 } else if (FT->isStructureType() && CountRSObjectTypes(FT)) { in ClearStructRSObject()
[all …]
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
DSoftAMR.cpp280 static size_t getFrameSize(unsigned FT) { in getFrameSize() argument
285 if (FT >= 10) { in getFrameSize()
289 size_t frameSize = kFrameSizeWB[FT]; in getFrameSize()
/frameworks/base/docs/html-intl/intl/zh-tw/distribute/googleplay/quality/
Dauto.jd151 <td id="AU-FT">
152 AU-FT
/frameworks/base/docs/html-intl/intl/ko/distribute/googleplay/quality/
Dauto.jd180 <td id="AU-FT">
181 AU-FT
/frameworks/base/docs/html-intl/intl/zh-cn/distribute/googleplay/quality/
Dauto.jd180 <td id="AU-FT">
181 AU-FT
/frameworks/base/docs/html-intl/intl/ru/distribute/googleplay/quality/
Dauto.jd180 <td id="AU-FT">
181 AU-FT
/frameworks/base/docs/html-intl/intl/ja/distribute/googleplay/quality/
Dauto.jd151 <td id="AU-FT">
152 AU-FT
/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/docs/html-intl/intl/es/distribute/googleplay/quality/
Dauto.jd180 <td id="AU-FT">
181 AU-FT