Lines Matching defs:current
559 uint64_t current = scalar->limb[0] & 0xFFFF;
578 /* Refill the 16 high bits of current */
579 current += (uint32_t)((scalar->limb[w / B_OVER_16]
583 while (current & 0xFFFF) {
584 uint32_t pos = NUMTRAILINGZEROS((uint32_t)current);
585 uint32_t odd = (uint32_t)current >> pos;
589 assert(pos < 32); /* can't fail since current & 0xFFFF != 0 */
592 current -= delta * (1 << pos);
597 current >>= 16;
599 assert(current == 0);