Lines Matching refs:te
2148 register unsigned char* te;
2161 te = t + dp->size - 1;
2162 if (bcd_negative[*se] == bcd_negative[*te])
2164 if ((j = bcd_unpack[*te] + bcd_unpack[*se]) >= 10)
2171 *te = bcd_unit[j] | (*se & 0x0F);
2172 while (te-- > t)
2175 if ((j = bcd_unpack[*te] + bcd_unpack[*se] + i) >= 100)
2182 *te = bcd_pack[j];
2189 if ((j = (int)bcd_unpack[*te] - (int)bcd_unpack[*se]) < 0)
2196 *te = bcd_unit[j] | (*te & 0x0F);
2199 te--;
2200 if ((j = (int)bcd_unpack[*te] - (int)bcd_unpack[*se] - i) < 0)
2207 *te = bcd_pack[j];
2211 te = t + dp->size - 1;
2212 if ((j = (int)0 - (int)bcd_unpack[*te]) < 0)
2219 *te = bcd_unit[j] | ((*te & 0x0F) == 0x0C ? 0x0D : 0x0C);
2220 while (te-- > t)
2222 if ((j = (int)0 - (int)bcd_unpack[*te] - i) < 0)
2229 *te = bcd_pack[j];
2256 te = t + dp->size - 1;
2257 if ((*se ^ *te) & 0x10)
2259 if ((j = (int)(*te & 0x0F) - (int)(*se & 0x0F)) < 0)
2266 *te = (*te & 0xF0) | j;
2269 te--;
2270 if ((j = (int)(*te & 0x0F) - (int)(*se & 0x0F) - i) < 0)
2277 *te = 0xF0 | j;
2281 te = t + dp->size - 1;
2282 if ((j = (int)0 - (int)(*te & 0x0F)) < 0)
2289 *te = ((*te & 0x10) ? 0xC0 : 0xD0) | j;
2290 while (te-- > t)
2292 if ((j = (int)0 - (int)(*te & 0x0F) - i) < 0)
2299 *te = 0xF0 | j;
2305 if ((j = (*te & 0x0F) + (*se & 0x0F)) >= 10)
2312 *te = (*se & 0xF0) | j;
2313 while (te-- > t)
2316 if ((j = (*te & 0x0F) + (*se & 0x0F) + i) >= 10)
2323 *te = 0xF0 | j;