Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 186 for qsub (0.03 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		return true
    	case DIVD, DIVDCC, DIVDU, DIVDUCC, DIVDE, DIVDECC, DIVDEU, DIVDEUCC, DIVDO, DIVDOCC, DIVDUO, DIVDUOCC:
    		return true
    	case MODUD, MODSD, MODUW, MODSW:
    		return true
    	case FADD, FADDS, FSUB, FSUBS, FMUL, FMULS, FDIV, FDIVS, FMADD, FMADDS, FMSUB, FMSUBS, FNMADD, FNMADDS, FNMSUB, FNMSUBS, FMULSCC:
    		return true
    	case FADDCC, FADDSCC, FSUBCC, FMULCC, FDIVCC, FDIVSCC:
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  2. src/testing/match_test.go

    		parent := &common{name: tc.parent}
    		if tc.parent != "" {
    			parent.level = 1
    		}
    		if n, ok, partial := m.fullName(parent, tc.sub); ok != tc.ok || partial != tc.partial {
    			t.Errorf("for pattern %q, fullName(parent=%q, sub=%q) = %q, ok %v partial %v; want ok %v partial %v",
    				tc.pattern, tc.parent, tc.sub, n, ok, partial, tc.ok, tc.partial)
    		}
    	}
    }
    
    var namingTestCases = []struct{ name, want string }{
    	// Uniqueness
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/objz.go

    				p.From.Name = obj.NAME_EXTERN
    				p.From.Offset = 0
    			}
    		}
    	}
    
    	// Rewrite SUB constants into ADD.
    	switch p.As {
    	case ASUBC:
    		if p.From.Type == obj.TYPE_CONST && isint32(-p.From.Offset) {
    			p.From.Offset = -p.From.Offset
    			p.As = AADDC
    		}
    
    	case ASUB:
    		if p.From.Type == obj.TYPE_CONST && isint32(-p.From.Offset) {
    			p.From.Offset = -p.From.Offset
    			p.As = AADD
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/assign.go

    		ir.ODIV,
    		ir.ODOT,
    		ir.ODOTTYPE,
    		ir.OLITERAL,
    		ir.OLSH,
    		ir.OMOD,
    		ir.OMUL,
    		ir.ONEG,
    		ir.ONIL,
    		ir.OOR,
    		ir.OOROR,
    		ir.OPAREN,
    		ir.OPLUS,
    		ir.ORSH,
    		ir.OSUB,
    		ir.OXOR:
    		return false
    	}
    
    	// Be conservative.
    	return true
    }
    
    // expand append(l1, l2...) to
    //
    //	init {
    //	  s := l1
    //	  newLen := s.len + l2.len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. src/go/types/errors.go

    		// It is sufficient to look at the first sub-error only.
    		msg := err.desc[0].msg
    		if strings.Index(msg, "invalid operand") > 0 || strings.Index(msg, "invalid type") > 0 {
    			return
    		}
    	}
    
    	if check.conf._Trace {
    		check.trace(err.posn().Pos(), "ERROR: %s (code = %d)", err.desc[0].msg, err.code)
    	}
    
    	// In go/types, if there is a sub-error with a valid position,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/mips.go

    		mips.ACMPGTF, mips.ACMPGTD:
    		return true
    	}
    	return false
    }
    
    // IsMIPSMUL reports whether the op (as defined by an mips.A* constant) is
    // one of the MUL/DIV/REM/MADD/MSUB instructions that require special handling.
    func IsMIPSMUL(op obj.As) bool {
    	switch op {
    	case mips.AMUL, mips.AMULU, mips.AMULV, mips.AMULVU,
    		mips.ADIV, mips.ADIVU, mips.ADIVV, mips.ADIVVU,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 19:06:44 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/a.out.go

    	AORIS
    	AREM
    	AREMU
    	ARFI
    	ARLWMI
    	ARLWMICC
    	ARLWNM
    	ARLWNMCC
    	ACLRLSLWI
    	ASLW
    	ASLWCC
    	ASRW
    	ASRAW
    	ASRAWCC
    	ASRWCC
    	ASTBCCC
    	ASTHCCC
    	ASTSW
    	ASTWCCC
    	ASUB
    	ASUBCC
    	ASUBVCC
    	ASUBC
    	ASUBCCC
    	ASUBCV
    	ASUBCVCC
    	ASUBME
    	ASUBMECC
    	ASUBMEVCC
    	ASUBMEV
    	ASUBV
    	ASUBE
    	ASUBECC
    	ASUBEV
    	ASUBEVCC
    	ASUBZE
    	ASUBZECC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/magic_test.go

    			}
    		}
    	}
    }
    
    func TestMagicUnsigned(t *testing.T) {
    	One := new(big.Int).SetUint64(1)
    	for _, n := range [...]uint{8, 16, 32, 64} {
    		TwoN := new(big.Int).Lsh(One, n)
    		Max := new(big.Int).Sub(TwoN, One)
    		for _, c := range [...]uint64{
    			3,
    			5,
    			6,
    			7,
    			9,
    			10,
    			11,
    			12,
    			13,
    			14,
    			15,
    			17,
    			1<<8 - 1,
    			1<<8 + 1,
    			1<<16 - 1,
    			1<<16 + 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 22:02:07 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*8513*/ uint16(xSetOp), uint16(SUB),
    	/*8515*/ uint16(xReadIw),
    	/*8516*/ uint16(xArgAX),
    	/*8517*/ uint16(xArgImm16),
    	/*8518*/ uint16(xMatch),
    	/*8519*/ uint16(xSetOp), uint16(SUB),
    	/*8521*/ uint16(xReadId),
    	/*8522*/ uint16(xArgEAX),
    	/*8523*/ uint16(xArgImm32),
    	/*8524*/ uint16(xMatch),
    	/*8525*/ uint16(xCondDataSize), 8513, 8519, 8529,
    	/*8529*/ uint16(xSetOp), uint16(SUB),
    	/*8531*/ uint16(xReadId),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram.go

    }
    
    func (trh *timingRatioHistogramInner) Sub(deltaNumerator float64) {
    	trh.Add(-deltaNumerator)
    }
    
    func (trh *timingRatioHistogramInner) Inc() {
    	trh.Add(1)
    }
    
    func (trh *timingRatioHistogramInner) Dec() {
    	trh.Add(-1)
    }
    
    func (trh *timingRatioHistogramInner) SetToCurrentTime() {
    	trh.Set(float64(trh.nowFunc().Sub(time.Unix(0, 0))))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top