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

/freebsd-11.0-release/contrib/ntp/libparse/
H A Dmfp_mul.c41 #define LOW_MASK (u_int32)((1<<(FRACTION_PREC/2))-1) macro
42 #define HIGH_MASK (u_int32)(LOW_MASK << (FRACTION_PREC/2))
87 a[0] = a_f & LOW_MASK; /* prepare a operand */
89 a[2] = a_i & LOW_MASK;
92 b[0] = b_f & LOW_MASK; /* prepare b operand */
94 b[2] = b_i & LOW_MASK;
/freebsd-11.0-release/lib/libc/db/hash/
H A Dhash.h282 #define LOW_MASK hdr.low_mask macro
H A Dhash.c219 "LOW MASK ", hashp->LOW_MASK,
360 hashp->MAX_BUCKET = hashp->LOW_MASK = nbuckets - 1;
800 old_bucket = (hashp->MAX_BUCKET & hashp->LOW_MASK);
833 hashp->LOW_MASK = hashp->HIGH_MASK;
834 hashp->HIGH_MASK = new_bucket | hashp->LOW_MASK;
866 bucket = bucket & hashp->LOW_MASK;

Completed in 112 milliseconds