| /src/crypto/external/bsd/openssh/dist/ |
| poly1305.c | 53 r0 = t0 & 0x3ffffff; t0 >>= 26; t0 |= t1 << 6; 82 h0 += t0 & 0x3ffffff; 83 h1 += ((((uint64_t)t1 << 32) | t0) >> 26) & 0x3ffffff; 84 h2 += ((((uint64_t)t2 << 32) | t1) >> 20) & 0x3ffffff; 85 h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff; 96 h0 = (uint32_t)t[0] & 0x3ffffff; c = (t[0] >> 26); 97 t[1] += c; h1 = (uint32_t)t[1] & 0x3ffffff; b = (uint32_t)(t[1] >> 26); 98 t[2] += b; h2 = (uint32_t)t[2] & 0x3ffffff; b = (uint32_t)(t[2] >> 26); 99 t[3] += b; h3 = (uint32_t)t[3] & 0x3ffffff; b = (uint32_t)(t[3] >> 26); 100 t[4] += b; h4 = (uint32_t)t[4] & 0x3ffffff; b = (uint32_t)(t[4] >> 26) [all...] |
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/donna/ |
| poly1305_donna32.h | 32 st->r[0] = (LOAD32_LE(&key[0])) & 0x3ffffff; 85 h0 += (LOAD32_LE(m + 0)) & 0x3ffffff; 86 h1 += (LOAD32_LE(m + 3) >> 2) & 0x3ffffff; 87 h2 += (LOAD32_LE(m + 6) >> 4) & 0x3ffffff; 88 h3 += (LOAD32_LE(m + 9) >> 6) & 0x3ffffff; 110 h0 = (unsigned long) d0 & 0x3ffffff; 113 h1 = (unsigned long) d1 & 0x3ffffff; 116 h2 = (unsigned long) d2 & 0x3ffffff; 119 h3 = (unsigned long) d3 & 0x3ffffff; 122 h4 = (unsigned long) d4 & 0x3ffffff; [all...] |
| /src/sys/external/bsd/drm2/dist/drm/radeon/ |
| rv740d.h | 41 #define SPLL_FB_DIV_MASK (0x3ffffff << 0) 110 #define CLK_V_MASK (0x3ffffff << 0) 114 #define CLKV_MASK (0x3ffffff << 0)
|
| rv730d.h | 44 #define SPLL_FB_DIV_MASK (0x3ffffff << 0) 63 #define MPLL_FB_DIV_MASK (0x3ffffff << 0) 140 #define CLK_V_MASK (0x3ffffff << 0)
|
| ni_reg.h | 98 # define NI_DP_MSE_RATE_Y(x) (((x) & 0x3ffffff) << 0)
|
| /src/external/gpl3/binutils/dist/gprof/ |
| aarch64.c | 73 offset = ((((bfd_vma) insn & 0x3ffffff) ^ 0x2000000) - 0x2000000) << 2;
|
| /src/external/gpl3/binutils.old/dist/gprof/ |
| aarch64.c | 73 offset = ((((bfd_vma) insn & 0x3ffffff) ^ 0x2000000) - 0x2000000) << 2;
|
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/sse2/ |
| poly1305_sse2.c | 133 R[0] = (uint32_t)(r0) &0x3ffffff; 134 R[1] = (uint32_t)((r0 >> 26) | (r1 << 18)) & 0x3ffffff; 135 R[2] = (uint32_t)((r1 >> 8)) & 0x3ffffff; 136 R[3] = (uint32_t)((r1 >> 34) | (r2 << 10)) & 0x3ffffff; 185 R[0] = (uint32_t)(rt0) &0x3ffffff; 186 R[1] = (uint32_t)((rt0 >> 26) | (rt1 << 18)) & 0x3ffffff; 187 R[2] = (uint32_t)((rt1 >> 8)) & 0x3ffffff; 188 R[3] = (uint32_t)((rt1 >> 34) | (rt2 << 10)) & 0x3ffffff; 703 t0 &= 0x3ffffff; 706 t1 &= 0x3ffffff; [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/poly1305/asm/ |
| poly1305-x86_64.pl | 374 mov \$0x3ffffff,%eax # save interleaved r^2 and r base 2^26 375 mov \$0x3ffffff,%edx 385 mov \$0x3ffffff,%eax 386 mov \$0x3ffffff,%edx 404 and \$0x3ffffff,%eax 405 and \$0x3ffffff,%edx 415 mov \$0x3ffffff,%eax 416 mov \$0x3ffffff,%edx 443 mov \$0x3ffffff,%eax # save r^3 base 2^26 449 mov \$0x3ffffff,%ed [all...] |
| /src/crypto/external/apache2/openssl/lib/libcrypto/arch/x86_64/ |
| poly1305-x86_64.S | 257 movl $0x3ffffff,%eax 258 movl $0x3ffffff,%edx 268 movl $0x3ffffff,%eax 269 movl $0x3ffffff,%edx 287 andl $0x3ffffff,%eax 288 andl $0x3ffffff,%edx 298 movl $0x3ffffff,%eax 299 movl $0x3ffffff,%edx 326 movl $0x3ffffff,%eax 332 movl $0x3ffffff,%ed [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/poly1305/asm/ |
| poly1305-x86_64.pl | 372 mov \$0x3ffffff,%eax # save interleaved r^2 and r base 2^26 373 mov \$0x3ffffff,%edx 383 mov \$0x3ffffff,%eax 384 mov \$0x3ffffff,%edx 402 and \$0x3ffffff,%eax 403 and \$0x3ffffff,%edx 413 mov \$0x3ffffff,%eax 414 mov \$0x3ffffff,%edx 441 mov \$0x3ffffff,%eax # save r^3 base 2^26 447 mov \$0x3ffffff,%ed [all...] |
| /src/crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/ |
| poly1305-x86_64.S | 255 movl $0x3ffffff,%eax 256 movl $0x3ffffff,%edx 266 movl $0x3ffffff,%eax 267 movl $0x3ffffff,%edx 285 andl $0x3ffffff,%eax 286 andl $0x3ffffff,%edx 296 movl $0x3ffffff,%eax 297 movl $0x3ffffff,%edx 324 movl $0x3ffffff,%eax 330 movl $0x3ffffff,%ed [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/poly1305/asm/ |
| poly1305-x86_64.pl | 370 mov \$0x3ffffff,%eax # save interleaved r^2 and r base 2^26 371 mov \$0x3ffffff,%edx 381 mov \$0x3ffffff,%eax 382 mov \$0x3ffffff,%edx 400 and \$0x3ffffff,%eax 401 and \$0x3ffffff,%edx 411 mov \$0x3ffffff,%eax 412 mov \$0x3ffffff,%edx 439 mov \$0x3ffffff,%eax # save r^3 base 2^26 445 mov \$0x3ffffff,%ed [all...] |
| /src/crypto/external/bsd/openssl.old/lib/libcrypto/arch/x86_64/ |
| poly1305-x86_64.S | 255 movl $0x3ffffff,%eax 256 movl $0x3ffffff,%edx 266 movl $0x3ffffff,%eax 267 movl $0x3ffffff,%edx 285 andl $0x3ffffff,%eax 286 andl $0x3ffffff,%edx 296 movl $0x3ffffff,%eax 297 movl $0x3ffffff,%edx 324 movl $0x3ffffff,%eax 330 movl $0x3ffffff,%ed [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/MCTargetDesc/ |
| CSKYAsmBackend.cpp | 86 return (Value >> 1) & 0x3ffffff;
|
| /src/external/gpl3/gdb/dist/sim/testsuite/sh/ |
| bset.s | 83 assertmem _x, 0x3ffffff
|
| bst.s | 86 assertmem _x, 0x3ffffff
|
| /src/external/gpl3/gdb.old/dist/sim/testsuite/sh/ |
| bset.s | 83 assertmem _x, 0x3ffffff
|
| bst.s | 86 assertmem _x, 0x3ffffff
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/ |
| unicode_norm.d | 37 0xffffffffffffffff, 0x3ffffff, 0x5f7ffc00a0000000, 0x7fdb, 0x0, 91 0xffff3fffffffffff, 0xffffffffffffffff, 0x3ffffff, 154 0xffff3fffffffffff, 0xffffffffffffffff, 0x3ffffff, 237 0xffffffffffffffff, 0x3ffffff, 0x5f7fffffa0f8007f, 296 0xffffffff, 0xffff3fff, 0xffffffff, 0xffffffff, 0x3ffffff, 0x0, 349 0xffffffff, 0xbffffff, 0xffffffff, 0xffffffff, 0x3ffffff, 360 0xffff3fff, 0xffffffff, 0xffffffff, 0x3ffffff, 0x0, 0xa0000000, 433 0x3ffffff, 0x0, 0xa0f8007f, 0x5f7fffff, 0xffffffdb, 0xffffffff, 506 0xfffffff, 0xffffffff, 0xffffffff, 0x3ffffff, 0x3f3fffff, 527 0x3ffffff, 0x0, 0xa0f8007f, 0x5f7fffff, 0xffffffdb, 0xffffffff [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
| RuntimeDyldELFMips.cpp | 134 return ((Value + Addend) >> 2) & 0x3ffffff; 199 return ((Value + Addend - FinalAddress) >> 2) & 0x3ffffff;
|
| /src/external/gpl3/gcc/dist/libgcc/config/libbid/ |
| bid128_div.c | 262 tdigit[0] = Q_high & 0x3ffffff; 320 tdigit[0] = Q_low & 0x3ffffff; 725 tdigit[0] = Q_high & 0x3ffffff; 784 tdigit[0] = Q_low & 0x3ffffff; 1179 tdigit[0] = Q_high & 0x3ffffff; 1239 tdigit[0] = Q_low & 0x3ffffff; 1631 tdigit[0] = Q_high & 0x3ffffff; 1690 tdigit[0] = Q_low & 0x3ffffff;
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/ |
| bid128_div.c | 262 tdigit[0] = Q_high & 0x3ffffff; 320 tdigit[0] = Q_low & 0x3ffffff; 725 tdigit[0] = Q_high & 0x3ffffff; 784 tdigit[0] = Q_low & 0x3ffffff; 1179 tdigit[0] = Q_high & 0x3ffffff; 1239 tdigit[0] = Q_low & 0x3ffffff; 1631 tdigit[0] = Q_high & 0x3ffffff; 1690 tdigit[0] = Q_low & 0x3ffffff;
|
| /src/sys/arch/mips/mips/ |
| kobj_machdep.c | 129 KASSERT((*insn & 0x3ffffff) == 0);
|
| /src/tests/lib/libc/locale/ |
| t_mbrtowc.c | 94 0x5d, 0x5b, 0x10000, 0x1fffff, 0x5d, 0x5b, 0x200000, 0x3ffffff, 0x5d,
|