/frameworks/av/media/libstagefright/ |
D | AMRExtractor.cpp | 72 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/ |
D | AAMRAssembler.cpp | 81 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()
|
D | ARTPWriter.cpp | 728 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/ |
D | slang_rs_export_type.cpp | 325 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 …]
|
D | slang_rs_object_ref_count.cpp | 526 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/ |
D | SoftAMR.cpp | 280 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/ |
D | auto.jd | 151 <td id="AU-FT"> 152 AU-FT
|
/frameworks/base/docs/html-intl/intl/ko/distribute/googleplay/quality/ |
D | auto.jd | 180 <td id="AU-FT"> 181 AU-FT
|
/frameworks/base/docs/html-intl/intl/zh-cn/distribute/googleplay/quality/ |
D | auto.jd | 180 <td id="AU-FT"> 181 AU-FT
|
/frameworks/base/docs/html-intl/intl/ru/distribute/googleplay/quality/ |
D | auto.jd | 180 <td id="AU-FT"> 181 AU-FT
|
/frameworks/base/docs/html-intl/intl/ja/distribute/googleplay/quality/ |
D | auto.jd | 151 <td id="AU-FT"> 152 AU-FT
|
/frameworks/compile/slang/BitWriter_2_9/ |
D | BitcodeWriter.cpp | 292 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/ |
D | BitcodeWriter.cpp | 280 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/ |
D | BitcodeWriter.cpp | 277 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/ |
D | auto.jd | 180 <td id="AU-FT"> 181 AU-FT
|