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

  /ndk/sources/android/crazy_linker/src/
crazy_linker_globals.cpp 15 Globals* g_globals = NULL;
18 void CreateGlobalsInstance() { g_globals = new Globals(); }
22 Globals::Globals() : search_paths_(), rdebug_() {
27 Globals::~Globals() { pthread_mutex_destroy(&lock_); }
29 Globals* Globals::Get() {
crazy_linker_globals.h 15 // All crazy linker globals are declared in this header.
19 class Globals {
21 Globals();
22 ~Globals();
28 static Globals* Get();
43 // Helper class to access the globals with scoped locking.
46 ScopedGlobalLock() { Globals::Get()->Lock(); }
48 ~ScopedGlobalLock() { Globals::Get()->Unlock(); }
  /external/clang/test/CodeGen/
2003-06-26-CFECrash.c 8 typedef struct Globals {
  /external/llvm/tools/llvm-pdbdump/
llvm-pdbdump.cpp 66 cl::opt<bool> Globals("globals", cl::desc("Dump global symbols"),
192 if (opts::Globals) {
194 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---GLOBALS---";
241 opts::Globals = true;
  /external/nanopb-c/generator/
nanopb_generator.py     [all...]
  /external/llvm/lib/Transforms/IPO/
LowerBitSets.cpp 223 const std::vector<GlobalVariable *> &Globals);
305 // Create globals to stand in for byte arrays and masks. These never actually
488 /// Given a disjoint set of bitsets and globals, layout the globals, build the
492 const std::vector<GlobalVariable *> &Globals) {
493 // Build a new global with the combined contents of the referenced globals.
496 for (GlobalVariable *G : Globals) {
522 // Compute the offsets of the original globals within the new global.
524 for (unsigned I = 0; I != Globals.size(); ++I)
526 GlobalLayout[Globals[I]] = CombinedGlobalLayout->getElementOffset(I * 2)
    [all...]
GlobalOpt.cpp 11 // taken. If obviously true, it marks read/write globals as constant, deletes
51 STATISTIC(NumMarked , "Number of globals marked constant");
52 STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
53 STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
55 STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
56 STATISTIC(NumDeleted , "Number of globals deleted");
59 STATISTIC(NumLocalized , "Number of globals localized");
188 // memory pointed to by globals at exit. This is popular because it also
190 // before other threads that are still expecting to use those globals. To
482 Module::GlobalListType &Globals = GV->getParent()->getGlobalList()
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 69 DenseSet<const GlobalVariable *> &Globals) {
71 Globals.insert(GV);
75 DiscoverDependentGlobals(U->getOperand(i), Globals);
863 // As ptxas does not support forward references of globals, we need to first
864 // sort the list of module-level globals in def-use order. We visit each
866 // globals. We use a little extra memory maintaining both a set and a list to
868 SmallVector<const GlobalVariable *, 8> Globals;
875 VisitGlobalVariableForEmission(I, Globals, GVVisited, GVVisiting);
882 for (unsigned i = 0, e = Globals.size(); i != e; ++i)
883 printModuleLevelGV(Globals[i], OS2)
    [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 229 static class Globals extends IWallpaperManagerCallback.Stub {
236 Globals(Looper looper) {
346 private static Globals sGlobals;
351 sGlobals = new Globals(looper);
    [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 36 /// Holds all the vbtable globals for a given class.
39 SmallVector<llvm::GlobalVariable *, 2> Globals;
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 149 // This flag may need to be replaced with -f[no]asan-globals.
150 static cl::opt<bool> ClGlobals("asan-globals",
197 static cl::opt<bool> ClOptGlobals("asan-opt-globals",
198 cl::desc("Don't instrument scalar globals"),
278 NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals");
279 if (!Globals) return;
280 for (auto MDN : Globals->operands()) {
380 // Redzone used for stack and globals is at least 32 bytes.
    [all...]

Completed in 490 milliseconds