Home
last modified time | relevance | path

Searched refs:src_end (Results 1 – 10 of 10) 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() local
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()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_poisoning.cpp658 static void SlowCopyContainerAnnotations(uptr src_beg, uptr src_end, in SlowCopyContainerAnnotations() argument
690 static void SlowReversedCopyContainerAnnotations(uptr src_beg, uptr src_end, in SlowReversedCopyContainerAnnotations() argument
694 uptr src_ptr = src_end; in SlowReversedCopyContainerAnnotations()
735 static void CopyContainerLastGranuleAnnotation(uptr src_end, uptr dst_end) { in CopyContainerLastGranuleAnnotation() argument
738 uptr src_end_down = RoundDownTo(src_end, granularity); in CopyContainerLastGranuleAnnotation()
742 if (AddressIsPoisoned(src_end)) in CopyContainerLastGranuleAnnotation()
745 SetContainerGranule(dst_end_down, src_end - src_end_down); in CopyContainerLastGranuleAnnotation()
770 uptr src_end = reinterpret_cast<uptr>(src_end_p); in __sanitizer_copy_contiguous_container_annotations() local
776 if (src_beg > src_end || (dst_end - dst_beg) != (src_end - src_beg)) { in __sanitizer_copy_contiguous_container_annotations()
779 src_beg, src_end, dst_beg, dst_end, &stack); in __sanitizer_copy_contiguous_container_annotations()
[all …]
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlstrlib.c212 const char *src_end; /* end ('\0') of source string */ member
322 if (s >= ms->src_end) in singlematch()
346 while (++s < ms->src_end) { in matchbalance()
414 if ((size_t)(ms->src_end-s) >= len && in match_capture()
441 s = (s == ms->src_end) ? s : NULL; /* check end of string */ in match()
618 ms.src_end = s + ls; in str_find_aux()
633 } while (s1++ < ms.src_end && !anchor); in str_find_aux()
659 ms.src_end = s+ls; in gmatch_aux()
662 src <= ms.src_end; in gmatch_aux()
766 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()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_interface_internal.h80 const void *src_end,
/freebsd/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h230 const void *src_begin, const void *src_end, const void *dst_begin,