Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for longlong (0.14 sec)

  1. src/cmd/cgo/internal/testerrors/testdata/err2.go

    		_ C.ushort        = "us"  // ERROR HERE: C\.ushort
    		_ C.uint          = "ui"  // ERROR HERE: C\.uint
    		_ C.ulong         = "ul"  // ERROR HERE: C\.ulong
    		_ C.longlong      = "ll"  // ERROR HERE: C\.longlong
    		_ C.ulonglong     = "ull" // ERROR HERE: C\.ulonglong
    		_ C.complexfloat  = "cf"  // ERROR HERE: C\.complexfloat
    		_ C.complexdouble = "cd"  // ERROR HERE: C\.complexdouble
    	)
    
    	// issue 13830
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callfsync_range(fd int, how int, start int64, length int64) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.fsync_range(C.int(fd), C.int(how), C.longlong(start), C.longlong(length)))
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callacct(_p0 uintptr) (r1 uintptr, e1 Errno) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  3. src/syscall/types_solaris.go

    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    	PathMax        = C.PATH_MAX
    )
    
    // Basic types
    
    type (
    	_C_short     C.short
    	_C_int       C.int
    	_C_long      C.long
    	_C_long_long C.longlong
    )
    
    // Time
    
    type Timespec C.struct_timespec
    
    type Timeval C.struct_timeval
    
    type Timeval32 C.struct_timeval32
    
    // Processes
    
    type Rusage C.struct_rusage
    
    type Rlimit C.struct_rlimit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  4. src/syscall/types_openbsd.go

    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    )
    
    // Basic types
    
    type (
    	_C_short     C.short
    	_C_int       C.int
    	_C_long      C.long
    	_C_long_long C.longlong
    )
    
    // Time
    
    type Timespec C.struct_timespec
    
    type Timeval C.struct_timeval
    
    // Processes
    
    type Rusage C.struct_rusage
    
    type Rlimit C.struct_rlimit
    
    type _Gid_t C.gid_t
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
  5. src/syscall/types_darwin.go

    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    )
    
    // Basic types
    
    type (
    	_C_short     C.short
    	_C_int       C.int
    	_C_long      C.long
    	_C_long_long C.longlong
    )
    
    // Time
    
    type Timespec C.struct_timespec
    
    type Timeval C.struct_timeval
    
    type Timeval32 C.struct_timeval32
    
    // Processes
    
    type Rusage C.struct_rusage
    
    type Rlimit C.struct_rlimit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
  6. src/go/printer/testdata/alignment.golden

    	TLSOptions:			tlsOptions,
    	ImageGCPolicy:			imageGCPolicy, imageGCPolicy,
    	Cloud:				cloud,
    	NodeStatusUpdateFrequency:	s.NodeStatusUpdateFrequency,
    }
    
    var a = A{
    	Long:					1,
    	LongLong:				1,
    	LongLongLong:				1,
    	LongLongLongLong:			1,
    	LongLongLongLongLong:			1,
    	LongLongLongLongLongLong:		1,
    	LongLongLongLongLongLongLong:		1,
    	LongLongLongLongLongLongLongLong:	1,
    	Short:					1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  7. src/go/printer/testdata/alignment.input

        Cloud:                          cloud,
        NodeStatusUpdateFrequency: s.NodeStatusUpdateFrequency,
    }
    
    var a = A{
        Long:                             1,
        LongLong:                         1,
        LongLongLong:                     1,
        LongLongLongLong:                 1,
        LongLongLongLongLong:             1,
        LongLongLongLongLongLong:         1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go

    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fsyncRange(fd int, how int, start int64, length int64) (err error) {
    	r0, er := C.fsync_range(C.int(fd), C.int(how), C.longlong(start), C.longlong(length))
    	if r0 == -1 && er != nil {
    		err = er
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Acct(path string) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  9. src/syscall/types_aix.go

    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    	PathMax        = C.PATH_MAX
    )
    
    // Basic types
    
    type (
    	_C_short     C.short
    	_C_int       C.int
    	_C_long      C.long
    	_C_long_long C.longlong
    )
    
    // Time
    
    type Timespec C.struct_timespec
    
    type Timeval C.struct_timeval
    
    type Timeval32 C.struct_timeval32
    
    type Timezone C.struct_timezone
    
    // Processes
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  10. src/syscall/types_dragonfly.go

    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    )
    
    // Basic types
    
    type (
    	_C_short     C.short
    	_C_int       C.int
    	_C_long      C.long
    	_C_long_long C.longlong
    )
    
    // Time
    
    type Timespec C.struct_timespec
    
    type Timeval C.struct_timeval
    
    // Processes
    
    type Rusage C.struct_rusage
    
    type Rlimit C.struct_rlimit
    
    type _Gid_t C.gid_t
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
Back to top