Home
last modified time | relevance | path

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

/freebsd/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 */ in mfp_mul()
89 a[2] = a_i & LOW_MASK; in mfp_mul()
92 b[0] = b_f & LOW_MASK; /* prepare b operand */ in mfp_mul()
94 b[2] = b_i & LOW_MASK; in mfp_mul()
/freebsd/lib/libc/db/hash/
H A Dhash.c215 "LOW MASK ", hashp->LOW_MASK, in __hash_open()
356 hashp->MAX_BUCKET = hashp->LOW_MASK = nbuckets - 1; in init_htab()
802 old_bucket = (hashp->MAX_BUCKET & hashp->LOW_MASK); in __expand_table()
835 hashp->LOW_MASK = hashp->HIGH_MASK; in __expand_table()
836 hashp->HIGH_MASK = new_bucket | hashp->LOW_MASK; in __expand_table()
868 bucket = bucket & hashp->LOW_MASK; in __call_hash()
H A Dhash.h281 #define LOW_MASK hdr.low_mask macro