Home
last modified time | relevance | path

Searched refs:nlz (Results 1 – 25 of 681) sorted by relevance

12345678910>>...28

/dports/lang/ypsilon/ypsilon-0.9.6-update3/src/
H A Dbit.h14 int nlz(uint32_t x);
15 int nlz(uint64_t x);
31 inline int nlz(intptr_t x) { in nlz() function
32 if (sizeof(intptr_t) == sizeof(uint32_t)) return nlz((uint32_t)x); in nlz()
33 return nlz((uint64_t)x); in nlz()
H A Dbit.cpp66 nlz(uint32_t x) in nlz() function
79 nlz(uint64_t x) in nlz() function
/dports/lang/cparser/cparser-0.9.14/adt/
H A Dbitfiddle.h91 unsigned nlz(unsigned x) { in nlz() function
128 return HACKDEL_WORDSIZE - nlz(~x & (x - 1)); in ntz()
138 #define log2_floor(x) (HACKDEL_WORDSIZE - 1 - nlz(x))
146 #define log2_ceil(x) (HACKDEL_WORDSIZE - nlz((x) - 1))
167 return 0x80000000U >> nlz(x); in floor_po2()
192 return 0x80000000U >> (nlz(x-1) - 1); in ceil_po2()
/dports/devel/libfirm/libfirm-1.21.0/ir/adt/
H A Dbitfiddle.h94 static inline unsigned nlz(unsigned x) in nlz() function
125 return HACKDEL_WORDSIZE - nlz(~x & (x - 1)); in ntz()
135 #define log2_floor(x) (HACKDEL_WORDSIZE - 1 - nlz(x))
143 #define log2_ceil(x) (HACKDEL_WORDSIZE - nlz((x) - 1))
163 return 0x80000000U >> nlz(x); in floor_po2()
187 return 0x80000000U >> (nlz(x-1) - 1); in ceil_po2()
/dports/devel/ga/ga-5.8/global/examples/md_cluster/
H A Dcell_list.F59 nlz = int(zcl/rcell)
62 zcl = zcl / dble(nlz)
111 elseif (nlz.ge.MAXCL) then
118 do k = -MSKIN, nlz+MSKIN
139 + iz.lt.1.or.iz.gt.nlz) then
154 write(6,*) 'iz ',iz,nlz
197 iz = nlz + int(zu/zcl) + 1
206 + iz.ge.1.and.iz.le.nlz) then
261 if (jz.gt.nlz.and.idz.eq.1) jz = jz - nlz
395 nlz = int(zcell/rcell)
[all …]
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/cmd/compile/internal/ssa/
H A Drewrite_test.go18 if got := nlz(x); got != 64-i {
43 if got := nlz(tx); got != nlzExp {
63 if got := nlz(tc.v); got != tc.exp {
/dports/games/dustrac/DustRacing2D-ae380b8/src/game/MiniCore/src/Graphics/contrib/glm/ogl-math/glm/gtx/
H A Dinteger.inl64 return Value <= T(1) ? T(0) : T(32) - nlz(Value - T(1));
66 return Value <= T(1) ? T(0) : nlz(Value - T(1)) + 1;
68 return T(32) - nlz(Value - T(1));
165 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function
172 // Hackers Delight: http://www.hackersdelight.org/HDcode/nlz.c.txt
173 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function
/dports/lang/gcc6-aux/gcc-6-20180516/libgo/go/math/big/
H A Darith.go111 func nlz(x Word) uint { func
121 return 32 + nlz(Word(x))
123 return nlz(Word(w))
125 return nlz(Word(x))
137 s := nlz(v)
/dports/lang/gnat_util/gcc-6-20180516/libgo/go/math/big/
H A Darith.go111 func nlz(x Word) uint { func
121 return 32 + nlz(Word(x))
123 return nlz(Word(w))
125 return nlz(Word(x))
137 s := nlz(v)
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llgo/third_party/gofrontend/libgo/go/math/big/
H A Darith.go111 func nlz(x Word) uint { func
121 return 32 + nlz(Word(x))
123 return nlz(Word(w))
125 return nlz(Word(x))
137 s := nlz(v)
/dports/lang/gcc8/gcc-8.5.0/libgo/go/math/bits/
H A Dbits_test.go21 nlz := tab[i].nlz
26 want := nlz - k + (8 - 8)
37 want := nlz - k + (16 - 8)
48 want := nlz - k + (32 - 8)
65 want := nlz - k + (64 - 8)
657 len := 8 - tab[i].nlz
711 nlz, ntz, pop int member
727 tab[i].nlz = n
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/math/bits/
H A Dbits_test.go21 nlz := tab[i].nlz
26 want := nlz - k + (8 - 8)
37 want := nlz - k + (16 - 8)
48 want := nlz - k + (32 - 8)
65 want := nlz - k + (64 - 8)
657 len := 8 - tab[i].nlz
711 nlz, ntz, pop int member
727 tab[i].nlz = n
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgo/go/math/bits/
H A Dbits_test.go21 nlz := tab[i].nlz
26 want := nlz - k + (8 - 8)
37 want := nlz - k + (16 - 8)
48 want := nlz - k + (32 - 8)
65 want := nlz - k + (64 - 8)
657 len := 8 - tab[i].nlz
711 nlz, ntz, pop int member
727 tab[i].nlz = n
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libgo/go/math/bits/
H A Dbits_test.go21 nlz := tab[i].nlz
26 want := nlz - k + (8 - 8)
37 want := nlz - k + (16 - 8)
48 want := nlz - k + (32 - 8)
65 want := nlz - k + (64 - 8)
657 len := 8 - tab[i].nlz
711 nlz, ntz, pop int member
727 tab[i].nlz = n
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libgo/go/math/bits/
H A Dbits_test.go21 nlz := tab[i].nlz
26 want := nlz - k + (8 - 8)
37 want := nlz - k + (16 - 8)
48 want := nlz - k + (32 - 8)
65 want := nlz - k + (64 - 8)
657 len := 8 - tab[i].nlz
711 nlz, ntz, pop int member
727 tab[i].nlz = n
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/libgo/go/math/bits/
H A Dbits_test.go21 nlz := tab[i].nlz
26 want := nlz - k + (8 - 8)
37 want := nlz - k + (16 - 8)
48 want := nlz - k + (32 - 8)
65 want := nlz - k + (64 - 8)
657 len := 8 - tab[i].nlz
711 nlz, ntz, pop int member
727 tab[i].nlz = n
/dports/devel/riscv64-gcc/gcc-8.3.0/libgo/go/math/bits/
H A Dbits_test.go21 nlz := tab[i].nlz
26 want := nlz - k + (8 - 8)
37 want := nlz - k + (16 - 8)
48 want := nlz - k + (32 - 8)
65 want := nlz - k + (64 - 8)
657 len := 8 - tab[i].nlz
711 nlz, ntz, pop int member
727 tab[i].nlz = n
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/math/big/
H A Darith.go59 func nlz(x Word) uint { func
212 s := nlz(y)
272 u := uint(d1 << nlz(d1))
/dports/emulators/mess/mame-mame0226/3rdparty/glm/glm/gtx/
H A Dinteger.inl143 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function
150 // Hackers Delight: http://www.hackersdelight.org/HDcode/nlz.c.txt
151 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/math/big/
H A Darith.go59 func nlz(x Word) uint { func
212 s := nlz(y)
272 u := uint(d1 << nlz(d1))
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/bvxm/pro/processes/
H A Dbvxm_rpc_registration_process.cxx188 float nlx=0.f,nly=0.f,nlz=0.f; in bvxm_rpc_registration_process() local
231 nlz = (float)pt_3d_updated.z(); in bvxm_rpc_registration_process()
233 vgl_point_3d<float> new_rpc_origin(nlx,nly,nlz); in bvxm_rpc_registration_process()
/dports/audio/faust/faust-2.37.3/architecture/smartKeyboard/android/app/oboe/samples/RhythmGame/third_party/glm/gtx/
H A Dinteger.inl143 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function
150 // Hackers Delight: http://www.hackersdelight.org/HDcode/nlz.c.txt
151 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function
/dports/graphics/libprojectm/projectm-3.1.12/vendor/glm/gtx/
H A Dinteger.inl147 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function
154 // Hackers Delight: http://www.hackersdelight.org/HDcode/nlz.c.txt
155 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function
/dports/games/solarus/solarus-f43727b232b3ed13d98440a845e2a29e470e4f0d/libraries/win32/mingw32/include/glm/gtx/
H A Dinteger.inl143 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function
150 // Hackers Delight: http://www.hackersdelight.org/HDcode/nlz.c.txt
151 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function
/dports/devel/upp/upp/uppsrc/plugin/glm/gtx/
H A Dinteger.inl146 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function
153 // Hackers Delight: http://www.hackersdelight.org/HDcode/nlz.c.txt
154 GLM_FUNC_QUALIFIER unsigned int nlz(unsigned int x) function

12345678910>>...28