Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for JG (0.09 sec)

  1. src/cmd/link/internal/s390x/asm.go

    // moduledata linked list at initialization time. This is only done if the runtime
    // is in a different module.
    //
    //	<go.link.addmoduledata>:
    //		larl  %r2, <local.moduledata>
    //		jg    <runtime.addmoduledata@plt>
    //		undef
    //
    // The job of appending the moduledata is delegated to runtime.addmoduledata.
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. internal/config/identity/openid/jwks_test.go

    VylRSUHI5YTMdnWwvDIt/Y1sjNonmSy9PrioEjcIiI1U8nicveafMwIq5VLn+gEY2lg6KDJAzgAvA88CXqwfHHvtmYBovN7goolp8TY/kddMTf6TpNzN3lCTM2MK4Ye5xLLVGdp4bqWCOJ/qjwDxpTRSydYIkLUDwqNjv+sYfOElJpYAB4rTL/aw3ChJ1iaA4MtXEt6OjbUtbOa21lShfLzvNRbYK3+ukbrhmRl9lemJEeUls51vPuIe+jg+Ssp43aw7PQjxt4/MpfNMS2BfZ5F8GVSVG7qNb352cLLeJg5rc398Z"],"issuer":"https://login.microsoftonline.com/906aefe9-76a7-4f65-b82d-5ec20775d5aa/v2.0"},{"kty":"RSA","use":"sig","kid":"M6pX7RHoraLsprfJeRCjSxuURhc","x5t":"M6pX7RHoraLsprfJeRCjSxuURhc","n":"xH...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    				return intelReg[a]
    			}
    		}
    	}
    	return strings.ToLower(arg.String())
    }
    
    var intelOp = map[Op]string{
    	JAE:       "jnb",
    	JA:        "jnbe",
    	JGE:       "jnl",
    	JNE:       "jnz",
    	JG:        "jnle",
    	JE:        "jz",
    	SETAE:     "setnb",
    	SETA:      "setnbe",
    	SETGE:     "setnl",
    	SETNE:     "setnz",
    	SETG:      "setnle",
    	SETE:      "setz",
    	CMOVAE:    "cmovnb",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv12-ClientCert-ECDSA-RSA

    000002d0  f6 14 03 03 00 01 01 16  03 03 00 28 00 00 00 00  |...........(....|
    000002e0  00 00 00 00 80 da 31 59  19 74 39 ff a4 8c 30 1b  |......1Y.t9...0.|
    000002f0  25 fd 6b 25 57 ef 26 57  bd a1 df 90 4e d6 6a 47  |%.k%W.&W....N.jG|
    00000300  96 08 54 92                                       |..T.|
    >>> Flow 4 (server to client)
    00000000  14 03 03 00 01 01 16 03  03 00 28 0e 1f ce 8a 46  |..........(....F|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. 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) */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    	xArgXmmM64:     64 / 8,
    }
    
    // isCondJmp records the conditional jumps.
    var isCondJmp = [maxOp + 1]bool{
    	JA:  true,
    	JAE: true,
    	JB:  true,
    	JBE: true,
    	JE:  true,
    	JG:  true,
    	JGE: true,
    	JL:  true,
    	JLE: true,
    	JNE: true,
    	JNO: true,
    	JNP: true,
    	JNS: true,
    	JO:  true,
    	JP:  true,
    	JS:  true,
    }
    
    // isLoop records the loop operators.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top