/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 ]
|
/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
|
elfabssect.asm | 10 ;global teststruc 11 global teststruc.testlabel label 12 global teststruc_size label
|
elfglobext.asm | 3 [global hashlookup:function] 4 [global hashtable2:data] 5 [global hashtable:data (hashtable.end-hashtable)]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/ |
rdfabs.asm | 6 global label label 7 global label2 label
|
/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");
|
/sdk/emulator/qtools/tests/gtrace/ |
test.c | 12 int global; variable 22 if (global++ > 0) 23 global++; 26 if (global++ > 0) 27 global++; 30 if (global++ > 0) 31 global++; 34 if (global++ > 0) 35 global++; 38 if (global++ > 0 [all...] |
/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(¶ms); 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 | 19 int wifi_display_init(struct wpa_global *global) 21 global->wifi_display = 1; 26 void wifi_display_deinit(struct wpa_global *global) 30 wpabuf_free(global->wfd_subelem[i]); 31 global->wfd_subelem[i] = NULL; 36 static int wifi_display_update_wfd_ie(struct wpa_global *global) 43 if (!global->wifi_display) { 46 p2p_set_wfd_ie_beacon(global->p2p, NULL); 47 p2p_set_wfd_ie_probe_req(global->p2p, NULL); 48 p2p_set_wfd_ie_probe_resp(global->p2p, NULL) [all...] |
/external/iproute2/ip/ |
routef | 4 exec ip -4 ro flush scope global type unicast
|
/dalvik/vm/compiler/template/ia32/ |
footer.S | 10 .global dvmCompilerTemplateEnd
|
/dalvik/vm/mterp/out/ |
InterpAsm-allstubs.S | 8 .global dvmAsmInstructionStart 17 .global dvmAsmInstructionEnd 25 .global dvmAsmSisterStart 32 .global dvmAsmSisterEnd
|
/external/chromium_org/third_party/WebKit/Source/heap/asm/ |
SaveRegisters_mips.S | 38 .global pushAllRegisters
|
/ndk/tests/build/build-assembly-file/jni/ |
assembly1.s | 1 .global foo
|
assembly2.S | 1 .global bar
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
LocalAndGlobalData.java | 20 * 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) { 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 HDF in a [all...] |
/external/compiler-rt/BlocksRuntime/tests/ |
globalexpression.c | 12 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]);
|