/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() 107 unsigned FT = (header >> 3) & 0x0f; in getFrameSizeByOffset() local 109 *frameSize = getFrameSize(isWide, FT); in getFrameSizeByOffset() 293 unsigned FT = (header >> 3) & 0x0f; in read() local 295 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 | 233 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in TypeExportableHelper() local 234 FT = GET_CANONICAL_TYPE(FT); in TypeExportableHelper() 236 if (!TypeExportableHelper(FT, SPS, DiagEngine, VD, TopLevelRecord)) { in TypeExportableHelper() 441 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in ValidateTypeHelper() local 442 FT = GET_CANONICAL_TYPE(FT); in ValidateTypeHelper() 444 if (!ValidateTypeHelper(C, FT, ND, Loc, SPS, true, UnionDecl, in ValidateTypeHelper() 921 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in IsStructureTypeWithRSObject() local 922 while (FT && FT->isArrayType()) { in IsStructureTypeWithRSObject() 923 FT = FT->getArrayElementTypeNoTypeQual(); in IsStructureTypeWithRSObject() 926 RSExportPrimitiveType::DataType DT = GetRSSpecificType(FT); in IsStructureTypeWithRSObject() [all …]
|
D | slang_rs_object_ref_count.cpp | 637 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in CountRSObjectTypes() local 638 if (CountRSObjectTypes(C, FT, Loc)) { in CountRSObjectTypes() 656 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in CountRSObjectTypes() local 657 if (CountRSObjectTypes(C, FT, Loc)) { in CountRSObjectTypes() 700 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); in ClearStructRSObject() local 701 const clang::Type *OrigType = FT; in ClearStructRSObject() 702 while (FT && FT->isArrayType()) { in ClearStructRSObject() 703 FT = FT->getArrayElementTypeNoTypeQual(); in ClearStructRSObject() 707 if (RSExportPrimitiveType::IsRSObjectType(FT)) { in ClearStructRSObject() 737 } else if (FT->isStructureType() && CountRSObjectTypes(C, FT, Loc)) { in ClearStructRSObject() [all …]
|
/frameworks/av/media/libstagefright/codecs/amrnb/dec/ |
D | SoftAMR.cpp | 260 static size_t getFrameSize(unsigned FT) { in getFrameSize() argument 265 if (FT >= 10) { in getFrameSize() 269 size_t frameSize = kFrameSizeWB[FT]; in getFrameSize()
|
/frameworks/compile/libbcc/lib/Renderscript/ |
D | RSForEachExpand.cpp | 194 llvm::FunctionType *FT = in createEmptyExpandedFunction() local 197 llvm::Function::Create(FT, llvm::GlobalValue::ExternalLinkage, in createEmptyExpandedFunction()
|
/frameworks/compile/slang/BitWriter_2_9/ |
D | BitcodeWriter.cpp | 339 FunctionType *FT = cast<FunctionType>(T); in WriteTypeTable() local 342 TypeVals.push_back(FT->isVarArg()); in WriteTypeTable() 344 TypeVals.push_back(VE.getTypeID(FT->getReturnType())); in WriteTypeTable() 345 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) in WriteTypeTable() 346 TypeVals.push_back(VE.getTypeID(FT->getParamType(i))); in WriteTypeTable()
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
D | BitcodeWriter.cpp | 279 FunctionType *FT = cast<FunctionType>(T); in WriteTypeTable() local 282 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_3_2/ |
D | BitcodeWriter.cpp | 285 FunctionType *FT = cast<FunctionType>(T); in WriteTypeTable() local 288 TypeVals.push_back(FT->isVarArg()); in WriteTypeTable() 289 TypeVals.push_back(VE.getTypeID(FT->getReturnType())); in WriteTypeTable() 290 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) in WriteTypeTable() 291 TypeVals.push_back(VE.getTypeID(FT->getParamType(i))); in WriteTypeTable()
|