Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for Int16 (0.08 sec)

  1. src/cmd/link/internal/ld/data.go

    		case 1:
    			P[off] = byte(int8(o))
    		case 2:
    			if (rt == objabi.R_PCREL || rt == objabi.R_CALL) && o != int64(int16(o)) {
    				st.err.Errorf(s, "pc-relative relocation address for %s is too big: %#x", ldr.SymName(rs), o)
    			} else if o != int64(int16(o)) && o != int64(uint16(o)) {
    				st.err.Errorf(s, "non-pc-relative relocation address for %s is too big: %#x", ldr.SymName(rs), uint64(o))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. doc/go1.17_spec.html

    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)
    int64       the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    		{NullInt32{222, false}, 1, NullInt32{0, false}},
    		{0, NullInt32{31, false}, nil},
    	}}
    	nullTestRun(t, spec)
    }
    
    func TestNullInt16Param(t *testing.T) {
    	spec := nullTestSpec{"nullint16", "int16", [6]nullTestRow{
    		{NullInt16{31, true}, 1, NullInt16{31, true}},
    		{NullInt16{-22, false}, 1, NullInt16{0, false}},
    		{22, 1, NullInt16{22, true}},
    		{NullInt16{33, true}, 1, NullInt16{33, true}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (NEG (MOVDconst [c])) => (MOVDconst [-c])
    (MOVBreg  (MOVDconst [c])) => (MOVDconst [int64(int8(c))])
    (MOVBUreg (MOVDconst [c])) => (MOVDconst [int64(uint8(c))])
    (MOVHreg  (MOVDconst [c])) => (MOVDconst [int64(int16(c))])
    (MOVHUreg (MOVDconst [c])) => (MOVDconst [int64(uint16(c))])
    (MOVWreg  (MOVDconst [c])) => (MOVDconst [int64(int32(c))])
    (MOVWUreg (MOVDconst [c])) => (MOVDconst [int64(uint32(c))])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        This operation reverses each dimension i for
        which there exists j s.t. axis[j] == i.
    
        Args:
          tensor: A Tensor. Must be one of the following types:
          uint8, int8, int16, int32, int64, float32, bool Up to 8-D.
    
          axis: A Tensor. Must be one of the following types: int32, int64.
          with only 1 element which is the axis index.
          TODO: Add support for multiple elements.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top