Lines Matching refs:end
38 char* end; in ParseUint() local
39 unsigned long long int result = strtoull(in, &end, 0); // NOLINT(runtime/int) in ParseUint()
40 if (in == end || *end != '\0') { in ParseUint()
52 char* end; in ParseInt() local
53 long long int result = strtoll(in, &end, 0); // NOLINT(runtime/int) in ParseInt()
54 if (in == end || *end != '\0') { in ParseInt()
182 inline void FlushInstructionCache(char* begin, char* end) { in FlushInstructionCache() argument
183 __builtin___clear_cache(begin, end); in FlushInstructionCache()
186 inline void FlushDataCache(char* begin, char* end) { in FlushDataCache() argument
189 __builtin___clear_cache(begin, end); in FlushDataCache()
214 const uint8_t* end = begin + sizeof(*result); in BoundsCheckedCast() local
215 if (begin < bound_begin || end > bound_end || begin > end) { in BoundsCheckedCast()