Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 410 for fInt16 (0.17 sec)

  1. src/go/types/universe.go

    	Int8:          {Int8, IsInteger, "int8"},
    	Int16:         {Int16, IsInteger, "int16"},
    	Int32:         {Int32, IsInteger, "int32"},
    	Int64:         {Int64, IsInteger, "int64"},
    	Uint:          {Uint, IsInteger | IsUnsigned, "uint"},
    	Uint8:         {Uint8, IsInteger | IsUnsigned, "uint8"},
    	Uint16:        {Uint16, IsInteger | IsUnsigned, "uint16"},
    	Uint32:        {Uint32, IsInteger | IsUnsigned, "uint32"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/runtime/defs_freebsd_arm64.go

    	_EV_ERROR     = 0x4000
    	_EV_EOF       = 0x8000
    	_EVFILT_READ  = -0x1
    	_EVFILT_WRITE = -0x2
    	_EVFILT_USER  = -0xb
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type rtprio struct {
    	_type uint16
    	prio  uint16
    }
    
    type thrparam struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack_base uintptr
    	stack_size uintptr
    	tls_base   unsafe.Pointer
    	tls_size   uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprog/panicprint.go

    type MyComplex128 complex128
    type MyComplex64 complex64
    type MyFloat32 float32
    type MyFloat64 float64
    type MyInt int
    type MyInt8 int8
    type MyInt16 int16
    type MyInt32 int32
    type MyInt64 int64
    type MyString string
    type MyUint uint
    type MyUint8 uint8
    type MyUint16 uint16
    type MyUint32 uint32
    type MyUint64 uint64
    type MyUintptr uintptr
    
    func panicCustomComplex64() {
    	panic(MyComplex64(0.11 + 3i))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/go/types/basic.go

    package types
    
    // BasicKind describes the kind of basic type.
    type BasicKind int
    
    const (
    	Invalid BasicKind = iota // type is invalid
    
    	// predeclared types
    	Bool
    	Int
    	Int8
    	Int16
    	Int32
    	Int64
    	Uint
    	Uint8
    	Uint16
    	Uint32
    	Uint64
    	Uintptr
    	Float32
    	Float64
    	Complex64
    	Complex128
    	String
    	UnsafePointer
    
    	// types for untyped values
    	UntypedBool
    	UntypedInt
    	UntypedRune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. schema/field.go

    		case reflect.Int, reflect.Int64, reflect.Uint, reflect.Uint64, reflect.Float64:
    			field.Size = 64
    		case reflect.Int8, reflect.Uint8:
    			field.Size = 8
    		case reflect.Int16, reflect.Uint16:
    			field.Size = 16
    		case reflect.Int32, reflect.Uint32, reflect.Float32:
    			field.Size = 32
    		}
    	}
    
    	// setup permission
    	if val, ok := field.TagSettings["-"]; ok {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    // Note: ADDCCconst only assembles to 1 instruction for int16 constants.
    (CMPconst [0] z:(ADDconst [c] x)) && int64(int16(c)) == c && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    (CMPconst [0] z:(ANDconst [c] x)) && int64(uint16(c)) == c && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    // And finally, fixup the flag user.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/runtime/error.go

    	case abi.Uint8:
    		print(typestring, "(", *(*uint8)(eface.data), ")")
    	case abi.Uint16:
    		print(typestring, "(", *(*uint16)(eface.data), ")")
    	case abi.Uint32:
    		print(typestring, "(", *(*uint32)(eface.data), ")")
    	case abi.Uint64:
    		print(typestring, "(", *(*uint64)(eface.data), ")")
    	case abi.Uintptr:
    		print(typestring, "(", *(*uintptr)(eface.data), ")")
    	case abi.Float32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Words71_74     [4]uint16
    	Queue_depth    uint16
    	Words76_79     [4]uint16
    	Major_rev_num  uint16
    	Minor_rev_num  uint16
    	Command_set_1  uint16
    	Command_set_2  uint16
    	Cfsse          uint16
    	Cfs_enable_1   uint16
    	Cfs_enable_2   uint16
    	Csf_default    uint16
    	Dma_ultra      uint16
    	Trseuc         uint16
    	TrsEuc         uint16
    	CurAPMvalues   uint16
    	Mprc           uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  9. test/fuse.go

    	return a <= 0 && f > Cf2 || a <= 0 && f < -Cf2 // ERROR "Redirect Leq8 based on Leq8$"
    }
    
    func fLessUEq(a uint8, f float64) bool {
    	return a < 0 && f > Cf2 || a == 0 && f < -Cf2
    }
    
    func fLessUNeq(a uint16, f float64) bool {
    	return a < 0 && f > Cf2 || a != 0 && f < -Cf2
    }
    
    func fLessULessU(a uint32, f float64) bool {
    	return a < 0 && f > Cf2 || a < 0 && f < -Cf2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/database/sql/convert_test.go

    		name string
    		in   any
    		want string
    	}{
    		{"uint64", uint64(12345678), "12345678"},
    		{"uint32", uint32(1234), "1234"},
    		{"uint16", uint16(12), "12"},
    		{"uint8", uint8(1), "1"},
    		{"uint", uint(123), "123"},
    		{"int", int(123), "123"},
    		{"int8", int8(1), "1"},
    		{"int16", int16(12), "12"},
    		{"int32", int32(1234), "1234"},
    		{"int64", int64(12345678), "12345678"},
    		{"float32", float32(1.5), "1.5"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top