Home
last modified time | relevance | path

Searched refs:rshift (Results 1 – 9 of 9) sorted by relevance

/php-src/ext/hash/
H A Dhash_snefru.c43 int b, index, rshift, lshift; in Snefru() local
85 rshift = shifts[b]; in Snefru()
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()
[all …]
/php-src/ext/hash/murmur/
H A DPMurHash128.c307 uint32_t c = k1>>rshift; // --10 in PMurHash128x86_Process()
311 k2 = k1<<lshift | k2>>rshift; // 7654. in PMurHash128x86_Process()
313 k3 = k4<<lshift | k1>>rshift; // ba98. in PMurHash128x86_Process()
335 uint32_t c = k2>>rshift; // --54 in PMurHash128x86_Process()
343 k1 = k2>>rshift; // --hg in PMurHash128x86_Process()
363 uint32_t c = k3>>rshift; // --98 in PMurHash128x86_Process()
390 uint32_t c = k4>>rshift; // --dc in PMurHash128x86_Process()
582 uint64_t c = k1>>rshift; in PMurHash128x64_Process()
586 k2 = k2>>rshift | k1<<lshift; in PMurHash128x64_Process()
604 uint64_t c = k2 >> rshift; in PMurHash128x64_Process()
[all …]
/php-src/Zend/
H A Dzend_strtod.c1725 rshift(b, k) Bigint *b; int k; in rshift() function
1727 rshift(Bigint *b, int k)
2016 rshift(b, n);
2073 rshift(b,n);
2106 rshift(b,1);
2122 rshift(b,j);
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_mips.lua33 local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift
H A Ddasm_arm.lua30 local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift
H A Ddasm_arm64.lua30 local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift
H A Ddasm_ppc.lua32 local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift
H A Ddasm_x86.lua32 local band, bxor, shl, shr = bit.band, bit.bxor, bit.lshift, bit.rshift
H A Dminilua.c7718 static int rshift(lua_State*L){
7747 {"rshift",rshift},

Completed in 61 milliseconds