Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for esize (0.17 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    		if size == 0 {
    			return H0 + Reg(Rd)
    		} else if size == 1 {
    			return S0 + Reg(Rd)
    		} else if size == 2 {
    			return D0 + Reg(Rd)
    		} else {
    			return nil
    		}
    
    	case arg_Vd_22_2__H_1__S_2:
    		size := (x >> 22) & (1<<2 - 1)
    		Rd := x & (1<<5 - 1)
    		if size == 1 {
    			return H0 + Reg(Rd)
    		} else if size == 2 {
    			return S0 + Reg(Rd)
    		} else {
    			return nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  2. src/reflect/type.go

    		comparable = comparable && (ft.Equal != nil)
    
    		offset := align(size, uintptr(ft.Align_))
    		if offset < size {
    			panic("reflect.StructOf: struct size would exceed virtual address space")
    		}
    		if ft.Align_ > typalign {
    			typalign = ft.Align_
    		}
    		size = offset + ft.Size_
    		if size < offset {
    			panic("reflect.StructOf: struct size would exceed virtual address space")
    		}
    		f.Offset = offset
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/math/big/int_test.go

    		}
    		b.Run(fmt.Sprintf("%d", n), func(b *testing.B) {
    			benchmarkIntSqr(b, n)
    		})
    	}
    }
    
    func benchmarkDiv(b *testing.B, aSize, bSize int) {
    	var r = rand.New(rand.NewSource(1234))
    	aa := randInt(r, uint(aSize))
    	bb := randInt(r, uint(bSize))
    	if aa.Cmp(bb) < 0 {
    		aa, bb = bb, aa
    	}
    	x := new(Int)
    	y := new(Int)
    
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                try {
                    w.start();
                    // use commonly acceptable buffer size
                    int bsize = Math.min(sh.getReceiveBufferSize() - 70, dh.getSendBufferSize() - 70);
                    byte[][] b = new byte[2][bsize];
                    copyRecursive(dest, b, bsize, w, sh, dh);
                }
                finally {
                    w.write(null, -1, null);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  5. src/syscall/zsyscall_windows.go

    func GetUserNameEx(nameFormat uint32, nameBuffre *uint16, nSize *uint32) (err error) {
    	r1, _, e1 := Syscall(procGetUserNameExW.Addr(), 3, uintptr(nameFormat), uintptr(unsafe.Pointer(nameBuffre)), uintptr(unsafe.Pointer(nSize)))
    	if r1&0xff == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func TranslateName(accName *uint16, accNameFormat uint32, desiredNameFormat uint32, translatedName *uint16, nSize *uint32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    //	  uint8_t isa_level;
    //	  /* The revision of ISA: 0 for MIPS V and below, 1-n otherwise.  */
    //	  uint8_t isa_rev;
    //	  /* The size of general purpose registers.  */
    //	  uint8_t gpr_size;
    //	  /* The size of co-processor 1 registers.  */
    //	  uint8_t cpr1_size;
    //	  /* The size of co-processor 2 registers.  */
    //	  uint8_t cpr2_size;
    //	  /* The floating-point ABI.  */
    //	  uint8_t fp_abi;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	// be aligned properly. When we're copying a Windows-allocated struct to a
    	// Go-allocated one, make sure that the Go allocation is aligned to the
    	// pointer size.
    	const psize = int(unsafe.Sizeof(uintptr(0)))
    	alloc := make([]uintptr, (sdLen+psize-1)/psize)
    	dst := unsafe.Slice((*byte)(unsafe.Pointer(&alloc[0])), sdLen)
    	copy(dst, src)
    	return (*SECURITY_DESCRIPTOR)(unsafe.Pointer(&dst[0]))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/syscall/zerrors_darwin_arm64.go

    	CREAD                             = 0x800
    	CS5                               = 0x0
    	CS6                               = 0x100
    	CS7                               = 0x200
    	CS8                               = 0x300
    	CSIZE                             = 0x300
    	CSTART                            = 0x11
    	CSTATUS                           = 0x14
    	CSTOP                             = 0x13
    	CSTOPB                            = 0x400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  9. src/syscall/zerrors_solaris_amd64.go

    	19: "power-Fail/Restart",
    	20: "window Size Change",
    	21: "urgent Socket Condition",
    	22: "pollable Event",
    	23: "stopped (signal)",
    	24: "stopped (user)",
    	25: "continued",
    	26: "stopped (tty input)",
    	27: "stopped (tty output)",
    	28: "virtual Timer Expired",
    	29: "profiling Timer Expired",
    	30: "cpu Limit Exceeded",
    	31: "file Size Limit Exceeded",
    	32: "no runnable lwp",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  10. src/syscall/zerrors_darwin_amd64.go

    	CREAD                             = 0x800
    	CS5                               = 0x0
    	CS6                               = 0x100
    	CS7                               = 0x200
    	CS8                               = 0x300
    	CSIZE                             = 0x300
    	CSTART                            = 0x11
    	CSTATUS                           = 0x14
    	CSTOP                             = 0x13
    	CSTOPB                            = 0x400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
Back to top