Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for isInt (0.05 sec)

  1. test/named.go

    	isInt(2 * i)
    	asInt(i * i)
    	isInt(i * i)
    	i *= 2
    	asInt(i / 5)
    	isInt(i / 5)
    	asInt(5 / i)
    	isInt(5 / i)
    	asInt(i / i)
    	isInt(i / i)
    	i /= 2
    	asInt(i % 5)
    	isInt(i % 5)
    	asInt(5 % i)
    	isInt(5 % i)
    	asInt(i % i)
    	isInt(i % i)
    	i %= 2
    	asInt(i & 5)
    	isInt(i & 5)
    	asInt(5 & i)
    	isInt(5 & i)
    	asInt(i & i)
    	isInt(i & i)
    	i &= 2
    	asInt(i &^ 5)
    	isInt(i &^ 5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/universe.go

    	// simple aliases
    	SimType[TMAP] = TPTR
    	SimType[TCHAN] = TPTR
    	SimType[TFUNC] = TPTR
    	SimType[TUNSAFEPTR] = TPTR
    
    	for et := TINT8; et <= TUINT64; et++ {
    		IsInt[et] = true
    	}
    	IsInt[TINT] = true
    	IsInt[TUINT] = true
    	IsInt[TUINTPTR] = true
    
    	IsFloat[TFLOAT32] = true
    	IsFloat[TFLOAT64] = true
    
    	IsComplex[TCOMPLEX64] = true
    	IsComplex[TCOMPLEX128] = true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/text/template/parse/node.go

    			n.Float64 = f
    			// If a floating-point extraction succeeded, extract the int if needed.
    			if !n.IsInt && float64(int64(f)) == f {
    				n.IsInt = true
    				n.Int64 = int64(f)
    			}
    			if !n.IsUint && float64(uint64(f)) == f {
    				n.IsUint = true
    				n.Uint64 = uint64(f)
    			}
    		}
    	}
    	if !n.IsInt && !n.IsUint && !n.IsFloat {
    		return nil, fmt.Errorf("illegal number syntax: %q", text)
    	}
    	return n, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/math/big/rat_test.go

    	}
    }
    
    func TestIsInt(t *testing.T) {
    	one := NewInt(1)
    	for _, a := range setStringTests {
    		x, ok := new(Rat).SetString(a.in)
    		if !ok {
    			continue
    		}
    		i := x.IsInt()
    		e := x.Denom().Cmp(one) == 0
    		if i != e {
    			t.Errorf("got IsInt(%v) == %v; want %v", x, i, e)
    		}
    	}
    }
    
    func TestRatAbs(t *testing.T) {
    	zero := new(Rat)
    	for _, a := range setStringTests {
    		x, ok := new(Rat).SetString(a.in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 00:15:59 UTC 2022
    - 18.9K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val KaType.isUnit: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.UNIT) }
        public val KaType.isInt: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.INT) }
        public val KaType.isLong: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.LONG) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/math/big/ratmarsh.go

    	z.a.abs = z.a.abs.setBytes(buf[j:i])
    	z.b.abs = z.b.abs.setBytes(buf[i:])
    	return nil
    }
    
    // MarshalText implements the [encoding.TextMarshaler] interface.
    func (x *Rat) MarshalText() (text []byte, err error) {
    	if x.IsInt() {
    		return x.a.MarshalText()
    	}
    	return x.marshal(), nil
    }
    
    // UnmarshalText implements the [encoding.TextUnmarshaler] interface.
    func (z *Rat) UnmarshalText(text []byte) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/text/template/parse/parse_test.go

    			t.Errorf("complex incorrect for %q; should be %t", test.text, test.isComplex)
    		}
    		if test.isInt {
    			if !n.IsInt {
    				t.Errorf("expected integer for %q", test.text)
    			}
    			if n.Int64 != test.int64 {
    				t.Errorf("int64 for %q should be %d Is %d", test.text, test.int64, n.Int64)
    			}
    		} else if n.IsInt {
    			t.Errorf("did not expect integer for %q", test.text)
    		}
    		if test.isUint {
    			if !n.IsUint {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/fmt/print.go

    	default:
    		p.unknownType(f)
    	}
    }
    
    // intFromArg gets the argNumth element of a. On return, isInt reports whether the argument has integer type.
    func intFromArg(a []any, argNum int) (num int, isInt bool, newArgNum int) {
    	newArgNum = argNum
    	if argNum < len(a) {
    		num, isInt = a[argNum].(int) // Almost always OK.
    		if !isInt {
    			// Work harder.
    			switch v := reflect.ValueOf(a[argNum]); v.Kind() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.cc

        mapping.map(op->getOperand(arg.index()), arg.value());
      }
      return builder.clone(*op, mapping)->getResults();
    }
    
    FailureOr<int32_t> CastI64ToI32(const int64_t value) {
      if (!llvm::isInt<32>(value)) {
        DEBUG_WITH_TYPE(
            "mlir-quant-attrs-and-constraints",
            llvm::dbgs()
                << "Tried to cast " << value
                << "from int64 to int32, but lies out of range of int32.\n");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/universe.go

    	s.Def = ir.NewNameAt(src.NoXPos, s, types.Types[types.TBLANK])
    
    	s = types.BuiltinPkg.Lookup("nil")
    	s.Def = NodNil()
    
    	// initialize okfor
    	for et := types.Kind(0); et < types.NTYPE; et++ {
    		if types.IsInt[et] || et == types.TIDEAL {
    			okforeq[et] = true
    			types.IsOrdered[et] = true
    			okforarith[et] = true
    			okforadd[et] = true
    			okforand[et] = true
    			ir.OKForConst[et] = true
    			types.IsSimple[et] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top