Lines Matching defs:src_i
194 int src_i; // Index to next word to get from digit.
215 for (src_i = 0; dst_i < end_i; dst_i++, src_i++) {
216 dst_p[dst_i] = digit[src_i];
220 dst_p[dst_i] = digit[src_i] & mask;
230 for (src_i = 1, dst_i++; dst_i < end_i; dst_i++, src_i++) {
231 left_word = digit[src_i];
236 left_word = (src_i < ndigits) ? digit[src_i] : 0;
257 for (src_i = 0; dst_i < end_i; dst_i++, src_i++) {
258 right_word = (digit[src_i] ^ DIGIT_MASK) + carry;
264 right_word = (src_i < ndigits) ?
265 (digit[src_i] ^ DIGIT_MASK) + carry : DIGIT_MASK + carry;
279 for (src_i = 1, dst_i++; dst_i < end_i; dst_i++, src_i++) {
280 left_word = (digit[src_i] ^ DIGIT_MASK) + carry;
286 left_word = (src_i < ndigits) ?
287 (digit[src_i] ^ DIGIT_MASK) + carry : carry;
304 for (src_i = 0; dst_i < end_i; dst_i++, src_i++) {