/src/tests/lib/libc/stdlib/ |
t_strtol.c | 112 char *end, *end2; local in function:ATF_TC_BODY 121 uli = strtoul(t[i].str, &end2, t[i].base); 136 if (end != end2) 138 "strtoul(%s, &end, %d)", end2, t[i].str, t[i].base);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_suppressions.cc | 117 const char *end2 = end; local in function:__sanitizer::SuppressionContext::Parse 118 while (line != end2 && 119 (end2[-1] == ' ' || end2[-1] == '\t' || end2[-1] == '\r')) 120 end2--; 135 s.templ = (char*)InternalAlloc(end2 - line + 1); 136 internal_memcpy(s.templ, line, end2 - line); 137 s.templ[end2 - line] = 0;
|
/src/sys/arch/sparc/stand/ofwboot/ |
boot.c | 122 const char *start1 = NULL, *end1 = NULL, *start2 = NULL, *end2 = NULL; local in function:bootoptions 153 end2 = ap; 159 if (end2 == start2) { 160 start2 = end2 = NULL; 191 memcpy(kernel, start2, (end2 - start2)); 192 kernel[end2 - start2] = '\0';
|
/src/sys/arch/ia64/ia64/ |
pmap.c | 1372 paddr_t vhpt_start = 0, start1, start2, end1, end2; local in function:pmap_steal_vhpt_memory 1395 end2 = uvm_physseg_get_avail_end(upm); 1399 if (start2 > end2) { 1413 start2 == end2 && 1431 if (start1 == end1 && start2 == end2) break; 1442 if (start2 != end2) 1443 uvm_page_physload(start2, end2, start2, end2,
|