Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for 18446744073709551615B (0.23 sec)

  1. src/math/big/float_test.go

    		{"12345.0", 12345, Exact},
    		{"12345.000000000000000000001", 12345, Below},
    		{"18446744073709551615", 18446744073709551615, Exact},
    		{"18446744073709551615.000000000000000000001", math.MaxUint64, Below},
    		{"18446744073709551616", math.MaxUint64, Below},
    		{"1e10000", math.MaxUint64, Below},
    		{"+Inf", math.MaxUint64, Below},
    	} {
    		x := makeFloat(test.x)
    		out, acc := x.Uint64()
    		if out != test.out || acc != test.acc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    }
    
    // CHECK-LABEL:   func @convert_not_ui64(
    // CHECK-SAME:                      %[[ARG:.*]]: tensor<7x9x11xui64>) -> tensor<7x9x11xui64> {
    // CHECK:           %[[CST:.*]] = "tf.Const"() <{value = dense<18446744073709551615> : tensor<ui64>}> : () -> tensor<ui64>
    // CHECK:           %[[RES:.*]] = "tf.BitwiseXor"(%[[ARG]], %[[CST]]) : (tensor<7x9x11xui64>, tensor<ui64>) -> tensor<7x9x11xui64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    uint16      the set of all unsigned 16-bit integers (0 to 65535)
    uint32      the set of all unsigned 32-bit integers (0 to 4294967295)
    uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615)
    
    int8        the set of all signed  8-bit integers (-128 to 127)
    int16       the set of all signed 16-bit integers (-32768 to 32767)
    int32       the set of all signed 32-bit integers (-2147483648 to 2147483647)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. doc/go_spec.html

    uint16      the set of all unsigned 16-bit integers (0 to 65535)
    uint32      the set of all unsigned 32-bit integers (0 to 4294967295)
    uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615)
    
    int8        the set of all signed  8-bit integers (-128 to 127)
    int16       the set of all signed 16-bit integers (-32768 to 32767)
    int32       the set of all signed 32-bit integers (-2147483648 to 2147483647)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  5. api/go1.1.txt

    pkg math, const MaxInt64 = 9223372036854775807
    pkg math, const MaxInt8 = 127
    pkg math, const MaxUint16 = 65535
    pkg math, const MaxUint32 = 4294967295
    pkg math, const MaxUint64 = 18446744073709551615
    pkg math, const MaxUint8 = 255
    pkg math, const MinInt16 = -32768
    pkg math, const MinInt32 = -2147483648
    pkg math, const MinInt64 = -9223372036854775808
    pkg math, const MinInt8 = -128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top