Home
last modified time | relevance | path

Searched refs:FT (Results 1 – 10 of 10) 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()
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/
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.cpp233 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 …]
Dslang_rs_object_ref_count.cpp637 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/
DSoftAMR.cpp260 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/
DRSForEachExpand.cpp194 llvm::FunctionType *FT = in createEmptyExpandedFunction() local
197 llvm::Function::Create(FT, llvm::GlobalValue::ExternalLinkage, in createEmptyExpandedFunction()
/frameworks/compile/slang/BitWriter_2_9/
DBitcodeWriter.cpp339 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/
DBitcodeWriter.cpp279 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/
DBitcodeWriter.cpp285 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()