Home
last modified time | relevance | path

Searched refs:s_end (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzle.c44 uchar_t *s_end = src + s_len; in zfs_zle_compress_buf() local
47 while (src < s_end && dst < d_end - 1) { in zfs_zle_compress_buf()
52 while (src < MIN(last, s_end) && src[0] == 0) in zfs_zle_compress_buf()
59 while (src < MIN(last, s_end) - 1 && (src[0] | src[1])) in zfs_zle_compress_buf()
66 return (src == s_end ? dst - (uchar_t *)d_start : s_len); in zfs_zle_compress_buf()
75 uchar_t *s_end = src + s_len; in zfs_zle_decompress_buf() local
78 while (src < s_end && dst < d_end) { in zfs_zle_decompress_buf()
81 if (src + len > s_end || dst + len > d_end) in zfs_zle_decompress_buf()
/freebsd/sys/cddl/boot/zfs/
H A Dzle.c39 unsigned char *s_end = src + s_len; in zle_decompress() local
42 while (src < s_end && dst < d_end) { in zle_decompress()
/freebsd/crypto/openssl/test/
H A Dtiming_load_creds.c111 struct timeval s_start, s_end, s_elapsed; in main() local
213 s_end.tv_sec = rus.tms_stime / CLOCKS_PER_SEC; in main()
214 s_end.tv_usec = (rus.tms_stime * 1000000) / CLOCKS_PER_SEC; in main()
228 timersub(&s_end, &s_start, &s_elapsed); in main()
/freebsd/contrib/wpa/src/utils/
H A Djson.c67 char *str, *spos, *s_end; in json_parse_string() local
79 s_end = str + buf_len; in json_parse_string()
82 if (buf_len < max_len && s_end - spos < 3) { in json_parse_string()
95 s_end = str + buf_len; in json_parse_string()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DHashing.h440 const char *s_end = reinterpret_cast<const char *>(last);
441 const size_t length = std::distance(s_begin, s_end);
453 state.mix(s_end - 64);
/freebsd/contrib/llvm-project/compiler-rt/lib/cfi/
H A Dcfi.cpp172 uint16_t *s_end = MemToShadow(end - 1, shadow_) + 1; in Add()
174 for (; s < s_end; s++, sv++)
168 uint16_t *s_end = MemToShadow(end - 1, shadow_) + 1; Add() local
/freebsd/contrib/ntp/sntp/libevent/
H A Dbuffer.c1502 char *s_end, *cr, *lf; in find_eol_char() local
1503 s_end = s+len; in find_eol_char()
1504 while (s < s_end) { in find_eol_char()
1505 size_t chunk = (s + CHUNK_SZ < s_end) ? CHUNK_SZ : (s_end - s); in find_eol_char()
/freebsd/contrib/libevent/
H A Dbuffer.c1502 char *s_end, *cr, *lf; in find_eol_char() local
1503 s_end = s+len; in find_eol_char()
1504 while (s < s_end) { in find_eol_char()
1505 size_t chunk = (s + CHUNK_SZ < s_end) ? CHUNK_SZ : (s_end - s); in find_eol_char()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1259 s_end = m_continue_C_tids.end(); in DoResume() local
1260 s_pos != s_end; ++s_pos) in DoResume()
1282 s_end = m_continue_S_tids.end(); in DoResume() local
1283 s_pos != s_end; ++s_pos) in DoResume()