/src/sys/fs/hfs/ |
unicode.c | 45 size_t spos, dpos; local in function:utf8_to_utf16 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++]; 62 } else if (s[spos] < 0xc0 || s[spos] >= 0xf5) 137 uint8_t spos, dpos; local in function:utf16_to_utf8 [all...] |
/src/usr.sbin/ypserv/revnetgroup/ |
parse_netgroup.c | 179 char *spos, *epos; local in function:parse_netgrp 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 = strsep(&pos, ", \t") 293 char *pos, *spos, *linep = NULL, *olinep = NULL; local in function:read_for_group [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common.cc | 222 const char *spos = internal_strstr(str, templ); local in function:__sanitizer::TemplateMatch 223 str = spos + internal_strlen(templ); 227 if (!spos) 229 if (start && spos != str0)
|
/src/sbin/routed/rtquery/ |
rtquery.c | 622 size_t spos; local in function:rip_input 673 spos = strlen(net_buf); 675 (void)snprintf(net_buf + spos, 676 sizeof(net_buf) - spos, 685 (void)snprintf(net_buf + spos, 686 sizeof(net_buf) - spos, 689 (void)snprintf(net_buf + spos, 690 sizeof(net_buf) - spos,
|
/src/usr.bin/gzip/ |
unlz.c | 282 off_t pos, ppos, spos, dict_size; member in struct:lz_decoder 292 off_t offs = lz->pos - lz->spos; 297 lz_crc_update(&lz->crc, lz->obuf + lz->spos, size); 298 if (!tflag && fwrite(lz->obuf + lz->spos, 1, size, lz->fout) != size) 306 lz->spos = lz->pos; 333 lz->pos = lz->ppos = lz->spos = 0;
|
/src/sbin/newfs_udf/ |
udf_core.c | 2176 uint16_t *spos; local in function:udf_impl_extattr_check 2180 spos = (uint16_t *) implext->data; 2181 if (udf_rw16(*spos) != udf_ea_cksum((uint8_t *) implext)) 2190 uint16_t *spos; local in function:udf_calc_impl_extattr_checksum 2194 spos = (uint16_t *) implext->data; 2195 *spos = udf_rw16(udf_ea_cksum((uint8_t *) implext)); 2315 uint16_t *spos; local in function:udf_extattr_insert_internal 2374 spos = (uint16_t *) implext->data; 2375 *spos = udf_rw16(udf_ea_cksum((uint8_t *) implext));
|
/src/sys/fs/udf/ |
udf_subr.c | 2337 uint16_t *spos; local in function:udf_impl_extattr_check 2342 spos = (uint16_t *) implext->data; 2343 if (udf_rw16(*spos) != udf_ea_cksum((uint8_t *) implext)) 2352 uint16_t *spos; local in function:udf_calc_impl_extattr_checksum 2356 spos = (uint16_t *) implext->data; 2357 *spos = udf_rw16(udf_ea_cksum((uint8_t *) implext)); 2488 uint16_t *spos; local in function:udf_extattr_insert_internal 2548 spos = (uint16_t *) implext->data; 2549 *spos = udf_rw16(udf_ea_cksum((uint8_t *) implext));
|