HomeSort by relevance Sort by last modified time
    Searched refs:Ctx (Results 101 - 125 of 1365) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/MCDisassembler/
MCDisassembler.h 57 MCDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx)
58 : Ctx(Ctx), STI(STI) {}
83 MCContext &Ctx;
103 MCContext& getContext() const { return Ctx; }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/MCDisassembler/
MCDisassembler.h 57 MCDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx)
58 : Ctx(Ctx), STI(STI) {}
83 MCContext &Ctx;
103 MCContext& getContext() const { return Ctx; }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/MCDisassembler/
MCDisassembler.h 57 MCDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx)
58 : Ctx(Ctx), STI(STI) {}
83 MCContext &Ctx;
103 MCContext& getContext() const { return Ctx; }
  /external/clang/lib/Analysis/
PrintfFormatString.cpp 390 ArgType PrintfSpecifier::getArgType(ASTContext &Ctx,
400 return Ctx.IntTy;
405 if (Ctx.getTargetInfo().getTriple().isOSMSVCRT())
406 return Ctx.IntTy;
415 return Ctx.LongLongTy;
417 return Ctx.IntTy;
419 return ArgType(Ctx.IntTy, "__int32");
421 case LengthModifier::AsShort: return Ctx.ShortTy;
422 case LengthModifier::AsLong: return Ctx.LongTy;
425 return Ctx.LongLongTy
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 140 MCContext *Ctx) {
147 if (Ctx && (SignedValue > 2097151 || SignedValue < -2097152))
148 Ctx->reportError(Fixup.getLoc(), "fixup value out of range");
156 if (Ctx) Ctx->reportError(Fixup.getLoc(), "fixup value out of range");
157 if (Ctx && (Value & 0x3))
158 Ctx->reportError(Fixup.getLoc(), "fixup not sufficiently aligned");
164 if (Ctx && Value >= 0x1000)
165 Ctx->reportError(Fixup.getLoc(), "fixup value out of range");
169 if (Ctx && (Value >= 0x2000)
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.cpp 37 MCContext *Ctx = nullptr) {
71 if (!isInt<16>(Value) && Ctx) {
72 Ctx->reportError(Fixup.getLoc(), "out of range PC16 fixup");
81 if (!isInt<19>(Value) && Ctx) {
82 Ctx->reportError(Fixup.getLoc(), "out of range PC19 fixup");
118 if (!isInt<7>(Value) && Ctx) {
119 Ctx->reportError(Fixup.getLoc(), "out of range PC7 fixup");
128 if (!isInt<10>(Value) && Ctx) {
129 Ctx->reportError(Fixup.getLoc(), "out of range PC10 fixup");
138 if (!isInt<16>(Value) && Ctx) {
    [all...]
  /external/llvm/tools/llvm-readobj/
Win64EHDumper.cpp 115 static std::string formatSymbol(const Dumper::Context &Ctx,
122 if (!Ctx.ResolveSymbol(Section, Offset, Symbol, Ctx.UserData)) {
141 static std::error_code resolveRelocation(const Dumper::Context &Ctx,
148 Ctx.ResolveSymbol(Section, Offset, Symbol, Ctx.UserData))
159 ResolvedSection = Ctx.COFF.getCOFFSection(**SI);
165 void Dumper::printRuntimeFunctionEntry(const Context &Ctx,
170 formatSymbol(Ctx, Section, Offset + 0, RF.StartAddress));
172 formatSymbol(Ctx, Section, Offset + 4, RF.EndAddress))
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCMissingSuperCallChecker.cpp 75 void initializeSelectors(ASTContext &Ctx) const;
76 void fillSelectors(ASTContext &Ctx, ArrayRef<SelectorDescriptor> Sel,
101 void ObjCSuperCallChecker::fillSelectors(ASTContext &Ctx,
112 IdentifierInfo *II = &Ctx.Idents.get(Descriptor.SelectorName);
114 Selector Sel = Ctx.Selectors.getSelector(Descriptor.ArgumentCount, &II);
119 void ObjCSuperCallChecker::initializeSelectors(ASTContext &Ctx) const {
137 fillSelectors(Ctx, Selectors, "UIViewController");
144 fillSelectors(Ctx, Selectors, "UIResponder");
152 fillSelectors(Ctx, Selectors, "NSResponder");
160 fillSelectors(Ctx, Selectors, "NSDocument")
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcTargetObjectFile.cpp 36 MCContext &Ctx = getContext();
38 MCSymbolRefExpr::create(SSym, Ctx), Ctx);
  /external/swiftshader/third_party/subzero/src/
WasmTranslator.h 52 Fn(Ctx->getStrDump());
53 Ctx->getStrDump().flush();
58 explicit WasmTranslator(GlobalContext *Ctx);
  /external/llvm/lib/Target/NVPTX/
NVPTXMCExpr.h 41 MCContext &Ctx);
44 MCContext &Ctx) {
45 return create(VK_NVPTX_SINGLE_PREC_FLOAT, Flt, Ctx);
49 MCContext &Ctx) {
50 return create(VK_NVPTX_DOUBLE_PREC_FLOAT, Flt, Ctx);
96 *create(const MCSymbolRefExpr *SymExpr, MCContext &Ctx);
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUMCTargetDesc.h 40 MCContext &Ctx);
44 MCContext &Ctx);
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.cpp 20 MCContext &Ctx) {
21 return new (Ctx) ARMMCExpr(Kind, Expr);
  /external/llvm/lib/Target/BPF/
BPFMCInstLower.h 28 MCContext &Ctx;
33 BPFMCInstLower(MCContext &ctx, AsmPrinter &printer)
34 : Ctx(ctx), Printer(printer) {}
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyMCInstLower.h 31 MCContext &Ctx;
40 WebAssemblyMCInstLower(MCContext &ctx, AsmPrinter &printer)
41 : Ctx(ctx), Printer(printer) {}
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMTargetObjectFile.cpp 24 void ARMElfTargetObjectFile::Initialize(MCContext &Ctx,
26 TargetLoweringObjectFileELF::Initialize(Ctx, TM);
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/MCTargetDesc/
MipsMCCodeEmitter.cpp 37 MCContext &ctx)
50 MCContext &Ctx) {
51 return new MipsMCCodeEmitter(MCII, STI, Ctx);
  /external/clang/lib/CodeGen/
ObjectFilePCHContainerOperations.cpp 48 ASTContext *Ctx;
64 ASTContext &Ctx;
65 DebugTypeVisitor(clang::CodeGen::CGDebugInfo &DI, ASTContext &Ctx)
66 : DI(DI), Ctx(Ctx) {}
88 QualType QualTy = Ctx.getTypeDeclType(D);
111 QualType FnTy = Ctx.getFunctionType(RetTy, ArgTypes,
124 ArgTypes.push_back(D->getSelfType(Ctx, D->getClassInterface(),
126 ArgTypes.push_back(Ctx.getObjCSelType());
130 QualType FnTy = Ctx.getFunctionType(RetTy, ArgTypes
    [all...]
CGLoopInfo.cpp 22 static MDNode *createMetadata(LLVMContext &Ctx, const LoopAttributes &Attrs,
35 auto TempNode = MDNode::getTemporary(Ctx, None);
44 Metadata *Vals[] = {MDString::get(Ctx, "llvm.loop.vectorize.width"),
46 Type::getInt32Ty(Ctx), Attrs.VectorizeWidth))};
47 Args.push_back(MDNode::get(Ctx, Vals));
52 Metadata *Vals[] = {MDString::get(Ctx, "llvm.loop.interleave.count"),
54 Type::getInt32Ty(Ctx), Attrs.InterleaveCount))};
55 Args.push_back(MDNode::get(Ctx, Vals));
60 Metadata *Vals[] = {MDString::get(Ctx, "llvm.loop.unroll.count"),
62 Type::getInt32Ty(Ctx), Attrs.UnrollCount))}
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_state.c 54 i915_update_stencil(struct gl_context * ctx)
56 struct i915_context *i915 = I915_CONTEXT(ctx);
67 if (ctx->Polygon.FrontFace == GL_CW) {
68 front_ref = _mesa_get_stencil_ref(ctx, 0);
69 front_mask = ctx->Stencil.ValueMask[0];
70 front_writemask = ctx->Stencil.WriteMask[0];
71 front_func = ctx->Stencil.Function[0];
72 front_fail = ctx->Stencil.FailFunc[0];
73 front_pass_z_fail = ctx->Stencil.ZFailFunc[0];
74 front_pass_z_pass = ctx->Stencil.ZPassFunc[0]
1086 struct gl_context *ctx = &i915->intel.ctx; local
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProfData.inc 73 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), NameRef, \
74 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
76 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \
77 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
79 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt64PtrTy(Ctx), CounterPtr, \
81 llvm::Type::getInt64PtrTy(Ctx)))
86 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt8PtrTy(Ctx), FunctionPointer, \
88 INSTR_PROF_DATA(IntPtrT, llvm::Type::getInt8PtrTy(Ctx), Values, \
90 INSTR_PROF_DATA(const uint32_t, llvm::Type::getInt32Ty(Ctx), NumCounters, \
91 ConstantInt::get(llvm::Type::getInt32Ty(Ctx), NumCounters)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProfData.inc 73 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), NameRef, \
74 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
76 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \
77 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
79 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt64PtrTy(Ctx), CounterPtr, \
81 llvm::Type::getInt64PtrTy(Ctx)))
86 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt8PtrTy(Ctx), FunctionPointer, \
88 INSTR_PROF_DATA(IntPtrT, llvm::Type::getInt8PtrTy(Ctx), Values, \
90 INSTR_PROF_DATA(const uint32_t, llvm::Type::getInt32Ty(Ctx), NumCounters, \
91 ConstantInt::get(llvm::Type::getInt32Ty(Ctx), NumCounters)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProfData.inc 73 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), NameRef, \
74 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
76 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \
77 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
79 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt64PtrTy(Ctx), CounterPtr, \
81 llvm::Type::getInt64PtrTy(Ctx)))
86 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt8PtrTy(Ctx), FunctionPointer, \
88 INSTR_PROF_DATA(IntPtrT, llvm::Type::getInt8PtrTy(Ctx), Values, \
90 INSTR_PROF_DATA(const uint32_t, llvm::Type::getInt32Ty(Ctx), NumCounters, \
91 ConstantInt::get(llvm::Type::getInt32Ty(Ctx), NumCounters)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProfData.inc 73 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), NameRef, \
74 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
76 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \
77 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
79 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt64PtrTy(Ctx), CounterPtr, \
81 llvm::Type::getInt64PtrTy(Ctx)))
86 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt8PtrTy(Ctx), FunctionPointer, \
88 INSTR_PROF_DATA(IntPtrT, llvm::Type::getInt8PtrTy(Ctx), Values, \
90 INSTR_PROF_DATA(const uint32_t, llvm::Type::getInt32Ty(Ctx), NumCounters, \
91 ConstantInt::get(llvm::Type::getInt32Ty(Ctx), NumCounters)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ProfileData/
InstrProfData.inc 73 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), NameRef, \
74 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
76 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \
77 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
79 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt64PtrTy(Ctx), CounterPtr, \
81 llvm::Type::getInt64PtrTy(Ctx)))
86 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt8PtrTy(Ctx), FunctionPointer, \
88 INSTR_PROF_DATA(IntPtrT, llvm::Type::getInt8PtrTy(Ctx), Values, \
90 INSTR_PROF_DATA(const uint32_t, llvm::Type::getInt32Ty(Ctx), NumCounters, \
91 ConstantInt::get(llvm::Type::getInt32Ty(Ctx), NumCounters)
    [all...]

Completed in 998 milliseconds

1 2 3 45 6 7 8 91011>>