Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for UI32 (0.06 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))
    	ui32 := (*uint32)(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(s[i32])
    	use(a1[i32])
    	use(a1k[i32])
    	use(a100k[i32])
    	use(p1[i32])
    	use(p1k[i32])
    	use(p100k[i32])
    
    	use(s[ui32])
    	use(a1[ui32])
    	use(a1k[ui32])
    	use(a100k[ui32])
    	use(p1[ui32])
    	use(p1k[ui32])
    	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])
    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. tensorflow/compiler/mlir/stablehlo/stablehlo_test.py

      assembly = """
        module @jit_f_jax.0 {
          func.func public @main(%arg0: tensor<ui32>) -> tensor<i1> {
            %0 = stablehlo.constant dense<1> : tensor<ui32>
            %1 = "stablehlo.compare"(%arg0, %0) {compare_type = #stablehlo<comparison_type UNSIGNED>, comparison_direction = #stablehlo<comparison_direction GE>} : (tensor<ui32>, tensor<ui32>) -> tensor<i1>
            return %1 : tensor<i1>
          }
        }
      """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 19:48:21 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. test/rotate.go

    	i16 int16 = 0x1234
    	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")
    	}
    }
    
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 3.3K bytes
    - Viewed (0)
  5. test/codegen/compare_and_branch.go

    		dummy()
    	}
    
    	// s390x:"CIJ\t[$]4, R[0-9]+, [$]-128, "
    	for i := doNotOptimize; i <= -129; i-- {
    		dummy()
    	}
    }
    
    // Unsigned 32-bit compare-and-branch.
    func ui32(x, y chan uint32) {
    	// s390x:"CLRJ\t[$](2|4), R[0-9]+, R[0-9]+, "
    	for <-x > <-y {
    		dummy()
    	}
    
    	// s390x:"CL?RJ\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)
Back to top