Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 356 for 0_80 (0.23 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/vendor/golang.org/x/net/http2/hpack/encode.go

    // representation, to dst and returns the extended buffer.
    func appendIndexed(dst []byte, i uint64) []byte {
    	first := len(dst)
    	dst = appendVarInt(dst, 7, i)
    	dst[first] |= 0x80
    	return dst
    }
    
    // appendNewName appends f, as encoded in one of "Literal Header field
    // - New Name" representation variants, to dst and returns the
    // extended buffer.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceName.java

                        escapeByte(0xC0 | (ch >> 6) & 0x1F, builder);
                        escapeByte(0x80 | ch & 0x3F, builder);
                    } else {
                        escapeByte(0xE0 | (ch >> 12) & 0x1F, builder);
                        escapeByte(0x80 | (ch >> 6) & 0x3F, builder);
                        escapeByte(0x80 | ch & 0x3F, builder);
                    }
                }
            }
            return builder.toString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.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
    - 33.9K bytes
    - Viewed (0)
Back to top