Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 408 for 0_80 (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s

    //
    
    // Just jump to package syscall's implementation for all these functions.
    // The runtime may know about them.
    
    TEXT ·Syscall(SB),NOSPLIT,$0-56
    	JMP	syscall·Syscall(SB)
    
    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	JMP	syscall·Syscall6(SB)
    
    TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
    	JAL	runtime·entersyscall(SB)
    	MOVV	a1+8(FP), R4
    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    	MOVV	R0, R7
    	MOVV	R0, R8
    	MOVV	R0, R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/syscall/asm_linux_386.s

    #include "textflag.h"
    #include "funcdata.h"
    
    //
    // System calls for 386, Linux
    //
    
    // See ../runtime/sys_linux_386.s for the reason why we always use int 0x80
    // instead of the glibc-specific "CALL 0x10(GS)".
    #define INVOKE_SYSCALL	INT	$0x80
    
    // func rawVforkSyscall(trap, a1, a2, a3 uintptr) (r1, err uintptr)
    TEXT ·rawVforkSyscall(SB),NOSPLIT|NOFRAME,$0-24
    	MOVL	trap+0(FP), AX	// syscall entry
    	MOVL	a1+4(FP), BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    			return
    		} else if length > 0xffffff {
    			lenLen = 5
    			lenByte = 0x80 | 4
    		} else if length > 0xffff {
    			lenLen = 4
    			lenByte = 0x80 | 3
    		} else if length > 0xff {
    			lenLen = 3
    			lenByte = 0x80 | 2
    		} else if length > 0x7f {
    			lenLen = 2
    			lenByte = 0x80 | 1
    		} else {
    			lenLen = 1
    			lenByte = uint8(length)
    			length = 0
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	TIOCM_CAR                        = 0x40
    	TIOCM_CD                         = 0x40
    	TIOCM_CTS                        = 0x20
    	TIOCM_DSR                        = 0x100
    	TIOCM_RI                         = 0x80
    	TIOCM_RNG                        = 0x80
    	TIOCM_SR                         = 0x10
    	TIOCM_ST                         = 0x8
    	TIOCNOTTY                        = 0x5422
    	TIOCNXCL                         = 0x540d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. okhttp-logging-interceptor/src/test/java/okhttp3/logging/IsProbablyUtf8Test.kt

        assertThat(Buffer().writeUtf8("new\r\nlines").isProbablyUtf8()).isTrue()
        assertThat(Buffer().writeUtf8("white\t space").isProbablyUtf8()).isTrue()
        assertThat(Buffer().writeByte(0x80).isProbablyUtf8()).isTrue()
        assertThat(Buffer().writeByte(0x00).isProbablyUtf8()).isFalse()
        assertThat(Buffer().writeByte(0xc0).isProbablyUtf8()).isFalse()
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NodeStatusResponse.java

                n = Strings.fromOEMBytes(src, srcIndex, j - srcIndex + 1, this.config);
                hexCode = src[ srcIndex + 15 ] & 0xFF;
                groupName = ( ( src[ srcIndex + 16 ] & 0x80 ) == 0x80 ) ? true : false;
                ownerNodeType = ( src[ srcIndex + 16 ] & 0x60 ) >> 5;
                isBeingDeleted = ( ( src[ srcIndex + 16 ] & 0x10 ) == 0x10 ) ? true : false;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/hash/SipHashFunctionTest.java

        assertSip("SipHash", 0x8325093242a96f60L);
      }
    
      // Test for common pitfall regarding sign extension.
      // For example: (long) data[i++] | (long) data[i++] << 8 | ...
      // If data[i] == (byte) 0x80, the first cast will sign-extend it to 0xffffffffffffff80,
      // masking the remaining seven bytes.
      // To test this, we give an input where bit 7 is not cleared. For example:
      // (1) 00 01 02 03 04 05 06 07 80
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun May 05 18:02:35 UTC 2019
    - 6.6K bytes
    - Viewed (0)
  8. src/syscall/ztypes_solaris_amd64.go

    	S_IFCHR  = 0x2000
    	S_IFDIR  = 0x4000
    	S_IFBLK  = 0x6000
    	S_IFREG  = 0x8000
    	S_IFLNK  = 0xa000
    	S_IFSOCK = 0xc000
    	S_ISUID  = 0x800
    	S_ISGID  = 0x400
    	S_ISVTX  = 0x200
    	S_IRUSR  = 0x100
    	S_IWUSR  = 0x80
    	S_IXUSR  = 0x40
    	S_IRWXG  = 0x38
    	S_IRWXO  = 0x7
    )
    
    type Stat_t struct {
    	Dev       uint64
    	Ino       uint64
    	Mode      uint32
    	Nlink     uint32
    	Uid       uint32
    	Gid       uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go

    	TIOCM_CAR                        = 0x40
    	TIOCM_CD                         = 0x40
    	TIOCM_CTS                        = 0x20
    	TIOCM_DSR                        = 0x100
    	TIOCM_RI                         = 0x80
    	TIOCM_RNG                        = 0x80
    	TIOCM_SR                         = 0x10
    	TIOCM_ST                         = 0x8
    	TIOCNOTTY                        = 0x5422
    	TIOCNXCL                         = 0x540d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  10. src/mime/quotedprintable/reader.go

    					break
    				}
    				return n, err
    			}
    			r.line = r.line[2:] // 2 of the 3; other 1 is done below
    		case b == '\t' || b == '\r' || b == '\n':
    			break
    		case b >= 0x80:
    			// As an extension to RFC 2045, we accept
    			// values >= 0x80 without complaint. Issue 22597.
    			break
    		case b < ' ' || b > '~':
    			return n, fmt.Errorf("quotedprintable: invalid unescaped byte 0x%02x in body", b)
    		}
    		p[0] = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 27 17:00:08 UTC 2018
    - 3.6K bytes
    - Viewed (0)
Back to top