Lines Matching refs:low
121 int32_t low = GetIntegerCacheField(cache_class, kLowFieldName); in CheckIntegerCache() local
123 if (boot_image_cache->GetLength() != high - low + 1) { in CheckIntegerCache()
140 if (value_field->GetInt(boot_image_object) != low + i) { in CheckIntegerCache()
183 int32_t low = GetIntegerCacheField(cache_class, kLowFieldName); in ComputeIntegerValueOfLocations() local
188 CHECK_EQ(current_cache->GetLength(), high - low + 1); in ComputeIntegerValueOfLocations()
194 CHECK_EQ(value_field->GetInt(current_object), low + i); in ComputeIntegerValueOfLocations()
199 if (static_cast<uint32_t>(value) - static_cast<uint32_t>(low) < in ComputeIntegerValueOfLocations()
200 static_cast<uint32_t>(high - low + 1)) { in ComputeIntegerValueOfLocations()
234 int32_t low = value_field->GetInt(low_integer); in ComputeIntegerValueOfLocations() local
235 if (static_cast<uint32_t>(value) - static_cast<uint32_t>(low) < in ComputeIntegerValueOfLocations()
273 low(0), in IntegerValueOfInfo()
303 info.low = GetIntegerCacheField(cache_class, kLowFieldName); in ComputeIntegerValueOfInfo()
305 info.length = dchecked_integral_cast<uint32_t>(high - info.low + 1); in ComputeIntegerValueOfInfo()
310 uint32_t index = static_cast<uint32_t>(input_value) - static_cast<uint32_t>(info.low); in ComputeIntegerValueOfInfo()
333 info.low = GetIntegerCacheLowFromIntegerCache(self, class_linker); in ComputeIntegerValueOfInfo()
336 info.low = value_field->GetInt(low_integer); in ComputeIntegerValueOfInfo()
337 DCHECK_EQ(info.low, GetIntegerCacheLowFromIntegerCache(self, class_linker)); in ComputeIntegerValueOfInfo()
346 uint32_t index = static_cast<uint32_t>(input_value) - static_cast<uint32_t>(info.low); in ComputeIntegerValueOfInfo()