Home
last modified time | relevance | path

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

/freebsd/contrib/bzip2/
H A Ddecompress.c70 #define GET_BIT(lll,uuu) \ macro
95 GET_BIT(label2, zj); \
268 GET_BIT(BZ_X_MAPPING_1, uc); in BZ2_decompress()
279 GET_BIT(BZ_X_MAPPING_2, uc); in BZ2_decompress()
294 GET_BIT(BZ_X_SELECTOR_3, uc); in BZ2_decompress()
328 GET_BIT(BZ_X_CODING_2, uc); in BZ2_decompress()
330 GET_BIT(BZ_X_CODING_3, uc); in BZ2_decompress()
/freebsd/sys/dev/nctgpio/
H A Dnctgpio.c138 #define GET_BIT(v, b) (((v) >> (b)) & 1) macro
857 return (GET_BIT(val, bit)); in nct_get_pin_cache()
960 if (GET_BIT(sc->cache.out_known[group], bit) && in nct_write_pin()
961 GET_BIT(sc->cache.out[group], bit) == val) { in nct_write_pin()
987 b = GET_BIT(val, bit); in nct_get_pin_reg()
1021 if (GET_BIT(sc->cache.out_known[group], bit)) { in nct_read_pin()
1022 val = GET_BIT(sc->cache.out[group], bit); in nct_read_pin()
/freebsd/sys/dev/ftgpio/
H A Dftgpio.c76 #define GET_BIT(_v, _b) (((_v) >> (_b)) & 1) macro
211 pin_value = GET_BIT(val, index); in ftgpio_pin_read()