Searched refs:end_value (Results 1 – 3 of 3) 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/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()
|