Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,104 for ulong (0.18 sec)

  1. src/main/java/jcifs/ntlmssp/NtlmMessage.java

            return buffer;
        }
    
    
        static void writeULong ( byte[] dest, int offset, int ulong ) {
            dest[ offset ] = (byte) ( ulong & 0xff );
            dest[ offset + 1 ] = (byte) ( ulong >> 8 & 0xff );
            dest[ offset + 2 ] = (byte) ( ulong >> 16 & 0xff );
            dest[ offset + 3 ] = (byte) ( ulong >> 24 & 0xff );
        }
    
    
        static void writeUShort ( byte[] dest, int offset, int ushort ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/NtlmMessage.java

            return buffer;
        }
    
        static void writeULong(byte[] dest, int offset, int ulong) {
            dest[offset] = (byte) (ulong & 0xff);
            dest[offset + 1] = (byte) (ulong >> 8 & 0xff);
            dest[offset + 2] = (byte) (ulong >> 16 & 0xff);
            dest[offset + 3] = (byte) (ulong >> 24 & 0xff);
        }
    
        static void writeUShort(byte[] dest, int offset, int ushort) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/main/java/jcifs/dcerpc/rpc.idl

    	 * 
    	 * typedef struct _SID {
    	 *    UCHAR Revision;
    	 *    UCHAR SubAuthorityCount;
    	 *    SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
    	 *    [size_is(SubAuthorityCount)] ULONG SubAuthority[*];
    	 * } SID, *PSID;
    	 */
    
    	typedef struct {
    		uint8_t revision;
    		uint8_t sub_authority_count;
    		uint8_t identifier_authority[6];
    		[size_is(sub_authority_count)] uint32_t sub_authority[*];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/rpc.idl

    	 * 
    	 * typedef struct _SID {
    	 *    UCHAR Revision;
    	 *    UCHAR SubAuthorityCount;
    	 *    SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
    	 *    [size_is(SubAuthorityCount)] ULONG SubAuthority[*];
    	 * } SID, *PSID;
    	 */
    
    	typedef struct {
    		uint8_t revision;
    		uint8_t sub_authority_count;
    		uint8_t identifier_authority[6];
    		[size_is(sub_authority_count)] uint32_t sub_authority[*];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                    val long = value as Long
                    if (Int.MIN_VALUE < long && long < Int.MAX_VALUE) KaConstantValue.KaIntConstantValue(long.toInt(), psi)
                    else KaConstantValue.KaLongConstantValue(long, psi)
                }
    
                ConstantValueKind.UnsignedIntegerLiteral -> {
                    val long = value as ULong
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top