reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2917 r.digits = MP_DIGITS(u) + j; /* The contents of r are shared with u */ 2918 r.used = n + 1; 2919 r.sign = MP_ZPOS; 2920 r.alloc = MP_ALLOC(u); 2928 pfx = r.digits[n]; 2931 pfx |= r.digits[n-1]; /* pfx = u_{j+n}{j+n-1} */ 2958 CLAMP(&r); 2959 if (s_ucmp(&t, &r) > 0) { /* would the remainder be negative? */ 2963 if (s_ucmp(&t, &r) > 0) { /* would the remainder be negative? */ 2969 assert(s_ucmp(&t, &r) <= 0 && "The mathematics failed us."); 2973 r.used = n + 1; 2979 s_usub(r.digits, t.digits, r.digits, r.used, t.used); 2979 s_usub(r.digits, t.digits, r.digits, r.used, t.used); 2979 s_usub(r.digits, t.digits, r.digits, r.used, t.used); 2995 r.digits--;