HomeSort by relevance Sort by last modified time
    Searched refs:Globals (Results 1 - 25 of 31) sorted by null

1 2

  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
Globals.java 18 public final class Globals {
19 private Globals() {}
  /external/clang/test/CodeGen/
2003-06-26-CFECrash.c 8 typedef struct Globals {
  /external/llvm/lib/CodeGen/
GlobalMerge.cpp 1 //===-- GlobalMerge.cpp - Internal globals merging -----------------------===//
9 // This pass merges globals with internal linkage into one. This way all the
10 // globals which were merged into a biggest one can be addressed using offsets
13 // when many globals are involved.
53 // However, merging globals can have tradeoffs:
101 cl::desc("Improve global merge pass to ignore globals only used alone"),
115 STATISTIC(NumMerged, "Number of globals merged");
126 /// Currently, this applies a dead simple heuristic: only consider globals
134 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
136 /// \brief Merge everything in \p Globals for which the corresponding bi
    [all...]
  /external/llvm/lib/Transforms/IPO/
LowerBitSets.cpp 247 ArrayRef<GlobalVariable *> Globals);
256 ArrayRef<GlobalObject *> Globals);
345 // Create globals to stand in for byte arrays and masks. These never actually
527 /// Given a disjoint set of bitsets and globals, layout the globals, build the
530 ArrayRef<Metadata *> BitSets, ArrayRef<GlobalVariable *> Globals) {
531 // Build a new global with the combined contents of the referenced globals.
533 // contents of the referenced globals and whose odd-indexed elements contain
537 for (GlobalVariable *G : Globals) {
562 // Compute the offsets of the original globals within the new global
    [all...]
GlobalOpt.cpp 11 // taken. If obviously true, it marks read/write globals as constant, deletes
52 STATISTIC(NumMarked , "Number of globals marked constant");
53 STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
54 STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
56 STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
57 STATISTIC(NumDeleted , "Number of globals deleted");
60 STATISTIC(NumLocalized , "Number of globals localized");
193 // memory pointed to by globals at exit. This is popular because it also
195 // before other threads that are still expecting to use those globals. To
484 Module::GlobalListType &Globals = GV->getParent()->getGlobalList()
    [all...]
  /external/llvm/tools/llvm-pdbdump/
llvm-pdbdump.h 19 extern llvm::cl::opt<bool> Globals;
llvm-pdbdump.cpp 74 cl::opt<bool> Globals("globals", cl::desc("Dump global symbols"),
488 if (opts::Globals) {
490 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---GLOBALS---";
544 opts::Globals = true;
  /external/llvm/lib/IR/
Android.mk 25 Globals.cpp \
  /packages/apps/ManagedProvisioning/tests/src/com/android/managedprovisioning/uiflows/
EncryptionControllerTest.java 41 import com.android.managedprovisioning.common.Globals;
99 assertEquals(Globals.ACTION_RESUME_PROVISIONING, intent.getAction());
116 assertEquals(Globals.ACTION_RESUME_PROVISIONING, intent.getAction());
PreProvisioningControllerTest.java 22 import static com.android.managedprovisioning.common.Globals.ACTION_RESUME_PROVISIONING;
  /external/nanopb-c/generator/
nanopb_generator.py     [all...]
  /packages/apps/ManagedProvisioning/tests/src/com/android/managedprovisioning/parser/
ExtrasProvisioningDataParserTest.java 65 import com.android.managedprovisioning.common.Globals;
191 Intent intent = new Intent(Globals.ACTION_RESUME_PROVISIONING)
MessageParserTest.java 34 import static com.android.managedprovisioning.common.Globals.ACTION_RESUME_PROVISIONING;
  /frameworks/base/core/java/android/app/
WallpaperManager.java 267 static class Globals extends IWallpaperManagerCallback.Stub {
273 Globals(Looper looper) {
381 private static Globals sGlobals;
386 sGlobals = new Globals(looper);
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/parser/
MessageParser.java 45 import static com.android.managedprovisioning.common.Globals.ACTION_RESUME_PROVISIONING;
ExtrasProvisioningDataParser.java 50 import static com.android.managedprovisioning.common.Globals.ACTION_RESUME_PROVISIONING;
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/uiflows/
PreProvisioningController.java 22 import static com.android.managedprovisioning.common.Globals.ACTION_RESUME_PROVISIONING;
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 70 DenseSet<const GlobalVariable *> &Globals) {
72 Globals.insert(GV);
76 DiscoverDependentGlobals(U->getOperand(i), Globals);
861 // As ptxas does not support forward references of globals, we need to first
862 // sort the list of module-level globals in def-use order. We visit each
864 // globals. We use a little extra memory maintaining both a set and a list to
866 SmallVector<const GlobalVariable *, 8> Globals;
871 for (const GlobalVariable &I : M.globals())
872 VisitGlobalVariableForEmission(&I, Globals, GVVisited, GVVisiting);
879 for (unsigned i = 0, e = Globals.size(); i != e; ++i
    [all...]
  /external/libvpx/libvpx/build/make/
gen_msvs_proj.sh 470 tag Globals
  /external/mdnsresponder/mDNSPosix/
Responder.c 45 #pragma mark ***** Globals
48 static mDNS mDNSStorage; // mDNS core uses this to store its globals
49 static mDNS_PlatformSupport PlatformStorage; // Stores this platform's globals
73 // if a signal arrives after we test the globals its sets but before we call
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
gen_msvs_proj.sh 571 tag Globals
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 159 // This flag may need to be replaced with -f[no]asan-globals.
160 static cl::opt<bool> ClGlobals("asan-globals",
207 static cl::opt<bool> ClOptGlobals("asan-opt-globals",
208 cl::desc("Don't instrument scalar globals"),
291 NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals");
292 if (!Globals) return;
293 for (auto MDN : Globals->operands()) {
400 // Redzone used for stack and globals is at least 32 bytes.
    [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 37 /// Holds all the vbtable globals for a given class.
40 SmallVector<llvm::GlobalVariable *, 2> Globals;
    [all...]
  /external/mdnsresponder/mDNSShared/
DebugServices.c 166 #pragma mark == Globals ==
170 // Private Globals
    [all...]

Completed in 808 milliseconds

1 2