Searched refs:global (Results 1 - 25 of 877) sorted by relevance

1234567891011>>

/external/llvm/test/MC/COFF/
H A Dlset0.s5 global = 456 define
6 .globl global
10 // GLOBAL: A global
H A Dsection-comdat-conflict.s6 .global bar
11 .global foo
/external/clang/test/CodeGen/
H A D2009-10-20-GlobalDebug.c3 int global; variable
13 // CHECK: !DIGlobalVariable(name: "global"
16 // CHECK-SAME: variable: i32* @global
H A Dasan-globals.cpp2 // RUN: echo "global:*blacklisted_global*" > %t.blacklist
8 int global; variable
9 int dyn_init_global = global;
20 // CHECK: ![[GLOBAL]] = !{{{.*}} ![[GLOBAL_LOC:[0-9]+]], !"global", i1 false, i1 false}
/external/compiler-rt/test/sanitizer_common/TestCases/Darwin/
H A Dabort_on_error.cc12 int global; variable
17 global = a[0]; // use-after-free: triggers ASan report.
/external/clang/test/SemaCXX/
H A Dwarn-address.cpp6 int global; variable
13 if (&global) {} // expected-warning{{always evaluate to 'true'}}
17 if (&global == 0) {} // expected-warning{{always false}}
/external/clang/test/CodeGenCXX/
H A Dstatic-destructor.cpp16 Foo global; variable
20 // X86: call i32 @__cxa_atexit(void (i8*)* bitcast (void (%class.Foo*)* @_ZN3FooD1Ev to void (i8*)*), i8* getelementptr inbounds (%class.Foo, %class.Foo* @global, i32 0, i32 0), i8* @__dso_handle)
25 // ARM: call i32 @__cxa_atexit(void (i8*)* bitcast (%class.Foo* (%class.Foo*)* @_ZN3FooD1Ev to void (i8*)*), i8* getelementptr inbounds (%class.Foo, %class.Foo* @global, i32 0, i32 0), i8* @__dso_handle)
33 // WASM: %call = call %class.Foo* @_ZN3FooD1Ev(%class.Foo* @global)
/external/llvm/test/MC/X86/
H A Drelax-insn.s4 .global foo
H A Dfixup-cpu-mode.s5 .global edata
/external/iproute2/etc/iproute2/
H A Drt_scopes4 0 global
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/Inputs/
H A DELF_STT_FILE_GLOBAL.s1 .global foo.c
H A DELF_STT_FILE_FILE.s2 .global bar.c
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwifi_display.h13 int wifi_display_init(struct wpa_global *global);
14 void wifi_display_deinit(struct wpa_global *global);
15 void wifi_display_enable(struct wpa_global *global, int enabled);
16 struct wpabuf *wifi_display_get_wfd_ie(struct wpa_global *global);
17 int wifi_display_subelem_set(struct wpa_global *global, char *cmd);
18 int wifi_display_subelem_set_from_ies(struct wpa_global *global,
20 int wifi_display_subelem_get(struct wpa_global *global, char *cmd,
H A Dmain_none.c19 struct wpa_global *global; local
24 global = wpa_supplicant_init(&params);
25 if (global == NULL)
31 if (wpa_supplicant_add_iface(global, &iface, NULL) == NULL)
35 exitcode = wpa_supplicant_run(global);
37 wpa_supplicant_deinit(global);
H A Dwifi_display.c22 int wifi_display_init(struct wpa_global *global) argument
24 global->wifi_display = 1;
29 void wifi_display_deinit(struct wpa_global *global) argument
33 wpabuf_free(global->wfd_subelem[i]);
34 global->wfd_subelem[i] = NULL;
39 struct wpabuf * wifi_display_get_wfd_ie(struct wpa_global *global) argument
45 if (global->p2p == NULL)
50 if (global->wfd_subelem[i])
51 len += wpabuf_len(global->wfd_subelem[i]);
59 if (global
67 wifi_display_update_wfd_ie(struct wpa_global *global) argument
216 wifi_display_enable(struct wpa_global *global, int enabled) argument
225 wifi_display_subelem_set(struct wpa_global *global, char *cmd) argument
285 wifi_display_subelem_set_from_ies(struct wpa_global *global, struct wpabuf *ie) argument
339 wifi_display_subelem_get(struct wpa_global *global, char *cmd, char *buf, size_t buflen) argument
[all...]
/external/iproute2/ip/
H A Droutef4 exec ip -4 ro flush scope global type unicast
/external/libunwind/src/aarch64/
H A Dsiglongjmp.S3 .global _UI_siglongjmp_cont
4 .global _UI_longjmp_cont
/external/libcxx/test/std/thread/thread.mutex/thread.once/thread.once.callonce/
H A Drace.pass.cpp28 long global = 0; variable
32 ++global;
38 assert(global == 1);
47 assert(global == 1);
/external/llvm/test/MC/ARM/
H A Dfixup-cpu-mode.s6 .global edata
/external/protobuf/js/commonjs/
H A Dexport_asserts.js11 var global = Function('return this')();
13 // All of the closure "assert" functions are exported at the global level.
26 for (var key in global) {
27 if ((typeof key == "string") && global.hasOwnProperty(key) &&
29 exports[key] = global[key];
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DLocalAndGlobalData.java20 * This is a special implementation of ChainedData to be used for holding the local and global Data
21 * objects (like local and global HDFs in Clearsilver). It prevents writes and modifications to the
22 * global Data object and applies them all to the local data object.
30 * global-scoped HDF that can be read from the template renderer. Part of the backwards
34 * @param global application global HDF data that should be read but not written to from the
37 public LocalAndGlobalData(Data local, Data global) { argument
38 this(local, global, false);
43 * global-scoped HDF that can be read from the template renderer. Part of the backwards
44 * compatibility with JNI Clearsilver and its globalHdf support. We wrap the global HD
56 LocalAndGlobalData(Data local, Data global, boolean allowGlobalDataModification) argument
61 prepareGlobal(Data global, boolean allowGlobalDataModification) argument
[all...]
/external/compiler-rt/test/BlocksRuntime/
H A Dglobalexpression.c12 int global; variable
14 void (^gblock)(int) = ^(int x){ global = x; };
18 if (global != 1) {
19 printf("%s: *** did not set global to 1\n", argv[0]);
24 printf("global copy %p not a no-op %p\n", (void *)gblockcopy, (void *)gblock);
29 if (global != 3) {
30 printf("%s: *** did not set global to 3\n", argv[0]);
35 if (global != 5) {
36 printf("%s: *** did not set global to 5\n", argv[0]);
/external/clang/test/FixIt/
H A Dtypo-crash.cpp22 T global(); // expected-note {{'::PR12297::global' declared here}}
29 T A::global(); // expected-error {{out-of-line declaration of 'global' does not match any declaration in namespace 'PR12297::A'; did you mean '::PR12297::global'?}}
/external/compiler-rt/test/asan/TestCases/
H A Ddescribe_address.cc5 int global; variable
15 __asan_describe_address(&global);
16 // CHECK: {{.*}} is located 0 bytes inside of global variable 'global'
/external/llvm/test/MC/ELF/
H A Difunc-reloc.s2 .global sym
5 .global alias

Completed in 749 milliseconds

1234567891011>>