Home
last modified time | relevance | path

Searched refs:src_end (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/ntp/ntpd/
H A Drc_cmdlength.c18 const char *src_end in remoteconfig_cmdlength() argument
25 while (src_end != src_buf) { in remoteconfig_cmdlength()
26 ch = src_end[-1]; in remoteconfig_cmdlength()
29 --src_end; in remoteconfig_cmdlength()
32 for (scan = src_buf; scan != src_end; ++scan) { in remoteconfig_cmdlength()
/freebsd/contrib/less/
H A Dcvt.c58 constant char *src_end; in cvt_text()
62 src_end = osrc + *lenp; in cvt_text()
64 src_end = osrc + strlen(osrc); in cvt_text()
66 for (src = osrc, dst = odst; src < src_end; ) in cvt_text()
71 ch = step_charc(&src, +1, src_end); in cvt_text()
82 while (src < src_end) in cvt_text()
57 char *src_end; cvt_text() local
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlstrlib.c211 const char *src_end; /* end ('\0') of source string */ member
321 if (s >= ms->src_end) in singlematch()
345 while (++s < ms->src_end) { in matchbalance()
413 if ((size_t)(ms->src_end-s) >= len && in match_capture()
440 s = (s == ms->src_end) ? s : NULL; /* check end of string */ in match()
617 ms.src_end = s + ls; in str_find_aux()
632 } while (s1++ < ms.src_end && !anchor); in str_find_aux()
658 ms.src_end = s+ls; in gmatch_aux()
661 src <= ms.src_end; in gmatch_aux()
765 ms.src_end = src+srcl; in str_gsub()
[all …]
/freebsd/contrib/ntp/include/
H A Drc_cmdlength.h2 extern size_t remoteconfig_cmdlength( const char *src_buf, const char *src_end );
/freebsd/contrib/lua/src/
H A Dlstrlib.c360 const char *src_end; /* end ('\0') of source string */ member
472 if (s >= ms->src_end) in singlematch()
495 while (++s < ms->src_end) { in matchbalance()
563 if ((size_t)(ms->src_end-s) >= len && in match_capture()
590 s = (s == ms->src_end) ? s : NULL; /* check end of string */ in match()
762 ms->src_end = s + ls; in prepstate()
812 } while (s1++ < ms.src_end && !anchor); in str_find_aux()
842 for (src = gm->src; src <= gm->ms.src_end; src++) { in gmatch_aux()
970 else if (src < ms.src_end) /* otherwise, skip one character */ in str_gsub()
978 luaL_addlstring(&b, src, ms.src_end-src); in str_gsub()
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_poisoning.cpp79 u32 *src_end = (u32 *)MEM_TO_ORIGIN(s + (end - beg)); in CopyOrigin() local
83 for (; src < src_end; ++src, ++src_s, ++dst) { in CopyOrigin()
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan.cpp274 dfsan_origin *src_end = origin_for((void *)(src_a + (end - beg))); in CopyOrigin() local
278 for (; src_o < src_end; ++src_o, ++src_s, ++dst_o) { in CopyOrigin()
307 void *src_end = (void *)(src_a + end - beg - kOriginAlign); in ReverseCopyOrigin() local
308 dfsan_origin *src_end_o = origin_for(src_end); in ReverseCopyOrigin()
309 u32 *src_end_s = (u32 *)shadow_for(src_end); in ReverseCopyOrigin()