HomeSort by: relevance | last modified time | path
    Searched refs:opaque (Results 1 - 25 of 584) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/hpc/stand/libz/
zalloc.c 35 zcalloc(voidpf opaque, unsigned items, unsigned size)
39 opaque = malloc(total);
40 if (opaque != NULL)
41 memset(opaque, 0, total);
42 return opaque;
46 zcfree(voidpf opaque, voidpf ptr)
  /src/sys/lib/libz/
zalloc.c 42 zcalloc(voidpf opaque, unsigned int items, unsigned int size)
47 opaque = alloc(totalsize);
48 if (opaque != NULL)
49 memset(opaque, 0, totalsize);
50 return opaque;
54 zcfree(voidpf opaque, voidpf ptr)
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_lcidm.h 32 * An opaque pointer can be associated with each LCID. Pointer identity
64 * contents of the opaque retry token.) Thus, the LCIDM is not actually involved
116 * reception) currently associated with the given opaque pointer.
119 void *opaque);
143 int ossl_quic_lcidm_enrol_odcid(QUIC_LCIDM *lcidm, void *opaque,
154 int ossl_quic_lcidm_retire_odcid(QUIC_LCIDM *lcidm, void *opaque);
157 * Create the first LCID for a given opaque pointer. The generated LCID is
158 * written to *initial_lcid and associated with the given opaque pointer.
163 * May not be called more than once for a given opaque pointer value.
166 void *opaque,
    [all...]
quic_srtm.h 34 * (opaque pointer, sequence number) [1] <-> [0..n] SRT
36 * The (opaque pointer, sequence number) tuple is used to refer to an entry (for
38 * Likewise, an entry can be looked up using SRT to get the opaque pointer and
42 * multiple (opaque pointer, sequence number) tuples, for example, if we
47 * SRTs for different (opaque pointer, sequence number) keys.
50 * identified by a (opaque pointer, sequence number) key, and mass deletion of
51 * all entries under a specific opaque pointer. It supports lookup by SRT to
52 * identify zero or more corresponding (opaque pointer, sequence number) tuples.
54 * The opaque pointer may be used for any purpose but is intended to represent a
65 * Add a (opaque, seq_num) -> SRT entry to the SRTM. This operation fails if
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
quic_srtm_test.c 23 void *opaque = NULL; local
42 || !TEST_true(ossl_quic_srtm_lookup(srtm, &token_1, 0, &opaque, &seq_num))
43 || !TEST_ptr_eq(opaque, ptrs + 1)
45 || !TEST_true(ossl_quic_srtm_lookup(srtm, &token_1, 1, &opaque, &seq_num))
46 || !TEST_ptr_eq(opaque, ptrs + 0)
48 || !TEST_true(ossl_quic_srtm_lookup(srtm, &token_1, 2, &opaque, &seq_num))
49 || !TEST_ptr_eq(opaque, ptrs + 0)
51 || !TEST_true(ossl_quic_srtm_lookup(srtm, &token_1, 3, &opaque, &seq_num))
52 || !TEST_ptr_eq(opaque, ptrs + 0)
54 || !TEST_true(ossl_quic_srtm_lookup(srtm, &token_1, 4, &opaque, &seq_num)
    [all...]
quic_lcidm_test.c 28 void *opaque = NULL; local
59 || !TEST_true(ossl_quic_lcidm_lookup(lcidm, &lcid_1, &seq_num, &opaque))
60 || !TEST_ptr_eq(opaque, ptrs + 2)
63 &seq_num, &opaque))
64 || !TEST_ptr_eq(opaque, ptrs + 2)
67 &seq_num, &opaque))
68 || !TEST_ptr_eq(opaque, ptrs + 2)
71 &seq_num, &opaque))
72 || !TEST_ptr_eq(opaque, ptrs + 2)
87 &seq_num, &opaque))
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
lto-compress.h 30 void *opaque);
37 void *opaque);
  /src/external/gpl3/gcc.old/dist/gcc/
lto-compress.h 30 void *opaque);
37 void *opaque);
  /src/external/gpl3/binutils/dist/zlib/contrib/minizip/
ioapi.c 33 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
36 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
42 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
49 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
55 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
58 uLong tell_uLong = (uLong)(*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
75 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
82 static voidpf ZCALLBACK fopen_file_func(voidpf opaque, const char* filename, int mode) {
85 (void)opaque;
    [all...]
ioapi.h 137 typedef voidpf (ZCALLBACK *open_file_func) (voidpf opaque, const char* filename, int mode);
138 typedef uLong (ZCALLBACK *read_file_func) (voidpf opaque, voidpf stream, void* buf, uLong size);
139 typedef uLong (ZCALLBACK *write_file_func) (voidpf opaque, voidpf stream, const void* buf, uLong size);
140 typedef int (ZCALLBACK *close_file_func) (voidpf opaque, voidpf stream);
141 typedef int (ZCALLBACK *testerror_file_func) (voidpf opaque, voidpf stream);
143 typedef long (ZCALLBACK *tell_file_func) (voidpf opaque, voidpf stream);
144 typedef long (ZCALLBACK *seek_file_func) (voidpf opaque, voidpf stream, uLong offset, int origin);
157 voidpf opaque; member in struct:zlib_filefunc_def_s
160 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) (voidpf opaque, voidpf stream);
161 typedef long (ZCALLBACK *seek64_file_func) (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)
173 voidpf opaque; member in struct:zlib_filefunc64_def_s
    [all...]
  /src/external/gpl3/gdb/dist/zlib/contrib/minizip/
ioapi.c 33 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
36 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
42 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
49 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
55 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
58 uLong tell_uLong = (uLong)(*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
75 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
82 static voidpf ZCALLBACK fopen_file_func(voidpf opaque, const char* filename, int mode) {
85 (void)opaque;
    [all...]
ioapi.h 137 typedef voidpf (ZCALLBACK *open_file_func) (voidpf opaque, const char* filename, int mode);
138 typedef uLong (ZCALLBACK *read_file_func) (voidpf opaque, voidpf stream, void* buf, uLong size);
139 typedef uLong (ZCALLBACK *write_file_func) (voidpf opaque, voidpf stream, const void* buf, uLong size);
140 typedef int (ZCALLBACK *close_file_func) (voidpf opaque, voidpf stream);
141 typedef int (ZCALLBACK *testerror_file_func) (voidpf opaque, voidpf stream);
143 typedef long (ZCALLBACK *tell_file_func) (voidpf opaque, voidpf stream);
144 typedef long (ZCALLBACK *seek_file_func) (voidpf opaque, voidpf stream, uLong offset, int origin);
157 voidpf opaque; member in struct:zlib_filefunc_def_s
160 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) (voidpf opaque, voidpf stream);
161 typedef long (ZCALLBACK *seek64_file_func) (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)
173 voidpf opaque; member in struct:zlib_filefunc64_def_s
    [all...]
  /src/common/dist/zlib/contrib/minizip/
ioapi.c 33 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
36 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
42 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
49 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
55 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
58 uLong tell_uLong = (uLong)(*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
75 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
82 static voidpf ZCALLBACK fopen_file_func(voidpf opaque, const char* filename, int mode) {
85 (void)opaque;
    [all...]
ioapi.h 110 typedef voidpf (ZCALLBACK *open_file_func) (voidpf opaque, const char* filename, int mode);
111 typedef uLong (ZCALLBACK *read_file_func) (voidpf opaque, voidpf stream, void* buf, uLong size);
112 typedef uLong (ZCALLBACK *write_file_func) (voidpf opaque, voidpf stream, const void* buf, uLong size);
113 typedef int (ZCALLBACK *close_file_func) (voidpf opaque, voidpf stream);
114 typedef int (ZCALLBACK *testerror_file_func) (voidpf opaque, voidpf stream);
116 typedef long (ZCALLBACK *tell_file_func) (voidpf opaque, voidpf stream);
117 typedef long (ZCALLBACK *seek_file_func) (voidpf opaque, voidpf stream, uLong offset, int origin);
130 voidpf opaque; member in struct:zlib_filefunc_def_s
133 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) (voidpf opaque, voidpf stream);
134 typedef long (ZCALLBACK *seek64_file_func) (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)
146 voidpf opaque; member in struct:zlib_filefunc64_def_s
    [all...]
  /src/external/gpl3/binutils.old/dist/zlib/contrib/minizip/
ioapi.c 34 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 = (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, voidpf stream, void* buf, uLong size))
    [all...]
ioapi.h 137 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
138 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
139 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
140 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
141 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
143 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
144 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
157 voidpf opaque; member in struct:zlib_filefunc_def_s
160 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
161 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin))
173 voidpf opaque; member in struct:zlib_filefunc64_def_s
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/contrib/minizip/
ioapi.c 34 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 = (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, voidpf stream, void* buf, uLong size))
    [all...]
ioapi.h 137 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
138 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
139 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
140 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
141 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
143 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
144 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
157 voidpf opaque; member in struct:zlib_filefunc_def_s
160 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
161 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin))
173 voidpf opaque; member in struct:zlib_filefunc64_def_s
    [all...]
  /src/external/bsd/zstd/dist/lib/common/
allocations.h 29 return customMem.customAlloc(customMem.opaque, size);
38 void* const ptr = customMem.customAlloc(customMem.opaque, size);
49 customMem.customFree(customMem.opaque, ptr);
  /src/sys/fs/nfs/client/
nfs_clmodule.c 38 nfs_client_modcmd(modcmd_t cmd, void *opaque)
  /src/sys/fs/nfs/common/
nfs_module.c 38 nfs_common_modcmd(modcmd_t cmd, void *opaque)
  /src/sys/fs/nfs/server/
nfs_nfsdmodule.c 38 nfs_server_modcmd(modcmd_t cmd, void *opaque)
  /src/external/cddl/osnet/dist/uts/common/zmod/
zutil.c 222 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
224 voidpf buf = opaque; /* just to make some compilers happy */
246 void zcfree (voidpf opaque, voidpf ptr)
264 ptr = opaque; /* just to make some compilers happy */
281 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
283 if (opaque) opaque = 0; /* to make compiler happy */
287 void zcfree (voidpf opaque, voidpf ptr)
289 if (opaque) opaque = 0; /* to make compiler happy *
    [all...]
  /src/sys/arch/usermode/dev/
vaudio.c 132 vaudio_match(device_t parent, cfdata_t match, void *opaque)
134 struct thunkbus_attach_args *taa = opaque;
143 vaudio_attach(device_t parent, device_t self, void *opaque)
146 struct thunkbus_attach_args *taa = opaque;
193 vaudio_intr(void *opaque)
195 struct vaudio_stream *st = opaque;
201 vaudio_softintr_play(void *opaque)
203 struct vaudio_stream *st = opaque;
224 vaudio_softintr_record(void *opaque)
226 struct vaudio_stream *st = opaque;
    [all...]
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_lcidm.c 52 void *opaque; member in struct:quic_lcidm_conn_st
64 LHASH_OF(QUIC_LCIDM_CONN) *conns; /* (void *opaque) -> (QUIC_LCIDM_CONN *) */
103 return (unsigned long)(uintptr_t)conn->opaque;
108 return a->opaque != b->opaque;
198 static QUIC_LCIDM_CONN *lcidm_get0_conn(const QUIC_LCIDM *lcidm, void *opaque)
202 key.opaque = opaque;
207 static QUIC_LCIDM_CONN *lcidm_upsert_conn(const QUIC_LCIDM *lcidm, void *opaque)
209 QUIC_LCIDM_CONN *conn = lcidm_get0_conn(lcidm, opaque);
    [all...]

Completed in 29 milliseconds

1 2 3 4 5 6 7 8 91011>>