Searched defs:Global (Results 1 - 25 of 58) sorted by last modified time

123

/external/valgrind/main/exp-sgcheck/
H A Dsg_main.c836 } Global; member in union:__anon32804::__anon32805
861 VG_(printf)("Global [%#lx,+%lu)",
862 i->Inv.Global.nd->addr, i->Inv.Global.nd->szB);
885 return i1->Inv.Global.nd == i2->Inv.Global.nd;
921 block = inv->Inv.Global.nd->addr;
922 szB = inv->Inv.Global.nd->szB;
970 str, inv->Inv.Global.nd->descr->name,
971 inv->Inv.Global
[all...]
/external/skia/experimental/SkV8Example/
H A DGlobal.h28 class Global : SkNoncopyable { class in inherits:SkNoncopyable
30 Global(Isolate* isolate) function in class:Global
38 virtual ~Global() {}
40 // The script will be parsed into the context this Global contains.
76 static Global* gGlobal;
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp753 bool Global = Flags & SymbolRef::SF_Global; local
763 GlobLoc = Global ? 'g' : 'l';
776 << GlobLoc // Local -> 'l', Global -> 'g', Neither -> ' '
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTest.cpp51 GlobalValue *Global = insertGlobalInt32(M.get(), "test_global", initialValue); local
53 void *globalPtr = TheJIT->getPointerToGlobal(Global);
H A DMCJITTestBase.h134 GlobalVariable *Global = new GlobalVariable(*M, local
140 return Global;
/external/llvm/unittests/IR/
H A DConstantsTest.cpp174 Constant *Global = M->getOrInsertGlobal("dummy", local
179 Constant *P0 = ConstantExpr::getPtrToInt(Global, Int32Ty);
248 //CHECK(ConstantExpr::getGetElementPtr(Global, V, false),
250 CHECK(ConstantExpr::getInBoundsGetElementPtr(Global, V),
265 Constant *Global = local
267 Constant *GEP = ConstantExpr::getGetElementPtr(Global, One);
268 EXPECT_DEATH(Global->replaceAllUsesWith(GEP),
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c867 CAMLprim value llvm_is_declaration(LLVMValueRef Global) { argument
868 return Val_bool(LLVMIsDeclaration(Global));
872 CAMLprim value llvm_linkage(LLVMValueRef Global) { argument
873 return Val_int(LLVMGetLinkage(Global));
877 CAMLprim value llvm_set_linkage(value Linkage, LLVMValueRef Global) { argument
878 LLVMSetLinkage(Global, Int_val(Linkage));
883 CAMLprim value llvm_section(LLVMValueRef Global) { argument
884 return copy_string(LLVMGetSection(Global));
888 CAMLprim value llvm_set_section(value Section, LLVMValueRef Global) { argument
889 LLVMSetSection(Global, String_va
894 llvm_visibility(LLVMValueRef Global) argument
899 llvm_set_visibility(value Viz, LLVMValueRef Global) argument
905 llvm_alignment(LLVMValueRef Global) argument
910 llvm_set_alignment(value Bytes, LLVMValueRef Global) argument
[all...]
/external/llvm/include/llvm/Object/
H A DELFYAML.h70 std::vector<Symbol> Global; member in struct:llvm::ELFYAML::LocalGlobalWeakSymbols
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp329 void LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, argument
331 unwrap(EE)->addGlobalMapping(unwrap<GlobalValue>(Global), Addr);
334 void *LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) { argument
337 return unwrap(EE)->getPointerToGlobal(unwrap<GlobalValue>(Global));
/external/llvm/lib/IR/
H A DCore.cpp1197 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) { argument
1198 return wrap(unwrap<GlobalValue>(Global)->getParent());
1201 LLVMBool LLVMIsDeclaration(LLVMValueRef Global) { argument
1202 return unwrap<GlobalValue>(Global)->isDeclaration();
1205 LLVMLinkage LLVMGetLinkage(LLVMValueRef Global) { argument
1206 switch (unwrap<GlobalValue>(Global)->getLinkage()) {
1234 void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage) { argument
1235 GlobalValue *GV = unwrap<GlobalValue>(Global);
1296 const char *LLVMGetSection(LLVMValueRef Global) { argument
1297 return unwrap<GlobalValue>(Global)
1300 LLVMSetSection(LLVMValueRef Global, const char *Section) argument
1304 LLVMGetVisibility(LLVMValueRef Global) argument
1309 LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz) argument
1314 LLVMGetDLLStorageClass(LLVMValueRef Global) argument
1319 LLVMSetDLLStorageClass(LLVMValueRef Global, LLVMDLLStorageClass Class) argument
1324 LLVMHasUnnamedAddr(LLVMValueRef Global) argument
1328 LLVMSetUnnamedAddr(LLVMValueRef Global, LLVMBool HasUnnamedAddr) argument
[all...]
/external/llvm/lib/Object/
H A DRecordStreamer.h18 enum State { NeverSeen, Global, Defined, DefinedGlobal, Used }; enumerator in enum:llvm::RecordStreamer::State
/external/libvorbis/doc/
H A D01-introduction.tex146 \subsubsection{Global Config}
147 Global codec configuration consists of a few audio related fields
/external/compiler-rt/lib/asan/
H A Dasan_globals.cc29 typedef __asan_global Global; typedef in namespace:__asan
32 const Global *g;
42 Global g;
52 Global *g_first, *g_last;
57 ALWAYS_INLINE void PoisonShadowForGlobal(const Global *g, u8 value) {
61 ALWAYS_INLINE void PoisonRedZones(const Global &g) {
74 static void ReportGlobal(const Global &g, const char *prefix) {
75 Report("%s Global[%p]: beg=%p size=%zu/%zu name=%s module=%s dyn_init=%zu\n",
85 const Global &g = *l->g;
93 u32 FindRegistrationSite(const Global *
[all...]
/external/compiler-rt/test/BlocksRuntime/
H A Dnestedimport.c21 int Global = 0; variable
32 callVoidVoid(^{ Global = i; });
38 if (Global != 1) {
39 printf("%s: error, Global not set to captured value\n", argv[0]);
H A Dvoidarg.c20 int Global; variable
22 void (^globalBlock)() = ^{ ++Global; }; // should be void (^gb)(void) = ...
/external/compiler-rt/test/tsan/
H A Daligned_vs_unaligned_race.cc10 uint64_t Global[2]; variable
13 Global[1]++;
18 char *p1 = reinterpret_cast<char *>(&Global[0]);
H A Datomic_stack.cc5 int Global; variable
9 __atomic_fetch_add(&Global, 1, __ATOMIC_RELAXED);
14 Global++;
H A Dbenign_race.cc6 int Global; variable
19 Global = 42;
26 &Global, sizeof(Global), "Race on Global");
33 Global = 43;
H A Dblacklist.cc8 int Global; variable
11 Global++;
16 Global--;
H A Dblacklist2.cc12 int Global; variable
19 Global++;
26 Global--;
35 Global--;
H A Ddefault_options.cc9 int Global; variable
12 Global = 42;
17 Global = 43;
H A Dignore_race.cc6 int Global; variable
16 Global = 42;
26 Global = 43;
H A Dignore_sync.cc8 int Global; variable
14 Global++;
24 Global++;

Completed in 4026 milliseconds

123