Searched defs:opaque (Results 1 - 25 of 59) sorted by relevance

123

/external/libxml2/include/libxml/
H A Duri.h35 char *opaque; /* opaque part */ member in struct:_xmlURI
/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/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 Dftgzip.c142 zcalloc ( voidpf opaque, argument
146 return ft_gzip_alloc( (FT_Memory)opaque, items, size );
150 zcfree( voidpf opaque, argument
153 ft_gzip_free( (FT_Memory)opaque, ptr );
302 zstream->opaque = stream->memory;
327 zstream->opaque = NULL;
725 stream.opaque = memory;
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...]
/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/bzip2/
H A Dbzlib.h64 void *opaque; member in struct:__anon502
/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...]
H A Dmjpeg_decoder.cc333 LIBYUV_BOOL MJpegDecoder::DecodeToCallback(CallbackFunction fn, void* opaque, argument
379 (*fn)(opaque, databuf_, databuf_strides_, scanlines_to_copy);
396 (*fn)(opaque, databuf_, databuf_strides_, GetImageScanlinesPerImcuRow());
404 (*fn)(opaque, databuf_, databuf_strides_, lines_left);
/external/skia/src/image/
H A DSkImage.cpp84 this->isOpaque() ? "opaque" : "");
147 const bool opaque = this->isOpaque(); local
149 opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
/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/webp/src/dec/
H A Ddecode_vp8.h62 void* opaque; // user data member in struct:VP8Io
122 // Main decoding object. This is an opaque structure.
/external/zlib/src/contrib/minizip/
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 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 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/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/clang/test/Analysis/
H A Dreference.cpp134 void testFunctionPointerReturn(void *opaque) { argument
137 RefFn getRef = (RefFn)opaque;
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_fs.h85 boolean opaque; member in struct:lp_fragment_shader_variant
H A Dlp_rast.h83 unsigned opaque:1; /** Is opaque */ member in struct:lp_rast_shader_inputs
/external/nist-sip/java/javax/sip/header/
H A DAuthorizationHeader.java22 void setOpaque(String opaque) throws ParseException; argument
/external/skia/src/core/
H A DSkBlitter_A8.cpp292 int opaque = shaderContext->getFlags() & SkShader::kOpaqueAlpha_Flag; local
301 if (opaque && aa == 255 && mode == NULL) {
/external/valgrind/drd/tests/
H A Dunit_bitmap.c61 void VG_(vcbprintf)(void(*char_sink)(HChar, void* opaque), argument
62 void* opaque,
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DDotZLib.cs46 uint opaque; field in struct:DotZLib.ZStream
/external/apache-http/android/src/android/net/http/
H A DRequestHandle.java242 String opaque) {
245 username, password, realm, nonce, QOP, algorithm, opaque);
306 String opaque) {
335 if (opaque != null) {
336 response += ", opaque=" + doubleQuote(opaque);
235 setupDigestAuthResponse(boolean isProxy, String username, String password, String realm, String nonce, String QOP, String algorithm, String opaque) argument
300 computeDigestAuthResponse(String username, String password, String realm, String nonce, String QOP, String algorithm, String opaque) argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAuthenticationHeader.java339 * Sets the Opaque value of the WWWAuthenicateHeader to the new <var>opaque</var>
342 * @param opaque -
346 * while parsing the opaque value.
349 public void setOpaque(String opaque) throws ParseException { argument
350 if (opaque == null)
352 setParameter(ParameterNames.OPAQUE, opaque);

Completed in 1007 milliseconds

123