Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 321 for Alignment (0.13 sec)

  1. src/runtime/sys_solaris_amd64.s

    	ADDQ    $168, SP
    	RET
    
    TEXT runtime·sigfwd(SB),NOSPLIT,$0-32
    	MOVQ	fn+0(FP),    AX
    	MOVL	sig+8(FP),   DI
    	MOVQ	info+16(FP), SI
    	MOVQ	ctx+24(FP),  DX
    	MOVQ	SP, BX		// callee-saved
    	ANDQ	$~15, SP	// alignment for x86_64 ABI
    	CALL	AX
    	MOVQ	BX, SP
    	RET
    
    // Called from runtime·usleep (Go). Can be called on Go stack, on OS stack,
    // can also be called in cgo callback path without a g->m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_context.cc

        : stream_executor_(stream_executor) {}
    
    XlaDeviceAllocator::~XlaDeviceAllocator() = default;
    
    std::string XlaDeviceAllocator::Name() { return "xla"; }
    
    void* XlaDeviceAllocator::AllocateRaw(size_t alignment, size_t num_bytes) {
      // We always return an empty XlaTensor object, encoded as an opaque tagged
      // pointer. We can return an empty object and ignore num_bytes here because we
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/go/printer/printer_test.go

    var data = []entry{
    	{"empty.input", "empty.golden", idempotent},
    	{"comments.input", "comments.golden", 0},
    	{"comments.input", "comments.x", export},
    	{"comments2.input", "comments2.golden", idempotent},
    	{"alignment.input", "alignment.golden", idempotent},
    	{"linebreaks.input", "linebreaks.golden", idempotent},
    	{"expressions.input", "expressions.golden", idempotent},
    	{"expressions.input", "expressions.raw", rawFormat | idempotent},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes.go

    	_, err := rand.Read(b)
    	return err
    }
    
    type nonceGenerator struct {
    	// even at one million encryptions per second, this counter is enough for half a million years
    	// using this struct avoids alignment bugs: https://pkg.go.dev/sync/atomic#pkg-note-BUG
    	nonce atomic.Uint64
    	zero  uint64
    	fatal func(msg string)
    }
    
    func (n *nonceGenerator) next(b []byte) {
    	incrementingNonce := n.nonce.Add(1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. docs/bucket/replication/setup_3site_replication.sh

    ./s3-check-md5 -versions -access-key minio -secret-key minio123 -endpoint http://127.0.0.1:9006/ -bucket olockbucket
    
    # additional tests for encryption object alignment
    go install -v github.com/minio/multipart-debug@latest
    
    upload_id=$(multipart-debug --endpoint 127.0.0.1:9001 --accesskey minio --secretkey minio123 multipart new --bucket bucket --object new-test-encrypted-object --encrypt)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_test.go

    	// instead of failing silently.
    
    	if unsafe.Sizeof(int(0)) != 4 {
    		t.Skip("test only runs on 32-bit systems")
    	}
    
    	x := make([]uint32, 4)
    	u := unsafe.Pointer(uintptr(unsafe.Pointer(&x[0])) | 4) // force alignment to 4
    
    	up64 := (*uint64)(u) // misaligned
    	p64 := (*int64)(u)   // misaligned
    
    	shouldPanic(t, "Load64", func() { atomic.Load64(up64) })
    	shouldPanic(t, "Loadint64", func() { atomic.Loadint64(p64) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. cmd/http-stats.go

    // HTTP requests made by all clients
    type HTTPStats struct {
    	s3RequestsInQueue       int32 // ref: https://golang.org/pkg/sync/atomic/#pkg-note-BUG
    	_                       int32 // For 64 bits alignment
    	s3RequestsIncoming      uint64
    	rejectedRequestsAuth    uint64
    	rejectedRequestsTime    uint64
    	rejectedRequestsHeader  uint64
    	rejectedRequestsInvalid uint64
    	currentS3Requests       HTTPAPIStats
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		// large or unaligned zeroing
    		// arg0 = address of memory to zero (in R1, changed as side effect)
    		// arg1 = address of the last element to zero
    		// arg2 = mem
    		// auxint = alignment
    		// returns mem
    		//	SUBU	$4, R1
    		//	MOVW	R0, 4(R1)
    		//	ADDU	$4, R1
    		//	BNE	Rarg1, R1, -2(PC)
    		{
    			name:      "LoweredZero",
    			aux:       "Int32",
    			argLength: 3,
    			reg: regInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    		},
    
    		// large or unaligned zeroing
    		// arg0 = address of memory to zero (in R20, changed as side effect)
    		// arg1 = address of the last element to zero
    		// arg2 = mem
    		// auxint = alignment
    		// returns mem
    		//	MOVx	R0, (R20)
    		//	ADDV	$sz, R20
    		//	BGEU	Rarg1, R20, -2(PC)
    		{
    			name:      "LoweredZero",
    			aux:       "Int64",
    			argLength: 3,
    			reg: regInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    		},
    
    		// large or unaligned zeroing
    		// arg0 = address of memory to zero (in R1, changed as side effect)
    		// arg1 = address of the last element to zero
    		// arg2 = mem
    		// auxint = alignment
    		// returns mem
    		//	SUBV	$8, R1
    		//	MOVV	R0, 8(R1)
    		//	ADDV	$8, R1
    		//	BNE	Rarg1, R1, -2(PC)
    		{
    			name:      "LoweredZero",
    			aux:       "Int64",
    			argLength: 3,
    			reg: regInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
Back to top