Lines Matching +full:0 +full:xe
60 ULong c, h, *x, *x1, *xe; local
64 if (!hexdig['0'])
70 *--x = 0;
71 x1 = xe = x;
72 havedig = hd0 = i = 0;
74 /* allow optional initial 0x or 0X */
77 if (s[1] == '0' && (s[2] == 'x' || s[2] == 'X')
91 *--x = 0;
93 i = 0;
97 if (s[1] == '0' && (s[2] == 'x' || s[2] == 'X')
121 *--x = 0;
123 *x = (*x << 4) | (h & 0xf);
132 while(x <= xe);
133 do *x1++ = 0;
134 while(x1 <= xe);
138 if ( (i = nbits & (ULbits-1)) !=0)
139 *xe &= ((ULong)0xffffffff) >> (ULbits - i);
141 for(x1 = xe;; --x1) {
142 if (*x1 != 0)