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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/COFF/
lset0.s 4 global = 456 define
5 .globl global
10 // CHECK: global
section-comdat-conflict.s 6 .global bar
11 .global foo
  /ndk/tests/device/issue28598-linker-global-ref/jni/
liba.h 1 extern int global;
liba.cpp 3 int global = 0x42; variable
6 printf("global = 0x%x (%p)\n", global, &global);
main.cpp 3 int *global_ptr = &global; // Without this line, everything is fine
7 printf("global = 0x%x (%p)%s\n", global, &global, ((global != 0x42)? ", ERROR!!!":""));
8 return global != 0x42;
  /external/clang/test/CodeGen/
2009-10-20-GlobalDebug.c 3 int global; variable
10 // CHECK: metadata !{i32 {{.*}}, i32 0, null, metadata !"global", metadata !"global", metadata !"", metadata !{{.*}}, i32 3, metadata !{{.*}}, i32 0, i32 1, i32* @global, null} ; [ DW_TAG_variable ]
asan-globals.cpp 1 // RUN: echo "global:*blacklisted_global*" > %t.blacklist
7 int global; variable
9 int dyn_init_global = global;
20 // CHECK: !llvm.asan.globals = !{![[GLOBAL:[0-9]+]], ![[DYN_INIT_GLOBAL:[0-9]+]], ![[BLACKLISTED_GLOBAL:[0-9]+]], ![[STATIC_VAR:[0-9]+]], ![[LITERAL:[0-9]+]]}
21 // CHECK: ![[GLOBAL]] = metadata !{{{.*}} [[GLOBAL_LOC]], i1 false, i1 false}
27 // BLACKLIST-SRC: !llvm.asan.globals = !{![[GLOBAL:[0-9]+]], ![[DYN_INIT_GLOBAL:[0-9]+]], ![[BLACKLISTED_GLOBAL:[0-9]+]], ![[STATIC_VAR:[0-9]+]], ![[LITERAL:[0-9]+]]}
28 // BLACKLIST-SRC: ![[GLOBAL]] = metadata !{{{.*}} null, i1 false, i1 true}
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elfglobext2.asm 0 global foo
1 global foo label
elfvisibility.asm 3 [global ghidden:hidden]
4 [global ginternal:internal]
5 [global gprotected:protected]
6 [global gtoomany:hidden internal]
elftypesize.asm 7 global a label
14 global b label
19 global d label
24 global e label
31 global g label
elfequabs.asm 0 global label
6 global absval label
1 global label label
  /external/clang/test/SemaCXX/
warn-address.cpp 6 int global; variable
13 if (&global) {} // expected-warning{{always evaluate to 'true'}}
17 if (&global == 0) {} // expected-warning{{always false}}
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
rdfabs.asm 6 global label label
7 global label2 label
  /external/llvm/test/MC/X86/
relax-insn.s 4 .global foo
  /external/iproute2/etc/iproute2/
rt_scopes 4 0 global
  /frameworks/base/tests/CoreTests/android/core/
MiscRegressionTest.java 29 Logger.global.severe("This has logging Level.SEVERE, should become ERROR");
30 Logger.global.warning("This has logging Level.WARNING, should become WARN");
31 Logger.global.info("This has logging Level.INFO, should become INFO");
32 Logger.global.config("This has logging Level.CONFIG, should become DEBUG");
33 Logger.global.fine("This has logging Level.FINE, should become VERBOSE");
34 Logger.global.finer("This has logging Level.FINER, should become VERBOSE");
35 Logger.global.finest("This has logging Level.FINEST, should become VERBOSE");
  /external/wpa_supplicant_8/wpa_supplicant/
wifi_display.h 13 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 int wifi_display_subelem_set(struct wpa_global *global, char *cmd);
17 int wifi_display_subelem_get(struct wpa_global *global, char *cmd,
main_none.c 19 struct wpa_global *global; local
24 global = wpa_supplicant_init(&params);
25 if (global == NULL)
31 if (wpa_supplicant_add_iface(global, &iface) == NULL)
35 exitcode = wpa_supplicant_run(global);
37 wpa_supplicant_deinit(global);
wifi_display.c 22 int wifi_display_init(struct wpa_global *global)
24 global->wifi_display = 1;
29 void wifi_display_deinit(struct wpa_global *global)
33 wpabuf_free(global->wfd_subelem[i]);
34 global->wfd_subelem[i] = NULL;
39 static int wifi_display_update_wfd_ie(struct wpa_global *global)
44 if (global->p2p == NULL)
49 if (!global->wifi_display) {
52 p2p_set_wfd_ie_beacon(global->p2p, NULL);
53 p2p_set_wfd_ie_probe_req(global->p2p, NULL)
    [all...]
  /external/iproute2/ip/
routef 4 exec ip -4 ro flush scope global type unicast
  /external/libunwind/src/aarch64/
siglongjmp.S 3 .global _UI_siglongjmp_cont
4 .global _UI_longjmp_cont
  /external/llvm/test/MC/ELF/
type.s 4 .global foo
8 .global bar
16 .global obj
21 .global func
26 .global ifunc
30 .global tls
36 .global tls_quoted
41 .global tls_upper_case
49 .global sym1
52 .global alias
    [all...]
  /external/lldb/test/functionalities/watchpoint/hello_watchpoint/
main.c 12 int32_t global = 10; // Watchpoint variable declaration. variable
18 printf("&global=%p\n", &global);
19 printf("about to write to 'global'...\n"); // Set break point at this line.
20 // When stopped, watch 'global' for write.
21 global = 20;
27 printf("global=%d\n", global);
  /external/lldb/test/functionalities/watchpoint/watchpoint_commands/command/
main.cpp 12 int32_t global = 0; // Watchpoint variable declaration. variable
21 printf("&global=%p\n", &global);
22 printf("about to write to 'global'...\n"); // Set break point at this line.
24 modify(global);
26 printf("global=%d\n", global);
  /external/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/
main.cpp 12 int32_t global = 0; // Watchpoint variable declaration. variable
20 printf("&global=%p\n", &global);
21 printf("about to write to 'global'...\n"); // Set break point at this line.
22 // When stopped, watch 'global',
23 // for the condition "global == 5".
25 modify(global);
27 printf("global=%d\n", global);

Completed in 908 milliseconds

1 2 3 4 5 6 7 8 91011>>