Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 134 for Int16 (0.06 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    	_       uint64
    }
    
    type Dirent struct {
    	Ino    uint64
    	Off    int64
    	Reclen uint16
    	Type   uint8
    	Name   [256]uint8
    	_      [5]byte
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Pid    int32
    	_      [4]byte
    }
    
    type DmNameList struct {
    	Dev  uint64
    	Next uint32
    	Name [0]byte
    	_    [4]byte
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go

    	_       [3]int64
    }
    
    type Dirent struct {
    	Ino    uint64
    	Off    int64
    	Reclen uint16
    	Type   uint8
    	Name   [256]int8
    	_      [5]byte
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Pid    int32
    	_      [4]byte
    }
    
    type DmNameList struct {
    	Dev  uint64
    	Next uint32
    	Name [0]byte
    	_    [4]byte
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go

    	_       [3]int64
    }
    
    type Dirent struct {
    	Ino    uint64
    	Off    int64
    	Reclen uint16
    	Type   uint8
    	Name   [256]int8
    	_      [5]byte
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Pid    int32
    	_      [4]byte
    }
    
    type DmNameList struct {
    	Dev  uint64
    	Next uint32
    	Name [0]byte
    	_    [4]byte
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    	Ino     uint64
    }
    
    type Dirent struct {
    	Ino    uint64
    	Off    int64
    	Reclen uint16
    	Type   uint8
    	Name   [256]int8
    	_      [1]byte
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Pid    int32
    }
    
    type DmNameList struct {
    	Dev  uint64
    	Next uint32
    }
    
    const (
    	FADV_DONTNEED = 0x4
    	FADV_NOREUSE  = 0x5
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go

    	Blocks  int64
    }
    
    type Dirent struct {
    	Ino    uint64
    	Off    int64
    	Reclen uint16
    	Type   uint8
    	Name   [256]int8
    	_      [5]byte
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Pid    int32
    	_      [4]byte
    }
    
    type DmNameList struct {
    	Dev  uint64
    	Next uint32
    	Name [0]byte
    	_    [4]byte
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/encoding/gob/encoder_test.go

    		dec.Decode(&res)
    
    		if !reflect.DeepEqual(s8, res) {
    			t.Fatalf("EncodeIntSlice: expected %v, got %v", s8, res)
    		}
    	})
    
    	t.Run("int16", func(t *testing.T) {
    		var sink bytes.Buffer
    		enc := NewEncoder(&sink)
    		enc.Encode(s16)
    
    		dec := NewDecoder(&sink)
    		res := make([]int16, 9)
    		dec.Decode(&res)
    
    		if !reflect.DeepEqual(s16, res) {
    			t.Fatalf("EncodeIntSlice: expected %v, got %v", s16, res)
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/html/template/js_test.go

    	tests := []struct {
    		x        any
    		js       string
    		skipNest bool
    	}{
    		{int(42), " 42 ", false},
    		{uint(42), " 42 ", false},
    		{int16(42), " 42 ", false},
    		{uint16(42), " 42 ", false},
    		{int32(-42), " -42 ", false},
    		{uint32(42), " 42 ", false},
    		{int16(-42), " -42 ", false},
    		{uint16(42), " 42 ", false},
    		{int64(-42), " -42 ", false},
    		{uint64(42), " 42 ", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/cpu.go

    	REGSP = REG_SP
    	REGG  = REG_G
    )
    
    // https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/master/riscv-dwarf.adoc#dwarf-register-numbers
    var RISCV64DWARFRegisters = map[int16]int16{
    	// Integer Registers.
    	REG_X0:  0,
    	REG_X1:  1,
    	REG_X2:  2,
    	REG_X3:  3,
    	REG_X4:  4,
    	REG_X5:  5,
    	REG_X6:  6,
    	REG_X7:  7,
    	REG_X8:  8,
    	REG_X9:  9,
    	REG_X10: 10,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/encoding/xml/xml_test.go

    		}
    	}
    }
    
    type allScalars struct {
    	True1     bool
    	True2     bool
    	False1    bool
    	False2    bool
    	Int       int
    	Int8      int8
    	Int16     int16
    	Int32     int32
    	Int64     int64
    	Uint      int
    	Uint8     uint8
    	Uint16    uint16
    	Uint32    uint32
    	Uint64    uint64
    	Uintptr   uintptr
    	Float32   float32
    	Float64   float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/encoding/xml/read_test.go

    	}
    }
    
    type WhitespaceValuesParent struct {
    	BFalse bool
    	BTrue  bool
    	I      int
    	INeg   int
    	I8     int8
    	I8Neg  int8
    	I16    int16
    	I16Neg int16
    	I32    int32
    	I32Neg int32
    	I64    int64
    	I64Neg int64
    	UI     uint
    	UI8    uint8
    	UI16   uint16
    	UI32   uint32
    	UI64   uint64
    	F32    float32
    	F32Neg float32
    	F64    float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top