Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,458 for ulong (0.04 sec)

  1. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/unsignedParameter.kt

    // WITH_STDLIB
    
    annotation class A(vararg val xs: ULong)
    
    @A(1234u, 18446744073709551615u)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Feb 22 13:55:50 UTC 2023
    - 117 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testerrors/testdata/err2.go

    		_ C.schar         = "sc"  // ERROR HERE: C\.schar
    		_ 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_hurd.go

    package unix
    
    /*
    #include <stdint.h>
    int ioctl(int, unsigned long int, uintptr_t);
    */
    import "C"
    
    func ioctl(fd int, req uint, arg uintptr) (err error) {
    	r0, er := C.ioctl(C.int(fd), C.ulong(req), C.uintptr_t(arg))
    	if r0 == -1 && er != nil {
    		err = er
    	}
    	return
    }
    
    func ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) {
    	r0, er := C.ioctl(C.int(fd), C.ulong(req), C.uintptr_t(uintptr(arg)))
    	if r0 == -1 && er != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 635 bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValueFactory.kt

            is Int -> KaConstantValue.KaIntConstantValue(value, expression)
            is UInt -> KaConstantValue.KaUnsignedIntConstantValue(value, expression)
            is Long -> KaConstantValue.KaLongConstantValue(value, expression)
            is ULong -> KaConstantValue.KaUnsignedLongConstantValue(value, expression)
            is String -> KaConstantValue.KaStringConstantValue(value, expression)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/incompleteCode/noRightOperandUnsignedLong.txt

    expression: 4294967296u
    constant: 4294967296uL
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 72 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/callback_windows.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgotest
    
    /*
    #include <windows.h>
    USHORT backtrace(ULONG FramesToCapture, PVOID *BackTrace) {
    #ifdef _AMD64_
    	CONTEXT context;
    	RtlCaptureContext(&context);
    	ULONG64 ControlPc;
    	ControlPc = context.Rip;
    	int i;
    	for (i = 0; i < FramesToCapture; i++) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 16:01:37 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValue.kt

        }
    
        public class KaLongConstantValue(
            override val value: Long,
            override val sourcePsi: KtElement?
        ) : KaConstantValue(ConstantValueKind.Long) {
            override fun renderAsKotlinConstant(): String = value.toString()
        }
    
        public class KaUnsignedLongConstantValue(
            override val value: ULong,
            override val sourcePsi: KtElement?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. internal/lock/lock_windows_test.go

    		{`C:\`, `C:\`},
    		{`C:`, `C:`},
    		// The "long" substring is replaced by a looooooong
    		// string which triggers the rewriting. Except in the
    		// cases below where it doesn't.
    		{`C:\long\foo.txt`, `\\?\C:\long\foo.txt`},
    		{`C:/long/foo.txt`, `\\?\C:\long\foo.txt`},
    		{`C:\long\foo\\bar\.\baz\\`, `\\?\C:\long\foo\bar\baz`},
    		{`\\unc\path`, `\\unc\path`},
    		{`long.txt`, `long.txt`},
    		{`C:long.txt`, `C:long.txt`},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. internal/config/config_test.go

    		},
    		// Keys and input order of k=v is same.
    		{
    			input: `connection_string="host=localhost port=2832" comment="really long comment"`,
    			keys:  []string{"connection_string", "comment"},
    			expectedFields: map[string]struct{}{
    				`connection_string="host=localhost port=2832"`: {},
    				`comment="really long comment"`:                {},
    			},
    		},
    		// Keys with spaces in between
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 18 22:55:17 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. src/syscall/types_freebsd.go

    	u_char  ifi_spare_char2;
    	u_char  ifi_datalen;
    	u_long  ifi_mtu;
    	u_long  ifi_metric;
    	u_long  ifi_baudrate;
    	u_long  ifi_ipackets;
    	u_long  ifi_ierrors;
    	u_long  ifi_opackets;
    	u_long  ifi_oerrors;
    	u_long  ifi_collisions;
    	u_long  ifi_ibytes;
    	u_long  ifi_obytes;
    	u_long  ifi_imcasts;
    	u_long  ifi_omcasts;
    	u_long  ifi_iqdrops;
    	u_long  ifi_noproto;
    	u_long  ifi_hwassist;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
Back to top