/external/llvm/test/CodeGen/X86/ |
visibility.ll | 3 @zed = external hidden constant i32 5 define hidden void @foo() nounwind { 11 declare hidden void @bar(i32*) 13 ;CHECK: .hidden zed 14 ;CHECK: .hidden bar
|
hidden-vis.ll | 4 @a = hidden global i32 0 7 define weak hidden void @t1() nounwind { 8 ; LINUX: .hidden t1 18 ; LINUX: .hidden a
|
/external/bluetooth/glib/glib/ |
galias.h | 14 extern __typeof (g_array_append_vals) IA__g_array_append_vals __attribute((visibility("hidden"))); 17 extern __typeof (g_array_free) IA__g_array_free __attribute((visibility("hidden"))); 20 extern __typeof (g_array_insert_vals) IA__g_array_insert_vals __attribute((visibility("hidden"))); 23 extern __typeof (g_array_new) IA__g_array_new __attribute((visibility("hidden"))); 26 extern __typeof (g_array_prepend_vals) IA__g_array_prepend_vals __attribute((visibility("hidden"))); 29 extern __typeof (g_array_remove_index) IA__g_array_remove_index __attribute((visibility("hidden"))); 32 extern __typeof (g_array_remove_index_fast) IA__g_array_remove_index_fast __attribute((visibility("hidden"))); 35 extern __typeof (g_array_remove_range) IA__g_array_remove_range __attribute((visibility("hidden"))); 38 extern __typeof (g_array_set_size) IA__g_array_set_size __attribute((visibility("hidden"))); 41 extern __typeof (g_array_sized_new) IA__g_array_sized_new __attribute((visibility("hidden"))); [all...] |
/external/llvm/test/FrontendC/ |
hidden-visibility.c | 1 // RUN: %llvmgcc %s -S -o - | grep {hidden unnamed_addr global} 3 int X __attribute__ ((__visibility__ ("hidden"))) = 123;
|
/external/clang/test/CodeGenCXX/ |
visibility.cpp | 2 // RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -fvisibility hidden -emit-llvm -o - | FileCheck %s -check-prefix=CHECK-HIDDEN 4 #define HIDDEN __attribute__((visibility("hidden"))) 8 // CHECK: @_ZN5Test425VariableInHiddenNamespaceE = hidden global i32 10 9 // CHECK: @_ZN5Test71aE = hidden global 12 // CHECK-HIDDEN: @test9_var = global 13 // CHECK: @_ZN6Test121A6hiddenE = external hidden global 15 // CHECK-HIDDEN: @_ZN6Test121A6hiddenE = external hidden globa 199 A::hidden = 0; member in class:Test12::A [all...] |
pragma-visibility.cpp | 3 #pragma GCC visibility push(hidden) 9 // CHECK: @_ZN1x1yE = hidden global 11 #pragma GCC visibility push(hidden) 19 #pragma GCC visibility push(hidden) 27 #pragma GCC visibility push(hidden) 33 // CHECK: @_ZN2x4IiE1yE = hidden global i32 35 #pragma GCC visibility push(hidden) 39 // CHECK: define hidden i32 @g() 40 // CHECK: define linkonce_odr hidden i32 @_Z1fILi3EEiv() 42 #pragma GCC visibility push(hidden) [all...] |
rtti-visibility.cpp | 2 // RUN: %clang_cc1 %s -I%S -triple=x86_64-apple-darwin10 -fhidden-weak-vtables -emit-llvm -o %t.hidden 5 // RUN: FileCheck --check-prefix=CHECK-TEST2-HIDDEN %s < %t.hidden 10 // A is explicitly marked hidden, so all RTTI data should also be marked hidden. 11 // CHECK-TEST1: @_ZTSN5Test11AE = linkonce_odr hidden constant 12 // CHECK-TEST1: @_ZTIN5Test11AE = linkonce_odr hidden unnamed_addr constant 13 // CHECK-TEST1: @_ZTSPN5Test11AE = linkonce_odr hidden constant 14 // CHECK-TEST1: @_ZTIPN5Test11AE = linkonce_odr hidden unnamed_addr constant 15 struct __attribute__((visibility("hidden"))) A { } [all...] |
/external/clang/test/CodeGen/ |
pragma-visibility.c | 3 #pragma GCC visibility push(hidden) 5 // CHECK: @x = hidden global 10 // CHECK: @y = hidden global 12 #pragma GCC visibility push(hidden) 18 #pragma GCC visibility push(hidden) 20 // CHECK: define hidden void @f
|
private-extern-redef.c | 31 // CHECK: @J = hidden constant 32 // CHECK: @K = hidden constant 34 // CHECK: @M = hidden global 35 // CHECK: @O = hidden global 36 // CHECK: @I = external hidden 37 // CHECK: @N = common hidden global
|
visibility.c | 3 // RUN: %clang_cc1 %s -triple i386-unknown-unknown -fvisibility hidden -emit-llvm -o - | FileCheck %s -check-prefix=CHECK-HIDDEN 13 // CHECK-HIDDEN: @g_def = hidden global i32 0 14 // CHECK-HIDDEN: @g_com = common hidden global i32 0 15 // CHECK-HIDDEN: @g_ext = external global i32 16 // CHECK-HIDDEN: @g_deferred = internal global 22 // CHECK-DEFAULT: @test4 = hidden global i32 10 23 // CHECK-PROTECTED: @test4 = hidden global i32 1 [all...] |
/external/llvm/test/Linker/ |
available_externally_b.ll | 4 @foo = hidden unnamed_addr constant i32 0
|
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
SDL_x11video.h | 55 /* Hidden "this" pointer for the video functions */ 169 #define local_X11 (this->hidden->local_X11) 170 #define SDL_Display (this->hidden->X11_Display) 171 #define GFX_Display (this->hidden->GFX_Display) 172 #define SDL_Screen DefaultScreen(this->hidden->X11_Display) 173 #define SDL_Visual (this->hidden->vis) 175 #define WMwindow (this->hidden->WMwindow) 176 #define FSwindow (this->hidden->FSwindow) 177 #define SDL_Window (this->hidden->SDL_Window) 178 #define WM_DELETE_WINDOW (this->hidden->WM_DELETE_WINDOW [all...] |
/external/clang/test/CodeGenObjC/ |
hidden.m | 3 __attribute__((visibility("hidden"))) 4 @interface Hidden 8 @implementation Hidden
|
hidden-visibility.m | 1 // RUN: %clang_cc1 -fvisibility hidden -fobjc-nonfragile-abi -emit-llvm -o - %s | FileCheck %s 2 // CHECK: @"OBJC_IVAR_$_I.P" = hidden 3 // CHECK: @"OBJC_CLASS_$_I" = hidden 4 // CHECK: @"OBJC_METACLASS_$_I" = hidden 5 // CHECK: @"\01l_OBJC_PROTOCOL_$_Prot0" = weak hidden
|
/external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/ |
SDL_gsvideo.h | 36 /* Hidden "this" pointer for the video functions */ 71 #define console_fd (this->hidden->console_fd) 72 #define memory_fd (this->hidden->memory_fd) 73 #define saved_vinfo (this->hidden->saved_vinfo) 74 #define current_vt (this->hidden->current_vt) 75 #define saved_vt (this->hidden->saved_vt) 76 #define keyboard_fd (this->hidden->keyboard_fd) 77 #define saved_kbd_mode (this->hidden->saved_kbd_mode) 78 #define saved_kbd_termios (this->hidden->saved_kbd_termios) 79 #define mouse_fd (this->hidden->mouse_fd [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/gem/ |
SDL_gemvideo.h | 35 /* Hidden "this" pointer for the video functions */ 97 /* Hidden structure -> variables names */ 98 #define VDI_handle (this->hidden->vdi_handle) 99 #define VDI_w (this->hidden->full_w) 100 #define VDI_h (this->hidden->full_h) 101 #define VDI_bpp (this->hidden->bpp) 102 #define VDI_pixelsize (this->hidden->pixelsize) 103 #define VDI_oldnumcolors (this->hidden->old_numcolors) 104 #define VDI_oldpalette (this->hidden->old_palette) 105 #define VDI_curpalette (this->hidden->cur_palette [all...] |
/external/qemu/distrib/sdl-1.2.12/src/audio/nas/ |
SDL_nasaudio.c | 65 SDL_free(device->hidden); 77 this->hidden = (struct SDL_PrivateAudioData *) 78 SDL_malloc((sizeof *this->hidden)); 80 if ( (this == NULL) || (this->hidden == NULL) ) { 87 SDL_memset(this->hidden, 0, (sizeof *this->hidden)); 109 while ( this->hidden->buf_free < this->hidden->mixlen ) { 111 AuNextEvent(this->hidden->aud, AuTrue, &ev); 112 AuDispatchEvent(this->hidden->aud, &ev) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/photon/ |
SDL_ph_video.h | 46 /* Hidden "this" pointer for the video functions */ 128 #define mode_settings (this->hidden->mode_settings) 129 #define window (this->hidden->Window) 130 #define SDL_Image (this->hidden->image) 131 #define OCImage (this->hidden->ocimage) 132 #define old_video_mode (this->hidden->old_video_mode) 133 #define old_refresh_rate (this->hidden->old_refresh_rate) 134 #define graphics_card_caps (this->hidden->graphics_card_caps) 135 #define desktopbpp (this->hidden->desktopbpp) 136 #define visualbpp (this->hidden->visualbpp [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/nanox/ |
SDL_nxvideo.h | 41 // Hidden "this" pointer for the video functions 76 #define SDL_Window (this -> hidden -> SDL_Window) 77 #define FSwindow (this -> hidden -> FSwindow) 78 #define SDL_windowid (this -> hidden -> SDL_windowid) 79 #define SDL_GC (this -> hidden -> GC) 80 #define SDL_Image (this -> hidden -> Image) 81 #define Image_buff (this -> hidden -> Image_buff) 82 #define Clientfb (this -> hidden -> Clientfb) 83 #define SDL_Visual (this -> hidden -> SDL_Visual) 84 #define SDL_modelist (this -> hidden -> modelist [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/directfb/ |
SDL_DirectFB_video.c | 97 SDL_free(device->hidden); 110 device->hidden = (struct SDL_PrivateVideoData *) malloc (sizeof (*device->hidden)); 112 if (device == NULL || device->hidden == NULL) 121 SDL_memset (device->hidden, 0, sizeof (*device->hidden)); 192 HIDDEN->nummodes++; 385 HIDDEN->c2layer = NULL, HIDDEN->c2frame = NULL; 386 HIDDEN->enable_mga_crtc2 = 0 [all...] |
/external/llvm/autoconf/m4/ |
visibility_inlines_hidden.m4 | 2 # Determine if the compiler accepts -fvisibility-inlines-hidden 7 [AC_CACHE_CHECK([for compiler -fvisibility-inlines-hidden option], 11 CXXFLAGS="$CXXFLAGS -fvisibility-inlines-hidden"
|
/external/qemu/distrib/sdl-1.2.12/src/video/aalib/ |
SDL_aavideo.h | 33 /* Hidden "this" pointer for the video functions */ 52 #define SDL_modelist (this->hidden->SDL_modelist) 53 #define AA_context (this->hidden->context) 54 #define AA_palette (this->hidden->palette) 55 #define AA_rparams (this->hidden->rparams) 56 #define AA_buffer (this->hidden->buffer) 58 #define AA_x_ratio (this->hidden->x_ratio) 59 #define AA_y_ratio (this->hidden->y_ratio) 61 #define AA_mutex (this->hidden->mutex) 62 #define AA_in_x11 (this->hidden->in_x11 [all...] |
/external/clang/test/Parser/ |
pragma-visibility2.c | 6 #pragma GCC visibility push(hidden) 9 // CHECK: @v1 = common hidden global i32 0, align 4 16 _Pragma("GCC visibility push(hidden)"); 19 // CHECK: @v3 = common hidden global i32 0, align 4
|
/external/llvm/test/CodeGen/ARM/ |
hidden-vis.ll | 4 @a = hidden global i32 0 7 define weak hidden void @t1() nounwind { 8 ; LINUX: .hidden t1 18 ; LINUX: .hidden a
|
/external/qemu/distrib/sdl-1.2.12/src/audio/windx5/ |
SDL_dx5audio.h | 31 /* Hidden "this" pointer for the video functions */ 46 #define sound (this->hidden->sound) 47 #define mixbuf (this->hidden->mixbuf) 48 #define NUM_BUFFERS (this->hidden->NUM_BUFFERS) 49 #define mixlen (this->hidden->mixlen) 50 #define silence (this->hidden->silence) 51 #define lastchunk (this->hidden->lastchunk) 52 #define locked_buf (this->hidden->locked_buf) 53 #define audio_event (this->hidden->audio_event)
|