Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for longlong (0.14 sec)

  1. src/syscall/types_netbsd.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
    - 4.8K bytes
    - Viewed (0)
  2. src/syscall/types_freebsd.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: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  3. src/syscall/types_linux.go

    	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 Timex C.struct_timex
    
    type Time_t C.time_t
    
    type Tms C.struct_tms
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    The standard C numeric types are available under the names
    C.char, C.schar (signed char), C.uchar (unsigned char),
    C.short, C.ushort (unsigned short), C.int, C.uint (unsigned int),
    C.long, C.ulong (unsigned long), C.longlong (long long),
    C.ulonglong (unsigned long long), C.float, C.double,
    C.complexfloat (complex float), and C.complexdouble (complex double).
    The C type void* is represented by Go's unsafe.Pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	"short int":              "short",
    	"long long int":          "longlong",
    	"long long unsigned int": "ulonglong",
    	"signed char":            "schar",
    	"unsigned char":          "uchar",
    	"unsigned long":          "ulong",     // Used by Clang 14; issue 53013.
    	"unsigned long long":     "ulonglong", // Used by Clang 14; issue 53013.
    }
    
    const signedDelta = 64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/mime/multipart/multipart_test.go

    	}
    	buf.Reset()
    	if _, err := io.Copy(buf, part); err != nil {
    		t.Errorf("part 2 copy: %v", err)
    	}
    	s := buf.String()
    	if len(s) != len(longLine) {
    		t.Errorf("part2 body expected long line of length %d; got length %d",
    			len(longLine), len(s))
    	}
    	if s != longLine {
    		t.Errorf("part2 long body didn't match")
    	}
    
    	// Part3
    	part, err = reader.NextPart()
    	if part == nil || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  7. src/cmd/doc/doc_test.go

    			`var MultiLineVar = map\[struct{ ... }\]struct{ ... }{ ... }`,  // Multi line variable.
    			`func MultiLineFunc\(x interface{ ... }\) \(r struct{ ... }\)`, // Multi line function.
    			`var LongLine = newLongLine\(("someArgument[1-4]", ){4}...\)`,  // Long list of arguments.
    			`type T1 = T2`,                                                 // Type alias
    			`type SimpleConstraint interface{ ... }`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  8. src/cmd/doc/testdata/pkg.go

    )
    
    const (
    	ConstGroup1 unexportedType = iota
    	ConstGroup2
    	ConstGroup3
    )
    
    const ConstGroup4 ExportedType = ExportedType{}
    
    func newLongLine(ss ...string)
    
    var LongLine = newLongLine(
    	"someArgument1",
    	"someArgument2",
    	"someArgument3",
    	"someArgument4",
    	"someArgument5",
    	"someArgument6",
    	"someArgument7",
    	"someArgument8",
    )
    
    type T2 int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/testx.go

    func GoIssue6833Func(aui uint, aui64 uint64) uint64 {
    	return aui64 + uint64(aui)
    }
    
    func test6833(t *testing.T) {
    	ui := 7
    	ull := uint64(0x4000300020001000)
    	v := uint64(C.issue6833Func(C.uint(ui), C.ulonglong(ull)))
    	exp := uint64(ui) + ull
    	if v != exp {
    		t.Errorf("issue6833Func() returns %x, expected %x", v, exp)
    	}
    }
    
    // issue 6907
    
    const CString = "C string"
    
    //export CheckIssue6907Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. lib/time/zoneinfo.zip

    Europe/Tirane Europe/Tiraspol Europe/Ulyanovsk Europe/Uzhgorod Europe/Vaduz Europe/Vatican Europe/Vienna Europe/Vilnius Europe/Volgograd Europe/Warsaw Europe/Zagreb Europe/Zaporozhye Europe/Zurich Factory GB GB-Eire GMT GMT+0 GMT-0 GMT0 Greenwich HST Hongkong Iceland Indian/Antananarivo Indian/Chagos Indian/Christmas Indian/Cocos Indian/Comoro Indian/Kerguelen Indian/Mahe Indian/Maldives Indian/Mauritius Indian/Mayotte Indian/Reunion Iran Israel Jamaica Japan Kwajalein Libya MET MST MST7MDT Mexico/BajaNorte...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (0)
Back to top