HomeSort by relevance Sort by last modified time
    Searched refs:CreateRange (Results 1 - 2 of 2) sorted by null

  /external/v8/src/compiler/
type-cache.h 28 Type const kInt8 = CreateRange<int8_t>();
29 Type const kUint8 = CreateRange<uint8_t>();
33 Type const kInt16 = CreateRange<int16_t>();
34 Type const kUint16 = CreateRange<uint16_t>();
44 Type const kSingletonZero = CreateRange(0.0, 0.0);
45 Type const kSingletonOne = CreateRange(1.0, 1.0);
46 Type const kSingletonTen = CreateRange(10.0, 10.0);
47 Type const kSingletonMinusOne = CreateRange(-1.0, -1.0);
54 Type const kMinusOneOrZero = CreateRange(-1.0, 0.0);
56 Type::Union(CreateRange(-1.0, 1.0), Type::MinusZero(), zone())
    [all...]
  /art/compiler/optimizing/
induction_var_range_test.cc 210 HInductionVarAnalysis::InductionInfo* CreateRange(int32_t lo, int32_t hi) {
233 return CreateWrapAround(initial, CreateRange(lo, hi));
335 EXPECT_TRUE(IsExact(CreateRange(111, 111), &value));
337 EXPECT_TRUE(IsAtMost(CreateRange(111, 111), &value));
339 EXPECT_TRUE(IsAtLeast(CreateRange(111, 111), &value));
342 EXPECT_FALSE(IsExact(CreateRange(11, 22), &value));
343 EXPECT_TRUE(IsAtMost(CreateRange(11, 22), &value));
345 EXPECT_TRUE(IsAtLeast(CreateRange(11, 22), &value));
380 GetMin(CreateInvariant('+', CreateConst(2), CreateRange(10, 20)), nullptr));
382 GetMax(CreateInvariant('+', CreateConst(2), CreateRange(10, 20)), nullptr))
    [all...]

Completed in 222 milliseconds