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

/freebsd-10.1-release/contrib/ntp/libparse/
H A Dmfp_mul.c42 #define HIGH_MASK (u_int32)(LOW_MASK << (FRACTION_PREC/2)) macro
88 a[1] = (a_f & HIGH_MASK) >> (FRACTION_PREC/2);
90 a[3] = (a_i & HIGH_MASK) >> (FRACTION_PREC/2);
93 b[1] = (b_f & HIGH_MASK) >> (FRACTION_PREC/2);
95 b[3] = (b_i & HIGH_MASK) >> (FRACTION_PREC/2);
/freebsd-10.1-release/lib/libc/db/hash/
H A Dhash.h281 #define HIGH_MASK hdr.high_mask macro
H A Dhash.c219 "HIGH MASK ", hashp->HIGH_MASK,
362 hashp->HIGH_MASK = (nbuckets << 1) - 1;
827 if (new_bucket > hashp->HIGH_MASK) {
829 hashp->LOW_MASK = hashp->HIGH_MASK;
830 hashp->HIGH_MASK = new_bucket | hashp->LOW_MASK;
860 bucket = n & hashp->HIGH_MASK;

Completed in 99 milliseconds