Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 358 for fInt16 (0.11 sec)

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

    	Ctim    Timespec
    	Blksize int64
    	Blocks  int64
    	_       [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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    	Ctim    Timespec
    	_       uint64
    	_       uint64
    	_       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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go

    	Ctim    Timespec
    	_       uint64
    	_       uint64
    	_       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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go

    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	_       [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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/config.go

    }
    
    // SetTypPtrs populates t.
    func (t *Types) SetTypPtrs() {
    	t.Bool = types.Types[types.TBOOL]
    	t.Int8 = types.Types[types.TINT8]
    	t.Int16 = types.Types[types.TINT16]
    	t.Int32 = types.Types[types.TINT32]
    	t.Int64 = types.Types[types.TINT64]
    	t.UInt8 = types.Types[types.TUINT8]
    	t.UInt16 = types.Types[types.TUINT16]
    	t.UInt32 = types.Types[types.TUINT32]
    	t.UInt64 = types.Types[types.TUINT64]
    	t.Int = types.Types[types.TINT]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    		} else {
    			rno = uint16(inst.Args[0].(RegSP))
    		}
    		if rno <= uint16(WZR) {
    			op = "MOVW" + suffix
    		} else if rno >= uint16(B0) && rno <= uint16(B31) {
    			op = "FMOVB" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    		} else if rno >= uint16(H0) && rno <= uint16(H31) {
    			op = "FMOVH" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    		} else if rno >= uint16(S0) && rno <= uint16(S31) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  7. src/internal/zstd/fse.go

    // in the table is tableBits.
    func (r *Reader) buildFSE(off int, norm []int16, table []fseEntry, tableBits int) error {
    	tableSize := 1 << tableBits
    	highThreshold := tableSize - 1
    
    	var next [256]uint16
    
    	for i, n := range norm {
    		if n >= 0 {
    			next[uint8(i)] = uint16(n)
    		} else {
    			table[highThreshold].sym = uint8(i)
    			highThreshold--
    			next[uint8(i)] = 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/arithBoundary_test.go

    //go:noinline
    func add_int16_ssa(a, b int16) int16 {
    	return a + b
    }
    
    //go:noinline
    func sub_int16_ssa(a, b int16) int16 {
    	return a - b
    }
    
    //go:noinline
    func div_int16_ssa(a, b int16) int16 {
    	return a / b
    }
    
    //go:noinline
    func mod_int16_ssa(a, b int16) int16 {
    	return a % b
    }
    
    //go:noinline
    func mul_int16_ssa(a, b int16) int16 {
    	return a * b
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 31.3K bytes
    - Viewed (0)
  9. src/internal/fuzz/encoding.go

    	case "uint":
    		i, err := strconv.ParseUint(val, 0, 64)
    		return uint(i), err
    	case "uint8", "byte":
    		i, err := strconv.ParseUint(val, 0, 8)
    		return uint8(i), err
    	case "uint16":
    		i, err := strconv.ParseUint(val, 0, 16)
    		return uint16(i), err
    	case "uint32":
    		i, err := strconv.ParseUint(val, 0, 32)
    		return uint32(i), err
    	case "uint64":
    		return strconv.ParseUint(val, 0, 64)
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/float_test.go

    		t.Errorf("uint32(du32) != u32")
    	}
    	if uint16(du16) != u16 {
    		t.Errorf("uint16(du16) != u16")
    	}
    	if uint8(du8) != u8 {
    		t.Errorf("uint8(du8) != u8")
    	}
    	if int64(di64) != i64 {
    		t.Errorf("int64(di64) != i64")
    	}
    	if int32(di32) != i32 {
    		t.Errorf("int32(di32) != i32")
    	}
    	if int16(di16) != i16 {
    		t.Errorf("int16(di16) != i16")
    	}
    	if int8(di8) != i8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
Back to top