Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for UI64 (0.12 sec)

  1. 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 (0)
  2. 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)
  3. test/rotate.go

    	i32 int32 = 0x12345678
    	i64 int64 = 0x123456789abcdef0
    	ui8 uint8 = 0x12
    	ui16 uint16 = 0x1234
    	ui32 uint32 = 0x12345678
    	ui64 uint64 = 0x123456789abcdef0
    
    	ni8 = ^i8
    	ni16 = ^i16
    	ni32 = ^i32
    	ni64 = ^i64
    	nui8 = ^ui8
    	nui16 = ^ui16
    	nui32 = ^ui32
    	nui64 = ^ui64
    )
    
    var nfail = 0
    
    func main() {
    	if nfail > 0 {
    		fmt.Printf("BUG\n")
    	}
    }
    
    `
    
    const checkFunc = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 3.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. test/codegen/compare_and_branch.go

    	for i := doNotOptimize; i >= 128; i++ {
    		dummy()
    	}
    
    	// s390x:"CGIJ\t[$]4, R[0-9]+, [$]-128, "
    	for i := doNotOptimize; i <= -129; i-- {
    		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()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        %alg = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        %delta = "tf.Const"() {value = dense<10> : tensor<ui64>} : () -> tensor<ui64>
        %1 = "tf.RngReadAndSkip"(%resource, %alg, %delta) : (tensor<!tf_type.resource<tensor<3xi64>>>, tensor<i32>, tensor<ui64>) -> tensor<3xi64>
        tf_device.return %1 : tensor<3xi64>
      }) : () -> tensor<3xi64>
      func.return %0 : tensor<3xi64>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. src/runtime/map_test.go

    	var (
    		b    bool
    		i    int
    		i8   int8
    		i16  int16
    		i32  int32
    		i64  int64
    		ui   uint
    		ui8  uint8
    		ui16 uint16
    		ui32 uint32
    		ui64 uint64
    		uipt uintptr
    		f32  float32
    		f64  float64
    		c64  complex64
    		c128 complex128
    		a    [4]string
    		s    string
    		p    *int
    		up   unsafe.Pointer
    		ch   chan int
    		i0   any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top