Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for jnle (0.07 sec)

  1. src/crypto/aes/gcm_amd64.s

    		PSHUFD $78, T0, T0
    		PXOR T0, B2
    		PXOR T1, B2
    
    		MOVOU B2, (16*12)(dst)
    		PSHUFD $78, B2, B3
    		PXOR B2, B3
    		MOVOU B3, (16*13)(dst)
    
    		DECQ AX
    		LEAQ (-16*2)(dst), dst
    	JNE initLoop
    
    	RET
    #undef NR
    #undef KS
    #undef dst
    
    // func gcmAesData(productTable *[256]byte, data []byte, T *[16]byte)
    TEXT ·gcmAesData(SB),NOSPLIT,$0
    #define pTbl DI
    #define aut SI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_386.s

    	MOVL	m_vdsoSP(SI), DX
    	MOVL	CX, 0(SP)
    	MOVL	DX, 4(SP)
    
    	LEAL	sec+0(FP), DX
    	MOVL	-4(DX), CX
    	MOVL	CX, m_vdsoPC(SI)
    	MOVL	DX, m_vdsoSP(SI)
    
    	CMPL	AX, m_curg(SI)	// Only switch if on curg.
    	JNE	noswitch
    
    	MOVL	m_g0(SI), DX
    	MOVL	(g_sched+gobuf_sp)(DX), SP	// Set SP to g0 stack
    
    noswitch:
    	SUBL	$16, SP		// Space for results
    	ANDL	$~15, SP	// Align for C code
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/build-goboring.sh

    cat >umod-amd64.s <<'EOF'
    # tu_int __umodti3(tu_int x, tu_int y)
    # x is rsi:rdi, y is rcx:rdx, return result is rdx:rax.
    .globl __umodti3
    __umodti3:
    	# specialized to u128 % u64, so verify that
    	test %rcx,%rcx
    	jne 1f
    
    	# save divisor
    	movq %rdx, %r8
    
    	# reduce top 64 bits mod divisor
    	movq %rsi, %rax
    	xorl %edx, %edx
    	divq %r8
    
    	# reduce full 128-bit mod divisor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/math/sinh_s390x.s

    	MOVD    sinhxinit<>+0(SB), R1
    	FMOVD   F0, F4
    	MOVD    R1, R3
    	BLTU    L19
    	FMOVD   F0, F2
    L2:
    	WORD    $0xED205010     //cdb %f2,.L22-.L21(%r5)
    	BYTE    $0x00
    	BYTE    $0x19
    	BGE     L15     //jnl   .L15
    	BVS     L15
    	WFCEDBS V2, V2, V0
    	BEQ     L20
    L12:
    	FMOVD   F4, F0
    	FMOVD   F0, ret+8(FP)
    	RET
    
    L15:
    	WFCEDBS V2, V2, V0
    	BVS     L12
    	MOVD    $sinhxlim1<>+0(SB), R2
    	FMOVD   0(R2), F0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 6K bytes
    - Viewed (0)
  5. src/math/big/arith_386.s

    	// n > 0
    	MOVL z+0(FP), DI
    	MOVL x+12(FP), SI
    	MOVL s+24(FP), CX
    	MOVL (SI)(BX*4), AX	// w1 = x[n-1]
    	MOVL $0, DX
    	SHLL CX, AX, DX		// w1>>ŝ
    	MOVL DX, c+28(FP)
    
    	CMPL BX, $0
    	JLE X8a			// i <= 0
    
    	// i > 0
    L8:	MOVL AX, DX		// w = w1
    	MOVL -4(SI)(BX*4), AX	// w1 = x[i-1]
    	SHLL CX, AX, DX		// w<<s | w1>>ŝ
    	MOVL DX, (DI)(BX*4)	// z[i] = w<<s | w1>>ŝ
    	SUBL $1, BX		// i--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	JCXZ:            "JCXZ",
    	JE:              "JE",
    	JECXZ:           "JECXZ",
    	JG:              "JG",
    	JGE:             "JGE",
    	JL:              "JL",
    	JLE:             "JLE",
    	JMP:             "JMP",
    	JNE:             "JNE",
    	JNO:             "JNO",
    	JNP:             "JNP",
    	JNS:             "JNS",
    	JO:              "JO",
    	JP:              "JP",
    	JRCXZ:           "JRCXZ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512block_amd64.s

    	VMOVDQU Y6, Y4
    	VMOVDQU Y7, Y5
    
    	SUBQ $1, frame_SRND(SP)
    	JNE  loop2
    
    	addm(8*0(SI),AX)
    	addm(8*1(SI),BX)
    	addm(8*2(SI),CX)
    	addm(8*3(SI),R8)
    	addm(8*4(SI),DX)
    	addm(8*5(SI),R9)
    	addm(8*6(SI),R10)
    	addm(8*7(SI),R11)
    
    	MOVQ frame_INP(SP), DI
    	ADDQ $128, DI
    	CMPQ DI, frame_INPEND(SP)
    	JNE  loop0
    
    done_hash:
    	VZEROUPPER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm_amd64.s

    	CMOVQCS y_ptr, acc2
    	CMOVQCS t1, acc3
    
    	MOVQ acc0, (8*0)(res_ptr)
    	MOVQ acc1, (8*1)(res_ptr)
    	MOVQ acc2, (8*2)(res_ptr)
    	MOVQ acc3, (8*3)(res_ptr)
    	MOVQ res_ptr, x_ptr
    	DECQ BX
    	JNE  sqrLoop
    
    	RET
    /* ---------------------------------------*/
    // func p256Mul(res, in1, in2 *p256Element)
    TEXT ·p256Mul(SB),NOSPLIT,$0
    	MOVQ res+0(FP), res_ptr
    	MOVQ in1+8(FP), x_ptr
    	MOVQ in2+16(FP), y_ptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  9. src/runtime/race_amd64.s

    	// First, code below assumes that we are on curg, while raceGetProcCmd
    	// can be executed on g0. Second, it is called frequently, so will
    	// benefit from this fast path.
    	CMPQ	RARG0, $0
    	JNE	rest
    	get_tls(RARG0)
    	MOVQ	g(RARG0), RARG0
    	MOVQ	g_m(RARG0), RARG0
    	MOVQ	m_p(RARG0), RARG0
    	MOVQ	p_raceprocctx(RARG0), RARG0
    	MOVQ	RARG0, (RARG1)
    	RET
    
    rest:
    	// Transition from C ABI to Go ABI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. src/html/entity.go

    		"njcy;":                            '\U0000045A',
    		"nlArr;":                           '\U000021CD',
    		"nlarr;":                           '\U0000219A',
    		"nldr;":                            '\U00002025',
    		"nle;":                             '\U00002270',
    		"nleftarrow;":                      '\U0000219A',
    		"nleftrightarrow;":                 '\U000021AE',
    		"nleq;":                            '\U00002270',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
Back to top