| /freebsd/sys/libkern/ |
| H A D | strcspn.c | 34 #define IDX(c) ((u_char)(c) / LONG_BIT) 35 #define BIT(c) ((u_long)1 << ((u_char)(c) % LONG_BIT)) 46 u_long tbl[(UCHAR_MAX + 1) / LONG_BIT]; in strcspn() 52 #if LONG_BIT == 64 /* always better to unroll on 64-bit architectures */ in strcspn()
|
| H A D | strspn.c | 34 #define IDX(c) ((u_char)(c) / LONG_BIT) 35 #define BIT(c) ((u_long)1 << ((u_char)(c) % LONG_BIT)) 46 u_long tbl[(UCHAR_MAX + 1) / LONG_BIT]; in strspn() 52 #if LONG_BIT == 64 /* always better to unroll on 64-bit architectures */ in strspn()
|
| H A D | memcchr.c | 44 #if LONG_BIT != 32 && LONG_BIT != 64 68 #if LONG_BIT >= 64 in memcchr() 94 #if LONG_BIT >= 64 in memcchr()
|
| H A D | strlen.c | 51 #if LONG_BIT == 32 54 #elif LONG_BIT == 64 110 #if (LONG_BIT >= 64) in size_t()
|
| /freebsd/lib/libc/string/ |
| H A D | strcspn.c | 33 #define IDX(c) ((u_char)(c) / LONG_BIT) 34 #define BIT(c) ((u_long)1 << ((u_char)(c) % LONG_BIT)) 45 u_long tbl[(UCHAR_MAX + 1) / LONG_BIT]; in strcspn() 51 #if LONG_BIT == 64 /* always better to unroll on 64-bit architectures */ in strcspn()
|
| H A D | strspn.c | 33 #define IDX(c) ((u_char)(c) / LONG_BIT) 34 #define BIT(c) ((u_long)1 << ((u_char)(c) % LONG_BIT)) 45 u_long tbl[(UCHAR_MAX + 1) / LONG_BIT]; in strspn() 51 #if LONG_BIT == 64 /* always better to unroll on 64-bit architectures */ in strspn()
|
| H A D | strlen.c | 51 #if LONG_BIT == 32 54 #elif LONG_BIT == 64 110 #if (LONG_BIT >= 64) in strlen()
|
| /freebsd/contrib/bc/include/ |
| H A D | bcl.h | 66 #ifndef LONG_BIT 67 #define LONG_BIT (32) macro 71 #define BC_LONG_BIT LONG_BIT 74 #if BC_LONG_BIT > LONG_BIT 75 #error BC_LONG_BIT cannot be greater than LONG_BIT
|
| /freebsd/sys/dev/xen/bus/ |
| H A D | xen_intr.c | 95 .last_processed_l1i = LONG_BIT - 1, 96 .last_processed_l2i = LONG_BIT - 1 389 l1i = (l1i + 1) % LONG_BIT; in xen_intr_handle_upcall() 397 l1i = LONG_BIT - 1; in xen_intr_handle_upcall() 398 l2i = LONG_BIT - 1; in xen_intr_handle_upcall() 406 l2i = (l2i + 1) % LONG_BIT; in xen_intr_handle_upcall() 411 l2i = LONG_BIT - 1; in xen_intr_handle_upcall() 417 port = (l1i * LONG_BIT) + l2i; in xen_intr_handle_upcall() 448 } while (l2i != LONG_BIT - 1); in xen_intr_handle_upcall()
|
| /freebsd/sbin/fsck_msdosfs/ |
| H A D | fat.c | 90 cl_t i = cl / LONG_BIT; in bitmap_clear() 91 unsigned long clearmask = ~(1UL << (cl % LONG_BIT)); in bitmap_clear() 101 cl_t i = cl / LONG_BIT; in bitmap_get() 102 unsigned long usedbit = 1UL << (cl % LONG_BIT); in bitmap_get() 110 cl_t i = cl / LONG_BIT; in bitmap_none_in_range() 124 size_t bitmap_size = roundup2(bits, LONG_BIT) / (LONG_BIT / 8); in bitmap_ctor() 1280 if (head % LONG_BIT == 0 && in checklost() 1282 head += LONG_BIT; in checklost()
|
| /freebsd/usr.bin/getconf/ |
| H A D | limits.gperf | 78 LONG_BIT, LONG_BIT keyword
|
| /freebsd/sys/sys/ |
| H A D | limits.h | 112 #define LONG_BIT __LONG_BIT macro
|
| H A D | stats.h | 201 #if BYTE_ORDER == BIG_ENDIAN && LONG_BIT == 32 208 #if BYTE_ORDER == LITTLE_ENDIAN && LONG_BIT == 32
|
| /freebsd/sys/dev/sound/pcm/ |
| H A D | pcm.h | 48 #if LONG_BIT >= 64 86 #if LONG_BIT >= 64
|
| /freebsd/sys/dev/hyperv/netvsc/ |
| H A D | hn_nvs.c | 304 if (sc->hn_chim_cnt % LONG_BIT != 0) { in hn_nvs_conn_chim() 306 sc->hn_chim_cnt % LONG_BIT); in hn_nvs_conn_chim() 309 sc->hn_chim_bmap_cnt = sc->hn_chim_cnt / LONG_BIT; in hn_nvs_conn_chim()
|
| H A D | if_hn.c | 698 KASSERT(i * LONG_BIT + idx < sc->hn_chim_cnt, in hn_chim_alloc() 704 ret = i * LONG_BIT + idx; in hn_chim_alloc() 716 idx = chim_idx / LONG_BIT; in hn_chim_free() 720 mask = 1UL << (chim_idx % LONG_BIT); in hn_chim_free()
|
| /freebsd/contrib/bc/scripts/ |
| H A D | release.pkg.yao | 315 "\n LONG_BIT=" +~ str(long_bit) +~ 323 env.str("LONG_BIT", str(long_bit)) 357 "\n LONG_BIT=" +~ str(long_bit) +~ 402 "\n LONG_BIT=" +~ str(long_bit); 512 " LONG_BIT=" +~ str(long_bit) +~ "\n" +~ 577 " LONG_BIT=" +~ str(long_bit));
|
| /freebsd/contrib/bc/ |
| H A D | configure.sh | 928 elif [ "$LONG_BIT" -lt 32 ]; then 931 LONG_BIT_DEFINE="-DBC_LONG_BIT=$LONG_BIT" 1598 printf 'LONG_BIT=%s\n' "$LONG_BIT"
|
| H A D | configure | 254 printf ' LONG_BIT The number of bits in a C `long` type. This is mostly for the\n' 259 printf ' it to `32`. Default is the default of `LONG_BIT` for the target\n' 261 printf ' the specified value of `LONG_BIT` is greater than the default\n' 262 printf ' value of `LONG_BIT` for the target platform.\n' 926 if [ -z "${LONG_BIT+set}" ]; then 928 elif [ "$LONG_BIT" -lt 32 ]; then 929 usage "LONG_BIT is less than 32" 931 LONG_BIT_DEFINE="-DBC_LONG_BIT=$LONG_BIT" 1598 printf 'LONG_BIT=%s\n' "$LONG_BIT" [all...] |
| /freebsd/contrib/bc/manuals/ |
| H A D | build.md | 139 `EXECPREFIX`, `LONG_BIT`, `GEN_HOST`, and `GEN_EMU` environment variables in 306 #### `LONG_BIT` 317 Defaults to the default value of `LONG_BIT` for the target platform. For 321 `LONG_BIT` for the target platform.
|
| /freebsd/sys/dev/sfxge/ |
| H A D | sfxge_rx.c | 138 #if LONG_BIT == 64 in ipv6_addr_cmp()
|
| /freebsd/sys/dev/hwpmc/ |
| H A D | hwpmc_mod.c | 405 #if LONG_BIT == 64 407 #elif LONG_BIT == 32
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/include/ |
| H A D | libtest.shlib | 163 [ $(getconf LONG_BIT) = "32" ]
|
| /freebsd/contrib/ncurses/ |
| H A D | configure | 30020 case x`getconf LONG_BIT` in
|
| H A D | aclocal.m4 | 4684 case x`getconf LONG_BIT` in
|