/titanic_51/usr/src/cmd/mandoc/ |
H A D | tbl_layout.c | 62 int ln, const char *p, int *pos) in mods() argument 67 while (p[*pos] == ' ' || p[*pos] == '\t') in mods() 68 (*pos)++; in mods() 72 if (strchr(".,-=^_ACLNRSaclnrs", p[*pos]) != NULL) in mods() 77 if ('(' == p[*pos]) { in mods() 78 (*pos)++; in mods() 79 while (p[*pos] && ')' != p[*pos]) in mods() 80 (*pos) in mods() 193 cell(struct tbl_node * tbl,struct tbl_row * rp,int ln,const char * p,int * pos) cell() argument 253 tbl_layout(struct tbl_node * tbl,int ln,const char * p,int pos) tbl_layout() argument 340 cell_alloc(struct tbl_node * tbl,struct tbl_row * rp,enum tbl_cellt pos) cell_alloc() argument [all...] |
H A D | tbl_opts.c | 65 arg(struct tbl_node *tbl, int ln, const char *p, int *pos, int key) in arg() argument 69 while (p[*pos] == ' ' || p[*pos] == '\t') in arg() 70 (*pos)++; in arg() 75 if (p[*pos] == '(') { in arg() 76 (*pos)++; in arg() 77 while (p[*pos + len] != ')') in arg() 84 ln, *pos, "%.*s", len, p + *pos); in arg() 90 tbl->opts.tab = p[*pos]; in arg() 126 int i, pos, len; tbl_option() local [all...] |
H A D | tbl_data.c | 41 int ln, const char *p, int *pos) in getdata() argument 50 while (cp != NULL && cp->pos == TBL_CELL_SPAN) in getdata() 60 ln, *pos, p + *pos); in getdata() 62 while (p[*pos]) in getdata() 63 (*pos)++; in getdata() 69 dat->pos = TBL_DATA_NONE; in getdata() 72 if (cp->pos == TBL_CELL_SPAN) in getdata() 83 sv = *pos; in getdata() 84 while (p[*pos] in getdata() 123 tbl_cdata(struct tbl_node * tbl,int ln,const char * p,int pos) tbl_cdata() argument 184 tbl_data(struct tbl_node * tbl,int ln,const char * p,int pos) tbl_data() argument [all...] |
H A D | mdoc_argv.c | 279 struct mdoc_arg **reta, int *pos, char *buf) in mdoc_argv() argument 298 ipos = *pos; in mdoc_argv() 342 tmpv.pos = *pos; in mdoc_argv() 369 *pos = ipos; in mdoc_argv() 415 mdoc_args(struct mdoc *mdoc, int line, int *pos, in mdoc_args() argument 426 return(args(mdoc, line, pos, buf, fl, v)); in mdoc_args() 442 return(args(mdoc, line, pos, buf, fl, v)); in mdoc_args() 446 args(struct mdoc *mdoc, int line, int *pos, in args() argument 453 if ('\0' == buf[*pos]) { in args() 657 argv_multi(struct mdoc * mdoc,int line,struct mdoc_argv * v,int * pos,char * buf) argv_multi() argument 679 argv_single(struct mdoc * mdoc,int line,struct mdoc_argv * v,int * pos,char * buf) argv_single() argument [all...] |
H A D | tbl.c | 35 tbl_read(struct tbl_node *tbl, int ln, const char *p, int pos) in tbl_read() argument 49 for (cp = p + pos; *cp != '\0'; cp++) { in tbl_read() 67 tbl_option(tbl, ln, p, &pos); in tbl_read() 68 if (p[pos] == '\0') in tbl_read() 77 tbl_layout(tbl, ln, p, pos); in tbl_read() 80 return(tbl_cdata(tbl, ln, p, pos) ? ROFF_TBL : ROFF_IGN); in tbl_read() 85 tbl_data(tbl, ln, p, pos); in tbl_read() 90 tbl_alloc(int pos, int line, struct mparse *parse) in tbl_alloc() argument 96 tbl->pos = pos; in tbl_alloc() 137 tbl_restart(int line,int pos,struct tbl_node * tbl) tbl_restart() argument [all...] |
H A D | roff.c | 352 int ppos, /* original pos in buffer */ \ 353 int pos, /* current pos in buffer */ \ 907 roff_res(struct roff *r, struct buf *buf, int ln, int pos) in roff_res() argument 926 start = buf->buf + pos; in roff_res() 1094 start = nbuf + pos; in roff_res() 1108 roff_parsetext(struct buf *buf, int pos, int *offs) in roff_parsetext() argument 1116 start = p = buf->buf + pos; in roff_parsetext() 1163 int pos; /* parse point */ in roff_parseln() local 1168 ppos = pos in roff_parseln() 1294 roff_parse(struct roff * r,char * buf,int * pos,int ln,int ppos) roff_parse() argument 1635 roff_getnum(const char * v,int * pos,int * res,int flags) roff_getnum() argument 1711 roff_evalstrcond(const char * v,int * pos) roff_evalstrcond() argument 1750 roff_evalcond(struct roff * r,int ln,const char * v,int * pos) roff_evalcond() argument 1939 roff_getop(const char * v,int * pos,char * res) roff_getop() argument 2009 roff_evalpar(struct roff * r,int ln,const char * v,int * pos,int * res,int flags) roff_evalpar() argument 2039 roff_evalnum(struct roff * r,int ln,const char * v,int * pos,int * res,int flags) roff_evalnum() argument 2419 roff_eqndelim(struct roff * r,struct buf * buf,int pos) roff_eqndelim() argument 2764 roff_getname(struct roff * r,char ** cpp,int ln,int pos) roff_getname() argument 3047 int pos; roff_getcontrol() local [all...] |
/titanic_51/usr/src/lib/libast/common/hash/ |
H A D | hashscan.c | 49 register Hash_position_t* pos; in hashscan() local 53 if (!(pos = newof(0, Hash_position_t, 1, 0))) return(0); in hashscan() 54 pos->tab = tab->root->last.table = tab; in hashscan() 55 pos->bucket = ∅ in hashscan() 56 pos->slot = tab->table - 1; in hashscan() 57 pos->limit = tab->table + tab->size; in hashscan() 60 pos->flags = HASH_SCOPE; in hashscan() 75 tab = pos->tab; in hashscan() 77 else pos->flags = 0; in hashscan() 79 return(pos); in hashscan() [all …]
|
/titanic_51/usr/src/contrib/ast/src/lib/libast/hash/ |
H A D | hashscan.c | 35 * Hash_position_t* pos; 37 * pos = hashscan(tab, flags); 38 * while (b = hashnext(&pos)) ...; 39 * hashdone(pos); 43 * return pos for scan on table 49 register Hash_position_t* pos; in hashscan() local 53 if (!(pos = newof(0, Hash_position_t, 1, 0))) return(0); in hashscan() 54 pos->tab = tab->root->last.table = tab; in hashscan() 55 pos->bucket = ∅ in hashscan() 56 pos in hashscan() 87 hashnext(register Hash_position_t * pos) hashnext() argument 131 hashdone(register Hash_position_t * pos) hashdone() argument [all...] |
/titanic_51/usr/src/cmd/stat/common/ |
H A D | acquire_iodevs.c | 59 struct iodev_snapshot *pos; in find_iodev_by_name() local 62 for (pos = list; pos; pos = pos->is_next) { in find_iodev_by_name() 63 if (strcmp(pos->is_name, name) == 0) in find_iodev_by_name() 64 return (pos); in find_iodev_by_name() 66 pos2 = find_iodev_by_name(pos->is_children, name); in find_iodev_by_name() 101 struct iodev_snapshot *pos; in find_parent() local 112 for (pos in find_parent() 199 ix_insert_here(struct iodev_snapshot * pos,struct iodev_snapshot * elem,int ba) ix_insert_here() argument 211 list_del(struct iodev_snapshot ** list,struct iodev_snapshot * pos) list_del() argument 225 insert_before(struct iodev_snapshot ** list,struct iodev_snapshot * pos,struct iodev_snapshot * new) insert_before() argument 247 insert_after(struct iodev_snapshot ** list,struct iodev_snapshot * pos,struct iodev_snapshot * new) insert_after() argument 404 struct iodev_snapshot *pos, *ppos, *tmp, *ptmp; choose_iodevs() local 503 struct iodev_snapshot *pos; acquire_iodev_stats() local 880 struct iodev_snapshot *pos, *entry, *parent; create_li_delete_lti() local 944 struct iodev_snapshot *entry, *parent, *pos; create_lt() local 1012 struct iodev_snapshot *pos; acquire_iodevs() local [all...] |
/titanic_51/usr/src/uts/common/ipp/ipgpc/ |
H A D | trie.h | 48 #define COMPUTE_BIT_POS(len, pos) \ argument 49 (((len - pos - 1) & 0xf8) | (pos & 0x7)) 53 * extracts a single bit at position pos from a given value, val, for an 56 #define EXTRACTBIT_CMN(val, pos) ((val >> pos) & 1) argument 58 #define EXTRACTBIT(val, pos, len) (EXTRACTBIT_CMN(val, pos)) argument 60 #define EXTRACTBIT(val, pos, len) \ 61 (EXTRACTBIT_CMN(val, (COMPUTE_BIT_POS(len, pos)))) 65 SETBIT_CMN(num,pos,val) global() argument 67 SETBIT(num,pos,val,len) global() argument 74 UNSETBIT_CMN(num,pos) global() argument 76 UNSETBIT(num,pos,len) global() argument [all...] |
H A D | trie.c | 63 buf->pos = 0; in create_node() 73 * t_split(c_node, pos, key_len) 96 * * * bits = 4 pos = 5 val = 1011 mask = 00111100 102 * * bits = 1 pos = 5 val = 1 mask = 00100000 104 * bits = 2 pos = 3 val=11* * (to be inserted: (bits = 2 pos = 3 val = 00 115 * * * bits = 4 pos = 5 val = 1011 mask = 00111100 117 * * * (to be inserted: bits = 1 pos = 0 val = 1 mask = 00000001) 121 t_split(node_t **c_node, uint8_t pos, uint8_t key_len) in t_split() argument 130 if (pos in t_split() 220 uint8_t pos; t_insert() local 334 uint8_t pos; t_insert6() local 399 t_traverse_delete(node_t ** in_node,uint8_t pos,key_t id,uint32_t key,uint32_t mask,trie_id_t ** tid) t_traverse_delete() argument 631 uint8_t pos; t_remove6() local 705 uint8_t pos; t_retrieve() local 782 uint8_t pos; t_retrieve6() local [all...] |
/titanic_51/usr/src/cmd/ipf/tools/ |
H A D | lex_var.h | 5 extern long pos; 8 if (pos >= string_start && pos <= string_end) { \ 9 buf[0] = string_val[pos - string_start]; \ 10 pos++; \ 23 pos++; \ 31 # define input() (((pos >= string_start) && (pos < string_end)) ? \ 32 yysptr = yysbuf, string_val[pos++ - string_start] : \ 34 getc(yyin)) == 10 ? (pos [all...] |
/titanic_51/usr/src/boot/sys/boot/common/linenoise/ |
H A D | linenoise.c | 129 size_t pos; /* Current cursor position. */ member 235 ls->len = ls->pos = strlen(lc.cvec[i]); in completeLine() 239 ls->pos = saved.pos; in completeLine() 265 ls->len = ls->pos = nwritten; in completeLine() 342 size_t pos = l->pos; in refreshSingleLine() local 345 while((plen+pos) >= l->cols) { in refreshSingleLine() 348 pos--; in refreshSingleLine() 365 snprintf(seq,64,"\r\x1b[%dC", (int)(pos in refreshSingleLine() [all...] |
/titanic_51/usr/src/cmd/cmd-inet/usr.lib/wpad/ |
H A D | wpa.c | 149 int pos = len - 1; in inc_byte_array() local 150 while (pos >= 0) { in inc_byte_array() 151 counter[pos]++; in inc_byte_array() 152 if (counter[pos] != 0) in inc_byte_array() 154 pos--; in inc_byte_array() 293 char *pos = buf; in pmksa_cache_list() local 298 pos += snprintf(pos, buf + len - pos, in pmksa_cache_list() 304 pos in pmksa_cache_list() 336 uint8_t *pos; wpa_parse_wpa_ie_wpa() local 446 uint8_t *pos; wpa_parse_wpa_ie_rsn() local 565 uint8_t *pos; wpa_gen_wpa_ie_wpa() local 630 uint8_t *pos; wpa_gen_wpa_ie_rsn() local 897 uint8_t *pos = (uint8_t *)(key + 1); wpa_supplicant_process_1_of_4() local 1123 uint8_t *pos = (uint8_t *)(key + 1); wpa_supplicant_process_3_of_4() local 1319 uint8_t *pos = (uint8_t *)(key + 1); wpa_supplicant_process_1_of_2() local [all...] |
/titanic_51/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_display.c | 241 int pos; char val; in showxdr_char() local 243 pos = getxdr_pos(); in showxdr_char() 245 (void) sprintf(get_line(pos, getxdr_pos()), fmt, val); in showxdr_char() 263 int pos; in showxdr_u_char() local 266 pos = getxdr_pos(); in showxdr_u_char() 268 (void) sprintf(get_line(pos, getxdr_pos()), fmt, val); in showxdr_u_char() 286 int pos; short val; in showxdr_short() local 288 pos = getxdr_pos(); in showxdr_short() 290 (void) sprintf(get_line(pos, getxdr_pos()), fmt, val); in showxdr_short() 308 int pos; in showxdr_u_short() local 331 int pos; long val; showxdr_long() local 353 int pos; showxdr_u_long() local 376 int pos; longlong_t val; showxdr_longlong() local 398 int pos; u_longlong_t val; showxdr_u_longlong() local 420 int pos; bool_t val; showxdr_bool() local 454 int pos; showxdr_string() local 506 int pos; showxdr_context() local 533 uint_t pos; xdr_skip() local 552 setxdr_pos(int pos) setxdr_pos() argument 600 int pos; showxdr_date() local 658 int pos; showxdr_date_ns() local 693 int pos; showxdr_time() local 744 int pos; showxdr_hex() local [all...] |
H A D | snoop_rpcsec.c | 90 int pos; in print_rpcsec_gss_cred() local 92 pos = getxdr_pos(); in print_rpcsec_gss_cred() 106 (void) sprintf(get_line(pos, getxdr_pos()), in print_rpcsec_gss_cred() 109 (void) sprintf(get_line(pos, getxdr_pos()), in print_rpcsec_gss_cred() 114 (void) sprintf(get_line(pos, getxdr_pos()), in print_rpcsec_gss_cred() 117 (void) sprintf(get_line(pos, getxdr_pos()), in print_rpcsec_gss_cred() 120 pos = getxdr_pos(); in print_rpcsec_gss_cred() 123 line = get_line(pos, getxdr_pos()); in print_rpcsec_gss_cred() 332 int pos = 0; in print_rpc_gss_init_arg() local 346 (void) sprintf(get_line(pos, getxdr_po in print_rpc_gss_init_arg() 370 int pos = 0; print_rpc_gss_init_res() local [all...] |
/titanic_51/usr/src/lib/libresolv2/common/irs/ |
H A D | lcl_ng.c | 277 char *pos, *gpos; in parse_netgrp() local 297 pos = lp->l_line; in parse_netgrp() 298 while (*pos != '\0') { in parse_netgrp() 299 if (*pos == '(') { in parse_netgrp() 308 pos++; in parse_netgrp() 309 gpos = strsep(&pos, ")"); in parse_netgrp() 334 spos = strsep(&pos, ", \t"); in parse_netgrp() 340 if (pos == NULL) in parse_netgrp() 342 while (*pos == ' ' || *pos in parse_netgrp() 359 char *pos, *spos, *linep = NULL, *olinep; read_for_group() local [all...] |
/titanic_51/usr/src/uts/common/io/mr_sas/ |
H A D | mr_sas_list.h | 87 * @pos: the &struct mlist_head to use as a loop counter. 90 #define mlist_for_each(pos, head) \ argument 91 for (pos = (head)->next, prefetch(pos->next); pos != (head); \ 92 pos = pos->next, prefetch(pos->next)) 97 * @pos: the &struct mlist_head to use as a loop counter. 101 #define mlist_for_each_safe(pos, argument [all...] |
/titanic_51/usr/src/cmd/audio/utilities/ |
H A D | AudioList.cc | 88 Double pos) // split offset in split() argument 95 e1 = new AudioExtent(aptr, 0., pos); in split() 96 e2 = new AudioExtent(aptr, pos, AUDIO_UNKNOWN_TIME); in split() 133 Double& pos, // target position (updated) in getposition() argument 139 if (Undefined(pos)) in getposition() 152 if (length > pos) in getposition() 156 pos -= length; in getposition() 199 Double pos) // position in GetHeader() argument 204 if (!getposition(pos, ep)) { in GetHeader() 207 if (pos ! in GetHeader() 231 ReadData(void * buf,size_t & len,Double & pos) ReadData() argument 295 Double pos; // insertion offset, in seconds Insert() local 304 Insert(Audio * obj,Double pos) Insert() argument [all...] |
/titanic_51/usr/src/cmd/idmap/idmap/ |
H A D | idmap.c | 211 cmd_pos_t *pos[1]; member 236 static int do_show_mapping(flag_t *f, int argc, char **argv, cmd_pos_t *pos); 237 static int do_dump(flag_t *f, int argc, char **argv, cmd_pos_t *pos); 238 static int do_import(flag_t *f, int argc, char **argv, cmd_pos_t *pos); 240 cmd_pos_t *pos); 242 cmd_pos_t *pos); 244 cmd_pos_t *pos); 245 static int do_flush(flag_t *f, int argc, char **argv, cmd_pos_t *pos); 246 static int do_exit(flag_t *f, int argc, char **argv, cmd_pos_t *pos); 247 static int do_export(flag_t *f, int argc, char **argv, cmd_pos_t *pos); 328 print_error(cmd_pos_t * pos,const char * format,...) print_error() argument 394 positions_add(cmd_pos_t * pos) positions_add() argument 468 do_help(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_help() argument 509 fini_udt_command(int ok,cmd_pos_t * pos) fini_udt_command() argument 622 init_nm_command(char * user,char * passwd,char * auth,char * windomain,int direction,cmd_pos_t * pos) init_nm_command() argument 1540 do_dump(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_dump() argument 1615 pid_convert(char * string,uid_t * number,int type,cmd_pos_t * pos) pid_convert() argument 1660 sid_convert(char * from,char ** prefix,idmap_rid_t * rid,cmd_pos_t * pos) sid_convert() argument 1819 ucp_qm_interior(char ** line,cmd_pos_t * pos) ucp_qm_interior() argument 1841 ucp_grab_token(char ** line,cmd_pos_t * pos,const char * terminators) ucp_grab_token() argument 1863 ucp_line2nm(char * line,cmd_pos_t * pos,name_mapping_t * nm) ucp_line2nm() argument 1998 sup_line2nm(char * line,cmd_pos_t * pos,name_mapping_t * nm) sup_line2nm() argument 2044 line2nm(char * line,cmd_pos_t * pos,name_mapping_t * nm,format_t f) line2nm() argument 2091 flush_nm(boolean_t is_user,cmd_pos_t * pos) flush_nm() argument 2113 do_import(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_import() argument 2282 do_export(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_export() argument 2315 do_list_name_mappings(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_list_name_mappings() argument 2342 string2type(char * str,cmd_pos_t * pos) string2type() argument 2373 get_identity(char * arg,char ** name,cmd_pos_t * pos) get_identity() argument 2405 name2parts(char * name,name_mapping_t * nm,cmd_pos_t * pos) name2parts() argument 2507 args2nm(int * is_first_win,int argc,char ** argv,cmd_pos_t * pos) args2nm() argument 2566 do_add_name_mapping(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_add_name_mapping() argument 2644 do_remove_name_mapping(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_remove_name_mapping() argument 2753 do_flush(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_flush() argument 2785 do_exit(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_exit() argument 2794 debug_print_params(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) debug_print_params() argument 2853 do_show_mapping(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_show_mapping() argument 3122 flags2cred(flag_t * f,char ** user,char ** passwd,cmd_pos_t * pos) flags2cred() argument 3214 do_set_namemap(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_set_namemap() argument 3271 do_unset_namemap(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_unset_namemap() argument 3356 do_get_namemap(flag_t * f,int argc,char ** argv,cmd_pos_t * pos) do_get_namemap() argument [all...] |
/titanic_51/usr/src/lib/libtnfprobe/ |
H A D | tnf_buf.c | 310 static void release_block_from_pos(TNFW_B_POS * pos) in release_block_from_pos() argument 312 if (pos->tnfw_w_block == NULL) in release_block_from_pos() 314 if (pos->tnfw_w_uncommitted != NULL) in release_block_from_pos() 316 tnfw_b_clear_lock(&pos->tnfw_w_block->A_lock); in release_block_from_pos() 317 pos->tnfw_w_block = NULL; in release_block_from_pos() 439 TNFW_B_POS *pos; in tnfw_b_alloc() local 468 pos = (istag) ? &wcb->tnfw_w_tag_pos : &wcb->tnfw_w_pos; in tnfw_b_alloc() 469 block = pos->tnfw_w_block; in tnfw_b_alloc() 476 offset = pos->tnfw_w_write_off; in tnfw_b_alloc() 501 wcb, new_block, block, pos in tnfw_b_alloc() 558 TNFW_B_POS *pos; tnfw_b_xcommit() local 627 TNFW_B_POS *pos = &wcb->tnfw_w_pos; tnfw_b_xabort() local [all...] |
/titanic_51/usr/src/uts/common/io/mega_sas/ |
H A D | list.h | 213 * @pos: the &struct mlist_head to use as a loop counter. 216 #define mlist_for_each(pos, head) \ argument 217 for (pos = (head)->next, prefetch(pos->next); pos != (head); \ 218 pos = pos->next, prefetch(pos->next)) 223 * @pos: the &struct mlist_head to use as a loop counter. 227 #define mlist_for_each_safe(pos, argument [all...] |
/titanic_51/usr/src/cmd/ipf/lib/common/ |
H A D | kmem.c | 102 int kvm_read(kvm, pos, buffer, size) in kvm_read() argument 104 u_long pos; 111 if (lseek(*kvm, pos, 0) == -1) { 148 int kmemcpy(buf, pos, n) in kmemcpy() argument 150 long pos; 162 while ((r = kvm_read(kvm_f, pos, buf, n)) < n) 165 fprintf(stderr, "pos=0x%lx ", (u_long)pos); 172 pos += r; 178 int kstrncpy(buf, pos, argument [all...] |
/titanic_51/usr/src/lib/libast/common/stdio/ |
H A D | fsetpos.c | 31 fsetpos(Sfio_t* f, const fpos_t* pos) in fsetpos() argument 33 STDIO_INT(f, "fsetpos", int, (Sfio_t*, const fpos_t*), (f, pos)) in fsetpos() 35 return sfseek(f, (Sfoff_t)pos->_sf_offset, SF_PUBLIC) == (Sfoff_t)pos->_sf_offset ? 0 : -1; in fsetpos() 41 fsetpos64(Sfio_t* f, const fpos64_t* pos) in fsetpos64() argument 43 STDIO_INT(f, "fsetpos64", int, (Sfio_t*, const fpos64_t*), (f, pos)) in fsetpos64() 45 return sfseek(f, (Sfoff_t)pos->_sf_offset, SF_PUBLIC) == (Sfoff_t)pos->_sf_offset ? 0 : -1; in fsetpos64()
|
/titanic_51/usr/src/contrib/ast/src/lib/libast/stdio/ |
H A D | fsetpos.c | 31 fsetpos(Sfio_t* f, const fpos_t* pos) in fsetpos() argument 33 STDIO_INT(f, "fsetpos", int, (Sfio_t*, const fpos_t*), (f, pos)) in fsetpos() 35 return sfseek(f, (Sfoff_t)pos->_sf_offset, SF_PUBLIC) == (Sfoff_t)pos->_sf_offset ? 0 : -1; in fsetpos() 41 fsetpos64(Sfio_t* f, const fpos64_t* pos) in fsetpos64() argument 43 STDIO_INT(f, "fsetpos64", int, (Sfio_t*, const fpos64_t*), (f, pos)) in fsetpos64() 45 return sfseek(f, (Sfoff_t)pos->_sf_offset, SF_PUBLIC) == (Sfoff_t)pos->_sf_offset ? 0 : -1; in fsetpos64()
|