Searched refs:end_value (Results 1 – 5 of 5) sorted by relevance
/external/compiler-rt/lib/asan/ |
D | asan_poisoning.cc | 303 s8 end_value = *shadow_end; in PoisonAlignedStackMemory() local 307 if (end_value > 0 && end_value <= end_offset) in PoisonAlignedStackMemory() 312 if (end_value != 0) in PoisonAlignedStackMemory() 313 *shadow_end = Max(end_value, end_offset); in PoisonAlignedStackMemory()
|
/external/opencv3/3rdparty/libwebp/cpu-features/ |
D | cpu-features.c | 355 int val, start_value, end_value; in cpulist_parse() local 368 end_value = start_value; in cpulist_parse() 374 p = parse_decimal(p+1, q, &end_value); in cpulist_parse() 380 for (val = start_value; val <= end_value; val++) { in cpulist_parse()
|
/external/e2fsprogs/e2fsck/ |
D | profile.c | 1528 char *end_value; in profile_get_integer() local 1546 ret_long = strtol (value, &end_value, 10); in profile_get_integer() 1555 if (end_value != value + strlen (value)) in profile_get_integer() 1570 char *end_value; in profile_get_uint() local 1588 ret_long = strtoul (value, &end_value, 10); in profile_get_uint() 1597 if (end_value != value + strlen (value)) in profile_get_uint() 1610 char *end_value; in profile_get_double() local 1628 double_val = strtod(value, &end_value); in profile_get_double() 1634 if (end_value != value + strlen(value)) in profile_get_double()
|
/external/skia/platform_tools/android/third_party/cpufeatures/ |
D | cpu-features.c | 375 int val, start_value, end_value; in cpulist_parse() local 388 end_value = start_value; in cpulist_parse() 394 p = parse_decimal(p+1, q, &end_value); in cpulist_parse() 400 for (val = start_value; val <= end_value; val++) { in cpulist_parse()
|
/external/v8/src/ |
D | counters.h | 433 double end_value = last_value_ + (end_ms - last_ms_) * slope; in AddSample() local 437 sample_value = Aggregate(end_ms, end_value); in AddSample() 440 sample_value = (last_value_ + end_value) / 2; in AddSample() 443 last_value_ = end_value; in AddSample()
|