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

1 2 3 4 5

  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 39 FunctionType *FT =
44 Function *F = Function::Create(FT, Function::ExternalLinkage, "main", M);
  /external/llvm/unittests/IR/
WaymarkTest.cpp 29 FunctionType *FT = FunctionType::get(Type::getVoidTy(Context), true);
31 Function::Create(FT, GlobalValue::ExternalLinkage));
  /external/swiftshader/third_party/LLVM/examples/ModuleMaker/
ModuleMaker.cpp 33 FunctionType *FT =
38 Function *F = Function::Create(FT, Function::ExternalLinkage, "main", M);
  /external/llvm/lib/IR/
Mangler.cpp 161 FunctionType *FT = MSFunc->getFunctionType();
164 (!FT->isVarArg() || FT->getNumParams() == 0 ||
165 (FT->getNumParams() == 1 && MSFunc->hasStructRetAttr())))
  /external/swiftshader/third_party/LLVM/lib/Target/
Mangler.cpp 217 FunctionType *FT = F->getFunctionType();
220 (!FT->isVarArg() || FT->getNumParams() == 0 ||
221 (FT->getNumParams() == 1 && F->hasStructRetAttr())))
  /external/clang/lib/AST/
Mangle.cpp 83 const FunctionType *FT = T->castAs<FunctionType>();
85 CallingConv CC = FT->getCallConv();
164 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
165 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT);
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 398 CC::FileType FT = SafeInterpreter->OutputCode(BitcodeFile, OutputFile,
404 bool Failure = cc->MakeSharedObject(OutputFile, FT, SharedObjectFile,
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ExecutionDriver.cpp 430 GCC::FileType FT = SafeInterpreter->OutputCode(BitcodeFile, OutputFile,
436 bool Failure = gcc->MakeSharedObject(OutputFile.str(), 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)) {
  /external/clang/lib/Analysis/
BodyFarm.cpp 37 const FunctionProtoType *FT =
39 return FT && FT->getReturnType()->isVoidType() && FT->getNumParams() == 0;
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 225 bool CodeGenTypes::isFuncTypeConvertible(const FunctionType *FT) {
226 if (!isFuncParamTypeConvertible(FT->getReturnType()))
229 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
312 const FunctionType *FT = cast<FunctionType>(QFT.getTypePtr());
316 if (!isFuncTypeConvertible(FT)) {
321 if (const RecordType *RT = FT->getReturnType()->getAs<RecordType>())
323 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
345 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
349 const FunctionNoProtoType *FNPT = cast<FunctionNoProtoType>(FT);
  /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));
299 static GenericValue lle_X_atexit(FunctionType *FT,
309 static GenericValue lle_X_exit(FunctionType *FT, ArrayRef<GenericValue> Args) {
315 static GenericValue lle_X_abort(FunctionType *FT, ArrayRef<GenericValue> Args) {
324 static GenericValue lle_X_sprintf(FunctionType *FT,
406 static GenericValue lle_X_printf(FunctionType *FT,
412 GenericValue GV = lle_X_sprintf(FT, NewArgs);
418 static GenericValue lle_X_sscanf(FunctionType *FT,
    [all...]
  /external/lzma/C/
Aes.c 116 #define FT(i, x) Sbox[gb ## x(m[(i + x) & 3])]
117 #define FT4(i) dest[i] = Ui32(FT(i, 0), FT(i, 1), FT(i, 2), FT(i, 3)) ^ w[i];
  /external/spirv-llvm/lib/SPIRV/
OCLTypeToSPIRV.cpp 176 auto FT = F->getFunctionType();
177 FT = FunctionType::get(FT->getReturnType(), ArgTys, FT->isVarArg());
178 addAdaptedType(F, FT);
286 auto FT = F->getFunctionType();
287 auto PI = FT->param_begin();
  /external/swiftshader/third_party/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));
307 GenericValue lle_X_atexit(FunctionType *FT,
317 GenericValue lle_X_exit(FunctionType *FT,
324 GenericValue lle_X_abort(FunctionType *FT,
334 GenericValue lle_X_sprintf(FunctionType *FT,
416 GenericValue lle_X_printf(FunctionType *FT,
422 GenericValue GV = lle_X_sprintf(FT, NewArgs);
428 GenericValue lle_X_sscanf(FunctionType *FT,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BuildLibCalls.cpp 364 FunctionType *FT = Callee->getFunctionType();
370 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
371 !FT->getParamType(0)->isPointerTy() ||
372 !FT->getParamType(1)->isPointerTy() ||
373 FT->getParamType(2) != TD->getIntPtrType(Context) ||
374 FT->getParamType(3) != TD->getIntPtrType(Context))
393 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) |
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Function.cpp 199 FunctionType *FT = getFunctionType();
200 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
201 assert(!FT->getParamType(i)->isVoidTy() &&
203 ArgumentList.push_back(new Argument(FT->getParamType(i)));
  /frameworks/av/media/extractors/amr/
AMRExtractor.cpp 73 static size_t getFrameSize(bool isWide, unsigned FT) {
88 if (FT > 15 || (isWide && FT > 9 && FT < 14) || (!isWide && FT > 11 && FT < 15)) {
89 ALOGE("illegal AMR frame type %d", FT);
93 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT];
111 unsigned FT = (header >> 3) & 0x0f
    [all...]
  /hardware/google/av/media/codecs/amr_nb_wb/
C2SoftAmrDec.cpp 336 int16_t FT;
341 mInputSampleBuffer, &FT, &FM, 1, &rx_state);
343 mDecoderBuf, FT, mDecoderCookie);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
shamodule.c 155 #define FT(n) \
182 FA(1); FB(1); FC(1); FD(1); FE(1); FT(1); FA(1); FB(1); FC(1); FD(1);
183 FE(1); FT(1); FA(1); FB(1); FC(1); FD(1); FE(1); FT(1); FA(1); FB(1);
184 FC(2); FD(2); FE(2); FT(2); FA(2); FB(2); FC(2); FD(2); FE(2); FT(2);
185 FA(2); FB(2); FC(2); FD(2); FE(2); FT(2); FA(2); FB(2); FC(2); FD(2);
186 FE(3); FT(3); FA(3); FB(3); FC(3); FD(3); FE(3); FT(3); FA(3); FB(3);
187 FC(3); FD(3); FE(3); FT(3); FA(3); FB(3); FC(3); FD(3); FE(3); FT(3);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
shamodule.c 155 #define FT(n) \
182 FA(1); FB(1); FC(1); FD(1); FE(1); FT(1); FA(1); FB(1); FC(1); FD(1);
183 FE(1); FT(1); FA(1); FB(1); FC(1); FD(1); FE(1); FT(1); FA(1); FB(1);
184 FC(2); FD(2); FE(2); FT(2); FA(2); FB(2); FC(2); FD(2); FE(2); FT(2);
185 FA(2); FB(2); FC(2); FD(2); FE(2); FT(2); FA(2); FB(2); FC(2); FD(2);
186 FE(3); FT(3); FA(3); FB(3); FC(3); FD(3); FE(3); FT(3); FA(3); FB(3);
187 FC(3); FD(3); FE(3); FT(3); FA(3); FB(3); FC(3); FD(3); FE(3); FT(3);
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 458 FunctionType *FT =
462 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 485 FunctionType *FT =
489 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
  /external/llvm/lib/Analysis/
Lint.cpp 216 FunctionType *FT = F->getFunctionType();
219 Assert(FT->isVarArg() ? FT->getNumParams() <= NumActualArgs
220 : FT->getNumParams() == NumActualArgs,
225 Assert(FT->getReturnType() == I.getType(),

Completed in 443 milliseconds

1 2 3 4 5