/bionic/libc/stdio/ |
glue.h | 1 /* $OpenBSD: glue.h,v 1.4 2004/01/11 21:39:51 millert Exp $ */ 37 * allocated and linked in via this glue structure. 39 struct glue { struct 40 struct glue *next; 45 extern struct glue __sglue;
|
/external/clang/test/Preprocessor/ |
c99-6_10_3_4_p6.c | 10 #define glue(a, b) a ## b macro 11 #define xglue(a, b) glue(a, b) 18 glue(HIGH, LOW);
|
/external/qemu/ |
dyngen-exec.h | 68 #define glue(x, y) xglue(x, y) macro
|
softmmu_header.h | 82 static inline RES_TYPE glue(glue(ld, USUFFIX), MEMSUFFIX)(target_ulong ptr) 95 res = glue(glue(__ld, SUFFIX), MMUSUFFIX)(addr, mmu_idx); 98 res = glue(glue(ld, USUFFIX), _raw)((uint8_t *)physaddr); 104 static inline int glue(glue(lds, SUFFIX), MEMSUFFIX)(target_ulong ptr) 116 res = (DATA_STYPE)glue(glue(__ld, SUFFIX), MMUSUFFIX)(addr, mmu_idx) 153 static inline float64 glue(ldfq, MEMSUFFIX)(target_ulong ptr) function 163 static inline void glue(stfq, MEMSUFFIX)(target_ulong ptr, float64 v) function 175 static inline float32 glue(ldfl, MEMSUFFIX)(target_ulong ptr) function 185 static inline void glue(stfl, MEMSUFFIX)(target_ulong ptr, float32 v) function [all...] |
elf_ops.h | 1 static void glue(bswap_ehdr, SZ)(struct elfhdr *ehdr) function 18 static void glue(bswap_phdr, SZ)(struct elf_phdr *phdr) function 30 static void glue(bswap_shdr, SZ)(struct elf_shdr *shdr) function 44 static void glue(bswap_sym, SZ)(struct elf_sym *sym) function 52 static struct elf_shdr *glue(find_section, SZ)(struct elf_shdr *shdr_table, function 63 static int glue(symfind, SZ)(const void *s0, const void *s1) function 76 static const char *glue(lookup_symbol, SZ)(struct syminfo *s, target_ulong orig_addr) function 78 struct elf_sym *syms = glue(s->disas_symtab.elf, SZ); 84 sym = bsearch(&key, syms, s->disas_num_syms, sizeof(*syms), glue(symfind, SZ)); 92 static int glue(symcmp, SZ)(const void *s0, const void *s1 function 101 static int glue(load_symbols, SZ)(struct elfhdr *ehdr, int fd, int must_swab) function 180 static int glue(load_elf, SZ)(int fd, int64_t address_offset, function [all...] |
osdep.h | 13 #ifndef glue 15 #define glue(x, y) xglue(x, y) macro
|
softmmu_template.h | 65 static DATA_TYPE glue(glue(slow_ld, SUFFIX), MMUSUFFIX)(target_ulong addr, 68 static inline DATA_TYPE glue(io_read, SUFFIX)(target_phys_addr_t physaddr, function 98 DATA_TYPE REGPARM glue(glue(__ld, SUFFIX), MMUSUFFIX)(target_ulong addr, 123 res = glue(io_read, SUFFIX)(ioaddr, addr, retaddr); 142 res = glue(glue(slow_ld, SUFFIX), MMUSUFFIX)(addr, 161 res = glue(glue(ld, USUFFIX), _raw)((uint8_t *)(long)(addr+addend)) 247 static inline void glue(io_write, SUFFIX)(target_phys_addr_t physaddr, function [all...] |
/external/qemu/audio/ |
mixeng_template.h | 44 #define ET glue (ENDIAN_CONVERSION, glue (_, IN_T)) 47 static mixeng_real inline glue (conv_, ET) (IN_T v) function 66 static IN_T inline glue (clip_, ET) (mixeng_real v) function 84 static inline int64_t glue (conv_, ET) (IN_T v) function 94 static inline IN_T glue (clip_, ET) (int64_t v) function 111 static void glue (glue (conv_, ET), _to_stereo) 125 out->l = VOL (glue (conv_, ET) (*in++), vol->l); 126 out->r = VOL (glue (conv_, ET) (*in++), vol->r) [all...] |
audio_template.h | 39 static void glue (audio_init_nb_voices_, TYPE) (struct audio_driver *drv) function 42 int max_voices = glue (drv->max_voices_, TYPE); 43 int voice_size = glue (drv->voice_size_, TYPE); 45 if (glue (s->nb_hw_voices_, TYPE) > max_voices) { 54 glue (s->nb_hw_voices_, TYPE), 57 glue (s->nb_hw_voices_, TYPE) = max_voices; 63 glue (s->nb_hw_voices_, TYPE) = 0; 72 static void glue (audio_pcm_hw_free_resources_, TYPE) (HW *hw) function 81 static int glue (audio_pcm_hw_alloc_resources_, TYPE) (HW *hw) function 93 static void glue (audio_pcm_sw_free_resources_, TYPE) (SW *sw function 107 static int glue (audio_pcm_sw_alloc_resources_, TYPE) (SW *sw) function 137 static int glue (audio_pcm_sw_init_, TYPE) ( function 176 static void glue (audio_pcm_sw_fini_, TYPE) (SW *sw) function 185 static void glue (audio_pcm_hw_add_sw_, TYPE) (HW *hw, SW *sw) function 190 static void glue (audio_pcm_hw_del_sw_, TYPE) (SW *sw) function 195 static void glue (audio_pcm_hw_gc_, TYPE) (HW **hwp) function 215 static HW *glue (audio_pcm_hw_find_any_, TYPE) (HW *hw) function 221 static HW *glue (audio_pcm_hw_find_any_enabled_, TYPE) (HW *hw) function 231 static HW *glue (audio_pcm_hw_find_specific_, TYPE) ( function 244 static HW *glue (audio_pcm_hw_add_new_, TYPE) (struct audsettings *as) function 318 static HW *glue (audio_pcm_hw_add_, TYPE) (struct audsettings *as) function 342 static SW *glue (audio_pcm_create_voice_pair_, TYPE) ( function 387 static void glue (audio_close_, TYPE) (SW *sw) function 395 void glue (AUD_close_, TYPE) (QEMUSoundCard *card, SW *sw) function 407 SW *glue (AUD_open_, TYPE) ( function 530 int glue (AUD_is_active_, TYPE) (SW *sw) function 535 void glue (AUD_init_time_stamp_, TYPE) (SW *sw, QEMUAudioTimeStamp *ts) function 544 uint64_t glue (AUD_get_elapsed_usec_, TYPE) (SW *sw, QEMUAudioTimeStamp *ts) function [all...] |
dsound_template.h | 42 static int glue (dsound_unlock_, TYPE) ( function 52 hr = glue (IFACE, _Unlock) (buf, p1, blen1, p2, blen2); 61 static int glue (dsound_lock_, TYPE) ( function 85 hr = glue (IFACE, _Lock) ( 99 if (glue (dsound_restore_, TYPE) (buf)) { 121 glue (dsound_unlock_, TYPE) (buf, p1, p2, blen1, blen2); 163 hr = glue (IFACE, _Stop) (ds->FIELD); 168 hr = glue (IFACE, _Release) (ds->FIELD); 236 hr = glue (IFACE, _GetFormat) (ds->FIELD, &wfx, sizeof (wfx), NULL); 250 hr = glue (IFACE, _GetCaps) (ds->FIELD, &bc) [all...] |
/external/qemu/target-arm/ |
op_addsub.h | 21 res |= ((uint32_t)(glue(glue(uint,width),_t))(val)) << (n * width) 23 uint32_t HELPER(glue(PFX,add16))(uint32_t a, uint32_t b GE_ARG) function 34 uint32_t HELPER(glue(PFX,add8))(uint32_t a, uint32_t b GE_ARG) function 47 uint32_t HELPER(glue(PFX,sub16))(uint32_t a, uint32_t b GE_ARG) function 58 uint32_t HELPER(glue(PFX,sub8))(uint32_t a, uint32_t b GE_ARG) function 71 uint32_t HELPER(glue(PFX,subaddx))(uint32_t a, uint32_t b GE_ARG) function 82 uint32_t HELPER(glue(PFX,addsubx))(uint32_t a, uint32_t b GE_ARG) function
|
/external/qemu/target-i386/ |
helper_template.h | 55 static int glue(compute_all_add, SUFFIX)(void) function 70 static int glue(compute_c_add, SUFFIX)(void) 79 static int glue(compute_all_adc, SUFFIX)(void) 94 static int glue(compute_c_adc, SUFFIX)(void) 103 static int glue(compute_all_sub, SUFFIX)(void) 118 static int glue(compute_c_sub, SUFFIX)(void) 128 static int glue(compute_all_sbb, SUFFIX)(void) 143 static int glue(compute_c_sbb, SUFFIX)(void) 153 static int glue(compute_all_logic, SUFFIX)(void) 165 static int glue(compute_c_logic, SUFFIX)(void [all...] |
ops_sse.h | 39 void glue(helper_psrlw, SUFFIX)(Reg *d, Reg *s) function 63 void glue(helper_psraw, SUFFIX)(Reg *d, Reg *s) function 84 void glue(helper_psllw, SUFFIX)(Reg *d, Reg *s) function 108 void glue(helper_psrld, SUFFIX)(Reg *d, Reg *s) function 128 void glue(helper_psrad, SUFFIX)(Reg *d, Reg *s) function 145 void glue(helper_pslld, SUFFIX)(Reg *d, Reg *s) function 165 void glue(helper_psrlq, SUFFIX)(Reg *d, Reg *s) function 183 void glue(helper_psllq, SUFFIX)(Reg *d, Reg *s) function 202 void glue(helper_psrldq, SUFFIX)(Reg *d, Reg *s) function 215 void glue(helper_pslldq, SUFFIX)(Reg *d, Reg *s function 411 void glue(helper_pmuludq, SUFFIX) (Reg *d, Reg *s) function 419 void glue(helper_pmaddwd, SUFFIX) (Reg *d, Reg *s) function 438 void glue(helper_psadbw, SUFFIX) (Reg *d, Reg *s) function 466 void glue(helper_maskmov, SUFFIX) (Reg *d, Reg *s, target_ulong a0) function 475 void glue(helper_movl_mm_T0, SUFFIX) (Reg *d, uint32_t val) function 485 void glue(helper_movq_mm_T0, SUFFIX) (Reg *d, uint64_t val) function 495 void glue(helper_pshufw, SUFFIX) (Reg *d, Reg *s, int order) function 523 void glue(helper_pshufd, SUFFIX) (Reg *d, Reg *s, int order) function 533 void glue(helper_pshuflw, SUFFIX) (Reg *d, Reg *s, int order) function 544 void glue(helper_pshufhw, SUFFIX) (Reg *d, Reg *s, int order) function 965 uint32_t glue(helper_pmovmskb, SUFFIX)(Reg *s) function 990 void glue(helper_packsswb, SUFFIX) (Reg *d, Reg *s) function 1017 void glue(helper_packuswb, SUFFIX) (Reg *d, Reg *s) function 1044 void glue(helper_packssdw, SUFFIX) (Reg *d, Reg *s) function 1266 void glue(helper_pshufb, SUFFIX) (Reg *d, Reg *s) function 1277 void glue(helper_phaddw, SUFFIX) (Reg *d, Reg *s) function 1289 void glue(helper_phaddd, SUFFIX) (Reg *d, Reg *s) function 1297 void glue(helper_phaddsw, SUFFIX) (Reg *d, Reg *s) function 1309 void glue(helper_pmaddubsw, SUFFIX) (Reg *d, Reg *s) function 1331 void glue(helper_phsubw, SUFFIX) (Reg *d, Reg *s) function 1343 void glue(helper_phsubd, SUFFIX) (Reg *d, Reg *s) function 1351 void glue(helper_phsubsw, SUFFIX) (Reg *d, Reg *s) function 1380 void glue(helper_palignr, SUFFIX) (Reg *d, Reg *s, int32_t shift) function 1475 void glue(helper_ptest, SUFFIX) (Reg *d, Reg *s) function 1513 void glue(helper_pmuldq, SUFFIX) (Reg *d, Reg *s) function 1522 void glue(helper_packusdw, SUFFIX) (Reg *d, Reg *s) function 1550 void glue(helper_phminposuw, SUFFIX) (Reg *d, Reg *s) function 1575 void glue(helper_roundps, SUFFIX) (Reg *d, Reg *s, uint32_t mode) function 1611 void glue(helper_roundpd, SUFFIX) (Reg *d, Reg *s, uint32_t mode) function 1645 void glue(helper_roundss, SUFFIX) (Reg *d, Reg *s, uint32_t mode) function 1678 void glue(helper_roundsd, SUFFIX) (Reg *d, Reg *s, uint32_t mode) function 1716 void glue(helper_dpps, SUFFIX) (Reg *d, Reg *s, uint32_t mask) function 1742 void glue(helper_dppd, SUFFIX) (Reg *d, Reg *s, uint32_t mask) function 1758 void glue(helper_mpsadbw, SUFFIX) (Reg *d, Reg *s, uint32_t offset) function 1923 void glue(helper_pcmpestri, SUFFIX) (Reg *d, Reg *s, uint32_t ctrl) function 1935 void glue(helper_pcmpestrm, SUFFIX) (Reg *d, Reg *s, uint32_t ctrl) function 1955 void glue(helper_pcmpistri, SUFFIX) (Reg *d, Reg *s, uint32_t ctrl) function 1967 void glue(helper_pcmpistrm, SUFFIX) (Reg *d, Reg *s, uint32_t ctrl) function [all...] |
/external/valgrind/main/VEX/test/ |
test-i386-shift.h | 2 #define exec_op glue(exec_, OP) 3 #define exec_opl glue(glue(exec_, OP), l) 4 #define exec_opw glue(glue(exec_, OP), w) 5 #define exec_opb glue(glue(exec_, OP), b) 145 void glue(test_, OP)(void) function 154 void *glue(_test_, OP) __init_call = glue(test_, OP) [all...] |
test-amd64-shift.h | 2 #define exec_op glue(exec_, OP) 3 #define exec_opq glue(glue(exec_, OP), q) 4 #define exec_opl glue(glue(exec_, OP), l) 5 #define exec_opw glue(glue(exec_, OP), w) 6 #define exec_opb glue(glue(exec_, OP), b) 162 void glue(test_, OP)(void function [all...] |
test-amd64.h | 2 #define exec_op glue(exec_, OP) 3 #define exec_opq glue(glue(exec_, OP), q) 4 #define exec_opl glue(glue(exec_, OP), l) 5 #define exec_opw glue(glue(exec_, OP), w) 6 #define exec_opb glue(glue(exec_, OP), b) 139 void glue(test_, OP)(void function [all...] |
test-i386.h | 4 #define exec_op glue(exec_, OP) 5 #define exec_opl glue(glue(exec_, OP), l) 6 #define exec_opw glue(glue(exec_, OP), w) 7 #define exec_opb glue(glue(exec_, OP), b) 145 void glue(test_, OP)(void) function 205 void *glue(_test_, OP) __init_call = glue(test_, OP) [all...] |
test-amd64.c | 52 #define glue(x, y) xglue(x, y) macro [all...] |
test-i386.c | 42 #define glue(x, y) xglue(x, y) macro [all...] |