Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for CNT (0.02 sec)

  1. src/crypto/aes/asm_ppc64x.s

    	LVX	(PTR)(TEMP), MASK
    	ADD	$0x10, PTR, PTR    // addi  6,6,0x10   PTR to next 16 bytes of RCON
    	MOVD	$8, CNT            // li    7,8        CNT = 8
    	VXOR	ZERO, ZERO, ZERO   // vxor  0,0,0      Zero to be zero :)
    	MOVD	CNT, CTR           // mtctr 7          Set the counter to 8 (rounds)
    
    	// The expanded decrypt key is the expanded encrypt key stored in reverse order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/compress/flate/inflate.go

    		goto copyHistory
    	}
    
    copyHistory:
    	// Perform a backwards copy according to RFC section 3.2.3.
    	{
    		cnt := f.dict.tryWriteCopy(f.copyDist, f.copyLen)
    		if cnt == 0 {
    			cnt = f.dict.writeCopy(f.copyDist, f.copyLen)
    		}
    		f.copyLen -= cnt
    
    		if f.dict.availWrite() == 0 || f.copyLen > 0 {
    			f.toRead = f.dict.readFlush()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.cc

        auto op_count_map = op_dtype_count_[op_with_dialect_name];
        if (!op_count_map.empty()) {
          std::string delim;
          *os_ << "  (";
          for (const auto &[dtype, cnt] : op_count_map) {
            *os_ << delim << absl::StrFormat("%s: %d", dtype, cnt);
            delim = ", ";
          }
          *os_ << ")";
        }
        *os_ << "\n";
      }
    }
    
    }  // namespace odml
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/internal/zstd/fse.go

    			zsym := sym
    			for (br.bits & 0xfff) == 0xfff {
    				zsym += 3 * 6
    				br.bits >>= 12
    				br.cnt -= 12
    				if err := br.moreBits(); err != nil {
    					return 0, 0, err
    				}
    			}
    			for (br.bits & 3) == 3 {
    				zsym += 3
    				br.bits >>= 2
    				br.cnt -= 2
    				if err := br.moreBits(); err != nil {
    					return 0, 0, err
    				}
    			}
    
    			// We have at least 14 bits here,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. src/go/scanner/scanner_test.go

    	}
    	if tok0 != token.ILLEGAL && lit0 != lit {
    		t.Errorf("%q: got literal %q, expected %q", src, lit0, lit)
    	}
    	cnt := 0
    	if err != "" {
    		cnt = 1
    	}
    	if h.cnt != cnt {
    		t.Errorf("%q: got cnt %d, expected %d", src, h.cnt, cnt)
    	}
    	if h.msg != err {
    		t.Errorf("%q: got msg %q, expected %q", src, h.msg, err)
    	}
    	if h.pos.Offset != pos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. src/cmd/link/elf_test.go

    	}
    
    	sec = ef.Section(".note.go.buildid")
    	if sec == nil {
    		t.Fatalf("can't find go build id")
    	}
    	cnt := 0
    	for _, ph := range ef.Progs {
    		if ph.Type == elf.PT_NOTE {
    			cnt += 1
    		}
    	}
    	if cnt != expected {
    		t.Fatalf("want %d PT_NOTE segment, got %d", expected, cnt)
    	}
    }
    
    const pieSourceTemplate = `
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache/src/jmh/java/org/gradle/OptionalBenchmark.java

    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.util.Optional;
    
    import static java.util.concurrent.TimeUnit.SECONDS;
    
    /*
     * Benchmark                     Mode  Cnt          Score         Error  Units
     * OptionalBenchmark.nullCheck  thrpt   20  107887111.061 ±  882182.482  ops/s
     * OptionalBenchmark.optional   thrpt   20   86746312.090 ± 1150860.296  ops/s
     **/
    @Fork(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. cmd/endpoint-ellipses.go

    	// in least number of total_drives/total_drives_erasure_set ratio.
    	prevD := divisibleSize / setCounts[0]
    	for _, cnt := range setCounts {
    		if divisibleSize%cnt == 0 {
    			d := divisibleSize / cnt
    			if d <= prevD {
    				prevD = d
    				setSize = cnt
    			}
    		}
    	}
    	return setSize
    }
    
    // possibleSetCountsWithSymmetry returns symmetrical setCounts based on the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_weights.mlir

    // CHECK: %[[WHILE:.*]] = "tf.While"(%[[CNT]], %[[CNT]], %[[CNT]], %arg0, %[[DEQUANTIZED]]) <{body = @while_body, cond = @while_cond, is_stateless = true, parallel_iterations = 10 : i64, shape_invariant}> {T = [i32, i32, i32, f32, f32], _lower_using_switch_merge = true, _num_original_outputs = 5 : i64, _read_only_resource_inputs = [], device = "",...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 42K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/func_test.go

    // number of opcodes that appear in the function.
    func checkOpcodeCounts(t *testing.T, f *Func, m map[Op]int) {
    	n := opcodeMap(f)
    	for op, cnt := range m {
    		if n[op] != cnt {
    			t.Errorf("%s appears %d times, want %d times", op, n[op], cnt)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top