Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 85 for 0x1234 (0.32 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    // match marker with that change ID, as returned by [Marker].
    // The markers are elided when displaying the lines to the user.
    //
    // A match marker has the form “[bisect-match 0x1234]” where
    // 0x1234 is the change ID in hexadecimal.
    // An alternate form is “[bisect-match 010101]”, giving the change ID in binary.
    //
    // When [Matcher.Visible] returns false, the match reports are only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. src/text/scanner/scanner_test.go

    		{Float, "0b1P-1", "0b1P-1", "'P' exponent requires hexadecimal mantissa"},
    
    		// octals
    		{Int, "0o0", "0o0", ""},
    		{Int, "0o1234", "0o1234", ""},
    		{Int, "0O1234", "0O1234", ""},
    
    		{Int, "0o", "0o", "octal literal has no digits"},
    		{Int, "0o8123", "0o8123", "invalid digit '8' in octal literal"},
    		{Int, "0o1293", "0o1293", "invalid digit '9' in octal literal"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    // or if x>>28 != 0xF and value>>28 == 0.
    // If x matches the format, then the rest of the fields describe how to interpret x.
    // The opBits describe bits that should be extracted from x and added to the opcode.
    // For example opBits = 0x1234 means that the value
    //
    //	(2 bits at offset 1) followed by (4 bits at offset 3)
    //
    // should be added to op.
    // Finally the args describe how to decode the instruction arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. src/internal/bisect/bisect.go

    // match marker with that change ID, as returned by [Marker].
    // The markers are elided when displaying the lines to the user.
    //
    // A match marker has the form “[bisect-match 0x1234]” where
    // 0x1234 is the change ID in hexadecimal.
    // An alternate form is “[bisect-match 010101]”, giving the change ID in binary.
    //
    // When [Matcher.Visible] returns false, the match reports are only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. src/runtime/sys_netbsd_386.s

    	MOVL	0(BX), BX
    
    	// more paranoia; check that stack splitting code works
    	PUSHAL
    	CALL	runtime·emptyfunc(SB)
    	POPAL
    
    	// Call fn
    	CALL	SI
    
    	// fn should never return
    	MOVL	$0x1234, 0x1005
    	RET
    
    TEXT ·netbsdMstart(SB),NOSPLIT|TOPFRAME,$0
    	CALL	·netbsdMstart0(SB)
    	RET // not reached
    
    TEXT runtime·sigaltstack(SB),NOSPLIT,$-8
    	MOVL	$SYS___sigaltstack14, AX
    	MOVL	new+0(FP), BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. src/go/scanner/scanner_test.go

    		{token.IMAG, "0b10i", "0b10i", ""},
    		{token.IMAG, "0b10.0i", "0b10.0i", "invalid radix point in binary literal"},
    
    		// octals
    		{token.INT, "0o0", "0o0", ""},
    		{token.INT, "0o1234", "0o1234", ""},
    		{token.INT, "0O1234", "0O1234", ""},
    
    		{token.INT, "0o", "0o", "octal literal has no digits"},
    		{token.INT, "0o8123", "0o8123", "invalid digit '8' in octal literal"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/Shorts.java

       * Returns a big-endian representation of {@code value} in a 2-element byte array; equivalent to
       * {@code ByteBuffer.allocate(2).putShort(value).array()}. For example, the input value {@code
       * (short) 0x1234} would yield the byte array {@code {0x12, 0x34}}.
       *
       * <p>If you need to convert and concatenate several values (possibly even of different types),
       * use a shared {@link java.nio.ByteBuffer} instance, or use {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Shorts.java

       * Returns a big-endian representation of {@code value} in a 2-element byte array; equivalent to
       * {@code ByteBuffer.allocate(2).putShort(value).array()}. For example, the input value {@code
       * (short) 0x1234} would yield the byte array {@code {0x12, 0x34}}.
       *
       * <p>If you need to convert and concatenate several values (possibly even of different types),
       * use a shared {@link java.nio.ByteBuffer} instance, or use {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_386.s

    	MOVL	0(BX), BX
    
    	// more paranoia; check that stack splitting code works
    	PUSHAL
    	CALL	runtime·emptyfunc(SB)
    	POPAL
    
    nog:
    	CALL	SI	// fn()
    	CALL	exit1<>(SB)
    	MOVL	$0x1234, 0x1005
    
    TEXT runtime·sigaltstack(SB),NOSPLIT,$-8
    	MOVL	$SYS_sigaltstack, AX
    	MOVL	new+0(FP), BX
    	MOVL	old+4(FP), CX
    	INVOKE_SYSCALL
    	CMPL	AX, $0xfffff001
    	JLS	2(PC)
    	INT	$3
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. src/syscall/zerrors_openbsd_arm64.go

    	ETHERTYPE_CABLETRON               = 0x7034
    	ETHERTYPE_CHAOS                   = 0x804
    	ETHERTYPE_COMDESIGN               = 0x806c
    	ETHERTYPE_COMPUGRAPHIC            = 0x806d
    	ETHERTYPE_COUNTERPOINT            = 0x8062
    	ETHERTYPE_CRONUS                  = 0x8004
    	ETHERTYPE_CRONUSVLN               = 0x8003
    	ETHERTYPE_DCA                     = 0x1234
    	ETHERTYPE_DDE                     = 0x807b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 66.4K bytes
    - Viewed (0)
Back to top