Searched refs:bp (Results 1 - 25 of 69) sorted by relevance

123

/xsrc/external/mit/mkfontscale/dist/
H A Dhash.c67 HashBucketPtr bp = table[i]; local in function:destroyHashTable
69 free(bp->key);
70 free(bp->value);
71 free(bp);
82 for (HashBucketPtr bp = table[i]; bp; bp = bp->next) { local in function:getHash
83 if (strcasecmp(bp->key, key) == 0)
84 return bp
94 HashBucketPtr bp; local in function:putHash
145 for (HashBucketPtr bp = table[i]; bp; bp = bp->next) { local in function:hashElements
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/tests/
H A Dstate_pool_padding.c39 struct anv_block_pool *bp = &state_pool.block_pool; local in function:main
40 uint64_t pool_size = bp->size;
49 assert(bp->size > pool_size);
69 pool_size = bp->size;
71 assert(bp->size > pool_size);
/xsrc/external/mit/MesaLib/dist/src/intel/vulkan/tests/
H A Dstate_pool_padding.c42 struct anv_block_pool *bp = &state_pool.block_pool; local in function:main
43 uint64_t pool_size = bp->size;
52 ASSERT(bp->size > pool_size);
72 pool_size = bp->size;
74 ASSERT(bp->size > pool_size);
/xsrc/external/mit/libdrm/dist/
H A DAndroid.sources.bp.mk1 # Usage: make -f path/to/Android.sources.bp.mk NAMES=<> >Android.sources.bp
4 # write <NAME>_FILES to stdout as an Android.bp cc_defaults module.
15 $(info // Autogenerated with Android.sources.bp.mk)
/xsrc/external/mit/libX11/dist/src/
H A DLiHosts.c78 unsigned char *buf, *bp; local in function:XListHosts
116 bp = buf = ((unsigned char *) sip)
122 if (bp > buf + nbytes - SIZEOF(xHostEntry))
124 op->family = ((xHostEntry *) bp)->family;
125 op->length =((xHostEntry *) bp)->length;
127 char *tp = (char *) (bp + SIZEOF(xHostEntry));
145 op->address = (char *) (bp + SIZEOF(xHostEntry));
149 bp += SIZEOF(xHostEntry) + (((op->length + 3) >> 2) << 2);
H A DImUtil.c123 register unsigned char *bp,
132 c = *bp;
133 *bp = *(bp + 1);
134 *(bp + 1) = c;
138 c = *(bp + 3);
139 *(bp + 3) = *bp;
140 *bp = c;
141 c = *(bp
122 _xynormalizeimagebits(register unsigned char * bp,register XImage * img) argument
151 _znormalizeimagebits(register unsigned char * bp,register XImage * img) argument
[all...]
H A DSetHints.c215 register char *buf, *bp; local in function:XSetCommand
221 if ((bp = buf = Xmalloc(nbytes))) {
225 (void) strcpy(bp, argv[i]);
226 bp += strlen(argv[i]) + 1;
229 *bp++ = '\0';
/xsrc/external/mit/MesaLib.old/dist/src/glx/
H A Dglxext.c368 const INT32 * bp, Bool tagged_only,
376 config->visualID = *bp++;
378 config->visualType = convert_from_x_visual_type(*bp++);
380 config->rgbMode = *bp++;
382 config->redBits = *bp++;
383 config->greenBits = *bp++;
384 config->blueBits = *bp++;
385 config->alphaBits = *bp++;
386 config->accumRedBits = *bp++;
387 config->accumGreenBits = *bp
367 __glXInitializeVisualConfigFromTags(struct glx_config * config,int count,const INT32 * bp,Bool tagged_only,Bool fbconfig_style_tags) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/glx/
H A Dglxext.c398 const INT32 * bp, Bool tagged_only,
405 config->visualID = *bp++;
407 config->visualType = convert_from_x_visual_type(*bp++);
409 config->renderType = *bp++ ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT;
411 config->redBits = *bp++;
412 config->greenBits = *bp++;
413 config->blueBits = *bp++;
414 config->alphaBits = *bp++;
415 config->accumRedBits = *bp++;
416 config->accumGreenBits = *bp
397 __glXInitializeVisualConfigFromTags(struct glx_config * config,int count,const INT32 * bp,Bool tagged_only,Bool fbconfig_style_tags) argument
[all...]
/xsrc/external/mit/freetype/dist/src/base/
H A Dfthash.c109 FT_Hashnode* bp = hash->table; local in function:hash_bucket
115 ndp = bp + ( res % hash->size );
122 if ( ndp < bp )
123 ndp = bp + ( hash->size - 1 );
135 FT_Hashnode* bp; local in function:hash_rehash
148 for ( i = 0, bp = obp; i < sz; i++, bp++ )
150 if ( *bp )
152 nbp = hash_bucket( (*bp)->key, hash );
153 *nbp = *bp;
217 FT_Hashnode* bp = hash->table; local in function:ft_hash_str_free
239 FT_Hashnode* bp = hash_bucket( key, hash ); local in function:hash_insert
[all...]
/xsrc/external/mit/xcb-util/dist/image/
H A Dxcb_pixel.h65 uint8_t * bp = image->data + (y * image->stride) + (unit | byte); local in function:xcb_image_put_pixel_XY32M
66 *bp = (*bp & ~m) | p;
78 uint8_t * bp = image->data + (y * image->stride) + (x >> 3); local in function:xcb_image_put_pixel_XY32L
79 *bp = (*bp & ~m) | p;
90 uint8_t * bp = image->data + (y * image->stride) + (unit | byte); local in function:xcb_image_get_pixel_XY32M
91 return (*bp >> bit) & 1;
100 uint8_t * bp = image->data + (y * image->stride) + (x >> 3); local in function:xcb_image_get_pixel_XY32L
101 return (*bp >> bi
[all...]
/xsrc/external/mit/ctwm/dist/
H A Dimage_xwd.c21 static void swapshort(char *bp, unsigned n);
22 static void swaplong(char *bp, unsigned n);
289 swapshort(char *bp, unsigned n) argument
292 char *ep = bp + n;
294 while(bp < ep) {
295 c = *bp;
296 *bp = *(bp + 1);
297 bp++;
298 *bp
304 swaplong(char * bp,unsigned n) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/svga/drm/
H A Dvmw_msg.c116 * @bp: [IN]
129 port_num, magic, bp, \
148 "r"(bp) : \
153 port_num, magic, bp, \
172 "r"(bp) : \
180 /* In the 32-bit version of this macro, we store bp in a memory location
188 port_num, magic, bp, \
209 "m"(bp) : \
215 port_num, magic, bp, \
236 "m"(bp)
366 VMW_REG ax = 0, bx = 0, cx = 0, dx = 0, si, di, bp; local in function:vmw_send_msg
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/winsys/svga/drm/
H A Dvmw_msg.c119 * @bp: [IN]
132 port_num, magic, bp, \
151 "r"(bp) : \
156 port_num, magic, bp, \
175 "r"(bp) : \
183 /* In the 32-bit version of this macro, we store bp in a memory location
191 port_num, magic, bp, \
212 "m"(bp) : \
218 port_num, magic, bp, \
239 "m"(bp)
369 VMW_REG ax = 0, bx = 0, cx = 0, dx = 0, si, di, bp; local in function:vmw_send_msg
[all...]
/xsrc/external/mit/libXmu/dist/src/
H A DLower.c89 _Xconst unsigned char *ap, *bp; local in function:XmuCompareISOLatin1
91 for (ap = (_Xconst unsigned char *)first, bp = (_Xconst unsigned char *)second;
92 *ap && *bp && XmuTolower(*ap) == XmuTolower(*bp);
93 ap++, bp++)
96 return ((int)XmuTolower(*ap) - (int)XmuTolower(*bp));
/xsrc/external/mit/xwd/dist/
H A Dxwd.c666 _swapshort(register char *bp, register unsigned n) argument
668 char *ep = bp + n;
670 while (bp < ep) {
671 char c = *bp;
672 *bp = *(bp + 1);
673 bp++;
674 *bp++ = c;
679 _swaplong(register char *bp, register unsigned n) argument
681 char *ep = bp
[all...]
/xsrc/external/mit/libXfont/dist/src/fontfile/
H A Ddecompress.c305 register char_type *bp = file->buf; local in function:getcode
331 *bp++ = code;
334 bp = file->buf;
347 bp += (r_off >> 3);
351 code = ((*bp++ >> r_off) & rmask[8 - r_off]) & 0xff;
353 code = (*bp++ >> r_off);
360 code |= (*bp++ & 0xff) << r_off;
362 code |= *bp++ << r_off;
368 code |= (*bp & rmask[bits]) << r_off;
/xsrc/external/mit/libXfont2/dist/src/fontfile/
H A Ddecompress.c306 register char_type *bp = file->buf; local in function:getcode
332 *bp++ = code;
335 bp = file->buf;
348 bp += (r_off >> 3);
352 code = ((*bp++ >> r_off) & rmask[8 - r_off]) & 0xff;
354 code = (*bp++ >> r_off);
361 code |= (*bp++ & 0xff) << r_off;
363 code |= *bp++ << r_off;
369 code |= (*bp & rmask[bits]) << r_off;
/xsrc/external/mit/libXpm/dist/src/
H A DXpmI.h273 HFUNC(xpm_xynormalizeimagebits, void, (register unsigned char *bp,
275 HFUNC(xpm_znormalizeimagebits, void, (register unsigned char *bp,
298 #define XYNORMALIZE(bp, img) \
300 xpm_xynormalizeimagebits((unsigned char *)(bp), img)
302 #define ZNORMALIZE(bp, img) \
304 xpm_znormalizeimagebits((unsigned char *)(bp), img)
H A Dcreate.c1091 register unsigned char *bp,
1100 c = *bp;
1101 *bp = *(bp + 1);
1102 *(bp + 1) = c;
1106 c = *(bp + 3);
1107 *(bp + 3) = *bp;
1108 *bp = c;
1109 c = *(bp
1090 xpm_xynormalizeimagebits(register unsigned char * bp,register XImage * img) argument
1120 xpm_znormalizeimagebits(register unsigned char * bp,register XImage * img) argument
[all...]
/xsrc/external/mit/xf86-video-openchrome/dist/src/
H A Dvia_exa.c53 register CARD32 *bp = cb->buf; local in function:viaDumpDMA
54 CARD32 *endp = bp + cb->pos;
56 while (bp != endp) {
57 if (((bp - cb->buf) & 3) == 0) {
58 ErrorF("\n %04lx: ", (unsigned long)(bp - cb->buf));
60 ErrorF("0x%08x ", (unsigned)*bp++);
68 register CARD32 *bp = cb->buf; local in function:viaFlushPCI
70 CARD32 *endp = bp + cb->pos;
76 while (bp < endp) {
77 if (*bp
[all...]
/xsrc/external/mit/xf86-video-xgi/dist/src/
H A Dvb_ext.h39 USHORT ax, hi_ax, bx, hi_bx, cx, hi_cx, dx, hi_dx, si, hi_si, di ,hi_di, bp, hi_bp; member in struct:WORDREGS
/xsrc/external/mit/xorg-server.old/dist/glx/
H A Dsingle2swap.c176 GLuint *bp = cx->selectBuf; local in function:__glXDispSwap_RenderMode
191 n = *bp;
192 bp += 3 + n;
194 nitems = bp - cx->selectBuf;
/xsrc/external/mit/xorg-server/dist/glx/
H A Dsingle2swap.c176 GLuint *bp = cx->selectBuf; local in function:__glXDispSwap_RenderMode
191 n = *bp;
192 bp += 3 + n;
194 nitems = bp - cx->selectBuf;
/xsrc/external/mit/xfs/dist/difs/
H A Ddifsutils.c187 *bp; local in function:strncmpnocase
190 bp = (const unsigned char *) second;
192 n > 0 && *ap && *bp; n--, ap++, bp++) {
197 if ((a = *ap) != (b = *bp)) {
219 return (n ? (((int) *ap) - ((int) *bp)) : 0);

Completed in 37 milliseconds

123