Searched refs:spos (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/sys/dev/hyperv/utilities/
H A Dunicode.h49 size_t spos, dpos; local
57 spos = dpos = 0;
58 while (spos<src_len) {
59 if (s[spos] < 0x80)
60 c = s[spos++];
62 && (spos >= src_len || !IS_CONT(s[spos+1]))
63 && s[spos]>=0xa0) {
65 c = s[spos++];
67 else if (s[spos] <
148 uint16_t spos, dpos; local
[all...]
/freebsd-13-stable/libexec/revnetgroup/
H A Dparse_netgroup.c177 char *spos, *epos; local
224 if ((spos = strsep(&gpos, ","))) {
228 while (*spos == ' ' || *spos == '\t')
229 spos++;
230 if ((epos = strpbrk(spos, " \t"))) {
232 len = epos - spos;
234 len = strlen(spos);
238 bcopy(spos, grp->ng_str[strpos],
268 spos
287 char *pos, *spos, *linep = NULL, *olinep = NULL; local
[all...]
/freebsd-13-stable/contrib/wpa/src/utils/
H A Djson.c67 char *str, *spos, *s_end; local
78 spos = str;
82 if (buf_len < max_len && s_end - spos < 3) {
86 idx = spos - str;
94 spos = str + idx;
100 *spos = '\0';
115 *spos++ = *pos;
118 *spos++ = '\n';
121 *spos++ = '\r';
124 *spos
[all...]
/freebsd-13-stable/contrib/less/
H A Dlsystem.c291 * Feed it the file contents between the positions spos and epos.
294 pipe_data(cmd, spos, epos)
296 POSITION spos;
308 if (ch_seek(spos) != 0)
336 while (epos == NULL_POSITION || spos++ <= epos)
H A Dsearch.c1715 * prep_hilite asks that the range (spos,epos) be covered by the prep region.
1718 prep_hilite(spos, epos, maxlines)
1719 POSITION spos;
1743 spos = back_raw_line(spos+1, (char **)NULL, (int *)NULL);
1753 max_epos = spos;
1760 * The range that we need to search (spos,epos); and the range that
1766 spos > prep_endpos)
1776 nprep_startpos = spos;
1804 if (spos < prep_startpo
[all...]
H A Dfilename.c512 off_t spos; local
514 spos = lseek(f, (off_t)0, SEEK_END);
515 if (spos == BAD_LSEEK)
517 return ((POSITION) spos);
H A Dfuncs.h218 public int pipe_data LESSPARAMS ((char *cmd, POSITION spos, POSITION epos));
324 public void prep_hilite LESSPARAMS ((POSITION spos, POSITION epos, int maxlines));
/freebsd-13-stable/contrib/wpa/wpa_supplicant/
H A Dp2p_supplicant_sd.c33 u8 **spos, const u8 *end)
35 while (*spos < end) {
36 u8 val = ((*spos)[0] & 0xc0) >> 6;
51 if (end - *spos < 2) {
57 offset = (((*spos)[0] & 0x3f) << 8) | (*spos)[1];
58 if (offset >= *spos - start) {
64 (*spos) += 2;
68 *spos - 2);
72 len = (*spos)[
32 p2p_sd_dns_uncompress_label(char **upos, char *uend, u8 *start, u8 **spos, const u8 *end) argument
108 u8 *tmp, *end, *spos; local
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.cpp221 const char *spos = internal_strstr(str, templ); local
222 str = spos + internal_strlen(templ);
226 if (!spos)
228 if (start && spos != str0)
/freebsd-13-stable/lib/libc/gen/
H A Dgetnetgrent.c679 char *epos, *gpos, *pos, *spos; local
723 if ((spos = strsep(&gpos, ",")) == NULL) {
736 while (*spos == ' ' || *spos == '\t')
737 spos++;
738 if ((epos = strpbrk(spos, " \t"))) {
740 len = epos - spos;
742 len = strlen(spos);
753 bcopy(spos, ng[strpos], len + 1);
776 spos
795 char *linep, *olinep, *pos, *spos; local
[all...]
/freebsd-13-stable/usr.bin/gzip/
H A Dunlz.c284 off_t pos, ppos, spos, dict_size; member in struct:lz_decoder
294 off_t offs = lz->pos - lz->spos;
299 lz_crc_update(&lz->crc, lz->obuf + lz->spos, size);
300 if (fwrite(lz->obuf + lz->spos, 1, size, lz->fout) != size)
308 lz->spos = lz->pos;
335 lz->pos = lz->ppos = lz->spos = 0;
/freebsd-13-stable/contrib/wpa/src/p2p/
H A Dp2p_group.c526 const u8 *spos; local
546 spos = msg.p2p_device_info; /* P2P Device address */
552 wpabuf_put_data(buf, spos, ETH_ALEN);
562 wpabuf_put_data(buf, spos + ETH_ALEN,
/freebsd-13-stable/contrib/mandoc/
H A Droff.c1767 int spos; /* saved parse point for messages */ local
1842 spos = pos;
1850 ln, pos, "%s", buf->buf + spos);
1883 return (*roffs[t].proc)(r, t, buf, ln, spos, pos, offs);

Completed in 252 milliseconds