HomeSort by relevance Sort by last modified time
    Searched full:opaque (Results 1 - 25 of 1726) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p12.cpp 9 template <unsigned n> struct Opaque {};
10 template <unsigned n> void expect(Opaque<n> _) {}
28 Opaque<0> foo(Opaque<0>);
29 Opaque<0> foo(Opaque<1>);
30 Opaque<0> foo(Opaque<2>);
36 Opaque<1> foo(Opaque<1>)
    [all...]
  /external/llvm/test/Assembler/
2002-07-14-OpaqueType.ll 1 ; Test that opaque types are preserved correctly
5 %Ty = type opaque
2005-05-05-OpaqueUndefValues.ll 3 %t = type opaque
  /external/qemu/
buffered_file.h 19 typedef ssize_t (BufferedPutFunc)(void *opaque, const void *data, size_t size);
20 typedef void (BufferedPutReadyFunc)(void *opaque);
21 typedef void (BufferedWaitForUnfreezeFunc)(void *opaque);
22 typedef int (BufferedCloseFunc)(void *opaque);
24 QEMUFile *qemu_fopen_ops_buffered(void *opaque, size_t xfer_limit,
balloon.h 19 typedef ram_addr_t (QEMUBalloonEvent)(void *opaque, ram_addr_t target);
21 void qemu_add_balloon_handler(QEMUBalloonEvent *func, void *opaque);
migration.h 47 void *opaque; member in struct:FdMigrationState
82 void migrate_fd_put_notify(void *opaque);
84 ssize_t migrate_fd_put_buffer(void *opaque, const void *data, size_t size);
88 void migrate_fd_put_ready(void *opaque);
96 void migrate_fd_wait_for_unfreeze(void *opaque);
98 int migrate_fd_close(void *opaque);
109 int ram_save_live(QEMUFile *f, int stage, void *opaque);
110 int ram_load(QEMUFile *f, void *opaque, int version_id);
buffered_file.c 28 void *opaque; member in struct:QEMUFileBuffered
86 ret = s->put_buffer(s->opaque, s->buffer + offset,
109 static int buffered_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
111 QEMUFileBuffered *s = opaque;
133 ret = s->put_buffer(s->opaque, buf + offset, size - offset);
162 s->put_ready(s->opaque);
169 static int buffered_close(void *opaque)
171 QEMUFileBuffered *s = opaque;
182 ret = s->close(s->opaque);
192 static int buffered_rate_limit(void *opaque)
    [all...]
qemu-os-win32.h 35 typedef int PollingFunc(void *opaque);
37 int qemu_add_polling_cb(PollingFunc *func, void *opaque);
38 void qemu_del_polling_cb(PollingFunc *func, void *opaque);
41 typedef void WaitObjectFunc(void *opaque);
43 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
44 void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
  /external/qemu/hw/
fw_cfg.h 27 typedef void (*FWCfgCallback)(void *opaque, uint8_t *data);
29 int fw_cfg_add_bytes(void *opaque, uint16_t key, uint8_t *data, uint16_t len);
30 int fw_cfg_add_i16(void *opaque, uint16_t key, uint16_t value);
31 int fw_cfg_add_i32(void *opaque, uint16_t key, uint32_t value);
32 int fw_cfg_add_i64(void *opaque, uint16_t key, uint64_t value);
33 int fw_cfg_add_callback(void *opaque, uint16_t key, FWCfgCallback callback,
ps2.h 8 void ps2_keyboard_set_translation(void *opaque, int mode);
9 void ps2_mouse_fake_event(void *opaque);
fw_cfg.c 104 static uint32_t fw_cfg_io_readb(void *opaque, uint32_t addr)
106 return fw_cfg_read(opaque);
109 static void fw_cfg_io_writeb(void *opaque, uint32_t addr, uint32_t value)
111 fw_cfg_write(opaque, (uint8_t)value);
114 static void fw_cfg_io_writew(void *opaque, uint32_t addr, uint32_t value)
116 fw_cfg_select(opaque, (uint16_t)value);
119 static uint32_t fw_cfg_mem_readb(void *opaque, target_phys_addr_t addr)
121 return fw_cfg_read(opaque);
124 static void fw_cfg_mem_writeb(void *opaque, target_phys_addr_t addr,
127 fw_cfg_write(opaque, (uint8_t)value)
    [all...]
irq.h 7 typedef void (*qemu_irq_handler)(void *opaque, int n, int level);
8 typedef void SetIRQFunc(void *opaque, int irq_num, int level);
29 qemu_irq *qemu_allocate_irqs(qemu_irq_handler handler, void *opaque, int n);
devices.h 16 uint32_t tsc210x_txrx(void *opaque, uint32_t value, int len);
23 uint32_t tsc2005_txrx(void *opaque, uint32_t value, int len);
24 void tsc2005_set_transform(void *opaque, MouseTransformInfo *info);
31 void s1d13745_write(void *opaque, int dc, uint16_t value);
32 void s1d13745_write_block(void *opaque, int dc,
34 uint16_t s1d13745_read(void *opaque, int dc);
goldfish_switch.c 33 uint32_t (*writefn)(void *opaque, uint32_t state);
39 static void goldfish_switch_save(QEMUFile* f, void* opaque)
41 struct switch_state* s = opaque;
48 static int goldfish_switch_load(QEMUFile* f, void* opaque, int version_id)
50 struct switch_state* s = opaque;
62 static uint32_t goldfish_switch_read(void *opaque, target_phys_addr_t offset)
64 struct switch_state *s = (struct switch_state *)opaque;
88 static void goldfish_switch_write(void *opaque, target_phys_addr_t offset, uint32_t value)
90 struct switch_state *s = (struct switch_state *)opaque;
135 void goldfish_switch_set_state(void *opaque, uint32_t state
    [all...]
pci_host.h 42 static void pci_host_data_writeb(void* opaque, pci_addr_t addr, uint32_t val)
44 PCIHostState *s = opaque;
52 static void pci_host_data_writew(void* opaque, pci_addr_t addr, uint32_t val)
54 PCIHostState *s = opaque;
64 static void pci_host_data_writel(void* opaque, pci_addr_t addr, uint32_t val)
66 PCIHostState *s = opaque;
76 static uint32_t pci_host_data_readb(void* opaque, pci_addr_t addr)
78 PCIHostState *s = opaque;
89 static uint32_t pci_host_data_readw(void* opaque, pci_addr_t addr)
91 PCIHostState *s = opaque;
    [all...]
scsi-disk.h 12 typedef void (*scsi_completionfn)(void *opaque, int reason, uint32_t tag,
28 scsi_completionfn completion, void *opaque);
30 scsi_completionfn completion, void *opaque);
  /external/llvm/test/Linker/
2003-01-30-LinkerTypeRename.ll 1 ; This fails because the linker renames the non-opaque type not the opaque
4 ; RUN: echo {%Ty = type opaque @GV = external global %Ty*} | llvm-as > %t.1.bc
6 ; RUN: llvm-link %t.1.bc %t.2.bc -S | grep {%Ty } | not grep opaque
2003-06-02-TypeResolveProblem.ll 1 ; RUN: echo {%T = type opaque} | llvm-as > %t.2.bc
5 %T = type opaque
2003-08-23-GlobalVarLinking.ll 2 ; RUN: echo {%T1 = type opaque %T2 = type opaque @S = external global \{ i32, %T1* \} declare void @F(%T2*)}\
4 ; RUN: llvm-link %t.out1.bc %t.out2.bc -S | not grep opaque
6 ; After linking this testcase, there should be no opaque types left. The two
7 ; S's should cause the opaque type to be resolved to 'int'.
2003-04-23-LinkOnceLost.ll 1 ; This fails because the linker renames the non-opaque type not the opaque
LinkOnce.ll 1 ; This fails because the linker renames the non-opaque type not the opaque
  /external/zlib/contrib/minizip/
ioapi.c 22 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
25 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
32 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
39 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
46 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
49 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
68 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
75 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
76 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size))
    [all...]
  /external/clang/test/SemaObjC/
attr-objc-gc.m 24 void *opaque;
25 opaque = strong;
26 strong = opaque;
28 opaque = weak;
29 weak = opaque;
  /external/srtp/crypto/ae_xfm/
xfm.c 27 void *opaque,
37 if ((iv == NULL) && (opaque == NULL) && (opaque_len == NULL)) {
41 } else if ((iv == NULL) || (opaque == NULL) || (opaque_len == NULL)) {
74 /* encrypt the opaque data */
75 status = aes_cbc_nist_encrypt(&aes_ctx, opaque, opaque_len);
78 /* authenticate clear and opaque data */
88 status = hmac_compute(&hmac_ctx, opaque, *opaque_len, TAG_LEN, auth_tag);
101 void *opaque,
114 if ((iv == NULL) && (opaque == NULL) && (opaque_len == NULL)) {
118 } else if ((iv == NULL) || (opaque == NULL) || (opaque_len == NULL))
    [all...]
  /external/clang/test/CodeGenObjC/
gnu-exceptions.m 3 void opaque(void);
11 // CHECK: invoke void @opaque()
12 opaque();

Completed in 1159 milliseconds

1 2 3 4 5 6 7 8 91011>>