Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for NEG (0.04 sec)

  1. src/cmd/internal/obj/ppc64/anames.go

    	"MTFSB0",
    	"MTFSB0CC",
    	"MTFSB1",
    	"MTFSB1CC",
    	"MULHW",
    	"MULHWCC",
    	"MULHWU",
    	"MULHWUCC",
    	"MULLW",
    	"MULLWCC",
    	"MULLWVCC",
    	"MULLWV",
    	"NAND",
    	"NANDCC",
    	"NEG",
    	"NEGCC",
    	"NEGVCC",
    	"NEGV",
    	"NOR",
    	"NORCC",
    	"OR",
    	"ORCC",
    	"ORN",
    	"ORNCC",
    	"ORIS",
    	"REM",
    	"REMU",
    	"RFI",
    	"RLWMI",
    	"RLWMICC",
    	"RLWNM",
    	"RLWNMCC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-stablehlo-vhlo.mlir

      // CHECK: vhlo.constant_v1
      %0 = stablehlo.constant dense<1.000000e+00> : tensor<1xf32>
      // CHECK-NEXT: tfl.control_node
      %outputs, %control = tfl.control_node {
        %1 = "tfl.neg"(%0) : (tensor<1xf32>) -> tensor<1xf32>
        "tfl.yield"(%1) : (tensor<1xf32>) -> ()
      }
      return %outputs, %control : tensor<1xf32>, !tfl.control
    }
    
    // -----
    
    // CHECK-LABEL: func_with_tfl_attrs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 22:39:35 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/anames.go

    	"DIVW",
    	"DIVWU",
    	"DIVD",
    	"DIVDU",
    	"MODW",
    	"MODWU",
    	"MODD",
    	"MODDU",
    	"MULLW",
    	"MULLD",
    	"MULHD",
    	"MULHDU",
    	"MLGR",
    	"SUB",
    	"SUBC",
    	"SUBV",
    	"SUBE",
    	"SUBW",
    	"NEG",
    	"NEGW",
    	"MOVWBR",
    	"MOVB",
    	"MOVBZ",
    	"MOVH",
    	"MOVHBR",
    	"MOVHZ",
    	"MOVW",
    	"MOVWZ",
    	"MOVD",
    	"MOVDBR",
    	"MOVDEQ",
    	"MOVDGE",
    	"MOVDGT",
    	"MOVDLE",
    	"MOVDLT",
    	"MOVDNE",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. misc/cgo/gmp/gmp.go

    	}
    	return z
    }
    
    func (z *Int) Int64() int64 {
    	if !z.init {
    		return 0
    	}
    	return int64(C.mpz_get_si(&z.i[0]))
    }
    
    // Neg sets z = -x and returns z.
    func (z *Int) Neg(x *Int) *Int {
    	x.doinit()
    	z.doinit()
    	C.mpz_neg(&z.i[0], &x.i[0])
    	return z
    }
    
    // Abs sets z to the absolute value of x and returns z.
    func (z *Int) Abs(x *Int) *Int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  5. src/go/internal/srcimporter/srcimporter_test.go

    	{"math.Pi", "const Pi untyped float"},
    	{"math.Sin", "func Sin(x float64) float64"},
    	{"math/big.Int", "type Int struct{neg bool; abs nat}"},
    	{"golang.org/x/text/unicode/norm.MaxSegmentSize", "const MaxSegmentSize untyped int"},
    }
    
    func TestImportedTypes(t *testing.T) {
    	if !testenv.HasSrc() {
    		t.Skip("no source code available")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    		if !inRange(typ, val) {
    			continue
    		}
    		ret = append(ret, val)
    	}
    	return ret
    }
    
    func sigString(v *big.Int) string {
    	var t big.Int
    	t.Abs(v)
    	if v.Sign() == -1 {
    		return "neg" + t.String()
    	}
    	return t.String()
    }
    
    func main() {
    	types := []string{
    		"uint64", "uint32", "uint16", "uint8",
    		"int64", "int32", "int16", "int8",
    	}
    
    	w := new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. test/codegen/bool.go

    	if b!=0 {
    		x[5] = b
    	}
    	// ppc64x:"XORCC",^"XOR"
    	b = x[7]^x[8]
    	if b!=0 {
    		x[7] = b
    	}
    	// ppc64x:"ADDCC",^"ADD"
    	b = x[9]+x[10]
    	if b!=0 {
    		x[9] = b
    	}
    	// ppc64x:"NEGCC",^"NEG"
    	b = -x[11]
    	if b!=0 {
    		x[11] = b
    	}
    	// ppc64x:"CNTLZDCC",^"CNTLZD"
    	b = uint64(bits.LeadingZeros64(x[12]))
    	if b!=0 {
    		x[12] = b
    	}
    
    	// ppc64x:"ADDCCC\t[$]4,"
    	c := int64(x[12]) + 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 22:12:32 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	FLDENV:    true,
    	FRSTOR:    true,
    	IDIV:      true,
    	IMUL:      true,
    	IN:        true,
    	INC:       true,
    	LEA:       true,
    	MOV:       true,
    	MOVNTI:    true,
    	MUL:       true,
    	NEG:       true,
    	NOP:       true,
    	NOT:       true,
    	OR:        true,
    	OUT:       true,
    	POP:       true,
    	POPA:      true,
    	POPCNT:    true,
    	PUSH:      true,
    	PUSHA:     true,
    	RCL:       true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. test/codegen/bits.go

    	return a[i>>6]&(1<<(i&63)) != 0
    }
    func issue44228b(a []int32, i int) bool {
    	// amd64: "BTL", -"SHL"
    	return a[i>>5]&(1<<(i&31)) != 0
    }
    
    func issue48467(x, y uint64) uint64 {
    	// arm64: -"NEG"
    	d, borrow := bits.Sub64(x, y, 0)
    	return x - d&(-borrow)
    }
    
    func foldConst(x, y uint64) uint64 {
    	// arm64: "ADDS\t[$]7",-"MOVD\t[$]7"
    	d, b := bits.Add64(x, 7, 0)
    	return b & d
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/math/big/floatconv.go

    func (z *Float) scan(r io.ByteScanner, base int) (f *Float, b int, err error) {
    	prec := z.prec
    	if prec == 0 {
    		prec = 64
    	}
    
    	// A reasonable value in case of an error.
    	z.form = zero
    
    	// sign
    	z.neg, err = scanSign(r)
    	if err != nil {
    		return
    	}
    
    	// mantissa
    	var fcount int // fractional digit count; valid if <= 0
    	z.mant, b, fcount, err = z.mant.scan(r, base, true)
    	if err != nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top