Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 194 for NEG (0.25 sec)

  1. src/runtime/os_plan9.go

    		}
    	}
    	return -1
    }
    
    func atolwhex(p string) int64 {
    	for stringslite.HasPrefix(p, " ") || stringslite.HasPrefix(p, "\t") {
    		p = p[1:]
    	}
    	neg := false
    	if stringslite.HasPrefix(p, "-") || stringslite.HasPrefix(p, "+") {
    		neg = p[0] == '-'
    		p = p[1:]
    		for stringslite.HasPrefix(p, " ") || stringslite.HasPrefix(p, "\t") {
    			p = p[1:]
    		}
    	}
    	var n int64
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/math_grad_test.cc

    }
    
    Status NegModel(AbstractContext* ctx,
                    absl::Span<AbstractTensorHandle* const> inputs,
                    absl::Span<AbstractTensorHandle*> outputs) {
      return ops::Neg(ctx, inputs[0], &outputs[0], "Neg");
    }
    
    Status SubModel(AbstractContext* ctx,
                    absl::Span<AbstractTensorHandle* const> inputs,
                    absl::Span<AbstractTensorHandle*> outputs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 17:32:14 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/ppc64.go

    	case ppc64.ACMP, ppc64.ACMPU, ppc64.ACMPW, ppc64.ACMPWU, ppc64.AFCMPO, ppc64.AFCMPU:
    		return true
    	}
    	return false
    }
    
    // IsPPC64NEG reports whether the op (as defined by an ppc64.A* constant) is
    // one of the NEG-like instructions that require special handling.
    func IsPPC64NEG(op obj.As) bool {
    	switch op {
    	case ppc64.AADDMECC, ppc64.AADDMEVCC, ppc64.AADDMEV, ppc64.AADDME,
    		ppc64.AADDZECC, ppc64.AADDZEVCC, ppc64.AADDZEV, ppc64.AADDZE,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/golden/testing_ops.h.golden

    #include "tensorflow/c/eager/abstract_context.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    
    namespace tensorflow {
    namespace ops {
    
    //
    Status Neg(AbstractContext* ctx, AbstractTensorHandle* const x, AbstractTensorHandle** y, const char* name = nullptr, const char* raw_device_name = nullptr);
    
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 16 19:04:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd_arm64.s

    	CALL	libc_errno(SB)
    	MOVW	(R0), R0		// errno
    	NEG	R0, R0			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVD	8(R0), R1		// arg 2 - buf
    	MOVW	16(R0), R2		// arg 3 - count
    	MOVW	0(R0), R0		// arg 1 - fd
    	CALL	libc_write(SB)
    	CMP	$-1, R0
    	BNE	noerr
    	CALL	libc_errno(SB)
    	MOVW	(R0), R0		// errno
    	NEG	R0, R0			// caller expects negative errno value
    noerr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. src/time/zoneinfo.go

    // The timezone offset is returned as a number of seconds.
    func tzsetOffset(s string) (offset int, rest string, ok bool) {
    	if len(s) == 0 {
    		return 0, "", false
    	}
    	neg := false
    	if s[0] == '+' {
    		s = s[1:]
    	} else if s[0] == '-' {
    		s = s[1:]
    		neg = true
    	}
    
    	// The tzdata code permits values up to 24 * 7 here,
    	// although POSIX does not.
    	var hours int
    	hours, s, ok = tzsetNum(s, 0, 24*7)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/math/big/ratconv.go

    		return nil, false // avoid excessively large exponents
    	}
    	if exp2 > 0 {
    		z.a.abs = z.a.abs.shl(z.a.abs, uint(exp2))
    	} else if exp2 < 0 {
    		z.b.abs = z.b.abs.shl(z.b.abs, uint(-exp2))
    	}
    
    	z.a.neg = neg && len(z.a.abs) > 0 // 0 has no sign
    
    	return z.norm(), true
    }
    
    // scanExponent scans the longest possible prefix of r representing a base 10
    // (“e”, “E”) or a base 2 (“p”, “P”) exponent, if any. It returns the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/helpers_test.go

    		"Logging.Options.JSON.OutputRoutingOptions.InfoBufferSize.Quantity.d.Dec.unscaled.abs[*]",
    		"Logging.Options.JSON.OutputRoutingOptions.InfoBufferSize.Quantity.d.Dec.unscaled.neg",
    		"Logging.Options.JSON.OutputRoutingOptions.InfoBufferSize.Quantity.i.scale",
    		"Logging.Options.JSON.OutputRoutingOptions.InfoBufferSize.Quantity.i.value",
    		"Logging.Options.JSON.OutputRoutingOptions.InfoBufferSize.Quantity.s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/strconv/eisel_lemire.go

    import (
    	"math"
    	"math/bits"
    )
    
    func eiselLemire64(man uint64, exp10 int, neg bool) (f float64, ok bool) {
    	// The terse comments in this function body refer to sections of the
    	// https://nigeltao.github.io/blog/2020/eisel-lemire.html blog post.
    
    	// Exp10 Range.
    	if man == 0 {
    		if neg {
    			f = math.Float64frombits(0x8000000000000000) // Negative zero.
    		}
    		return f, true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 41.4K bytes
    - Viewed (0)
  10. test/codegen/arithmetic.go

    	// arm64:"LSL\t[$]5",-"MUL"
    	// ppc64x:"SLD\t[$]5",-"MUL"
    	a := n1 * 32
    
    	// amd64:"SHLQ\t[$]6",-"IMULQ"
    	// 386:"SHLL\t[$]6",-"IMULL"
    	// arm:"SLL\t[$]6",-"MUL"
    	// arm64:`NEG\sR[0-9]+<<6,\sR[0-9]+`,-`LSL`,-`MUL`
    	// ppc64x:"SLD\t[$]6","NEG\\sR[0-9]+,\\sR[0-9]+",-"MUL"
    	b := -64 * n2
    
    	return a, b
    }
    
    func Mul_96(n int) int {
    	// amd64:`SHLQ\t[$]5`,`LEAQ\t\(.*\)\(.*\*2\),`,-`IMULQ`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top