Searched refs:lshift (Results 1 – 9 of 9) sorted by relevance
/PHP-8.1/ext/hash/ |
H A D | hash_snefru.c | 43 int b, index, rshift, lshift; in Snefru() local 86 lshift = 32-rshift; in Snefru() 88 B00 = (B00 >> rshift) | (B00 << lshift); in Snefru() 89 B01 = (B01 >> rshift) | (B01 << lshift); in Snefru() 90 B02 = (B02 >> rshift) | (B02 << lshift); in Snefru() 91 B03 = (B03 >> rshift) | (B03 << lshift); in Snefru() 92 B04 = (B04 >> rshift) | (B04 << lshift); in Snefru() 93 B05 = (B05 >> rshift) | (B05 << lshift); in Snefru() 94 B06 = (B06 >> rshift) | (B06 << lshift); in Snefru() 95 B07 = (B07 >> rshift) | (B07 << lshift); in Snefru() [all …]
|
/PHP-8.1/ext/hash/murmur/ |
H A D | PMurHash128.c | 305 const int lshift = n*8, rshift = 32-lshift; in PMurHash128x86_Process() local 309 c |= k2<<lshift; // 3210. in PMurHash128x86_Process() 333 const int lshift = n*8-32, rshift = 32-lshift; in PMurHash128x86_Process() local 361 const int lshift = n*8-64, rshift = 32-lshift; in PMurHash128x86_Process() local 388 const int lshift = n*8-96, rshift = 32-lshift; in PMurHash128x86_Process() local 580 const int lshift = n*8, rshift = 64-lshift; in PMurHash128x64_Process() local 584 c |= k2<<lshift; in PMurHash128x64_Process() 586 k2 = k2>>rshift | k1<<lshift; in PMurHash128x64_Process() 602 const int lshift = n*8-64, rshift = 64-lshift; in PMurHash128x64_Process() local 606 c |= k2 << lshift; in PMurHash128x64_Process() [all …]
|
/PHP-8.1/Zend/ |
H A D | zend_strtod.c | 1010 lshift in lshift() function 2021 b = lshift(b, n); 2382 b = lshift(b, i); 2389 b = lshift(b, ++i); 2414 b = lshift(b, b2); 2416 d = lshift(d, d2); 3103 bb = lshift(bb, bb2); 4207 b = lshift(b, b2); in zend_dtoa() 4209 S = lshift(S, s2); in zend_dtoa() 4292 b = lshift(b, 1); in zend_dtoa() [all …]
|
/PHP-8.1/ext/opcache/jit/dynasm/ |
H A D | dasm_mips.lua | 33 local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift
|
H A D | dasm_arm.lua | 30 local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift
|
H A D | dasm_arm64.lua | 30 local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift
|
H A D | dasm_ppc.lua | 32 local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift
|
H A D | dasm_x86.lua | 32 local band, bxor, shl, shr = bit.band, bit.bxor, bit.lshift, bit.rshift
|
H A D | minilua.c | 7710 static int lshift(lua_State*L){ 7740 {"lshift",lshift},
|
Completed in 61 milliseconds