Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for rstore (0.17 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	JNE           openSSEPreparePolyKey
    
    	// A0|B0 hold the Poly1305 32-byte key, C0,D0 can be discarded
    	PADDL ·chacha20Constants<>(SB), A0; PADDL state1Store, B0
    
    	// Clamp and store the key
    	PAND ·polyClampMask<>(SB), A0
    	MOVO A0, rStore; MOVO B0, sStore
    
    	// Hash AAD
    	MOVQ ad_len+80(FP), itr2
    	CALL polyHashADInternal<>(SB)
    
    openSSEMainLoop:
    	CMPQ inl, $256
    	JB   openSSEMainLoopDone
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "MOVQstore", argLength: 3, reg: gpstore, asm: "MOVQ", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},
    
    		// MOVOload/store: 16 byte load/store
    		// These operations are only used to move data around: there is no *O arithmetic, for example.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. pkg/controller/daemon/daemon_controller_test.go

    	f.expectations.DeletionObserved(klog.FromContext(ctx), dsKey)
    
    	return nil
    }
    
    type daemonSetsController struct {
    	*DaemonSetsController
    
    	dsStore      cache.Store
    	historyStore cache.Store
    	podStore     cache.Store
    	nodeStore    cache.Store
    	fakeRecorder *record.FakeRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Don't Store to variables that are about to be overwritten by Move/Zero.
    (Zero {t1} [n] p1 store:(Store {t2} (OffPtr [o2] p2) _ mem))
    	&& isSamePtr(p1, p2) && store.Uses == 1
    	&& n >= o2 + t2.Size()
    	&& clobber(store)
    	=> (Zero {t1} [n] p1 mem)
    (Move {t1} [n] dst1 src1 store:(Store {t2} op:(OffPtr [o2] dst2) _ mem))
    	&& isSamePtr(dst1, dst2) && store.Uses == 1
    	&& n >= o2 + t2.Size()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	op_STCKC   uint32 = 0xB207 // FORMAT_S          STORE CLOCK COMPARATOR
    	op_STCKE   uint32 = 0xB278 // FORMAT_S          STORE CLOCK EXTENDED
    	op_STCKF   uint32 = 0xB27C // FORMAT_S          STORE CLOCK FAST
    	op_STCM    uint32 = 0xBE00 // FORMAT_RS2        STORE CHARACTERS UNDER MASK (low)
    	op_STCMH   uint32 = 0xEB2C // FORMAT_RSY2       STORE CHARACTERS UNDER MASK (high)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    //
    // And the saved g will be used in pthread_key_destructor,
    // since the g stored in the TLS by Go might be cleared in some platforms,
    // before the destructor invoked, so, we restore g by the stored g, before dropm.
    //
    // We store g0 instead of m, to make the assembly code simpler,
    // since we need to restore g0 in runtime.cgocallback.
    //
    // On systems without pthreads, like Windows, bindm shouldn't be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    	/* VSX vector store */
    	{as: ASTXVD2X, a1: C_VSREG, a6: C_XOREG, type_: 86, size: 4},        /* vsx vector store, xx1-form */
    	{as: ASTXV, a1: C_VSREG, a6: C_SOREG, type_: 97, size: 4},           /* vsx vector store, dq-form */
    	{as: ASTXVL, a1: C_VSREG, a2: C_REG, a6: C_REG, type_: 99, size: 4}, /* vsx vector store with length x-form */
    
    	/* VSX scalar load */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    			if mp, ok := globalIAMSys.store.GetMappedPolicy(opts.EntityValue, false); ok {
    				userPolicyMap.Store(opts.EntityValue, mp)
    			}
    		} else {
    			stsErr := globalIAMSys.store.loadMappedPolicies(ctx, stsUser, false, stsPolicyMap)
    			if stsErr != nil {
    				return info, errSRBackendIssue(stsErr)
    			}
    			usrErr := globalIAMSys.store.loadMappedPolicies(ctx, regUser, false, userPolicyMap)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  9. src/net/http/server.go

    			w.conn.bufw.WriteString("HTTP/1.1 100 Continue\r\n\r\n")
    			w.conn.bufw.Flush()
    			w.canWriteContinue.Store(false)
    		}
    		w.writeContinueMu.Unlock()
    	}
    	n, err = ecr.readCloser.Read(p)
    	if err == io.EOF {
    		ecr.sawEOF.Store(true)
    	}
    	return
    }
    
    func (ecr *expectContinueReader) Close() error {
    	ecr.closed.Store(true)
    	return ecr.readCloser.Close()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    			statusCode = http.StatusAccepted
    			alreadyRestored = true
    		}
    	}
    	// set or upgrade restore expiry
    	restoreExpiry := lifecycle.ExpectedExpiryTime(time.Now().UTC(), rreq.Days)
    	metadata := cloneMSS(objInfo.UserDefined)
    
    	// update self with restore metadata
    	if rreq.Type != SelectRestoreRequest {
    		objInfo.metadataOnly = true // Perform only metadata updates.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top