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

/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];
165 unsigned FT = (toc >> 3) & 0x0f; local
167 || (mIsWide && FT > 9 && FT != 15)
168 || (!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/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/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/slang/
H A Dslang_rs_export_type.cpp308 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
309 FT = GetCanonicalType(FT);
311 if (!TypeExportableHelper(FT, SPS, Context, VD, TopLevelRecord)) {
517 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
518 FT = GetCanonicalType(FT);
520 if (!ValidateTypeHelper(Context, C, FT, ND, Loc, SPS, true, UnionDecl,
984 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
985 while (FT
1295 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
[all...]
H A Dslang_rs_object_ref_count.cpp621 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
622 if (CountRSObjectTypes(C, FT, Loc)) {
640 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
641 if (CountRSObjectTypes(C, FT, Loc)) {
684 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
685 const clang::Type *OrigType = FT;
686 while (FT && FT->isArrayType()) {
687 FT = FT
1010 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
[all...]
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp339 FunctionType *FT = cast<FunctionType>(T); local
342 TypeVals.push_back(FT->isVarArg());
344 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
345 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
346 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp279 FunctionType *FT = cast<FunctionType>(T); local
282 TypeVals.push_back(FT->isVarArg());
284 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
285 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
286 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp285 FunctionType *FT = cast<FunctionType>(T); local
288 TypeVals.push_back(FT->isVarArg());
289 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
290 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
291 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));

Completed in 476 milliseconds