Searched defs:IsExact (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dinduction_var_range_test.cc221 bool IsExact(HInductionVarAnalysis::InductionInfo* info, int64_t* value) { function in class:art::InductionVarRangeTest
264 EXPECT_TRUE(IsExact(CreateConst(12345), &value));
271 EXPECT_TRUE(IsExact(CreateRange(111, 111), &value));
278 EXPECT_FALSE(IsExact(CreateRange(11, 22), &value));
284 EXPECT_FALSE(IsExact(CreateFetch(x_), &value));
H A Dinduction_var_analysis.cc421 if (a != nullptr && IsExact(b, &value)) {
621 if (!IsExact(stride_expr, &stride_value)) {
849 if (IsExact(a, &value)) {
866 if (IsExact(b, &value)) {
900 bool HInductionVarAnalysis::IsExact(InductionInfo* info, int64_t* value) { function in class:art::HInductionVarAnalysis
H A Dnodes.h177 bool IsExact() const { return is_exact_; } function in class:art::ReferenceTypeInfo
216 if (!IsExact()) return false;
223 if (!IsExact()) return false;
257 return IsExact() == rti.IsExact()
1774 SetPackedFlag<kFlagReferenceTypeIsExact>(ReferenceTypeInfo::CreateInvalid().IsExact());
2163 // The IsExact() flag is stored in packed fields.
5402 DCHECK(rti.IsExact());

Completed in 83 milliseconds