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

/freebsd-10.1-release/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-10.1-release/contrib/gcc/
H A Dunwind-dw2-fde.c396 start_fde_sort (struct fde_accumulator *accu, size_t count)
403 if ((accu->linear = malloc (size)))
405 accu->linear->count = 0;
406 if ((accu->erratic = malloc (size)))
407 accu->erratic->count = 0;
415 fde_insert (struct fde_accumulator *accu, const fde *this_fde)
417 if (accu->linear)
418 accu->linear->array[accu->linear->count++] = this_fde;
565 end_fde_sort (struct object *ob, struct fde_accumulator *accu, size_
394 start_fde_sort(struct fde_accumulator *accu, size_t count) argument
413 fde_insert(struct fde_accumulator *accu, const fde *this_fde) argument
563 end_fde_sort(struct object *ob, struct fde_accumulator *accu, size_t count) argument
653 add_fdes(struct object *ob, struct fde_accumulator *accu, const fde *this_fde) argument
718 struct fde_accumulator accu; local
[all...]
/freebsd-10.1-release/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-10.1-release/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 141 milliseconds