Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,929 for gbyte (0.15 sec)

  1. src/internal/byteorder/byteorder.go

    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    	b[2] = byte(v >> 16)
    	b[3] = byte(v >> 24)
    	b[4] = byte(v >> 32)
    	b[5] = byte(v >> 40)
    	b[6] = byte(v >> 48)
    	b[7] = byte(v >> 56)
    }
    
    func LeAppendUint64(b []byte, v uint64) []byte {
    	return append(b,
    		byte(v),
    		byte(v>>8),
    		byte(v>>16),
    		byte(v>>24),
    		byte(v>>32),
    		byte(v>>40),
    		byte(v>>48),
    		byte(v>>56),
    	)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/crypto/des/des_test.go

    )
    
    type CryptTest struct {
    	key []byte
    	in  []byte
    	out []byte
    }
    
    // some custom tests for DES
    var encryptDESTests = []CryptTest{
    	{
    		[]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
    		[]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
    		[]byte{0x8c, 0xa6, 0x4d, 0xe9, 0xc1, 0xb1, 0x23, 0xa7}},
    	{
    		[]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
    		[]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.s

    	BYTE $0x7c; BYTE $0xc1; BYTE $0xc2; BYTE $0xc3
    	BYTE $0xc4; BYTE $0xc5; BYTE $0xc6; BYTE $0xc7
    	BYTE $0xc8; BYTE $0xc9; BYTE $0xd1; BYTE $0xd2
    	BYTE $0xd3; BYTE $0xd4; BYTE $0xd5; BYTE $0xd6
    	BYTE $0xd7; BYTE $0xd8; BYTE $0xd9; BYTE $0xe2
    	BYTE $0xe3; BYTE $0xe4; BYTE $0xe5; BYTE $0xe6
    	BYTE $0xe7; BYTE $0xe8; BYTE $0xe9; BYTE $0xad
    	BYTE $0xe0; BYTE $0xbd; BYTE $0x5f; BYTE $0x6d
    	BYTE $0x79; BYTE $0x81; BYTE $0x82; BYTE $0x83
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/hash/HashCodeTest.java

                  0x13579bdf,
                  null,
                  "df9b5713"),
              new ExpectedHashCode(
                  new byte[] {(byte) 0xcd, (byte) 0xab, (byte) 0x00, (byte) 0x00},
                  0x0000abcd,
                  null,
                  "cdab0000"),
              new ExpectedHashCode(
                  new byte[] {
                    (byte) 0xef, (byte) 0xcd, (byte) 0xab, (byte) 0x00,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/SignedBytesTest.java

      }
    
      @J2ktIncompatible // b/285319375
      public void testLexicographicalComparator() {
        List<byte[]> ordered =
            Arrays.asList(
                new byte[] {},
                new byte[] {LEAST},
                new byte[] {LEAST, LEAST},
                new byte[] {LEAST, (byte) 1},
                new byte[] {(byte) 1},
                new byte[] {(byte) 1, LEAST},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/SignedBytesTest.java

      }
    
      @J2ktIncompatible // b/285319375
      public void testLexicographicalComparator() {
        List<byte[]> ordered =
            Arrays.asList(
                new byte[] {},
                new byte[] {LEAST},
                new byte[] {LEAST, LEAST},
                new byte[] {LEAST, (byte) 1},
                new byte[] {(byte) 1},
                new byte[] {(byte) 1, LEAST},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. pkg/util/iptables/iptables_test.go

    			// iptables version check
    			func() ([]byte, []byte, error) { return []byte(iptablesCmd + version), nil, nil },
    			func() ([]byte, []byte, error) { return []byte{}, nil, nil },
    			func() ([]byte, []byte, error) { return []byte{}, nil, nil },
    			func() ([]byte, []byte, error) { return []byte{}, nil, nil },
    			func() ([]byte, []byte, error) { return []byte{}, nil, nil },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    // interface type assertions x.(T)
    func assertE2I(inter *byte, typ *byte) *byte
    func assertE2I2(inter *byte, typ *byte) *byte
    func panicdottypeE(have, want, iface *byte)
    func panicdottypeI(have, want, iface *byte)
    func panicnildottype(want *byte)
    func typeAssert(s *byte, typ *byte) *byte
    
    // interface switches
    func interfaceSwitch(s *byte, t *byte) (int, *byte)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	// set up R2 to point to CEECAADMC
    	BYTE $0xE3; BYTE $0x20; BYTE $0x04; BYTE $0xB8; BYTE $0x00; BYTE $0x17 // llgt  2,1208
    	BYTE $0xB9; BYTE $0x17; BYTE $0x00; BYTE $0x22                         // llgtr 2,2
    	BYTE $0xA5; BYTE $0x26; BYTE $0x7F; BYTE $0xFF                         // nilh  2,32767
    	BYTE $0xE3; BYTE $0x22; BYTE $0x00; BYTE $0x58; BYTE $0x00; BYTE $0x04 // lg    2,88(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/lif/binary.go

    	_ = b[7] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    	b[2] = byte(v >> 16)
    	b[3] = byte(v >> 24)
    	b[4] = byte(v >> 32)
    	b[5] = byte(v >> 40)
    	b[6] = byte(v >> 48)
    	b[7] = byte(v >> 56)
    }
    
    type binaryBigEndian struct{}
    
    func (binaryBigEndian) Uint16(b []byte) uint16 {
    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top