Searched refs:b1 (Results 1 - 25 of 166) sorted by relevance

1234567

/xsrc/external/mit/libXfont/dist/src/fc/
H A Dfslibos.h118 # define MASKANDSETBITS(dst, b1, b2) dst[0] = (b1[0] & b2[0])
119 # define ORBITS(dst, b1, b2) dst[0] = (b1[0] | b2[0])
120 # define UNSETBITS(dst, b1) (dst[0] &= ~b1[0])
127 # define MASKANDSETBITS(dst, b1, b2) {\
128 dst[0] = (b1[0] & b2[0]);\
129 dst[1] = (b1[1] & b2[1]); }
130 # define ORBITS(dst, b1, b
[all...]
/xsrc/external/mit/libXfont2/dist/src/fc/
H A Dfslibos.h114 # define MASKANDSETBITS(dst, b1, b2) dst[0] = (b1[0] & b2[0])
115 # define ORBITS(dst, b1, b2) dst[0] = (b1[0] | b2[0])
116 # define UNSETBITS(dst, b1) (dst[0] &= ~b1[0])
123 # define MASKANDSETBITS(dst, b1, b2) {\
124 dst[0] = (b1[0] & b2[0]);\
125 dst[1] = (b1[1] & b2[1]); }
126 # define ORBITS(dst, b1, b
[all...]
/xsrc/external/mit/libFS/dist/src/
H A DFSlibos.h138 # define MASKANDSETBITS(dst, b1, b2) dst[0] = (b1[0] & b2[0])
139 # define ORBITS(dst, b1, b2) dst[0] = (b1[0] | b2[0])
140 # define UNSETBITS(dst, b1) (dst[0] &= ~b1[0])
147 # define MASKANDSETBITS(dst, b1, b2) {\
148 dst[0] = (b1[0] & b2[0]);\
149 dst[1] = (b1[1] & b2[1]); }
150 # define ORBITS(dst, b1, b
[all...]
/xsrc/external/mit/xorgproto/dist/include/X11/
H A DXfuncs.h44 # define bcmp(b1,b2,len) memcmp(b1, b2, len)
64 # define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len))
H A DXpoll.h.in149 #define XFD_ANDSET(dst,b1,b2) { \
152 __XFDS_BITS((dst), __i__) = ((__XFDS_BITS((b1), __i__)) & (__XFDS_BITS((b2), __i__))); \
154 #define XFD_ORSET(dst,b1,b2) { \
157 __XFDS_BITS((dst), __i__) = ((__XFDS_BITS((b1), __i__)) | (__XFDS_BITS((b2), __i__))); \
159 #define XFD_UNSET(dst,b1) { \
162 __XFDS_BITS((dst), __i__) &= ~(__XFDS_BITS((b1), __i__)); \
192 #define XFD_ANDSET(dst,b1,b2) { \
195 for (__i = 0; __i < XFD_SETCOUNT(b1) ; __i++) { \
196 if (FD_ISSET(XFD_FD(b1,__i), b2)) \
197 FD_SET(XFD_FD(b1,__
[all...]
/xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
H A Dir3_dominance.c36 intersect(struct ir3_block *b1, struct ir3_block *b2) argument
38 while (b1 != b2) {
44 while (b1->index > b2->index)
45 b1 = b1->imm_dom;
46 while (b2->index > b1->index)
50 return b1;
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dfast_urem_by_const.h54 * Let b = b0 + 2^32 * b1. Then a * b = a * b0 + 2^32 * a * b1. We would
61 uint32_t b1 = b >> 32;
62 return ((((uint64_t) a * b0) >> 32) + (uint64_t) a * b1) >> 32;
/xsrc/external/mit/xorg-server.old/dist/os/
H A Dtimingsafe_memcmp.c24 timingsafe_memcmp(const void *b1, const void *b2, size_t len) argument
26 const unsigned char *p1 = b1, *p2 = b2;
/xsrc/external/mit/xorg-server/dist/os/
H A Dtimingsafe_memcmp.c24 timingsafe_memcmp(const void *b1, const void *b2, size_t len) argument
26 const unsigned char *p1 = b1, *p2 = b2;
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_dominance.c55 intersect(nir_block *b1, nir_block *b2) argument
57 while (b1 != b2) {
63 while (b1->index > b2->index)
64 b1 = b1->imm_dom;
65 while (b2->index > b1->index)
69 return b1;
221 nir_dominance_lca(nir_block *b1, nir_block *b2) argument
223 if (b1 == NULL || !nir_block_is_reachable(b1))
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_dominance.c53 intersect(nir_block *b1, nir_block *b2) argument
55 while (b1 != b2) {
61 while (b1->index > b2->index)
62 b1 = b1->imm_dom;
63 while (b2->index > b1->index)
67 return b1;
209 nir_dominance_lca(nir_block *b1, nir_block *b2) argument
211 if (b1 == NULL)
215 return b1;
[all...]
/xsrc/external/mit/libX11/dist/src/xcms/
H A DcmsTrig.c558 double ai, a1 = 0.0, bi, b1 = 0.0, l, d;
574 b1 = _XcmsSquareRoot((a1 * bi));
575 if (a1 == b1)
577 d = XCMS_FABS(a1 - b1);
581 bi = b1;
584 l = ((a1 > b1) ? b1 : a1);
552 double ai, a1 = 0.0, bi, b1 = 0.0, l, d; local in function:_XcmsArcTangent
/xsrc/external/mit/mkfontscale/dist/
H A Dhash.c155 const HashBucketPtr *b1 = v1, *b2 = v2; local in function:key_first_cmp
156 int c1 = strcasecmp((*b1)->key, (*b2)->key);
160 return strcmp((*b1)->value, (*b2)->value);
166 const HashBucketPtr *b1 = v1, *b2 = v2; local in function:value_first_cmp
167 int c1 = strcmp((*b1)->value, (*b2)->value);
171 return strcasecmp((*b1)->key, (*b2)->key);
/xsrc/external/mit/fonttosfnt/dist/
H A Dfonttosfnt.h57 #define SAME_METRICS(b1, b2) \
58 ((b1)->advanceWidth == (b2)->advanceWidth && \
59 (b1)->horiBearingX == (b2)->horiBearingX && \
60 (b1)->horiBearingY == (b2)->horiBearingY && \
61 (b1)->width == (b2)->width && \
62 (b1)->height == (b2)->height)
/xsrc/external/mit/xorg-server/dist/hw/xwin/
H A Dpropertystore.h70 #define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) GUID_EXT const PROPERTYKEY DECLSPEC_SELECTANY name = { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid }
72 #define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) GUID_EXT const PROPERTYKEY name
/xsrc/external/mit/xlogo/dist/
H A DRenderLogo.c141 * x = m1y + b1
143 * m1y + b1 = m2y + b2
144 * y * (m1 - m2) = b2 - b1
145 * y = (b2 - b1) / (m1 - m2)
148 double b1 = compute_x_intercept (l1, m1); local in function:intersect
152 intersection->y = (b2 - b1) / (m1 - m2);
153 intersection->x = m1 * intersection->y + b1;
/xsrc/external/mit/libXt/dist/include/X11/
H A DIntrinsicI.h127 #define XtMemcmp(b1, b2, size) \
128 memcmp((const void *) (b1), (const void *) (b2), (size_t) (size))
/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_cfg.cpp551 cfg_t::intersect(bblock_t *b1, bblock_t *b2) argument
557 while (b1->num != b2->num) {
558 while (b1->num > b2->num)
559 b1 = b1->idom;
560 while (b2->num > b1->num)
563 assert(b1);
564 return b1;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_etc2.c120 const uint8_t b1 = (buffer[1] & 0x0f); local in function:swap_colors
138 buffer[3] = (b1 << 4) | rest;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_etc2.c120 const uint8_t b1 = (buffer[1] & 0x0f); local in function:swap_colors
138 buffer[3] = (b1 << 4) | rest;
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_cfg.cpp580 idom_tree::intersect(bblock_t *b1, bblock_t *b2) const argument
586 while (b1->num != b2->num) {
587 while (b1->num > b2->num)
588 b1 = parent(b1);
589 while (b2->num > b1->num)
592 assert(b1);
593 return b1;
/xsrc/external/mit/mesa-demos/dist/src/util/
H A Dreadtex.c57 unsigned long b1, b2; local in function:ConvertShort
62 b1 = *ptr++;
64 *array++ = (unsigned short) ((b1 << 8) | (b2));
70 unsigned long b1, b2, b3, b4; local in function:ConvertLong
75 b1 = *ptr++;
79 *array++ = (b1 << 24) | (b2 << 16) | (b3 << 8) | (b4);
/xsrc/external/mit/xf86-video-mach64/dist/src/
H A Datiwonder.c99 pATIHW->b1 = ATIGetExtReg(0xB1U);
149 ATIModifyExtReg(pATI, 0xB1U, -1, 0x00U, pATIHW->b1);
/xsrc/external/mit/fontconfig/dist/src/
H A Dfcmatch.c185 double b1, e1, b2, e2, d; local in function:FcCompareRange
189 b1 = e1 = value1.u.i;
192 b1 = e1 = value1.u.d;
195 b1 = value1.u.r->begin;
218 else if (e2 < b1)
221 d = (FC_MAX (b1, b2) + FC_MIN (e1, e2)) * .5;
227 if (e1 < b2 || e2 < b1)
228 return FC_MIN (fabs (b2 - e1), fabs (b1 - e2));
238 double b1, e1, b2, e2; local in function:FcCompareSize
242 b1
[all...]
/xsrc/external/mit/xf86-input-ws/dist/src/
H A Dws.c172 int b1, b2; local in function:wsPreInit12
174 if (sscanf(s, "%d %d", &b1, &b2) == 2 &&
175 b1 > 0 && b1 <= NBUTTONS &&
177 priv->negativeZ = b1;
181 pInfo->name, b1, b2);
198 int b1, b2; local in function:wsPreInit12
200 if (sscanf(s, "%d %d", &b1, &b2) == 2 &&
201 b1 > 0 && b1 <
[all...]

Completed in 33 milliseconds

1234567