Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for _unordered (0.16 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Integer comparisons cannot generate the unordered condition.
    (BRC {c} x:((CMP|CMPW|CMPU|CMPWU)    _ _) yes no) && c&s390x.Unordered != 0 => (BRC {c&^s390x.Unordered} x yes no)
    (BRC {c} x:((CMP|CMPW|CMPU|CMPWU)const _) yes no) && c&s390x.Unordered != 0 => (BRC {c&^s390x.Unordered} x yes no)
    
    // Compare-and-branch.
    // Note: bit 3 (unordered) must not be set so we mask out s390x.Unordered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "NotLessEqualF", argLength: 1, reg: readflags},    // bool, true flags encode floating-point x>y || x is unordered with y, false otherwise.
    		{name: "NotGreaterThanF", argLength: 1, reg: readflags},  // bool, true flags encode floating-point x<=y || x is unordered with y, false otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. src/html/template/exec_test.go

    	// Errors
    	{"eq `xy` 1", "", false},                // Different types.
    	{"eq 2 2.0", "", false},                 // Different types.
    	{"lt true true", "", false},             // Unordered types.
    	{"lt 1+0i 1+0i", "", false},             // Unordered types.
    	{"eq .Ptr 1", "", false},                // Incompatible types.
    	{"eq .Ptr .NegOne", "", false},          // Incompatible types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    		jmp := blockJump[b.Kind]
    		switch next {
    		case b.Succs[0].Block():
    			s.Br(jmp.invasm, b.Succs[1].Block())
    			if jmp.invasmun {
    				// TODO: The second branch is probably predict-not-taken since it is for FP unordered
    				s.Br(ppc64.ABVS, b.Succs[1].Block())
    			}
    		case b.Succs[1].Block():
    			s.Br(jmp.asm, b.Succs[0].Block())
    			if jmp.asmeq {
    				s.Br(ppc64.ABEQ, b.Succs[0].Block())
    			}
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/text/template/exec_test.go

    	// Errors
    	{"eq `xy` 1", "", false},                // Different types.
    	{"eq 2 2.0", "", false},                 // Different types.
    	{"lt true true", "", false},             // Unordered types.
    	{"lt 1+0i 1+0i", "", false},             // Unordered types.
    	{"eq .Ptr 1", "", false},                // Incompatible types.
    	{"eq .Ptr .NegOne", "", false},          // Incompatible types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. src/testing/testing.go

    //	    // Output:
    //	    // hello, and
    //	    // goodbye
    //	}
    //
    // The comment prefix "Unordered output:" is like "Output:", but matches any
    // line order:
    //
    //	func ExamplePerm() {
    //	    for _, value := range Perm(5) {
    //	        fmt.Println(value)
    //	    }
    //	    // Unordered output: 4
    //	    // 2
    //	    // 1
    //	    // 3
    //	    // 0
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    *testing.T to report success or failure, prints output to os.Stdout.
    If the last comment in the function starts with "Output:" then the output
    is compared exactly against the comment (see examples below). If the last
    comment begins with "Unordered output:" then the output is compared to the
    comment, however the order of the lines is ignored. An example with no such
    comment is compiled but not executed. An example with no text after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    	// | condition code value |  mask bit  |
    	// +----------------------+------------+
    	// | 0 (equal)            | 0b1000 (8) |
    	// | 1 (less than)        | 0b0100 (4) |
    	// | 2 (greater than)     | 0b0010 (2) |
    	// | 3 (unordered)        | 0b0001 (1) |
    	//
    	// Note: that compare-and-branch instructions must not have bit 3 (0b0001) set.
    	var S390Xblocks = []blockData{
    		// branch on condition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    	return v.Args[0]
    }
    
    // arm64Negate finds the complement to an ARM64 condition code,
    // for example !Equal -> NotEqual or !LessThan -> GreaterEqual
    //
    // For floating point, it's more subtle because NaN is unordered. We do
    // !LessThanF -> NotLessThanF, the latter takes care of NaNs.
    func arm64Negate(op Op) Op {
    	switch op {
    	case OpARM64LessThan:
    		return OpARM64GreaterEqual
    	case OpARM64LessThanU:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    	margin-bottom: 1.25em;
    	list-style-position: outside;
    	font-family: inherit;
    }
    
    ul,
    ol {
    	margin-left: 1.5em;
    }
    
    ul.no-bullet,
    ol.no-bullet {
    	margin-left: 1.5em;
    }
    
    /* Unordered Lists */
    ul li ul,
    ul li ol {
    	margin-left: 1.25em;
    	margin-bottom: 0;
    	font-size: 1em;
    	/* Override nested font-size change */
    }
    
    ul.square li ul,
    ul.circle li ul,
    ul.disc li ul {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top