HomeSort by relevance Sort by last modified time
    Searched defs:FT (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 33 FunctionType *FT =
38 Function *F = Function::Create(FT, Function::ExternalLinkage, "main", M);
  /external/llvm/unittests/IR/
WaymarkTest.cpp 31 FunctionType *FT = FunctionType::get(Type::getVoidTy(getGlobalContext()), true);
32 Function *F = Function::Create(FT, GlobalValue::ExternalLinkage);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfFieldDictionary_autogen.cpp 11 SkString SkPdfFieldDictionary::FT(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("FT", "");
20 return get("FT", "") != NULL;
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfFieldDictionary_autogen.cpp 11 SkString SkPdfFieldDictionary::FT(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("FT", "");
20 return get("FT", "") != NULL;
  /external/clang/lib/AST/
Mangle.cpp 80 const FunctionType *FT = T->castAs<FunctionType>();
82 CallingConv CC = FT->getCallConv();
154 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
155 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT);
DeclPrinter.cpp 419 const FunctionProtoType *FT = nullptr;
421 FT = dyn_cast<FunctionProtoType>(AFT);
424 if (FT) {
432 if (FT->isVariadic()) {
446 if (FT) {
447 if (FT->isConst())
449 if (FT->isVolatile())
451 if (FT->isRestrict())
454 switch (FT->getRefQualifier()) {
466 if (FT && FT->hasDynamicExceptionSpec())
    [all...]
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 391 GCC::FileType FT = SafeInterpreter->OutputCode(BitcodeFile, OutputFile,
397 bool Failure = gcc->MakeSharedObject(OutputFile, FT, SharedObjectFile,
  /frameworks/av/media/libstagefright/rtsp/
AAMRAssembler.cpp 81 static size_t getFrameSize(bool isWide, unsigned FT) {
89 if (FT == 15) {
93 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT];
165 unsigned FT = (toc >> 3) & 0x0f;
167 || (mIsWide && FT > 9 && FT != 15)
168 || (!mIsWide && FT > 8 && FT != 15)) {
ARTPWriter.cpp 728 static size_t getFrameSize(bool isWide, unsigned FT) {
736 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT];
765 unsigned FT = (toc >> 3) & 0x0f;
766 CHECK((isWide && FT <= 8) || (!isWide && FT <= 7));
769 srcOffset += getFrameSize(isWide, FT);
814 unsigned FT = (toc >> 3) & 0x0f;
815 size_t frameSize = getFrameSize(isWide, FT);
  /external/clang/lib/Analysis/
BodyFarm.cpp 36 const FunctionProtoType *FT =
38 if (!FT || !FT->getReturnType()->isVoidType() || FT->getNumParams() != 0)
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 218 bool CodeGenTypes::isFuncTypeConvertible(const FunctionType *FT) {
219 if (!isFuncParamTypeConvertible(FT->getReturnType()))
222 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
471 const FunctionType *FT = cast<FunctionType>(Ty);
475 if (!isFuncTypeConvertible(FT)) {
480 if (const RecordType *RT = FT->getReturnType()->getAs<RecordType>())
482 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
507 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
511 const FunctionNoProtoType *FNPT = cast<FunctionNoProtoType>(FT);
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 426 FunctionType *FT = cast<FunctionType>(
428 if (FT->isVarArg() && !MMI->usesVAFloatArgument()) {
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 94 FunctionType *FT = F->getFunctionType();
95 for (unsigned i = 0, e = FT->getNumContainedTypes(); i != e; ++i)
96 ExtName += getTypeID(FT->getContainedType(i));
302 GenericValue lle_X_atexit(FunctionType *FT,
313 GenericValue lle_X_exit(FunctionType *FT,
321 GenericValue lle_X_abort(FunctionType *FT,
332 GenericValue lle_X_sprintf(FunctionType *FT,
415 GenericValue lle_X_printf(FunctionType *FT,
421 GenericValue GV = lle_X_sprintf(FT, NewArgs);
428 GenericValue lle_X_sscanf(FunctionType *FT,
    [all...]
  /external/llvm/lib/IR/
Function.cpp 259 FunctionType *FT = getFunctionType();
260 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
261 assert(!FT->getParamType(i)->isVoidTy() &&
263 ArgumentList.push_back(new Argument(FT->getParamType(i)));
Type.cpp 361 FunctionType *FT;
364 FT = (FunctionType*) pImpl->TypeAllocator.
367 new (FT) FunctionType(ReturnType, Params, isVarArg);
368 pImpl->FunctionTypes[FT] = true;
370 FT = I->first;
373 return FT;
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 506 FunctionType *FT = Callee->getFunctionType();
512 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
513 !FT->getParamType(0)->isPointerTy() ||
514 !FT->getParamType(1)->isPointerTy() ||
515 FT->getParamType(2) != TD->getIntPtrType(Context) ||
516 FT->getParamType(3) != TD->getIntPtrType(Context))
535 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) |
    [all...]
  /frameworks/av/media/libstagefright/
AMRExtractor.cpp 72 static size_t getFrameSize(bool isWide, unsigned FT) {
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 = (header >> 3) & 0x0f
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 821 const FunctionProtoType *FT;
822 if ((FT = T->getAs<FunctionProtoType>())) {
824 FT = PT->getPointeeType()->getAs<FunctionProtoType>();
826 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
828 FT = MT->getPointeeType()->getAs<FunctionProtoType>()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 407 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
410 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 415 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
418 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 172 static bool needsFPReturnHelper(const FunctionType &FT) {
173 Type* RetType = FT.getReturnType();
414 const FunctionType *FT=nullptr;
415 if (PFT) FT = dyn_cast<FunctionType>(PFT->getElementType());
417 if (FT && needsFPReturnHelper(*FT) &&
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 660 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
663 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
  /external/llvm/lib/Analysis/
Lint.cpp 209 FunctionType *FT = F->getFunctionType();
212 Assert1(FT->isVarArg() ?
213 FT->getNumParams() <= NumActualArgs :
214 FT->getNumParams() == NumActualArgs,
218 Assert1(FT->getReturnType() == I.getType(),
  /frameworks/compile/slang/
slang_rs_export_type.cpp 308 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD);
309 FT = GetCanonicalType(FT);
311 if (!TypeExportableHelper(FT, SPS, Context, VD, TopLevelRecord)) {
517 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD);
518 FT = GetCanonicalType(FT);
520 if (!ValidateTypeHelper(Context, C, FT, ND, Loc, SPS, true, UnionDecl,
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 764 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
767 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);

Completed in 565 milliseconds

1 2 3