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

/xsrc/external/mit/libXmu/dist/src/
H A DRdBitF.c299 char* bufp; local in function:AccessFile
310 if (len < MAX_PATH) bufp = buf;
311 else bufp = malloc (len + 1);
312 strcpy (bufp, drive);
313 strcat (bufp, path);
314 if (access_file (bufp, pathbuf, len_pathbuf, pathret)) {
315 if (bufp != buf) free (bufp);
323 if (len < MAX_PATH) bufp = buf;
324 else bufp
360 char* bufp; local in function:fopen_file
[all...]
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dmemstream.h45 char **bufp; member in struct:u_memstream
52 u_memstream_open(struct u_memstream *mem, char **bufp, size_t *sizep);
H A Dmemstream.c31 u_memstream_open(struct u_memstream *mem, char **bufp, size_t *sizep) argument
47 mem->bufp = bufp;
57 FILE *const f = open_memstream(bufp, sizep);
75 *mem->bufp = buf;
/xsrc/external/mit/libXi/dist/src/
H A DXGMotion.c77 int *data, *bufp, *readp, *savp; local in function:XGetDeviceMotionEvents
121 bufp = Xmalloc(bsize);
123 bufp = NULL;
124 if (!bufp || !savp) {
125 Xfree(bufp);
135 tc = (XDeviceTimeCoord *) bufp;
146 return ((XDeviceTimeCoord *) bufp);
/xsrc/external/mit/libXfont/dist/src/fontfile/
H A Dbufio.c55 f->bufp = f->buffer;
78 f->bufp = f->buffer + 1;
89 curoff = f->bufp - f->buffer;
92 f->bufp += count;
138 *f->bufp++ = c;
139 cnt = f->bufp - f->buffer;
140 f->bufp = f->buffer;
150 if (f->bufp != f->buffer)
166 f->bufp = f->buffer;
H A Dbunzip2.c92 -- we need to put stuff in f.buffer, update f.left and f.bufp,
108 return *(f->bufp++);
152 f->bufp = x->b;
157 return *(f->bufp++);
H A Dgunzip.c80 -- we need to put stuff in f.buffer, update f.left and f.bufp,
97 return *(f->bufp++);
141 f->bufp = x->b;
146 return *(f->bufp++);
H A Ddecompress.c283 f->bufp = f->buffer + 1;
/xsrc/external/mit/libXfont2/dist/src/fontfile/
H A Dbufio.c56 f->bufp = f->buffer;
79 f->bufp = f->buffer + 1;
90 curoff = f->bufp - f->buffer;
93 f->bufp += count;
139 *f->bufp++ = c;
140 cnt = f->bufp - f->buffer;
141 f->bufp = f->buffer;
151 if (f->bufp != f->buffer)
167 f->bufp = f->buffer;
H A Dbunzip2.c93 -- we need to put stuff in f.buffer, update f.left and f.bufp,
109 return *(f->bufp++);
153 f->bufp = x->b;
158 return *(f->bufp++);
H A Dgunzip.c81 -- we need to put stuff in f.buffer, update f.left and f.bufp,
98 return *(f->bufp++);
142 f->bufp = x->b;
147 return *(f->bufp++);
H A Ddecompress.c284 f->bufp = f->buffer + 1;
/xsrc/external/mit/bdftopcf/dist/
H A Dbufio.c55 f->bufp = f->buffer;
78 f->bufp = f->buffer + 1;
85 int curoff = f->bufp - f->buffer;
89 f->bufp += count;
138 *f->bufp++ = c;
139 cnt = f->bufp - f->buffer;
140 f->bufp = f->buffer;
150 if (f->bufp != f->buffer)
166 f->bufp = f->buffer;
H A Dbufio.h41 BufChar *bufp; member in struct:_buffile
66 ((f)->left-- ? *(f)->bufp++ : ((f)->eof = (*(f)->input) (f)))
68 (--(f)->left ? *(f)->bufp++ = ((unsigned char)(c)) \
/xsrc/external/mit/libXfont/dist/include/X11/fonts/
H A Dbufio.h41 BufChar *bufp; member in struct:_buffile
71 #define BufFileGet(f) ((f)->left-- ? *(f)->bufp++ : ((f)->eof = (*(f)->input) (f)))
72 #define BufFilePut(c,f) (--(f)->left ? *(f)->bufp++ = ((unsigned char)(c)) : (*(f)->output) ((unsigned char)(c),f))
/xsrc/external/mit/libXfont2/dist/include/X11/fonts/
H A Dbufio.h41 BufChar *bufp; member in struct:_buffile
71 #define BufFileGet(f) ((f)->left-- ? *(f)->bufp++ : ((f)->eof = (*(f)->input) (f)))
72 #define BufFilePut(c,f) (--(f)->left ? *(f)->bufp++ = ((unsigned char)(c)) : (*(f)->output) ((unsigned char)(c),f))
/xsrc/external/mit/libXfont/dist/src/builtins/
H A Dfile.c53 f->bufp = f->buffer + 1;
65 curoff = f->bufp - f->buffer;
68 f->bufp += count;
120 raw->left += raw->bufp - raw->buffer;
121 raw->bufp = raw->buffer;
/xsrc/external/mit/libXfont2/dist/src/builtins/
H A Dfile.c54 f->bufp = f->buffer + 1;
66 curoff = f->bufp - f->buffer;
69 f->bufp += count;
121 raw->left += raw->bufp - raw->buffer;
122 raw->bufp = raw->buffer;
/xsrc/external/mit/xman/dist/
H A DScrollByL.c909 register char *bufp, *c; /* Generic char pointers */ local in function:PrintText
953 bufp = buf;
978 if ((bufp - buf) > (BUFSIZ - 10))
986 DumpText(w, x_loc, y_loc, buf, bufp - buf,
991 if (bufp != buf) {
994 *bufp = '\0'; /* for Boldify. */
999 (void) DumpText(w, x_loc, y_loc, buf, bufp - buf,
1012 bufp = buf;
1026 x_loc = DumpText(w, x_loc, y_loc, buf, bufp - buf,
1028 h_col += bufp
[all...]
/xsrc/external/mit/libX11/dist/src/
H A DXlibInt.c1846 char* bufp; local in function:AccessFile
1857 if (len < MAX_PATH) bufp = buf;
1858 else bufp = Xmalloc (len + 1);
1859 strcpy (bufp, drive);
1860 strcat (bufp, path);
1861 if (access_file (bufp, pathbuf, len_pathbuf, pathret)) {
1862 if (bufp != buf) Xfree (bufp);
1870 if (len < MAX_PATH) bufp = buf;
1871 else bufp
1908 char* bufp = NULL; local in function:_XOpenFile
1928 char* bufp = NULL; local in function:_XOpenFileMode
1947 char* bufp = NULL; local in function:_XFopenFile
1965 char* bufp; local in function:_XAccessFile
[all...]
/xsrc/external/mit/libXt/dist/src/
H A DIntrinsic.c902 char *bufp; local in function:AccessFile
918 bufp = XtStackAlloc(len + 1, buf);
919 strcpy(bufp, drive);
920 strcat(bufp, path);
921 if (access_file(bufp, pathbuf, len_pathbuf, pathret)) {
922 XtStackFree(bufp, buf);
930 bufp = XtStackAlloc(len + 1, buf);
931 strcpy(bufp, drive);
932 strcat(bufp, path);
933 if (access_file(bufp, pathbu
970 char *bufp; local in function:TestFile
[all...]
/xsrc/external/mit/xterm/dist/
H A Dmisc.c3421 xtermIsPrintable(XtermWidget xw, Char **bufp, Char *last) argument
3425 Char *cp = *bufp;
3458 *bufp = next;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
H A Dsi_shader.c2393 LLVMValueRef addr, bufp; local in function:fetch_constant
2440 bufp = ac_build_load_to_sgpr(&ctx->ac, ptr, index);
2442 bufp = load_const_buffer_desc(ctx, buf);
2444 return bitcast(bld_base, type, buffer_load_const(ctx, bufp, addr));

Completed in 60 milliseconds