Searched refs:opaque (Results 1 - 25 of 157) sorted by relevance

1234567

/external/clang/test/CodeGen/
H A Dunwind-attr.c4 int opaque();
9 return opaque();
H A Dtrapv.c28 extern void opaque(int);
29 opaque(i++);
42 extern void opaque(int);
43 opaque(++i);
/external/clang/test/CodeGenCXX/
H A Dexceptions-no-rtti.cpp32 void opaque();
39 opaque();
44 opaque();
H A Deh.cpp183 void opaque();
191 opaque();
203 opaque();
209 void opaque();
220 opaque();
246 void opaque();
252 opaque();
273 opaque();
288 bool opaque(const A&);
300 if (opaque(
[all...]
H A Dpartial-destruction.cpp5 void opaque();
12 opaque();
H A Ddestructors.cpp305 void opaque();
316 C::C() { opaque(); }
326 C::~C() { opaque(); }
/external/freetype/src/gzip/
H A Dzutil.c83 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
85 voidpf buf = opaque; /* just to make some compilers happy */
107 void zcfree (voidpf opaque, voidpf ptr) argument
125 ptr = opaque; /* just to make some compilers happy */
142 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
144 if (opaque) opaque = 0; /* to make compiler happy */
148 void zcfree (voidpf opaque, voidpf ptr) argument
150 if (opaque) opaque
[all...]
H A Dzlib.h63 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
64 typedef void (*free_func) OF((voidpf opaque, voidpf address));
82 voidpf opaque; /* private data object passed to zalloc and zfree */ member in struct:z_stream_s
95 opaque before calling the init function. All other fields are set by the
98 The opaque value provided by the application will be passed as the first
101 opaque value.
164 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
179 zalloc, zfree and opaque must be initialized before by the caller.
292 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
404 fields next_in, zalloc, zfree and opaque mus
[all...]
H A Dzutil.h207 local voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
208 local void zcfree OF((voidpf opaque, voidpf ptr));
211 (*((strm)->zalloc))((strm)->opaque, (items), (size))
212 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
/external/zlib/src/contrib/minizip/
H A Dioapi.h135 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
136 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
137 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
138 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
139 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
141 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
142 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
155 voidpf opaque; member in struct:zlib_filefunc_def_s
158 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidp
171 voidpf opaque; member in struct:zlib_filefunc64_def_s
[all...]
H A Dioapi.c34 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
37 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
58 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
61 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
87 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidp
95 fopen_file_func(voidpf opaque, const char* filename, int mode) argument
113 fopen64_file_func(voidpf opaque, const void* filename, int mode) argument
132 fread_file_func(voidpf opaque, voidpf stream, void* buf, uLong size) argument
139 fwrite_file_func(voidpf opaque, voidpf stream, const void* buf, uLong size) argument
146 ftell_file_func(voidpf opaque, voidpf stream) argument
154 ftell64_file_func(voidpf opaque, voidpf stream) argument
161 fseek_file_func(voidpf opaque, voidpf stream, uLong offset, int origin) argument
184 fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) argument
210 fclose_file_func(voidpf opaque, voidpf stream) argument
217 ferror_file_func(voidpf opaque, voidpf stream) argument
[all...]
H A Diowin32.c35 voidpf ZCALLBACK win32_open_file_func OF((voidpf opaque, const char* filename, int mode));
36 uLong ZCALLBACK win32_read_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size));
37 uLong ZCALLBACK win32_write_file_func OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
38 ZPOS64_T ZCALLBACK win32_tell64_file_func OF((voidpf opaque, voidpf stream));
39 long ZCALLBACK win32_seek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
40 int ZCALLBACK win32_close_file_func OF((voidpf opaque, voidpf stream));
41 int ZCALLBACK win32_error_file_func OF((voidpf opaque, voidpf stream));
95 voidpf ZCALLBACK win32_open64_file_func (voidpf opaque,const void* filename,int mode) argument
124 voidpf ZCALLBACK win32_open64_file_funcA (voidpf opaque,const void* filename,int mode) argument
148 voidpf ZCALLBACK win32_open64_file_funcW (voidpf opaque,cons argument
168 win32_open_file_func(voidpf opaque,const char* filename,int mode) argument
197 win32_read_file_func(voidpf opaque, voidpf stream, void* buf,uLong size) argument
219 win32_write_file_func(voidpf opaque,voidpf stream,const void* buf,uLong size) argument
260 win32_tell_file_func(voidpf opaque,voidpf stream) argument
283 win32_tell64_file_func(voidpf opaque, voidpf stream) argument
308 win32_seek_file_func(voidpf opaque,voidpf stream,uLong offset,int origin) argument
346 win32_seek64_file_func(voidpf opaque, voidpf stream,ZPOS64_T offset,int origin) argument
385 win32_close_file_func(voidpf opaque, voidpf stream) argument
403 win32_error_file_func(voidpf opaque,voidpf stream) argument
[all...]
/external/srtp/crypto/ae_xfm/
H A Dxfm.c27 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
23 aes_128_cbc_hmac_sha1_96_func(void *key, void *clear, unsigned clear_len, void *iv, void *opaque, unsigned *opaque_len, void *auth_tag) argument
97 aes_128_cbc_hmac_sha1_96_inv(void *key, void *clear, unsigned clear_len, void *iv, void *opaque, unsigned *opaque_len, void *auth_tag) argument
184 aes_128_cbc_hmac_sha1_96_enc(void *key, const void *clear, unsigned clear_len, void *iv, void *opaque, unsigned *opaque_len) argument
295 aes_128_cbc_hmac_sha1_96_dec(void *key, const void *clear, unsigned clear_len, void *iv, void *opaque, unsigned *opaque_len) argument
443 null_enc(void *key, const void *clear, unsigned clear_len, void *iv, void *opaque, unsigned *opaque_len) argument
498 null_dec(void *key, const void *clear, unsigned clear_len, void *iv, void *opaque, unsigned *opaque_len) argument
[all...]
/external/clang/test/Analysis/
H A Dtaint-tester.cpp30 class opaque;
31 void testOpaqueClass(opaque *obj) {
H A Dreference.cpp134 void testFunctionPointerReturn(void *opaque) { argument
137 RefFn getRef = (RefFn)opaque;
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_zutil.c222 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size)
224 voidpf buf = opaque; /* just to make some compilers happy */
246 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
264 ptr = opaque; /* just to make some compilers happy */
281 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
283 if (opaque) opaque = 0; /* to make compiler happy */
287 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
289 if (opaque) opaque
341 zcalloc(voidpf opaque, unsigned items, unsigned size) argument
346 zcfree(voidpf opaque, voidpf ptr) argument
[all...]
/external/valgrind/include/
H A Dpub_tool_stacktrace.h68 // 'n' gives the index of the passed ip. 'opaque' is an arbitrary
73 void(*action)(UInt n, Addr ip, void* opaque),
74 void* opaque,
/external/zlib/src/
H A Dzutil.c220 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) argument
222 voidpf buf = opaque; /* just to make some compilers happy */
244 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) argument
262 ptr = opaque; /* just to make some compilers happy */
279 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) argument
281 if (opaque) opaque = 0; /* to make compiler happy */
285 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) argument
287 if (opaque) opaque
[all...]
/external/ppp/pppd/plugins/radius/
H A Dradattr.c26 static void cleanup(void *opaque, int arg);
96 * opaque -- not used
104 cleanup(void *opaque, int arg) argument
/external/srtp/crypto/include/
H A Dxfm.h67 void *opaque, /* data to be decrypted and authenticated */
98 void *opaque,
108 void *opaque, /* data to be decrypted and authenticated */
H A Dcryptoalg.h97 void *opaque, /* data to be decrypted and authenticated */
/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_jpeg.cc34 static void JpegCopyI420(void* opaque, argument
38 I420Buffers* dest = (I420Buffers*)(opaque);
52 static void JpegI422ToI420(void* opaque, argument
56 I420Buffers* dest = (I420Buffers*)(opaque);
70 static void JpegI444ToI420(void* opaque, argument
74 I420Buffers* dest = (I420Buffers*)(opaque);
88 static void JpegI411ToI420(void* opaque, argument
92 I420Buffers* dest = (I420Buffers*)(opaque);
106 static void JpegI400ToI420(void* opaque, argument
110 I420Buffers* dest = (I420Buffers*)(opaque);
232 JpegI420ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
246 JpegI422ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
260 JpegI444ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
274 JpegI411ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
288 JpegI400ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
[all...]
/external/nist-sip/java/javax/sip/header/
H A DAuthorizationHeader.java22 void setOpaque(String opaque) throws ParseException; argument
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
H A Dmjpeg_decoder.h68 typedef void (*CallbackFunction)(void* opaque,
148 LIBYUV_BOOL DecodeToCallback(CallbackFunction fn, void* opaque,
/external/libyuv/files/include/libyuv/
H A Dmjpeg_decoder.h46 typedef void (*CallbackFunction)(void* opaque,
125 bool DecodeToCallback(CallbackFunction fn, void* opaque,

Completed in 600 milliseconds

1234567