Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for qsub (0.1 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    
    	// Adjust opcode [sic].
    	switch inst.Op {
    	case FDIV, FDIVR, FSUB, FSUBR, FDIVP, FDIVRP, FSUBP, FSUBRP:
    		// DC E0, DC F0: libopcodes swaps FSUBR/FSUB and FDIVR/FDIV, at least
    		// if you believe the Intel manual is correct (the encoding is irregular as given;
    		// libopcodes uses the more regular expected encoding).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  2. src/net/mail/message.go

    			if !isVchar(r) && !isWSP(r) {
    				return "", fmt.Errorf("mail: bad character in quoted-string: %q", r)
    			}
    
    			qsb = append(qsb, r)
    			escaped = false
    
    		case isQtext(r) || isWSP(r):
    			// qtext (printable US-ASCII excluding " and \), or
    			// FWS (almost; we're ignoring CRLF)
    			qsb = append(qsb, r)
    
    		case r == '"':
    			break Loop
    
    		case r == '\\':
    			escaped = true
    
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. src/runtime/arena_test.go

    		}
    	}
    
    	// Clone should make a copy of bSub, since bSub is just part of b and so is in the arena.
    	bSub := b[1:3]
    	bSubCopy := UserArenaClone(bSub)
    	if unsafe.Pointer(&bSub[0]) == unsafe.Pointer(&bSubCopy[0]) {
    		t.Errorf("Clone did not make a copy: %#v -> %#v", bSub, bSubCopy)
    	}
    	if len(bSub) != len(bSubCopy) {
    		t.Errorf("Clone made an incorrect copy (bad length): %d -> %d", len(bSub), len(bSubCopy))
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/obj7.go

    			// maintain FP for DUFFCOPY
    			q3 := obj.Appendp(q2, c.newprog)
    			q3.Pos = p.Pos
    			q3.As = ASUB
    			q3.From.Type = obj.TYPE_CONST
    			q3.From.Offset = 24
    			q3.Reg = REGSP
    			q3.To.Type = obj.TYPE_REG
    			q3.To.Reg = REGFP
    
    			q5 := obj.Appendp(q4, c.newprog)
    			q5.Pos = p.Pos
    			q5.As = ASUB
    			q5.From.Type = obj.TYPE_CONST
    			q5.From.Offset = 8
    			q5.Reg = REGSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/fmt.go

    	OREAL:             "real",
    	ORECV:             "<-",
    	ORECOVER:          "recover",
    	ORETURN:           "return",
    	ORSH:              ">>",
    	OSELECT:           "select",
    	OSEND:             "<-",
    	OSUB:              "-",
    	OSWITCH:           "switch",
    	OUNSAFEADD:        "unsafe.Add",
    	OUNSAFESLICE:      "unsafe.Slice",
    	OUNSAFESLICEDATA:  "unsafe.SliceData",
    	OUNSAFESTRING:     "unsafe.String",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. test/codegen/comparisons.go

    	if a+5 <= 0 {
    		return 1
    	}
    
    	// arm64:`CMN`,-`ADD`,`(BMI|BPL)`
    	if a+13 >= 0 {
    		return 2
    	}
    
    	// arm64:`CMP|CMN`,-`(ADD|SUB)`,`(BMI|BPL)`
    	if a-7 < 0 {
    		return 3
    	}
    
    	// arm64:`SUB`,`TBZ`
    	if a-11 >= 0 {
    		return 4
    	}
    
    	// arm64:`SUB`,`CMP`,`BGT`
    	if a-19 > 0 {
    		return 4
    	}
    
    	// arm64:`CMNW`,-`ADDW`,`(BMI|BPL)`
    	// arm:`CMN`,-`ADD`,`(BMI|BPL)`
    	if e+3 < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/walk.go

    			// to be more precise here.
    			return len(n.Y.Init()) != 0
    
    		// When using soft-float, these ops might be rewritten to function calls
    		// so we ensure they are evaluated first.
    		case ir.OADD, ir.OSUB, ir.OMUL, ir.ONEG:
    			return ssagen.Arch.SoftFloat && isSoftFloat(n.Type())
    		case ir.OLT, ir.OEQ, ir.ONE, ir.OLE, ir.OGE, ir.OGT:
    			n := n.(*ir.BinaryExpr)
    			return ssagen.Arch.SoftFloat && isSoftFloat(n.X.Type())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/cpu.go

    	ASLTI
    	ASLTIU
    	AANDI
    	AORI
    	AXORI
    	ASLLI
    	ASRLI
    	ASRAI
    	ALUI
    	AAUIPC
    	AADD
    	ASLT
    	ASLTU
    	AAND
    	AOR
    	AXOR
    	ASLL
    	ASRL
    	ASUB
    	ASRA
    
    	// 2.5: Control Transfer Instructions
    	AJAL
    	AJALR
    	ABEQ
    	ABNE
    	ABLT
    	ABLTU
    	ABGE
    	ABGEU
    
    	// 2.6: Load and Store Instructions
    	ALW
    	ALWU
    	ALH
    	ALHU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    }
    
    var fpInst []goFPInfo = []goFPInfo{
    	{VADD_EQ_F32, []int{2, 1, 0}, "VADD", "ADDF"},
    	{VADD_EQ_F64, []int{2, 1, 0}, "VADD", "ADDD"},
    	{VSUB_EQ_F32, []int{2, 1, 0}, "VSUB", "SUBF"},
    	{VSUB_EQ_F64, []int{2, 1, 0}, "VSUB", "SUBD"},
    	{VMUL_EQ_F32, []int{2, 1, 0}, "VMUL", "MULF"},
    	{VMUL_EQ_F64, []int{2, 1, 0}, "VMUL", "MULD"},
    	{VNMUL_EQ_F32, []int{2, 1, 0}, "VNMUL", "NMULF"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/typecheck.go

    			return n
    		}
    		switch n.AsOp {
    		case ir.OLSH, ir.ORSH:
    			n.X, n.Y, _ = tcShift(n, n.X, n.Y)
    		case ir.OADD, ir.OAND, ir.OANDNOT, ir.ODIV, ir.OMOD, ir.OMUL, ir.OOR, ir.OSUB, ir.OXOR:
    			n.X, n.Y, _ = tcArith(n, n.AsOp, n.X, n.Y)
    		default:
    			base.Fatalf("invalid assign op: %v", n.AsOp)
    		}
    		return n
    
    	// logical operators
    	case ir.OANDAND, ir.OOROR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top