Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for ui64x8 (0.12 sec)

  1. test/codegen/compare_and_branch.go

    		dummy()
    	}
    }
    
    // Unsigned 64-bit compare-and-branch.
    func ui64(x, y chan uint64) {
    	// s390x:"CLGRJ\t[$](2|4), R[0-9]+, R[0-9]+, "
    	for <-x > <-y {
    		dummy()
    	}
    
    	// s390x:"CL?GRJ\t[$]6, R[0-9]+, R[0-9]+, "
    	for <-x != <-y {
    		dummy()
    	}
    }
    
    // Unsigned 64-bit comparison with 8-bit immediate.
    func ui64x8() {
    	// s390x:"CLGIJ\t[$]4, R[0-9]+, [$]128, "
    	for i := uint64(0); i < 128; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/moment-with-locales.min.js

    ":"0"};l.defineLocale("fa",{months:"\u0698\u0627\u0646\u0648\u06cc\u0647_\u0641\u0648\u0631\u06cc\u0647_\u0645\u0627\u0631\u0633_\u0622\u0648\u0631\u06cc\u0644_\u0645\u0647_\u0698\u0648\u0626\u0646_\u0698\u0648\u0626\u06cc\u0647_\u0627\u0648\u062a_\u0633\u067e\u062a\u0627\u0645\u0628\u0631_\u0627\u06a9\u062a\u0628\u0631_\u0646\u0648\u0627\u0645\u0628\u0631_\u062f\u0633\u0627\u0645\u0628\u0631".split("_"),monthsShort:"\u0698\u0627\u0646\u0648\u06cc\u0647_\u0641\u0648\u0631\u06cc\u0647_\u0645\u062...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/unsafe_test.go

    		}
    	}
    }
    
    func alias_ssa(ui64 *uint64, ui32 *uint32) uint32 {
    	*ui32 = 0xffffffff
    	*ui64 = 0                  // store
    	ret := *ui32               // load from same address, should be zero
    	*ui64 = 0xffffffffffffffff // store
    	return ret
    }
    func testdse(t *testing.T) {
    	x := int64(-1)
    	// construct two pointers that alias one another
    	ui64 := (*uint64)(unsafe.Pointer(&x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 3K bytes
    - Viewed (2)
  4. test/bounds.go

    	use(p100k[ui32])
    
    	use(s[i64])
    	use(a1[i64])
    	use(a1k[i64])
    	use(a100k[i64])
    	use(p1[i64])
    	use(p1k[i64])
    	use(p100k[i64])
    
    	use(s[ui64])
    	use(a1[ui64])
    	use(a1k[ui64])
    	use(a100k[ui64])
    	use(p1[ui64])
    	use(p1k[ui64])
    	use(p100k[ui64])
    
    	// Mod truncates the maximum value to one less than the argument,
    	// but signed mod can be negative, so only unsigned mod counts.
    	use(s[i%999])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 27 03:11:45 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/punycode_test.go

    	{"ü", "tda"},
    	{"üý", "tdac"},
    
    	// The test cases below come from RFC 3492 section 7.1 with Errata 3026.
    	{
    		// (A) Arabic (Egyptian).
    		"\u0644\u064A\u0647\u0645\u0627\u0628\u062A\u0643\u0644" +
    			"\u0645\u0648\u0634\u0639\u0631\u0628\u064A\u061F",
    		"egbpdaj6bu4bxfgehfvwxn",
    	},
    	{
    		// (B) Chinese (simplified).
    		"\u4ED6\u4EEC\u4E3A\u4EC0\u4E48\u4E0D\u8BF4\u4E2D\u6587",
    		"ihqwcrb4cv8a8dqg056pqjye",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 4.6K bytes
    - Viewed (0)
  6. internal/disk/stat_linux.go

    	if err != nil && !errors.Is(err, io.EOF) {
    		return nil, err
    	}
    	statLine := strings.TrimSpace(s)
    	for _, token := range strings.Fields(statLine) {
    		ui64, err := strconv.ParseUint(token, 10, 64)
    		if err != nil {
    			return nil, err
    		}
    		stats = append(stats, ui64)
    	}
    
    	return stats, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/const_tensor.mlir

      %1 = "tf.Const"() {device = "/device:CPU:0", value = dense<[1.0]> : tensor<1xbf16>} : () -> tensor<4xbf16>
      // CHECK: corert.executeop({{.*}}) "tf.Const"() {dtype = ui64, value = dense<[1, 2, 3, 4]> : tensor<4xui64>} : 1
      %2 = "tf.Const"() {device = "/device:GPU:0", value = dense<[1, 2, 3, 4]> : tensor<4xui64>} : () -> tensor<4xui64>
      func.return %0 : tensor<4xui64>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/encoding/xml/read_test.go

        <I32Neg>  -266703  </I32Neg>
        <I64>  266703  </I64>
        <I64Neg>  -266703  </I64Neg>
        <UI>   266703   </UI>
        <UI8>  112  </UI8>
        <UI16>  6703  </UI16>
        <UI32>  266703  </UI32>
        <UI64>  266703  </UI64>
        <F32>  266.703  </F32>
        <F32Neg>  -266.703  </F32Neg>
        <F64>  266.703  </F64>
        <F64Neg>  -266.703  </F64Neg>
    </WhitespaceValuesParent>
    `
    
    // golang.org/issues/22146
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/fingerprinting_utils.cc

                  }
                  break;
                case ::tensorflow::proto_splitter::FieldIndex::MapKey::TypeCase::
                    kUi64:
                  if (chunked_key.has_ui64() && chunked_key.ui64() == key.ui64()) {
                    matches += 1;
                  }
                  break;
                case ::tensorflow::proto_splitter::FieldIndex::MapKey::TypeCase::
                    kI32:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. src/text/template/exec_test.go

    	MII:    map[int]int{1: 1},
    	MI32S:  map[int32]string{1: "one", 2: "two"},
    	MI64S:  map[int64]string{2: "i642", 3: "i643"},
    	MUI32S: map[uint32]string{2: "u322", 3: "u323"},
    	MUI64S: map[uint64]string{2: "ui642", 3: "ui643"},
    	MI8S:   map[int8]string{2: "i82", 3: "i83"},
    	MUI8S:  map[uint8]string{2: "u82", 3: "u83"},
    	SMSI: []map[string]int{
    		{"one": 1, "two": 2},
    		{"eleven": 11, "twelve": 12},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top