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

/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];
107 unsigned FT local
293 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];
166 unsigned FT = (toc >> 3) & 0x0f; local
168 || (mIsWide && FT > 9 && FT != 15)
169 || (!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/compile/slang/
H A Dslang_rs_export_type.cpp235 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
236 FT = GET_CANONICAL_TYPE(FT);
238 if (!TypeExportableHelper(FT, SPS, DiagEngine, VD, TopLevelRecord)) {
442 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
443 FT = GET_CANONICAL_TYPE(FT);
445 if (!ValidateTypeHelper(C, FT, ND, Loc, SPS, true, UnionDecl,
917 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
918 while (FT
1277 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
[all...]
H A Dslang_rs_object_ref_count.cpp639 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
640 if (CountRSObjectTypes(C, FT, Loc)) {
658 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
659 if (CountRSObjectTypes(C, FT, Loc)) {
701 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
702 const clang::Type *OrigType = FT;
703 while (FT && FT->isArrayType()) {
704 FT = FT
1028 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.cpp260 static size_t getFrameSize(unsigned FT) { argument
265 if (FT >= 10) {
269 size_t frameSize = kFrameSizeWB[FT];
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSForEachExpand.cpp221 llvm::FunctionType *FT = local
224 llvm::Function::Create(FT,
441 llvm::FunctionType *FT = local
444 llvm::Function::Create(FT,
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp349 FunctionType *FT = cast<FunctionType>(T); local
352 TypeVals.push_back(FT->isVarArg());
354 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
355 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
356 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp288 FunctionType *FT = cast<FunctionType>(T); local
291 TypeVals.push_back(FT->isVarArg());
293 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
294 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
295 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));

Completed in 3593 milliseconds