Home | History | Annotate | Download | only in Support

Lines Matching refs:x_tmp

268     uint64_t x_tmp = borrow ? x[i] - 1 : x[i];
269 borrow = y[i] > x_tmp || (borrow && x[i] == 0);
270 dest[i] = x_tmp - y[i];