Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/ntp/libparse/
HDmfp_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-11-stable/lib/libc/db/hash/
HDhash.c219 "LOW MASK ", hashp->LOW_MASK, in __hash_open()
360 hashp->MAX_BUCKET = hashp->LOW_MASK = nbuckets - 1; in init_htab()
800 old_bucket = (hashp->MAX_BUCKET & hashp->LOW_MASK); in __expand_table()
833 hashp->LOW_MASK = hashp->HIGH_MASK; in __expand_table()
834 hashp->HIGH_MASK = new_bucket | hashp->LOW_MASK; in __expand_table()
866 bucket = bucket & hashp->LOW_MASK; in __call_hash()
HDhash.h282 #define LOW_MASK hdr.low_mask macro