Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for JGE (0.04 sec)

  1. src/cmd/asm/internal/arch/arch.go

    	instructions["JCS"] = x86.AJCS  /* carry set (CF = 1) */
    	instructions["JE"] = x86.AJEQ   /* alternate */
    	instructions["JEQ"] = x86.AJEQ  /* equal (ZF = 1) */
    	instructions["JG"] = x86.AJGT   /* alternate */
    	instructions["JGE"] = x86.AJGE  /* greater than or equal (signed) (SF = OF) */
    	instructions["JGT"] = x86.AJGT  /* greater than (signed) (ZF = 0 && SF = OF) */
    	instructions["JHI"] = x86.AJHI  /* higher (unsigned) (CF = 0 && ZF = 0) */
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Nov 07 02:20:14 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	//TODO: JECXZ .+$0x11                   // e311
    	//TODO: JG .+$0x11223344                // 0f8f44332211 or 480f8f44332211
    	//TODO: JG .+$0x11                      // 7f11
    	//TODO: JGE .+$0x11223344               // 480f8d44332211 or 0f8d44332211
    	//TODO: JGE .+$0x11                     // 7d11
    	//TODO: JL .+$0x11223344                // 0f8c44332211 or 480f8c44332211
    	//TODO: JL .+$0x11                      // 7c11
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (1)
  3. lib/fips140/v1.0.0.zip

    TESTQ $7, DX // AND $7 & len, if not zero jump to loop_1b. JNE loop_1b SUBQ $8, DX // XOR 8bytes backwards. MOVQ (SI)(DX*1), DI MOVQ (CX)(DX*1), AX XORQ AX, DI MOVQ DI, (BX)(DX*1) CMPQ DX, $16 // if len is greater or equal 16 here, it must be aligned. JGE aligned ret: RET golang.org/fips140@v1.0.0/fips140/v1.0.0/subtle/xor_arm64.go // Copyright 2020 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build !purego...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top