Home
last modified time | relevance | path

Searched refs:lz (Results 1 – 15 of 15) sorted by relevance

/Linux-v6.6/arch/powerpc/kernel/
Dvecemu.c96 int exp, mant, lz, frac; in elog2() local
110 asm("cntlzw %0,%1" : "=r" (lz) : "r" (mant)); in elog2()
111 mant <<= lz - 8; in elog2()
112 exp = (-118 - lz) << 23; in elog2()
144 asm("cntlzw %0,%1" : "=r" (lz) : "r" (exp)); in elog2()
145 lz = 8 - lz; in elog2()
146 if (lz > 0) in elog2()
147 exp >>= lz; in elog2()
148 else if (lz < 0) in elog2()
149 exp <<= -lz; in elog2()
[all …]
/Linux-v6.6/arch/powerpc/include/asm/
Dbitops.h292 int lz; in fls() local
296 asm("cntlzw %0,%1" : "=r" (lz) : "r" (x)); in fls()
297 return 32 - lz; in fls()
310 int lz; in fls64() local
314 asm("cntlzd %0,%1" : "=r" (lz) : "r" (x)); in fls64()
315 return 64 - lz; in fls64()
/Linux-v6.6/tools/testing/selftests/powerpc/primitives/
Dload_unaligned_zeropad.c32 int lz; in __fls() local
34 asm (PPC_CNTLZL "%0,%1" : "=r" (lz) : "r" (x)); in __fls()
35 return sizeof(unsigned long) - 1 - lz; in __fls()
/Linux-v6.6/arch/xtensa/include/asm/
Dbitops.h30 int lz; in __cntlz() local
31 asm ("nsau %0, %1" : "=r" (lz) : "r" (x)); in __cntlz()
32 return lz; in __cntlz()
Dpage.h121 int lz; in get_order() local
122 asm ("nsau %0, %1" : "=r" (lz) : "r" ((size - 1) >> PAGE_SHIFT)); in get_order()
123 return 32 - lz; in get_order()
/Linux-v6.6/tools/build/feature/
DMakefile90 …ang $(FLAGS_PERL_EMBED) $(FLAGS_PYTHON_EMBED) -DPACKAGE='"perf"' -lbfd -ldl -lz -llzma -lzstd -lcap
148 DWARFLIBS += -lelf -lebl -lz -llzma -lbz2
248 $(BUILD_BFD) || $(BUILD_BFD) -liberty || $(BUILD_BFD) -liberty -lz
252 $(BUILD_BFD) -lopcodes -liberty -lz
256 $(BUILD_BFD) -lopcodes -liberty -lz
265 …) $(CFLAGS) -Wall -Werror -o $@ test-libbfd.c -DPACKAGE='"perf"' $(LDFLAGS) -lbfd -ldl -liberty -lz
292 $(BUILD) -lz
/Linux-v6.6/tools/bpf/bpftool/
DMakefile129 LIBS = $(LIBBPF) -lelf -lz
130 LIBS_BOOTSTRAP = $(LIBBPF_BOOTSTRAP) -lelf -lz
160 LIBS += -lbfd -ldl -lopcodes -liberty -lz
/Linux-v6.6/tools/bpf/runqslower/
DMakefile54 $(QUIET_LINK)$(CC) $(CFLAGS) $^ -lelf -lz -o $@
/Linux-v6.6/tools/bpf/resolve_btfids/
DMakefile77 LIBS = $(LIBELF_LIBS) -lz
/Linux-v6.6/samples/hid/
DMakefile57 TPROGS_LDLIBS += $(LIBBPF) -lelf -lz
/Linux-v6.6/tools/testing/selftests/hid/
DMakefile25 LDLIBS += -lelf -lz -lrt -lpthread
/Linux-v6.6/tools/lib/bpf/
DMakefile168 -Wl,--version-script=$(VERSION_SCRIPT) $< -lelf -lz -o $@
/Linux-v6.6/samples/bpf/
DMakefile185 TPROGS_LDLIBS += $(LIBBPF) -lelf -lz
/Linux-v6.6/tools/testing/selftests/bpf/
DMakefile34 LDLIBS += -lelf -lz -lrt -lpthread
/Linux-v6.6/tools/perf/
DMakefile.config180 DWARFLIBS += -lelf -lebl -ldl -lz -llzma -lbz2