Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 34817 (0.03 sec)

  1. src/cmd/compile/internal/walk/compare.go

    		cs = n.Y
    		ncs = n.X
    	}
    	if cs != nil {
    		cmp := n.Op()
    		// Our comparison below assumes that the non-constant string
    		// is on the left hand side, so rewrite "" cmp x to x cmp "".
    		// See issue 24817.
    		if ir.IsConst(n.X, constant.String) {
    			cmp = brrev(cmp)
    		}
    
    		// maxRewriteLen was chosen empirically.
    		// It is the value that minimizes cmd/go file size
    		// across most architectures.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_amd64.s

    #define tPtr R8
    #define ptxLen R9
    #define aluCTR R10
    #define aluTMP R11
    #define aluK R12
    #define NR R13
    
    #define increment(i) ADDL $1, aluCTR; MOVL aluCTR, aluTMP; XORL aluK, aluTMP; BSWAPL aluTMP; MOVL aluTMP, (3*4 + 8*16 + i*16)(SP)
    #define aesRnd(k) AESENC k, B0; AESENC k, B1; AESENC k, B2; AESENC k, B3; AESENC k, B4; AESENC k, B5; AESENC k, B6; AESENC k, B7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	CMN R0, R3                                 // 7f0000ab
    	CMPW R6.UXTB, R23                          // ff02266b
    	CMP R25.SXTH<<2, R26                       // 5fab39eb
    	CMP $3817, R29                             // bfa73bf1
    	CMP R7>>23, R3                             // 7f5c47eb
    	CNEGW PL, R9, R14                          // 2e45895a
    	CSNEGW HS, R5, R9, R14                     // ae24895a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/MediaType.java

       * {@code /etc/mime.types}, e.g. in <a href=
       * "http://anonscm.debian.org/gitweb/?p=collab-maint/mime-support.git;a=blob;f=mime.types;hb=HEAD"
       * >Debian 3.48-1</a>.
       *
       * @since 15.0
       */
      public static final MediaType CRW = createConstant(IMAGE_TYPE, "x-canon-crw");
    
      public static final MediaType GIF = createConstant(IMAGE_TYPE, "gif");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  5. src/fmt/scan_test.go

    	} else if err != io.ErrUnexpectedEOF {
    		t.Errorf("Sscanln: expected io.ErrUnexpectedEOF (ha!); got %s", err)
    	}
    }
    
    // TestLineByLineFscanf tests that Fscanf does not read past newline. Issue
    // 3481.
    func TestLineByLineFscanf(t *testing.T) {
    	r := struct{ io.Reader }{strings.NewReader("1\n2\n")}
    	var i, j int
    	n, err := Fscanf(r, "%v\n", &i)
    	if n != 1 || err != nil {
    		t.Fatalf("first read: %d %q", n, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. src/crypto/rsa/testdata/pss-vect.txt.bz2

    ---------- # RSASSA-PSS Signature Example 2.3 # ---------- # Message to be signed: 52 a1 d9 6c 8a c3 9e 41 e4 55 80 98 01 b9 27 a5 b4 45 c1 0d 90 2a 0d cd 38 50 d2 2a 66 d2 bb 07 03 e6 7d 58 67 11 45 95 aa bf 5a 7a eb 5a 8f 87 03 4b bb 30 e1 3c fd 48 17 a9 be 76 23 00 23 60 6d 02 86 a3 fa f8 a4 d2 2b 72 8e c5 18 07 9f 9e 64 52 6e 3a 0c c7 94 1a a3 38 c4 37 99 7c 68 0c ca c6 7c 66 bf a1 # Salt: fc a8 62 06 8b ce 22 46 72 4b 70 8a 05 19 da 17 e6 48 68 8c # Signature: 00 7f 00 30 01 8f 53 cd c7 1f 23...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 27.9K bytes
    - Viewed (0)
Back to top