Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 153 for sP (0.02 sec)

  1. test/codegen/comparisons.go

    	// amd64:`CMPW\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    func CompareArray4(a, b [12]int8) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// amd64:`CMPL\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    func CompareArray5(a, b [15]byte) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. src/internal/runtime/syscall/asm_linux_mipsx.s

    //go:build linux && (mips || mipsle)
    
    #include "textflag.h"
    
    // func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    //
    // The 5th and 6th arg go at sp+16, sp+20.
    // Note that frame size of 20 means that 24 bytes gets reserved on stack.
    TEXT ·Syscall6(SB),NOSPLIT,$20-40
    	MOVW	num+0(FP), R2	// syscall entry
    	MOVW	a1+4(FP), R4
    	MOVW	a2+8(FP), R5
    	MOVW	a3+12(FP), R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 876 bytes
    - Viewed (0)
  3. src/runtime/asm_ppc64x.s

    	// Save current m->g0->sched.sp on stack and then set it to SP.
    	// Save current sp in m->g0->sched.sp in preparation for
    	// switch back to m->curg stack.
    	// NOTE: unwindm knows that the saved g->sched.sp is at 8(R1) aka savedsp-16(SP).
    	MOVD	m_g0(R8), R3
    	MOVD	(g_sched+gobuf_sp)(R3), R4
    	MOVD	R4, savedsp-24(SP)      // must match frame size
    	MOVD	R1, (g_sched+gobuf_sp)(R3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. src/net/http/header.go

    		// False positives ('^' => '~') are caught by EqualFold.
    		if b := v[sp]; b != token[0] && b|0x20 != token[0] {
    			continue
    		}
    		// Check that start pos is on a valid token boundary.
    		if sp > 0 && !isTokenBoundary(v[sp-1]) {
    			continue
    		}
    		// Check that end pos is on a valid token boundary.
    		if endPos := sp + len(token); endPos != len(v) && !isTokenBoundary(v[endPos]) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/crypto/sha1/sha1block_arm.s

    // 4(FP) is p.array (struct Slice)
    // 8(FP) is p.len
    //12(FP) is p.cap
    //
    // Stack frame
    #define p_end	end-4(SP)		// pointer to the end of data
    #define p_data	data-8(SP)	// current data pointer (unused?)
    #define w_buf	buf-(8+4*80)(SP)	//80 words temporary buffer w uint32[80]
    #define saved	abcde-(8+4*80+4*5)(SP)	// saved sha1 registers a,b,c,d,e - these must be last (unused?)
    // Total size +4 for saved LR is 352
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            defaultSettings.put("onelogin.saml2.sp.entityid", "http://localhost:8080/sso/metadata");
            defaultSettings.put("onelogin.saml2.sp.assertion_consumer_service.url", "http://localhost:8080/sso/");
            defaultSettings.put("onelogin.saml2.sp.assertion_consumer_service.binding", "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST");
            defaultSettings.put("onelogin.saml2.sp.single_logout_service.url", "http://localhost:8080/sso/logout");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. src/crypto/md5/md5block_s390x.s

    	ROUND4(R5,R2,R3,R4, 2,0xbd3af235,10);
    	ROUND4(R4,R5,R2,R3, 9,0x2ad7d2bb,15);
    	ROUND4(R3,R4,R5,R2, 0,0xeb86d391,21);
    
    	MOVWZ	tmp-16(SP), R1
    	ADD	R1, R2
    	MOVWZ	tmp-12(SP), R1
    	ADD	R1, R3
    	MOVWZ	tmp-8(SP), R1
    	ADD	R1, R4
    	MOVWZ	tmp-4(SP), R1
    	ADD	R1, R5
    
    	LA	64(R6), R6
    	CMPBLT	R6, R7, loop
    
    end:
    	MOVD	dig+0(FP), R1
    	STMY	R2, R5, 0(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/runtime/stkframe.go

    	switch funcname(f) {
    	case "reflect.makeFuncStub", "reflect.methodValueCall":
    		// These take a *reflect.methodValue as their
    		// context register and immediately save it to 0(SP).
    		// Get the methodValue from 0(SP).
    		arg0 := frame.sp + sys.MinFrameSize
    
    		minSP := frame.fp
    		if !usesLR {
    			// The CALL itself pushes a word.
    			// Undo that adjustment.
    			minSP -= goarch.PtrSize
    		}
    		if arg0 >= minSP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/os/user/cgo_lookup_unix.go

    	return sz > 0 && sz <= maxBufferSize
    }
    
    // Because we can't use cgo in tests:
    func structPasswdForNegativeTest() _C_struct_passwd {
    	sp := _C_struct_passwd{}
    	*_C_pw_uidp(&sp) = 1<<32 - 2
    	*_C_pw_gidp(&sp) = 1<<32 - 3
    	return sp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/crypto/sha256/sha256block_386.s

    // The values for e and a are stored in d and h, ready for rotation.
    #define SHA256ROUND(index, const, a, b, c, d, e, f, g, h) \
    	SHA256T1(const, e, f, g, h); \
    	MOVL	AX, 292(SP); \
    	SHA256T2(a, b, c); \
    	MOVL	292(SP), AX; \
    	ADDL	AX, BX; \
    	ADDL	AX, (d*4)(DI); \
    	MOVL	BX, (h*4)(DI)
    
    #define SHA256ROUND0(index, const, a, b, c, d, e, f, g, h) \
    	MSGSCHEDULE0(index); \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top