Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/ntp/dist/libparse/
H A Dmfp_mul.c44 #define HIGH_MASK (u_int32)(LOW_MASK << (FRACTION_PREC/2)) macro
90 a[1] = (a_f & HIGH_MASK) >> (FRACTION_PREC/2); in mfp_mul()
92 a[3] = (a_i & HIGH_MASK) >> (FRACTION_PREC/2); in mfp_mul()
95 b[1] = (b_f & HIGH_MASK) >> (FRACTION_PREC/2); in mfp_mul()
97 b[3] = (b_i & HIGH_MASK) >> (FRACTION_PREC/2); in mfp_mul()
/netbsd-src/lib/libc/db/hash/
H A Dhash.c225 "HIGH MASK ", hashp->HIGH_MASK, in __hash_open()
369 hashp->HIGH_MASK = (nbuckets << 1) - 1; in init_htab()
869 if (new_bucket > (uint32_t)hashp->HIGH_MASK) { in __expand_table()
871 hashp->LOW_MASK = hashp->HIGH_MASK; in __expand_table()
872 hashp->HIGH_MASK = new_bucket | hashp->LOW_MASK; in __expand_table()
902 bucket = n & hashp->HIGH_MASK; in __call_hash()
H A Dhash.h291 #define HIGH_MASK hdr.high_mask macro