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

/frameworks/base/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 LOGE("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/base/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.cpp194 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
195 FT = GET_CANONICAL_TYPE(FT);
197 if (!TypeExportableHelper(FT, SPS, DiagEngine, VD, TopLevelRecord)) {
348 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
349 FT = GET_CANONICAL_TYPE(FT);
351 if (!ValidateVarDeclHelper(VD, FT, SPS, UnionDecl)) {
758 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
759 while (FT
1114 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
[all...]
H A Dslang_rs_object_ref_count.cpp633 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
634 if (CountRSObjectTypes(C, FT, Loc)) {
652 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
653 if (CountRSObjectTypes(C, FT, Loc)) {
695 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
696 const clang::Type *OrigType = FT;
697 while (FT && FT->isArrayType()) {
698 FT = FT
1019 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); local
[all...]
/frameworks/base/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.cpp248 static size_t getFrameSize(unsigned FT) { argument
253 size_t frameSize = kFrameSizeWB[FT];
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp341 FunctionType *FT = cast<FunctionType>(T); local
344 TypeVals.push_back(FT->isVarArg());
346 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
347 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
348 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));

Completed in 4006 milliseconds