Searched refs:newbuf (Results 1 - 10 of 10) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/glx/apple/
H A Dapple_xgl_api_stereo.c93 GLenum newbuf[n + 2]; local in function:__applegl_glDrawBuffers
106 newbuf[outi++] = bufs[i];
111 newbuf[outi++] = GL_BACK_LEFT;
112 newbuf[outi++] = GL_BACK_RIGHT;
116 newbuf[outi++] = GL_FRONT_LEFT;
117 newbuf[outi++] = GL_FRONT_RIGHT;
120 __ogl_framework_api->DrawBuffers(outi, newbuf);
/xsrc/external/mit/MesaLib/dist/src/glx/apple/
H A Dapple_xgl_api_stereo.c93 GLenum newbuf[n + 2]; local in function:__applegl_glDrawBuffers
106 newbuf[outi++] = bufs[i];
111 newbuf[outi++] = GL_BACK_LEFT;
112 newbuf[outi++] = GL_BACK_RIGHT;
116 newbuf[outi++] = GL_FRONT_LEFT;
117 newbuf[outi++] = GL_FRONT_RIGHT;
120 __ogl_framework_api->DrawBuffers(outi, newbuf);
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Dos_file.c76 char *newbuf = realloc(buf, 2 * len); local in function:os_read_file
77 if (!newbuf) {
84 buf = newbuf;
97 char *newbuf = realloc(buf, len); local in function:os_read_file
98 if (!newbuf) {
103 buf = newbuf;
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dos_file.c157 char *newbuf = realloc(buf, 2 * len); local in function:os_read_file
158 if (!newbuf) {
165 buf = newbuf;
178 char *newbuf = realloc(buf, len); local in function:os_read_file
179 if (!newbuf) {
184 buf = newbuf;
/xsrc/external/mit/mesa-demos/dist/src/perf/
H A Dglsl-compile-time.c70 char *newbuf = malloc(newsize); local in function:append_string
71 assert(newbuf);
73 strcpy(newbuf, ds->buffer);
75 ds->buffer = newbuf;
/xsrc/external/mit/mkfontscale/dist/
H A Dident.c407 char *newbuf; local in function:bdfend
411 newbuf = malloc(bufsize);
415 newbuf = realloc(buf, bufsize);
417 if (newbuf == NULL)
419 buf = newbuf;
/xsrc/external/mit/xsm/dist/
H A Dinfo.c114 char *newbuf = realloc (buffer->bufStart, newBufSize);
115 if (newbuf != NULL) {
116 newbuf[bytesUsed] = '\0';
117 buffer->bufStart = newbuf;
118 buffer->bufPtr = newbuf + bytesUsed;
112 char *newbuf = realloc (buffer->bufStart, newBufSize); local in function:AppendStr
/xsrc/external/mit/xorg-server.old/dist/hw/xquartz/pbproxy/
H A Dx-selection.m152 unsigned char *newbuf = NULL;
191 newbuf = realloc (buf, newbuflen);
193 if (NULL == newbuf)
200 memcpy (newbuf + buflen, chunk, chunkbytesize);
202 buf = newbuf;
/xsrc/external/mit/xorg-server/dist/hw/xquartz/pbproxy/
H A Dx-selection.m145 unsigned char *newbuf = NULL;
182 newbuf = realloc(buf, newbuflen);
184 if (NULL == newbuf) {
190 memcpy(newbuf + buflen, chunk, chunkbytesize);
192 buf = newbuf;
/xsrc/external/mit/xorg-server/dist/glx/
H A Dglxcmds.c2208 GLbyte *newbuf = glxc->largeCmdBuf; local in function:__glXDisp_RenderLarge
2210 if (!(newbuf = realloc(newbuf, cmdlen)))
2213 glxc->largeCmdBuf = newbuf;

Completed in 15 milliseconds