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

/netbsd-6-1-5-RELEASE/sys/fs/hfs/
H A Dunicode.c45 size_t spos, dpos; local
53 spos = dpos = 0;
54 while (spos<src_len) {
55 if (s[spos] < 0x80)
56 c = s[spos++];
58 && (spos >= src_len || !IS_CONT(s[spos+1]))
59 && s[spos]>=0xa0) {
61 c = s[spos++];
63 else if (s[spos] <
144 uint8_t spos, dpos; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dbs15503.cc52 string::size_type spos = s.find("and"); local
53 s.insert(spos, " ");
57 s.erase(spos);
/netbsd-6-1-5-RELEASE/usr.sbin/ypserv/revnetgroup/
H A Dparse_netgroup.c179 char *spos, *epos; local
226 if ((spos = strsep(&gpos, ","))) {
230 while (*spos == ' ' || *spos == '\t')
231 spos++;
232 if ((epos = strpbrk(spos, " \t"))) {
234 len = epos - spos;
236 len = strlen(spos);
241 spos, len + 1);
274 spos
293 char *pos, *spos, *linep = NULL, *olinep = NULL; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/irs/
H A Dlcl_ng.c277 char *spos, *epos; local
313 if ((spos = strsep(&gpos, ","))) {
314 while (*spos == ' ' || *spos == '\t')
315 spos++;
316 if ((epos = strpbrk(spos, " \t"))) {
318 len = epos - spos;
320 len = strlen(spos);
329 spos,
336 spos
361 char *pos, *spos, *linep = NULL, *olinep; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/less/dist/
H A Dlsystem.c287 * Feed it the file contents between the positions spos and epos.
290 pipe_data(cmd, spos, epos)
292 POSITION spos;
304 if (ch_seek(spos) != 0)
332 while (epos == NULL_POSITION || spos++ <= epos)
H A Dsearch.c1043 * prep_hilite asks that the range (spos,epos) be covered by the prep region.
1046 prep_hilite(spos, epos, maxlines)
1047 POSITION spos;
1075 max_epos = spos;
1082 * The range that we need to search (spos,epos); and the range that
1088 spos > prep_endpos)
1098 nprep_startpos = spos;
1126 if (spos < prep_startpos)
1133 if (spos < SEARCH_MORE)
1134 spos
[all...]
H A Dfilename.c519 off_t spos; local
521 spos = lseek(f, (off_t)0, SEEK_END);
522 if (spos == BAD_LSEEK)
524 return ((POSITION) spos);
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/drivers/
H A Ddriver_wext.c249 char *spos; local
253 spos = custom + 17;
255 bytes = strspn(spos, "0123456789abcdefABCDEF");
262 hexstr2bin(spos, req_ies, bytes) < 0)
267 spos += bytes * 2;
272 if (os_strncmp(spos, " RespIEs=", 9) == 0) {
273 spos += 9;
275 bytes = strspn(spos, "0123456789abcdefABCDEF");
282 hexstr2bin(spos, resp_ies, bytes) < 0)
1135 char *spos; local
1150 char *spos; local
1165 char *spos; local
[all...]
H A Ddriver_ralink.c472 char *spos; local
475 spos = custom + 17;
478 * bytes = strlen(spos); ==> bug, bytes may less than original
488 os_memcpy(req_ies, spos, bytes);
493 spos += bytes + 1;
498 if (os_strncmp(spos, " RespIEs=", 9) == 0) {
500 spos += 9;
502 bytes = os_strlen(spos);
509 os_memcpy(resp_ies, spos, bytes);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/
H A Dmpi.c2376 unsigned char *spos; local
2382 spos = str;
2396 *spos = d & UCHAR_MAX;
2398 ++spos;
2407 *spos = d & UCHAR_MAX;
2409 ++spos;
2413 while(--spos > str) {
2415 *str = *spos;
2416 *spos = t;
/netbsd-6-1-5-RELEASE/sbin/newfs_udf/
H A Dudf_create.c1328 uint16_t *spos; local
1384 spos = (uint16_t *) implext->data;
1385 *spos = udf_rw16(udf_ea_cksum((uint8_t *) implext));
/netbsd-6-1-5-RELEASE/sys/fs/udf/
H A Dudf_subr.c2312 uint16_t *spos; local
2317 spos = (uint16_t *) implext->data;
2318 if (udf_rw16(*spos) != udf_ea_cksum((uint8_t *) implext))
2327 uint16_t *spos; local
2331 spos = (uint16_t *) implext->data;
2332 *spos = udf_rw16(udf_ea_cksum((uint8_t *) implext));
2463 uint16_t *spos; local
2522 spos = (uint16_t *) implext->data;
2523 *spos = udf_rw16(udf_ea_cksum((uint8_t *) implext));

Completed in 166 milliseconds