Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for 432 (0.03 sec)

  1. guava/src/com/google/common/hash/Murmur3_128HashFunction.java

            case 7:
              k1 ^= (long) toInt(bb.get(6)) << 48; // fall through
            case 6:
              k1 ^= (long) toInt(bb.get(5)) << 40; // fall through
            case 5:
              k1 ^= (long) toInt(bb.get(4)) << 32; // fall through
            case 4:
              k1 ^= (long) toInt(bb.get(3)) << 24; // fall through
            case 3:
              k1 ^= (long) toInt(bb.get(2)) << 16; // fall through
            case 2:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/Murmur3_128HashFunction.java

            case 7:
              k1 ^= (long) toInt(bb.get(6)) << 48; // fall through
            case 6:
              k1 ^= (long) toInt(bb.get(5)) << 40; // fall through
            case 5:
              k1 ^= (long) toInt(bb.get(4)) << 32; // fall through
            case 4:
              k1 ^= (long) toInt(bb.get(3)) << 24; // fall through
            case 3:
              k1 ^= (long) toInt(bb.get(2)) << 16; // fall through
            case 2:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  3. src/hash/crc32/gen_const_ppc64le.go

    		j += 2
    		fmt.Fprintf(w, "\n")
    	}
    
    	fmt.Fprintf(w, "GLOBL ·%sConst(SB),RODATA,$4336\n", polyid)
    	fmt.Fprintf(w, "\n\t/* Barrett constant m - (4^32)/n */\n")
    	fmt.Fprintf(w, "DATA ·%sBarConst(SB)/8,$0x%016x\n", polyid, reflect_bits(get_quotient(ref_poly, 32, 64), 33))
    	fmt.Fprintf(w, "DATA ·%sBarConst+8(SB)/8,$0x0000000000000000\n", polyid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/crypto/des/block.go

    func ksRotate(in uint32) (out []uint32) {
    	out = make([]uint32, 16)
    	last := in
    	for i := 0; i < 16; i++ {
    		// 28-bit circular left shift
    		left := (last << (4 + ksRotations[i])) >> 4
    		right := (last << 4) >> (32 - ksRotations[i])
    		out[i] = left | right
    		last = out[i]
    	}
    	return
    }
    
    // creates 16 56-bit subkeys from the original key.
    func (c *desCipher) generateSubkeys(keyBytes []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv10-RSA-AES

    00000090  29 55 a4 04 df 15 03 01  00 20 8b 10 5c 79 5e f8  |)U....... ..\y^.|
    000000a0  1d 41 1c b2 05 fd 58 5a  80 69 e5 ce db c3 ac a4  |.A....XZ.i......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. src/internal/profile/proto.go

    	b := buffer{data: data, typ: 2}
    	return decodeMessage(&b, m)
    }
    
    func le64(p []byte) uint64 {
    	return uint64(p[0]) | uint64(p[1])<<8 | uint64(p[2])<<16 | uint64(p[3])<<24 | uint64(p[4])<<32 | uint64(p[5])<<40 | uint64(p[6])<<48 | uint64(p[7])<<56
    }
    
    func le32(p []byte) uint32 {
    	return uint32(p[0]) | uint32(p[1])<<8 | uint32(p[2])<<16 | uint32(p[3])<<24
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 16:20:57 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/proto.go

    	b := buffer{data: data, typ: 2}
    	return decodeMessage(&b, m)
    }
    
    func le64(p []byte) uint64 {
    	return uint64(p[0]) | uint64(p[1])<<8 | uint64(p[2])<<16 | uint64(p[3])<<24 | uint64(p[4])<<32 | uint64(p[5])<<40 | uint64(p[6])<<48 | uint64(p[7])<<56
    }
    
    func le32(p []byte) uint32 {
    	return uint32(p[0]) | uint32(p[1])<<8 | uint32(p[2])<<16 | uint32(p[3])<<24
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  8. src/compress/flate/deflatefast.go

    }
    
    func load64(b []byte, i int32) uint64 {
    	b = b[i : i+8 : len(b)] // Help the compiler eliminate bounds checks on the next line.
    	return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
    		uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
    }
    
    func hash(u uint32) uint32 {
    	return (u * 0x1e35a7bd) >> tableShift
    }
    
    // These constants are defined by the Snappy implementation so that its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  9. src/runtime/sys_freebsd_riscv64.s

    #define SYS_issetugid		253
    #define SYS_clock_gettime	232
    #define SYS_sched_yield		331
    #define SYS_sigprocmask		340
    #define SYS_kqueue		362
    #define SYS_sigaction		416
    #define SYS_thr_exit		431
    #define SYS_thr_self		432
    #define SYS_thr_kill		433
    #define SYS__umtx_op		454
    #define SYS_thr_new		455
    #define SYS_mmap		477
    #define SYS_cpuset_getaffinity	487
    #define SYS_pipe2 		542
    #define SYS_kevent		560
    
    TEXT emptyfunc<>(SB),0,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. src/runtime/sys_freebsd_386.s

    #define SYS_issetugid		253
    #define SYS_sched_yield		331
    #define SYS_sigprocmask		340
    #define SYS_kqueue		362
    #define SYS_sigaction		416
    #define SYS_sigreturn		417
    #define SYS_thr_exit		431
    #define SYS_thr_self		432
    #define SYS_thr_kill		433
    #define SYS__umtx_op		454
    #define SYS_thr_new		455
    #define SYS_mmap		477
    #define SYS_cpuset_getaffinity	487
    #define SYS_pipe2 		542
    #define SYS_kevent		560
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top