/freebsd/lib/libc/string/ |
H A D | Makefile.inc | 11 ffs.c ffsl.c ffsll.c fls.c flsl.c flsll.c \ 48 MAN+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \ 58 MLINKS+=ffs.3 ffsl.3 \ 59 ffs.3 ffsll.3 \ 60 ffs.3 fls.3 \ 61 ffs.3 flsl.3 \ 62 ffs.3 flsll.3
|
H A D | ffs.c | 42 ffs(int mask) in ffs() function
|
/freebsd/contrib/netbsd-tests/include/sys/ |
H A D | t_bitops.c | 46 int ffs; member 126 b = bits[i].ffs; in ATF_TC_BODY() 160 ATF_REQUIRE(ffs32(bits[i].val) == bits[i].ffs); in ATF_TC_BODY() 162 ATF_REQUIRE(ffs64(bits[i].val) == bits[i].ffs); in ATF_TC_BODY() 165 ATF_REQUIRE(ffs32(bits[i].val << 1) == bits[i].ffs + 1); in ATF_TC_BODY() 167 ATF_REQUIRE(ffs64(bits[i].val << 1) == bits[i].ffs + 1); in ATF_TC_BODY() 170 ATF_REQUIRE(ffs32(bits[i].val << 9) == bits[i].ffs + 9); in ATF_TC_BODY() 172 ATF_REQUIRE(ffs64(bits[i].val << 9) == bits[i].ffs + 9); in ATF_TC_BODY()
|
/freebsd/usr.sbin/makefs/ffs/ |
H A D | Makefile.inc | 1 .PATH: ${SRCDIR}/ffs ${SRCTOP}/sys/ufs/ffs
|
/freebsd/sys/dev/vt/hw/vbefb/ |
H A D | vbefb.c | 125 roff = ffs(vbefb->fb_mask_red) - 1; in vt_vbefb_init() 126 goff = ffs(vbefb->fb_mask_green) - 1; in vt_vbefb_init() 127 boff = ffs(vbefb->fb_mask_blue) - 1; in vt_vbefb_init()
|
/freebsd/contrib/netbsd-tests/fs/common/ |
H A D | h_fsmacros.h | 53 FSPROTOS(ffs); 161 ATF_TC_FSADD(ffs,MOUNT_FFS,func,desc) \ 176 ATF_TP_FSADD(ffs,func); \ 220 ATF_TC_FSADD_RO(ffs,MOUNT_FFS,func,desc,gen) \ 231 ATF_TP_FSADD(ffs,func); \
|
/freebsd/sys/dev/mthca/ |
H A D | mthca_profile.c | 116 profile[i].log_num = max(ffs(profile[i].num) - 1, 0); in mthca_make_profile() 217 init_hca->log_mc_entry_sz = ffs(MTHCA_MGM_ENTRY_SIZE) - 1; in mthca_make_profile() 231 init_hca->mtt_seg_sz = ffs(dev->limits.mtt_seg_size) - 7; in mthca_make_profile() 245 init_hca->log_uarc_sz = ffs(request->uarc_size) - 13; in mthca_make_profile() 246 init_hca->log_uar_sz = ffs(request->num_uar) - 1; in mthca_make_profile()
|
/freebsd/sys/dev/vt/hw/efifb/ |
H A D | efifb.c | 152 roff = ffs(efifb->fb_mask_red) - 1; in vt_efifb_init() 153 goff = ffs(efifb->fb_mask_green) - 1; in vt_efifb_init() 154 boff = ffs(efifb->fb_mask_blue) - 1; in vt_efifb_init()
|
/freebsd/contrib/netbsd-tests/fs/ffs/ |
H A D | t_mount.c | 41 FSTEST_CONSTRUCTOR(tc, ffs, tmp); 44 FSTEST_DESTRUCTOR(tc, ffs, tmp);
|
/freebsd/sys/arm/mv/ |
H A D | ic.c | 157 next = ffs(irq & filt) - 1; in arm_get_next_irq() 164 next = ffs(irq & filt) + 31; in arm_get_next_irq() 172 next = ffs(irq & filt) + 63; in arm_get_next_irq()
|
/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | bit_util.h | 58 #error No implementation for size_t ffs() in ffs_zu() 69 #error No implementation for 64-bit ffs() in ffs_u64() 78 #error No implementation for 32-bit ffs() in ffs_u32()
|
/freebsd/contrib/netbsd-tests/lib/librumphijack/ |
H A D | t_tcpip.sh | 160 atf_check -s exit:0 -o ignore newfs -F -s 10000 ffs.img 238 -d key=/dk,hostpath=ffs.img,size=host 259 -lrumpdev_disk -d key=/dk,hostpath=ffs.img,size=host
|
/freebsd/stand/common/ |
H A D | gfx_fb.c | 294 roff = ffs(gfx_state.tg_fb.fb_mask_red) - 1; in gfx_fb_color_map() 295 goff = ffs(gfx_state.tg_fb.fb_mask_green) - 1; in gfx_fb_color_map() 296 boff = ffs(gfx_state.tg_fb.fb_mask_blue) - 1; in gfx_fb_color_map() 442 roff = ffs(gfx_state.tg_fb.fb_mask_red) - 1; in gfxfb_blt_fill() 443 goff = ffs(gfx_state.tg_fb.fb_mask_green) - 1; in gfxfb_blt_fill() 444 boff = ffs(gfx_state.tg_fb.fb_mask_blue) - 1; in gfxfb_blt_fill() 533 rp = ffs(gfx_state.tg_fb.fb_mask_red) - 1; in gfxfb_blt_video_to_buffer() 534 gp = ffs(gfx_state.tg_fb.fb_mask_green) - 1; in gfxfb_blt_video_to_buffer() 535 bp = ffs(gfx_state.tg_fb.fb_mask_blue) - 1; in gfxfb_blt_video_to_buffer() 542 ffs(rm) - 1 == 8 && rp == 16 && in gfxfb_blt_video_to_buffer() [all …]
|
/freebsd/sys/i386/i386/ |
H A D | k6_mem.c | 89 for (bit = ffs(desc->mr_len >> 17) - 1; bit < 15; bit++) in k6_mrmake() 118 sc->mr_desc[d].mr_len = ffs(mask) << 17; in k6_mrinit()
|
/freebsd/lib/libc/stdlib/malloc/jemalloc/include/jemalloc/ |
H A D | jemalloc.h | 104 # define MALLOCX_ALIGN(a) ((int)(ffs((int)(a))-1)) 107 ((int)(((size_t)(a) < (size_t)INT_MAX) ? ffs((int)(a))-1 : \ 108 ffs((int)(((size_t)(a))>>32))+31))
|
/freebsd/contrib/libpcap/lbl/ |
H A D | os-aix4.h | 23 int ffs(int i);
|
H A D | os-aix7.h | 23 int ffs(int i);
|
H A D | os-hpux11.h | 23 int ffs(int i);
|
/freebsd/sys/kern/ |
H A D | Make.tags.inc | 44 ${SYS}/ufs/ffs/*.[ch] \ 86 ${SYS}/ufs/ffs \
|
H A D | subr_pctrie.c | 381 pctrie_node_store(&child->pn_child[ffs(child->pn_popmap) - 1], in pctrie_insert_node() 664 slot += ffs(node->pn_popmap >> slot) - 1; in _pctrie_lookup_ge() 673 slot = ffs(node->pn_popmap) - 1; in _pctrie_lookup_ge() 858 slot = ffs(node->pn_popmap) - 1; in pctrie_remove() 941 slot = ffs(node->pn_popmap) - 1; in pctrie_reclaim_prune() 1078 slot = ffs(popmap) - 1; in DB_SHOW_COMMAND()
|
/freebsd/sys/arm/include/ |
H A D | runq.h | 39 #define RQB_FFS(word) (ffs(word) - 1)
|
/freebsd/sys/i386/include/ |
H A D | runq.h | 39 #define RQB_FFS(word) (ffs(word) - 1)
|
/freebsd/tools/bus_space/examples/ |
H A D | am79c900_diag.py | 152 def ffs(x): function 238 ib.mode = ((ffs(ntxbufs) - 1) << 28) | ((ffs(nrxbufs) - 1) << 20)
|
/freebsd/sys/arm/broadcom/bcm2835/ |
H A D | bcm2835_intr.c | 170 return (ffs(pending) - 1); in bcm2835_intc_active_intr() 201 return (BANK1_START + ffs(pending_gpu) - 1); in bcm2835_intc_active_intr() 207 return (BANK2_START + ffs(pending_gpu) - 1); in bcm2835_intc_active_intr()
|
/freebsd/sys/contrib/zstd/lib/freebsd/ |
H A D | zstd_kfreebsd.c | 72 return (ffs(x) - 1); in __ctzsi2()
|