Lines Matching defs:src_i
208 int src_i; // Index to next word to get from digit.
230 for (src_i = 0; dst_i < end_i; dst_i++, src_i++) {
231 dst_p[dst_i] = digit[src_i];
235 dst_p[dst_i] = digit[src_i] & mask;
245 for (src_i = 1, dst_i++; dst_i < end_i; dst_i++, src_i++) {
246 left_word = digit[src_i];
251 left_word = (src_i < ndigits) ? digit[src_i] : 0;
273 for (src_i = 0; dst_i < end_i; dst_i++, src_i++) {
274 right_word = (digit[src_i] ^ DIGIT_MASK) + carry;
280 right_word = (src_i < ndigits) ?
281 (digit[src_i] ^ DIGIT_MASK) + carry : DIGIT_MASK + carry;
295 for (src_i = 1, dst_i++; dst_i < end_i; dst_i++, src_i++) {
296 left_word = (digit[src_i] ^ DIGIT_MASK) + carry;
302 left_word = (src_i < ndigits) ?
303 (digit[src_i] ^ DIGIT_MASK) + carry : carry;
320 for (src_i = 0; dst_i < end_i; dst_i++, src_i++) {