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

/ast/src/cmd/dsslib/opaque/
H A Dlib.c24 DSSLIB(opaque)
H A Dopaque.c22 * opaque method
29 "[+DESCRIPTION?The \bdss\b opaque method handles anonymous fixed record "
58 register Opaque_t* opaque = (Opaque_t*)file->dss->meth->data; local
61 if (size < opaque->magic.size)
63 if (opaque->magic.magic)
65 if (magic->magic != opaque->magic.magic)
67 if (magic->size != opaque->magic.size)
69 if (!streq(magic->name, opaque->magic.name))
71 if (!streq(magic->type, opaque->magic.type))
73 if (opaque
158 register Opaque_t* opaque; local
[all...]
H A DMakefile7 opaque plugin=dss :LIBRARY: opaque.c lib.c -ldss
/ast/src/lib/libz/
H A Dzutil.c216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
218 voidpf buf = opaque; /* just to make some compilers happy */
240 void zcfree (voidpf opaque, voidpf ptr) argument
258 ptr = opaque; /* just to make some compilers happy */
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
277 if (opaque) opaque = 0; /* to make compiler happy */
281 void zcfree (voidpf opaque, voidpf ptr) argument
283 if (opaque) opaque
[all...]
H A Dcompress.c44 stream.opaque = (voidpf)0;
H A Dzutil.h261 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
262 void zcfree OF((voidpf opaque, voidpf ptr));
265 (*((strm)->zalloc))((strm)->opaque, (items), (size))
266 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
H A Dexample.c179 c_stream.opaque = (voidpf)0;
218 d_stream.opaque = (voidpf)0;
257 c_stream.opaque = (voidpf)0;
314 d_stream.opaque = (voidpf)0;
354 c_stream.opaque = (voidpf)0;
393 d_stream.opaque = (voidpf)0;
435 c_stream.opaque = (voidpf)0;
474 d_stream.opaque = (voidpf)0;
H A Dzlib.h77 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
78 typedef void (*free_func) OF((voidpf opaque, voidpf address));
96 voidpf opaque; /* private data object passed to zalloc and zfree */ member in struct:z_stream_s
132 opaque before calling the init function. All other fields are set by the
135 The opaque value provided by the application will be passed as the first
138 opaque value.
205 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
223 zalloc, zfree and opaque must be initialized before by the caller.
346 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
488 fields next_in, zalloc, zfree and opaque mus
[all...]
H A Dinfback.c46 strm->opaque = (voidpf)0;
H A Dgzio.c127 s->stream.opaque = (voidpf)0;
H A Dinflate.c74 * - Changed inflateBack() interface to provide separate opaque descriptors
159 strm->opaque = (voidpf)0;
H A Ddeflate.c245 strm->opaque = (voidpf)0;
/ast/src/cmd/3d/
H A Ddir3d.c103 (dirp->viewp++)->opaque = 0;
111 strcpy(path + n + 1, state.opaque);
114 (dirp->viewp++)->opaque = LSTAT(path, &st) ? 0 : st.st_ino;
126 strcpy(state.path.name + n + 1, state.opaque);
128 (dirp->viewp++)->opaque = LSTAT(state.path.name, &st) ? 0 : st.st_ino;
200 * skip opaque and hidden entries
206 * the following for old opaque
209 if (!*s && !dirp->viewp->opaque)
210 dirp->viewp->opaque = D_FILENO(dp);
228 if (D_FILENO(dp) == dirp->viewp->opaque)
[all...]
H A Drmdir3d.c63 s = state.opaque;
120 strcpy(slast+1, state.opaque);
H A Dpathreal.c31 * if <sp> is a hard link to state.opaque in the same directory then the file
32 * is opaque and the errno should be ENOENT
41 char savebuf[sizeof(state.opaque)];
50 * change the basename to state.opaque
57 memcpy(savebuf, basesp, sizeof(state.opaque));
58 strcpy(basesp, state.opaque);
77 memcpy(basesp, savebuf, sizeof(state.opaque));
305 message((-1, "%s: remove opaque", sp));
399 memcpy(ip, state.opaque, 4);
592 if (*ip == *state.opaque
[all...]
H A DMakefile62 opaque :: opaque.sh
H A Dopen3d.c55 memcpy(buf + dirlen, state.opaque, 4);
74 * check for old style opaque, can be removed soon
92 strcpy(cp, state.opaque);
H A Ddir_3d.h195 ino_t opaque; /* opaque inode number */ member in struct:__anon16
H A D3d.h281 #define P_NOOPAQUE (1<<3) /* remove if opaque object */
437 char opaque[8]; member in struct:__anon7
/ast/src/lib/libbz/
H A Dbzlib.h97 void *opaque; member in struct:__anon329
H A Dbzhdr.h141 #define BZALLOC(nnn) (strm->bzalloc)(strm->opaque,(nnn),1)
142 #define BZFREE(ppp) (strm->bzfree)(strm->opaque,(ppp))
H A Dbzlib.c107 void* default_bzalloc ( void* opaque, Int32 items, Int32 size ) argument
114 void default_bzfree ( void* opaque, void* addr ) argument
912 bzf->strm.opaque = NULL;
1064 bzf->strm.opaque = NULL;
1212 strm.opaque = NULL;
1261 strm.opaque = NULL;
/ast/src/cmd/INIT/
H A Dratz.c500 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
501 typedef void (*free_func) OF((voidpf opaque, voidpf address));
519 voidpf opaque; /* private data object passed to zalloc and zfree */ member in struct:z_stream_s
573 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
801 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
802 void zcfree OF((voidpf opaque, voidpf ptr));
805 (*((strm)->zalloc))((strm)->opaque, (items), (size))
806 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
886 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
888 voidpf buf = opaque; /* jus
910 zcfree(voidpf opaque, voidpf ptr) argument
945 zcalloc(voidpf opaque, unsigned items, unsigned size) argument
951 zcfree(voidpf opaque, voidpf ptr) argument
[all...]

Completed in 386 milliseconds