HomeSort by relevance Sort by last modified time
    Searched refs:compsize (Results 1 - 14 of 14) sorted by null

  /external/mesa3d/src/mapi/glapi/gen/
glX_proto_common.py 52 """Create C code to calculate 'compsize'.
54 Creates code to calculate 'compsize'. If the function does
55 not need 'compsize' to be calculated, None will be
58 compsize = None
65 compsize = '__glImageSize(%s, %s, %s, %s, %s, %s)' % (w, h, d, param.img_format, param.img_type, param.img_target)
67 compsize = '(%s != NULL) ? %s : 0' % (param.name, compsize)
69 return compsize
73 compsize = "__gl%s_size(%s)" % (func.name, parameters)
75 return compsize
    [all...]
glX_proto_recv.py 360 compsize = self.size_call(f, 1)
361 print ' %s = (%s) %s( (%s *) (pc + %s), %s );' % (param.name, param.type_string(), swap_func, self.real_types[type_size], o, compsize)
431 print ' const GLuint compsize = %s;' % (self.size_call(f, 1))
433 print ' %s %s = __glXGetAnswerBuffer(cl, compsize%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, size_scale, type_size )
435 answer_count = "compsize"
  /external/mesa3d/src/glx/
render2.c 58 compsize = k * order * __GLX_SIZE_FLOAT64;
59 cmdlen = 28 + compsize;
92 buf = (GLubyte *) Xmalloc(compsize);
98 __glXSendLargeCommand(gc, pc, 32, buf, compsize);
103 __glXSendLargeCommand(gc, pc, 32, pnts, compsize);
125 compsize = k * order * __GLX_SIZE_FLOAT32;
126 cmdlen = 20 + compsize;
155 buf = (GLubyte *) Xmalloc(compsize);
161 __glXSendLargeCommand(gc, pc, 24, buf, compsize);
166 __glXSendLargeCommand(gc, pc, 24, pnts, compsize);
    [all...]
singlepix.c 58 compsize = reply.length << 2;
60 if (compsize != 0) {
74 _XEatData(dpy, compsize);
88 _XEatData(dpy, compsize - __GLX_PAD(widthsize));
138 unsigned compsize; local
148 compsize = reply.length << 2;
150 if (compsize != 0) {
163 _XEatData(dpy, compsize);
renderpix.c 64 * \param compsize Size, in bytes, of the image portion
81 __glXSendLargeImage(struct glx_context * gc, GLint compsize, GLint dim,
87 GLubyte *buf = (GLubyte *) Xmalloc(compsize);
108 __glXSendLargeCommand(gc, gc->pc, pc - gc->pc, buf, compsize);
129 compsize = __glImageSize(width, 1, 1, format, type, 0);
133 image1len = __GLX_PAD(compsize);
149 if (compsize > 0) {
159 if ((compsize == 0) && (compsize2 == 0)) {
indirect_texture_compression.c 92 compsize = 0;
95 compsize = image_size;
98 cmdlen = __GLX_PAD(__GLX_COMPRESSED_TEXIMAGE_CMD_HDR_SIZE + compsize);
108 if (compsize != 0) {
115 assert(compsize != 0);
151 compsize = 0;
154 compsize = image_size;
157 cmdlen = __GLX_PAD(__GLX_COMPRESSED_TEXSUBIMAGE_CMD_HDR_SIZE + compsize);
168 if (compsize != 0) {
175 assert(compsize != 0)
    [all...]
single2.c 331 __GLX_SINGLE_GET_SIZE(compsize);
333 if (compsize == 0) {
354 if (compsize == 1) {
358 __GLX_SINGLE_GET_CHAR_ARRAY(b, compsize);
382 __GLX_SINGLE_GET_SIZE(compsize);
384 if (compsize == 0) {
405 if (compsize == 1) {
409 __GLX_SINGLE_GET_DOUBLE_ARRAY(d, compsize);
433 __GLX_SINGLE_GET_SIZE(compsize);
435 if (compsize == 0)
    [all...]
packrender.h 59 GLuint compsize, cmdlen
66 compsize = 0; (void)compsize; \
packsingle.h 54 GLuint compsize, cmdlen; \
62 compsize = 0; (void)compsize; \
glxclient.h 681 extern void __glXSendLargeImage(struct glx_context * gc, GLint compsize, GLint dim,
  /external/squashfs-tools/squashfs-tools/
lzo_wrapper.c 344 lzo_uint compsize, orig_size = size; local
347 res = lzo[algorithm].compress(src, size, stream->buffer, &compsize,
360 if(compsize > block_size)
363 res = lzo1x_optimize(stream->buffer, compsize, src, &orig_size, NULL);
368 memcpy(dest, stream->buffer, compsize);
369 return compsize;
419 lzo_uintp compsize, lzo_voidp workspace)
421 return lzo1x_999_compress_level(src, src_len, dst, compsize,
  /external/mesa3d/src/glx/apple/
Makefile 45 ../compsize.c \
  /external/libogg/src/
bitwise.c 511 void cliptest(unsigned long *b,int vals,int bits,int *comp,int compsize){
520 if(bytes!=compsize)report("wrong number of bytes!\n");
546 void cliptestB(unsigned long *b,int vals,int bits,int *comp,int compsize){
555 if(bytes!=compsize)report("wrong number of bytes!\n");
  /external/tremolo/Tremolo/
bitwise.c 390 void cliptest(unsigned long *b,int vals,int bits,int *comp,int compsize){
393 for(i=0;i<compsize;i++)

Completed in 1524 milliseconds