Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 783 for gbyte (0.16 sec)

  1. src/runtime/memmove_test.go

    		{"4byte", 4, func(buf []byte) uint64 { return uint64(binary.LittleEndian.Uint32(buf)) }},
    		{"8byte", 8, func(buf []byte) uint64 { return binary.LittleEndian.Uint64(buf) }},
    	}
    
    	var g [4096]byte
    	for _, bm := range benchmarks {
    		buf := make([]byte, bm.nbyte)
    		b.Run(bm.name, func(b *testing.B) {
    			for j := 0; j < b.N; j++ {
    				for i := 0; i < 4096; i += bm.nbyte {
    					copy(buf[:], g[i:])
    					sink += bm.f(buf[:])
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val LONG: ClassId = ClassId.topLevel(StandardNames.FqNames._long.toSafe())
        public val SHORT: ClassId = ClassId.topLevel(StandardNames.FqNames._short.toSafe())
        public val BYTE: ClassId = ClassId.topLevel(StandardNames.FqNames._byte.toSafe())
        public val FLOAT: ClassId = ClassId.topLevel(StandardNames.FqNames._float.toSafe())
        public val DOUBLE: ClassId = ClassId.topLevel(StandardNames.FqNames._double.toSafe())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/runtime/os3_solaris.go

    	pid := sysvicall0(&libc_getpid)
    	sysvicall2(&libc_kill, pid, uintptr(sig))
    }
    
    //go:nosplit
    func read(fd int32, buf unsafe.Pointer, nbyte int32) int32 {
    	r1, err := sysvicall3Err(&libc_read, uintptr(fd), uintptr(buf), uintptr(nbyte))
    	if c := int32(r1); c >= 0 {
    		return c
    	}
    	return -int32(err)
    }
    
    //go:nosplit
    func sem_init(sem *semt, pshared int32, value uint32) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema.fbs

    // could be added to the list in the future.
    enum DimensionType : byte {
      DENSE = 0,
      SPARSE_CSR = 1,
    }
    
    table Int32Vector {
      values:[int];
    }
    
    table Uint16Vector {
      values:[ushort] (force_align: 4);
    }
    
    table Uint8Vector {
      values:[ubyte] (force_align: 4);
    }
    
    // Variable-typed buffer to store the index metadata for a sparse dimension.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. cmd/storage-rest_test.go

    }
    
    func testStorageAPIAppendFile(t *testing.T, storage StorageAPI) {
    	testData := []byte("foo")
    	testCases := []struct {
    		volumeName      string
    		objectName      string
    		data            []byte
    		expectErr       bool
    		ignoreIfWindows bool
    	}{
    		{"foo", "myobject", testData, false, false},
    		{"foo", "myobject-0byte", []byte{}, false, false},
    		// volume not found error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    // could be added to the list in the future.
    enum DimensionType : byte {
      DENSE = 0,
      SPARSE_CSR = 1,
    }
    
    table Int32Vector {
      values:[int];
    }
    
    table Uint16Vector {
      values:[ushort] (force_align: 4);
    }
    
    table Uint8Vector {
      values:[ubyte] (force_align: 4);
    }
    
    // Variable-typed buffer to store the index metadata for a sparse dimension.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

            val value = evaluated.value
            val psi = evaluated.psi as? KtElement
            return when (evaluated.kind) {
                ConstantValueKind.Byte -> KaConstantValue.KaByteConstantValue(value as Byte, psi)
                ConstantValueKind.Int -> KaConstantValue.KaIntConstantValue(value as Int, psi)
                ConstantValueKind.Long -> KaConstantValue.KaLongConstantValue(value as Long, psi)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

        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},
                new byte[] {GREATEST, GREATEST - (byte) 1},
                new byte[] {GREATEST, GREATEST},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top