Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,363 for aloop (0.05 sec)

  1. src/internal/bytealg/index_ppc64x.s

    	ADD      $19, R7, R9  // Number of string bytes for loop
    	CMP      R9, LASTBYTE // Compare against last byte of string
    	BLT      index3loop2  // If within, continue this loop
    	CMP      R7, LASTSTR  // Compare against last start byte
    	BLT      index2to16   // Process remainder
    	VSPLTISB $0, V3       // Special case for last 16 bytes
    	BR       index3loop   // Continue this loop
    
    	// Loop to process 4 byte separator
    	// string[0:16] in V2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  2. src/crypto/sha256/sha256block_s390x.s

    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $2, R0                       // SHA-256 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    	KIMD R0, R2      // compute intermediate message digest (KIMD)
    	BVS  loop        // continue if interrupted
    	RET
    
    generic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 610 bytes
    - Viewed (0)
  3. src/crypto/sha512/sha512block_s390x.s

    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $3, R0                       // SHA-512 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    	KIMD R0, R2      // compute intermediate message digest (KIMD)
    	BVS  loop        // continue if interrupted
    	RET
    
    generic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 610 bytes
    - Viewed (0)
  4. pkg/kubelet/cloudresource/cloud_request_manager_test.go

    			wantErr:                true,
    			shouldDisableInstances: true,
    		},
    		{
    			name:      "subsequent sync loop succeeds",
    			addrs:     createNodeInternalIPAddress("10.0.1.12"),
    			wantAddrs: createNodeInternalIPAddress("10.0.1.12"),
    		},
    		{
    			name:      "subsequent sync loop encounters an error, last addresses returned",
    			err:       errors.New("bad"),
    			wantAddrs: createNodeInternalIPAddress("10.0.1.12"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    		// generates STXV instructions on
    		// power9. The Short variation is used
    		// if no loop is generated.
    
    		// sizes >= 64 generate a loop as follows:
    
    		// Set up loop counter in CTR, used by BC
    		// XXLXOR clears VS32
    		//       XXLXOR VS32,VS32,VS32
    		//       MOVD len/64,REG_TMP
    		//       MOVD REG_TMP,CTR
    		//       loop:
    		//       STXV VS32,0(R20)
    		//       STXV VS32,16(R20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. tensorflow/c/while_loop_test.cc

        TF_DeleteBuffer(buf);
        return def.DebugString();
      }
    
      TF_Status* s_;
      TF_Graph* graph_;
      std::vector<TF_Output> inputs_;   // The inputs to the while loop
      std::vector<TF_Output> outputs_;  // The final outputs of the while loop
      std::unique_ptr<TF_WhileParams> params_;
      std::unique_ptr<CSession> csession_;
    
     private:
      // Used to verify that errors don't change graph_
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/remove_unused_while_results.mlir

    // RUN: tf-opt %s --tf-remove-unused-while-results --split-input-file | FileCheck %s
    
    // Check that we remove the first result and operand from the loop because the
    // result is unused and all other conditions are satisfied, that means:
    // - the corresponding first block arguments are unused (except for `tf.OpB`
    //   which is the defining op of the first result and will be pruned)
    // - `tf.OpB` is not stateful
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 20:25:31 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  8. src/crypto/internal/bigmod/nat_arm64.s

    	MOVD	x+8(FP), R2
    	MOVD	y+16(FP), R3
    	MOVD	$0, R4
    
    // The main loop of this code operates on a block of 4 words every iteration
    // performing [R4:R12:R11:R10:R9] = R4 + R3 * [R8:R7:R6:R5] + [R12:R11:R10:R9]
    // where R4 is carried from the previous iteration, R8:R7:R6:R5 hold the next
    // 4 words of x, R3 is y and R12:R11:R10:R9 are part of the result z.
    loop:
    	CBZ	R0, done
    
    	LDP.P	16(R2), (R5, R6)
    	LDP.P	16(R2), (R7, R8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/os/signal/signal_unix.go

    func signal_disable(uint32)
    func signal_enable(uint32)
    func signal_ignore(uint32)
    func signal_ignored(uint32) bool
    func signal_recv() uint32
    
    func loop() {
    	for {
    		process(syscall.Signal(signal_recv()))
    	}
    }
    
    func init() {
    	watchSignalLoop = loop
    }
    
    const (
    	numSig = 65 // max across all systems
    )
    
    func signum(sig os.Signal) int {
    	switch sig := sig.(type) {
    	case syscall.Signal:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/RestrictiveCodeVisitor.java

        public void visitForLoop(ForStatement forLoop) {
            restrict(forLoop);
        }
    
        @Override
        public void visitWhileLoop(WhileStatement loop) {
            restrict(loop);
        }
    
        @Override
        public void visitDoWhileLoop(DoWhileStatement loop) {
            restrict(loop);
        }
    
        @Override
        public void visitIfElse(IfStatement ifElse) {
            restrict(ifElse);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top