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

/freebsd-10-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-10-stable/libexec/revnetgroup/
H A Dparse_netgroup.c175 char *spos, *epos; local
222 if ((spos = strsep(&gpos, ","))) {
226 while (*spos == ' ' || *spos == '\t')
227 spos++;
228 if ((epos = strpbrk(spos, " \t"))) {
230 len = epos - spos;
232 len = strlen(spos);
236 bcopy(spos, grp->ng_str[strpos],
266 spos
285 char *pos, *spos, *linep = NULL, *olinep = NULL; local
[all...]
/freebsd-10-stable/lib/libc/gen/
H A Dgetnetgrent.c421 char *epos, *gpos, *pos, *spos; local
465 if ((spos = strsep(&gpos, ",")) == NULL) {
478 while (*spos == ' ' || *spos == '\t')
479 spos++;
480 if ((epos = strpbrk(spos, " \t"))) {
482 len = epos - spos;
484 len = strlen(spos);
495 bcopy(spos, ng[strpos], len + 1);
518 spos
537 char *linep, *olinep, *pos, *spos; local
[all...]
/freebsd-10-stable/contrib/less/
H A Dlsystem.c284 * Feed it the file contents between the positions spos and epos.
287 pipe_data(cmd, spos, epos)
289 POSITION spos;
302 if (ch_seek(spos) != 0)
330 while (epos == NULL_POSITION || spos++ <= epos)
H A Dsearch.c1544 * prep_hilite asks that the range (spos,epos) be covered by the prep region.
1547 prep_hilite(spos, epos, maxlines)
1548 POSITION spos;
1572 spos = back_raw_line(spos+1, (char **)NULL, (int *)NULL);
1582 max_epos = spos;
1589 * The range that we need to search (spos,epos); and the range that
1595 spos > prep_endpos)
1605 nprep_startpos = spos;
1633 if (spos < prep_startpo
[all...]
H A Dfilename.c509 off_t spos; local
511 spos = lseek(f, (off_t)0, SEEK_END);
512 if (spos == BAD_LSEEK)
514 return ((POSITION) spos);
H A Dfuncs.h201 public int pipe_data LESSPARAMS ((char *cmd, POSITION spos, POSITION epos));
293 public void prep_hilite LESSPARAMS ((POSITION spos, POSITION epos, int maxlines));
/freebsd-10-stable/contrib/wpa/src/p2p/
H A Dp2p_group.c456 const u8 *spos; local
476 spos = msg.p2p_device_info; /* P2P Device address */
482 wpabuf_put_data(buf, spos, ETH_ALEN);
492 wpabuf_put_data(buf, spos + ETH_ALEN,
/freebsd-10-stable/contrib/wpa/wpa_supplicant/
H A Dp2p_supplicant.c1264 u8 **spos, const u8 *end)
1266 while (*spos < end) {
1267 u8 val = ((*spos)[0] & 0xc0) >> 6;
1282 if (*spos + 2 > end) {
1288 offset = (((*spos)[0] & 0x3f) << 8) | (*spos)[1];
1289 if (offset >= *spos - start) {
1295 (*spos) += 2;
1299 *spos - 2);
1303 len = (*spos)[
1263 p2p_sd_dns_uncompress_label(char **upos, char *uend, u8 *start, u8 **spos, const u8 *end) argument
1339 u8 *tmp, *end, *spos; local
[all...]

Completed in 192 milliseconds