Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 34817 (0.04 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)
Back to top