HomeSort by relevance Sort by last modified time
    Searched defs:GlobalContext (Results 1 - 6 of 6) sorted by null

  /frameworks/compile/libbcc/lib/
BCCContext.cpp 27 static BCCContext *GlobalContext = nullptr;
30 if (GlobalContext == nullptr) {
31 GlobalContext = new (std::nothrow) BCCContext();
32 if (GlobalContext == nullptr) {
36 return GlobalContext;
40 delete GlobalContext;
41 GlobalContext = nullptr;
48 if (this == GlobalContext) {
50 // Reset the GlobalContext.
51 GlobalContext = nullptr
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
LLVMContext.cpp 25 static ManagedStatic<LLVMContext> GlobalContext;
28 return *GlobalContext;
  /external/swiftshader/third_party/subzero/src/
IceGlobalContext.cpp 140 ValueType *getOrAdd(GlobalContext *Ctx, KeyType Key) {
185 ConstantUndef *getOrAdd(GlobalContext *Ctx, Type Ty) {
218 void GlobalContext::waitForWorkerThreads() {
249 void GlobalContext::CodeStats::dump(const Cfg *Func, GlobalContext *Ctx) {
296 static constexpr size_t DefaultOptQWakeupSize = GlobalContext::MaxOptQSize >> 1;
300 GlobalContext::GlobalContext(Ostream *OsDump, Ostream *OsEmit, Ostream *OsError,
315 assert(OsDump && "OsDump is not defined for GlobalContext");
316 assert(OsEmit && "OsEmit is not defined for GlobalContext");
    [all...]
IceGlobalContext.h 74 class GlobalContext {
75 GlobalContext() = delete;
76 GlobalContext(const GlobalContext &) = delete;
77 GlobalContext &operator=(const GlobalContext &) = delete;
112 void dump(const Cfg *Func, GlobalContext *Ctx);
167 GlobalContext(Ostream *OsDump, Ostream *OsEmit, Ostream *OsError,
169 ~GlobalContext();
280 /// during GlobalContext destruction in the reverse object creation order
    [all...]
  /external/llvm/bindings/go/llvm/
ir.go 352 func GlobalContext() Context { return Context{C.LLVMGetGlobalContext()} }
    [all...]
  /external/llvm/lib/IR/
Core.cpp 77 static ManagedStatic<LLVMContext> GlobalContext;
83 LLVMContextRef LLVMGetGlobalContext() { return wrap(&*GlobalContext); }
215 return wrap(new Module(ModuleID, *GlobalContext));
    [all...]

Completed in 106 milliseconds