Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 317 for 4996 (0.09 sec)

  1. src/syscall/asm_linux_riscv64.s

    TEXT ·rawVforkSyscall(SB),NOSPLIT|NOFRAME,$0-48
    	MOV	a1+8(FP), A0
    	MOV	a2+16(FP), A1
    	MOV	a3+24(FP), A2
    	MOV	ZERO, A3
    	MOV	ZERO, A4
    	MOV	ZERO, A5
    	MOV	trap+0(FP), A7	// syscall entry
    	ECALL
    	MOV	$-4096, T0
    	BLTU	T0, A0, err
    	MOV	A0, r1+32(FP)	// r1
    	MOV	ZERO, err+40(FP)	// errno
    	RET
    err:
    	MOV	$-1, T0
    	MOV	T0, r1+32(FP)	// r1
    	SUB	A0, ZERO, A0
    	MOV	A0, err+40(FP)	// errno
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 861 bytes
    - Viewed (0)
  2. src/internal/runtime/syscall/asm_linux_loong64.s

    	MOVV	R4, R11  // syscall entry
    	MOVV	R5, R4
    	MOVV	R6, R5
    	MOVV	R7, R6
    	MOVV	R8, R7
    	MOVV	R9, R8
    	MOVV	R10, R9
    	SYSCALL
    	MOVV	R0, R5      // r2 is not used. Always set to 0.
    	MOVW	$-4096, R12
    	BGEU	R12, R4, ok
    	SUBVU	R4, R0, R6  // errno
    	MOVV	$-1, R4     // r1
    	RET
    ok:
    	// r1 already in R4
    	MOVV	R0, R6     // errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1013 bytes
    - Viewed (0)
  3. src/syscall/asm_linux_loong64.s

    TEXT ·rawVforkSyscall(SB),NOSPLIT,$0-48
    	MOVV	a1+8(FP), R4
    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    	MOVV	$0, R7
    	MOVV	$0, R8
    	MOVV	$0, R9
    	MOVV	trap+0(FP), R11	// syscall entry
    	SYSCALL
    	MOVW	$-4096, R12
    	BGEU	R12, R4, ok
    	MOVV	$-1, R12
    	MOVV	R12, r1+32(FP)	// r1
    	SUBVU	R4, R0, R4
    	MOVV	R4, err+40(FP)	// errno
    	RET
    ok:
    	MOVV	R4, r1+32(FP)	// r1
    	MOVV	R0, err+40(FP)	// errno
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 947 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/zerorange_test.go

    type S struct {
    	x [2]uint64
    	p *uint64
    	y [2]uint64
    	q uint64
    }
    
    type M struct {
    	x [8]uint64
    	p *uint64
    	y [8]uint64
    	q uint64
    }
    
    type L struct {
    	x [4096]uint64
    	p *uint64
    	y [4096]uint64
    	q uint64
    }
    
    //go:noinline
    func triggerZerorangeLarge(f, g, h uint64) (rv0 uint64) {
    	ll := L{p: &f}
    	da := f
    	rv0 = f + g + h
    	defer func(dl L, i uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/scoreadjusttyp_string.go

    	_ = x[passFuncToNestedIndCallAdj-256]
    	_ = x[passInlinableFuncToIndCallAdj-512]
    	_ = x[passInlinableFuncToNestedIndCallAdj-1024]
    	_ = x[returnFeedsConstToIfAdj-2048]
    	_ = x[returnFeedsFuncToIndCallAdj-4096]
    	_ = x[returnFeedsInlinableFuncToIndCallAdj-8192]
    	_ = x[returnFeedsConcreteToInterfaceCallAdj-16384]
    }
    
    var _scoreAdjustTyp_value = [...]uint64{
    	0x1,    /* panicPathAdj */
    	0x2,    /* initFuncAdj */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 21:13:01 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/internal/abi/stack.go

    	// SP-framesize nor stackGuard-StackSmall will underflow, and thus use a
    	// more efficient check. In order to ensure this, StackBig must be <= the
    	// size of the unmapped space at zero.
    	StackBig = 4096
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/NetShareEnum.java

            command = SMB_COM_TRANSACTION;
            subCommand = NET_SHARE_ENUM; // not really true be used by upper logic
            name = new String( "\\PIPE\\LANMAN" );
            maxParameterCount = 8;
    
    //        maxDataCount = 4096; why was this set?
            maxSetupCount = (byte)0x00;
            setupCount = 0;
            timeout = 5000;
        }
    
        int writeSetupWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/testing/internal/util/GradlewRunner.java

        
        private static void forwardAsync(final InputStream input, final OutputStream output) {
            new Thread(new Runnable() {
                @Override
                public void run() {
                    int bufferSize = 4096;
                    byte[] buffer = new byte[bufferSize];
    
                    int read = 0;
                    try {
                        read = input.read(buffer);
                        while(read != -1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferral.java

            path = filename;
            command = SMB_COM_TRANSACTION2;
            subCommand = TRANS2_GET_DFS_REFERRAL;
            totalDataCount = 0;
            maxParameterCount = 0;
            maxDataCount = 4096;
            maxSetupCount = (byte)0x00;
        }
    
        int writeSetupWireFormat( byte[] dst, int dstIndex ) {
            dst[dstIndex++] = subCommand;
            dst[dstIndex++] = (byte)0x00;
            return 2;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  10. okcurl/src/main/kotlin/okhttp3/curl/logging/OneLineLogFormat.kt

        val message = formatMessage(record)
    
        val time = Instant.ofEpochMilli(record.millis).atZone(offset)
    
        return if (record.thrown != null) {
          val sw = StringWriter(4096)
          val pw = PrintWriter(sw)
          record.thrown.printStackTrace(pw)
          String.format("%s\t%s%n%s%n", time.format(d), message, sw.toString())
        } else {
          String.format("%s\t%s%n", time.format(d), message)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top