Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for NEG (0.21 sec)

  1. src/math/big/float.go

    		// Below we set z.neg = x.neg, and when z aliases y this will
    		// change the y operand's sign. This is fine, because if an
    		// operand aliases the receiver it'll be overwritten, but we still
    		// want the original x.neg and y.neg values when we evaluate
    		// x.neg != y.neg, so we need to save y.neg before setting z.neg.
    		yneg := y.neg
    
    		z.neg = x.neg
    		if x.neg == yneg {
    			// x + y == x + y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  2. src/strconv/ftoa.go

    		}
    		digs = decimalSlice{d: d.d[:], nd: d.nd, dp: d.dp}
    	}
    	return formatDigits(dst, shortest, neg, digs, prec, fmt)
    }
    
    func formatDigits(dst []byte, shortest bool, neg bool, digs decimalSlice, prec int, fmt byte) []byte {
    	switch fmt {
    	case 'e', 'E':
    		return fmtE(dst, neg, digs, prec, fmt)
    	case 'f':
    		return fmtF(dst, neg, digs, prec)
    	case 'g', 'G':
    		// trailing fractional zeros in 'e' form will be trimmed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. test/codegen/mathbits.go

    	// amd64:"NEGL","SBBQ","NEGQ"
    	// arm64:"NEGS","SBCS","NGC","NEG",-"ADD",-"SUB",-"CMP"
    	// loong64:"SUBV","SGTU"
    	// ppc64x:"SUBC", "SUBE", "SUBZE", "NEG"
    	// s390x:"SUBE"
    	// mips64:"SUBV","SGTU"
    	// riscv64: "SUB","SLTU"
    	return bits.Sub(x, y, ci)
    }
    
    func SubC(x, ci uint) (r, co uint) {
    	// amd64:"NEGL","SBBQ","NEGQ"
    	// arm64:"NEGS","SBCS","NGC","NEG",-"ADD",-"SUB",-"CMP"
    	// loong64:"SUBV","SGTU"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/math.mlir

      %3 = "tfl.div"(%2, %1) {fused_activation_function = "NONE"} : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32> loc("div")
      %4 = "tfl.exp"(%3) : (tensor<4xf32>) -> tensor<4xf32> loc("exp")
      %5 = "tfl.neg"(%4) : (tensor<4xf32>) -> tensor<4xf32> loc("neg")
      func.return %5 : tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      // Add another oper to the graph.
      TF_Operation* neg = Neg(add, graph, s, "neg");
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      NodeDef node_def_neg;
      ASSERT_TRUE(GetNodeDef(neg, &node_def_neg));
      EXPECT_EQ(string("add"), node_def_neg.input(0));
    
      // update edge of neg
      TF_UpdateEdge(graph, TF_Output{one, 0}, TF_Input{neg, 0}, s);
    
      ASSERT_TRUE(GetNodeDef(neg, &node_def_neg));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. src/math/big/floatmarsh.go

    func (x *Float) GobEncode() ([]byte, error) {
    	if x == nil {
    		return nil, nil
    	}
    
    	// determine max. space (bytes) required for encoding
    	sz := 1 + 1 + 4 // version + mode|acc|form|neg (3+2+2+1bit) + prec
    	n := 0          // number of mantissa words
    	if x.form == finite {
    		// add space for mantissa and exponent
    		n = int((x.prec + (_W - 1)) / _W) // required mantissa length in words for given precision
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/strconv/itoa.go

    // formatBits computes the string representation of u in the given base.
    // If neg is set, u is treated as negative int64 value. If append_ is
    // set, the string is appended to dst and the resulting byte slice is
    // returned as the first result value; otherwise the string is returned
    // as the second result value.
    func formatBits(dst []byte, u uint64, base int, neg, append_ bool) (d []byte, s string) {
    	if base < 2 || base > len(digits) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/strconv/atoi.go

    	}
    
    	if bitSize == 0 {
    		bitSize = IntSize
    	}
    
    	cutoff := uint64(1 << uint(bitSize-1))
    	if !neg && un >= cutoff {
    		return int64(cutoff - 1), rangeError(fnParseInt, s0)
    	}
    	if neg && un > cutoff {
    		return -int64(cutoff), rangeError(fnParseInt, s0)
    	}
    	n := int64(un)
    	if neg {
    		n = -n
    	}
    	return n, nil
    }
    
    // Atoi is equivalent to ParseInt(s, 10, 0), converted to type int.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/math/big/ratmarsh.go

    		// this should never happen
    		return nil, errors.New("Rat.GobEncode: numerator too large")
    	}
    	byteorder.BePutUint32(buf[j-4:j], uint32(n))
    	j -= 1 + 4
    	b := ratGobVersion << 1 // make space for sign bit
    	if x.a.neg {
    		b |= 1
    	}
    	buf[j] = b
    	return buf[j:], nil
    }
    
    // GobDecode implements the [encoding/gob.GobDecoder] interface.
    func (z *Rat) GobDecode(buf []byte) error {
    	if len(buf) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        const seen = new Set();
        let pos = 0;
        let neg = 0;
        for (const place of places) {
          if (seen.has(place.Stack)) continue; // Do not double-count stacks
          seen.add(place.Stack);
          const stack = stacks.Stacks[place.Stack];
          if (stack.Value < 0) {
    	neg += -stack.Value;
          } else {
    	pos += stack.Value;
          }
        }
        return [pos, neg];
      }
    
      function summary(pos, neg) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top