Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SubPtr (0.1 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Lowering arithmetic
    (Add(64|32|16|8) ...) => (ADD(Q|L|L|L) ...)
    (AddPtr ...) => (ADDQ ...)
    (Add(32|64)F ...) => (ADDS(S|D) ...)
    
    (Sub(64|32|16|8) ...) => (SUB(Q|L|L|L) ...)
    (SubPtr ...) => (SUBQ ...)
    (Sub(32|64)F ...) => (SUBS(S|D) ...)
    
    (Mul(64|32|16|8) ...) => (MUL(Q|L|L|L) ...)
    (Mul(32|64)F ...) => (MULS(S|D) ...)
    
    (Select0 (Mul64uover x y)) => (Select0 <typ.UInt64> (MULQU x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    	if err == nil {
    		t.Fatalf("X509KeyPair didn't return an error when arguments were switched")
    	}
    	if subStr := "been switched"; !strings.Contains(err.Error(), subStr) {
    		t.Fatalf("Expected %q in the error when switching arguments to X509KeyPair, but the error was %q", subStr, err)
    	}
    
    	_, err = X509KeyPair([]byte(rsaCertPEM), []byte(rsaCertPEM))
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

      ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  4. src/strings/strings_test.go

    }
    
    func TestContains(t *testing.T) {
    	for _, ct := range ContainsTests {
    		if Contains(ct.str, ct.substr) != ct.expected {
    			t.Errorf("Contains(%s, %s) = %v, want %v",
    				ct.str, ct.substr, !ct.expected, ct.expected)
    		}
    	}
    }
    
    var ContainsAnyTests = []struct {
    	str, substr string
    	expected    bool
    }{
    	{"", "", false},
    	{"", "a", false},
    	{"", "abc", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    	{[]byte(dots + dots + dots), " ", false},
    }
    
    func TestContainsAny(t *testing.T) {
    	for _, ct := range ContainsAnyTests {
    		if ContainsAny(ct.b, ct.substr) != ct.expected {
    			t.Errorf("ContainsAny(%s, %s) = %v, want %v",
    				ct.b, ct.substr, !ct.expected, ct.expected)
    		}
    	}
    }
    
    var ContainsRuneTests = []struct {
    	b        []byte
    	r        rune
    	expected bool
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      if (!func_name.starts_with(kCompositeFuncPrefix)) return "";
    
      auto base_function_name =
          llvm::Twine(kQuantizedFuncPrefix)
              .concat(llvm::Twine(func_name.substr(kCompositeFuncPrefix.size())
                                      .rsplit("_fn")
                                      .first));
    
      if (merged_with_dequantize) {
        return base_function_name.concat("_float_output_fn").str();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top