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];
110 unsigned FT local
299 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];
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/compile/slang/
H A Dslang_rs_export_type.cpp325 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
326 FT = GetCanonicalType(FT);
328 if (!TypeExportableHelper(FT, SPS, Context, VD, TopLevelRecord,
555 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
556 FT = GetCanonicalType(FT);
558 if (!ValidateTypeHelper(Context, C, FT, ND, Loc, SPS, true, UnionDecl,
1054 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
1055 while (FT
1371 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
[all...]
H A Dslang_rs_object_ref_count.cpp526 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
527 if (CountRSObjectTypes(FT)) {
545 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
546 if (CountRSObjectTypes(FT)) {
589 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
590 const clang::Type *OrigType = FT;
591 while (FT && FT->isArrayType()) {
592 FT = FT
922 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.cpp280 static size_t getFrameSize(unsigned FT) { argument
285 if (FT >= 10) {
289 size_t frameSize = kFrameSizeWB[FT];
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp292 FunctionType *FT = cast<FunctionType>(T); local
295 TypeVals.push_back(FT->isVarArg());
297 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
298 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
299 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp277 FunctionType *FT = cast<FunctionType>(T); local
280 TypeVals.push_back(FT->isVarArg());
282 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
283 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
284 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp280 FunctionType *FT = cast<FunctionType>(T); local
283 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)));

Completed in 179 milliseconds