Searched refs:accu (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/lib/libc/gen/
H A D_rand48.c34 unsigned long accu; local
37 accu = (unsigned long) _rand48_mult[0] * (unsigned long) xseed[0] +
39 temp[0] = (unsigned short) accu; /* lower 16 bits */
40 accu >>= sizeof(unsigned short) * 8;
41 accu += (unsigned long) _rand48_mult[0] * (unsigned long) xseed[1] +
43 temp[1] = (unsigned short) accu; /* middle 16 bits */
44 accu >>= sizeof(unsigned short) * 8;
45 accu += _rand48_mult[0] * xseed[2] + _rand48_mult[1] * xseed[1] + _rand48_mult[2] * xseed[0];
48 xseed[2] = (unsigned short) accu;
/freebsd-13-stable/contrib/ntp/libntp/
H A Dvint64ops.c103 uint32_t accu; local
104 accu = (uint32_t)res.W_s.ll * base;
105 res.W_s.ll = (uint16_t)accu;
106 accu = (accu >> 16)
108 res.W_s.lh = (uint16_t)accu;
110 res.D_s.hi = res.D_s.hi * base + (accu >> 16);
/freebsd-13-stable/contrib/ntp/ntpd/
H A Drefclock_gpsdjson.c1076 json_uint accu, limit_lo, limit_hi; local
1104 accu = 0;
1106 flags |= (accu > limit_lo);
1107 accu = accu * 10 + (*(const u_char*)cp++ - '0');
1108 flags |= (accu > limit_hi);
1114 errno = EINVAL; /* accu is still zero */
1118 accu = limit_hi;
1123 /* If negative, return the negated result if the accu is not
1126 if ((flags & 2) && accu)
[all...]

Completed in 19 milliseconds