Searched refs:stp (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/sgs/tools/common/
H A Dstring_table.c161 Str_tbl *stp; local
163 if ((stp = calloc(sizeof (Str_tbl), 1)) == NULL)
169 stp->st_strsize = stp->st_fullstrsize = stp->st_nextoff = 1;
174 stp->st_flags = flags;
175 if ((stp->st_flags & FLG_STTAB_COMPRESS) == 0)
176 return (stp);
178 if ((stp->st_lentree = calloc(sizeof (avl_tree_t), 1)) == NULL)
181 avl_create(stp
198 st_insert(Str_tbl *stp, const char *str) argument
263 st_delstring(Str_tbl *stp, const char *str) argument
307 st_destroy(Str_tbl *stp) argument
350 st_setstring(Str_tbl *stp, const char *str, size_t *stoff) argument
447 st_hash_insert(Str_tbl *stp, const char *str, size_t len) argument
553 st_getstrtab_sz(Str_tbl *stp) argument
654 st_getstrbuf(Str_tbl *stp) argument
660 st_setstrbuf(Str_tbl *stp, char *stbuf, size_t bufsize) argument
[all...]
H A Dsgsmsg.c109 static Str_tbl *stp; /* string table */ variable
156 if ((stp == 0) && ((stp = st_new(FLG_STNEW_COMPRESS)) == NULL)) {
171 if (st_insert(stp, msg->ms_message) == -1) {
318 dump_stringtab(Str_tbl *stp) argument
322 if ((stp->st_flags & FLG_STTAB_COMPRESS) == 0) {
324 stp->st_fullstrsize);
329 stp->st_fullstrsize, stp->st_strsize);
331 stp
[all...]
/freebsd-10.0-release/contrib/telnet/libtelnet/
H A Denc_des.c496 fb64_stream_iv(Block seed, struct stinfo *stp) argument
499 memmove((void *)stp->str_iv, (void *)seed, sizeof(Block));
500 memmove((void *)stp->str_output, (void *)seed, sizeof(Block));
502 des_key_sched((Block *)stp->str_ikey, stp->str_sched);
504 stp->str_index = sizeof(Block);
508 fb64_stream_key(Block key, struct stinfo *stp) argument
510 memmove((void *)stp->str_ikey, (void *)key, sizeof(Block));
511 des_key_sched((Block *)key, stp->str_sched);
513 memmove((void *)stp
543 struct stinfo *stp = &fb[CFB].streams[DIR_ENCRYPT-1]; local
566 struct stinfo *stp = &fb[CFB].streams[DIR_DECRYPT-1]; local
616 struct stinfo *stp = &fb[OFB].streams[DIR_ENCRYPT-1]; local
636 struct stinfo *stp = &fb[OFB].streams[DIR_DECRYPT-1]; local
[all...]
/freebsd-10.0-release/crypto/heimdal/appl/telnet/libtelnet/
H A Denc_des.c497 void fb64_stream_iv(DES_cblock seed, struct stinfo *stp) argument
500 memcpy(stp->str_iv, seed,sizeof(DES_cblock));
501 memcpy(stp->str_output, seed, sizeof(DES_cblock));
503 DES_set_key_checked(&stp->str_ikey, &stp->str_sched);
505 stp->str_index = sizeof(DES_cblock);
508 void fb64_stream_key(DES_cblock key, struct stinfo *stp) argument
510 memcpy(stp->str_ikey, key, sizeof(DES_cblock));
511 DES_set_key_checked((DES_cblock*)key, &stp->str_sched);
513 memcpy(stp
542 struct stinfo *stp = &fb[CFB].streams[DIR_ENCRYPT-1]; local
564 struct stinfo *stp = &fb[CFB].streams[DIR_DECRYPT-1]; local
614 struct stinfo *stp = &fb[OFB].streams[DIR_ENCRYPT-1]; local
633 struct stinfo *stp = &fb[OFB].streams[DIR_DECRYPT-1]; local
[all...]
/freebsd-10.0-release/sys/dev/isci/scil/
H A Dscif_sas_stp_io_request.c109 if (fw_io->parent.stp.sequence.protocol == SAT_PROTOCOL_FPDMA)
114 fw_io->parent.stp.ncq_tag = scif_sas_stp_remote_device_allocate_ncq_tag(
118 if (fw_io->parent.stp.ncq_tag == SCIF_SAS_INVALID_NCQ_TAG)
124 fis->sector_count = (fw_io->parent.stp.ncq_tag << 3);
129 fw_io->parent.core_object, fw_io->parent.stp.ncq_tag
165 if (fw_io->parent.stp.sequence.protocol == SAT_PROTOCOL_FPDMA)
168 if (fw_io->parent.stp.ncq_tag != SCIF_SAS_INVALID_NCQ_TAG)
170 fw_io->parent.device, fw_io->parent.stp.ncq_tag
174 sati_sequence_terminate(&fw_io->parent.stp.sequence, fw_io, fw_io);
207 if (fw_io->parent.stp
[all...]
H A Dscu_remote_node_context.h234 STP_REMOTE_NODE_CONTEXT_T stp; member in union:SCU_REMOTE_NODE_CONTEXT
H A Dscif_sas_stp_remote_device.c206 (pending_request->stp.sequence.protocol == SAT_PROTOCOL_FPDMA) &&
207 (pending_request->stp.ncq_tag == ncq_tag)
H A Dscif_sas_stp_task_request.c102 &fw_task->parent.stp.sequence,
127 else //A stp task request sometimes fails.
169 &fw_task->parent.stp.sequence,
198 * @brief This method provides handling for failed stp TASK MANAGEMENT
H A Dscif_sas_request.h190 SCIF_SAS_STP_REQUEST_T stp; member in struct:SCIF_SAS_REQUEST
H A Dscif_sas_io_request.c155 sati_sequence_construct(&fw_io->parent.stp.sequence);
205 sati_get_number_data_bytes_set(&(fw_request->parent.stp.sequence));
212 U8 sat_protocol = fw_request->parent.stp.sequence.protocol;
582 SATI_TRANSLATOR_SEQUENCE_T * sati_sequence = &fw_request->stp.sequence;
604 SATI_TRANSLATOR_SEQUENCE_T * sati_sequence = &fw_request->stp.sequence;
671 && fw_request->stp.sequence.state == SATI_SEQUENCE_STATE_INCOMPLETE)
/freebsd-10.0-release/sys/fs/nfsserver/
H A Dnfs_nfsdstate.c66 static void nfsrv_freeopenowner(struct nfsstate *stp, int cansleep,
68 static int nfsrv_freeopen(struct nfsstate *stp, vnode_t vp, int cansleep,
70 static void nfsrv_freelockowner(struct nfsstate *stp, vnode_t vp, int cansleep,
72 static void nfsrv_freeallnfslocks(struct nfsstate *stp, vnode_t vp,
86 struct nfslock *insert_lop, struct nfsstate *stp, struct nfslockfile *lfp);
87 static void nfsrv_updatelock(struct nfsstate *stp, struct nfslock **new_lopp,
102 static int nfsrv_delegconflict(struct nfsstate *stp, int *haslockp,
109 static void nfsrv_delaydelegtimeout(struct nfsstate *stp);
111 struct nfsstate *stp, struct nfsrvcache *op);
112 static int nfsrv_nootherstate(struct nfsstate *stp);
139 struct nfsstate *stp, *tstp; local
413 struct nfsstate *stp; local
660 struct nfsstate *stp, *openstp, *lckownstp; local
716 struct nfsstate *stp; local
861 struct nfsstate *stp, *nstp; local
985 struct nfsstate *stp, *nstp; local
1031 struct nfsstate *stp, *nstp; local
1043 nfsrv_freedeleg(struct nfsstate *stp) argument
1067 nfsrv_freeopenowner(struct nfsstate *stp, int cansleep, NFSPROC_T *p) argument
1095 nfsrv_freeopen(struct nfsstate *stp, vnode_t vp, int cansleep, NFSPROC_T *p) argument
1143 nfsrv_freelockowner(struct nfsstate *stp, vnode_t vp, int cansleep, NFSPROC_T *p) argument
1161 nfsrv_freeallnfslocks(struct nfsstate *stp, vnode_t vp, int cansleep, NFSPROC_T *p) argument
1250 struct nfsstate *stp; local
1283 struct nfsstate *stp; local
1320 struct nfsstate *stp, *lckstp = NULL; local
1956 struct nfsstate *stp, *nstp; local
2207 struct nfsstate *stp, *nstp; local
2865 struct nfsstate *stp, *ownerstp; local
3007 struct nfsstate *stp; local
3088 struct nfsstate *stp, *nstp, *openstp, *ownstp; local
3232 nfsrv_insertlock(struct nfslock *new_lop, struct nfslock *insert_lop, struct nfsstate *stp, struct nfslockfile *lfp) argument
3283 nfsrv_updatelock(struct nfsstate *stp, struct nfslock **new_lopp, struct nfslock **other_lopp, struct nfslockfile *lfp) argument
3418 nfsrv_checkseqid(struct nfsrv_descript *nd, u_int32_t seqid, struct nfsstate *stp, struct nfsrvcache *op) argument
3863 struct nfsstate *stp; local
4337 nfsrv_delegconflict(struct nfsstate *stp, int *haslockp, NFSPROC_T *p, vnode_t vp) argument
4517 struct nfsstate *stp; local
4599 struct nfsstate *stp, *nstp; local
4729 struct nfsstate st, *stp = &st; local
4776 struct nfsstate *stp; local
4880 struct nfsstate *stp, *nstp; local
4954 nfsrv_delaydelegtimeout(struct nfsstate *stp) argument
4974 nfsrv_nootherstate(struct nfsstate *stp) argument
[all...]
H A Dnfs_nfsdserv.c632 struct nfsstate st, *stp = &st; local
661 stp->ls_flags = (NFSLCK_CHECK | NFSLCK_READACCESS);
663 stp->ls_ownerlen = 0;
664 stp->ls_op = NULL;
665 stp->ls_uid = nd->nd_cred->cr_uid;
666 stp->ls_stateid.seqid = fxdr_unsigned(u_int32_t, *tl++);
667 clientid.lval[0] = stp->ls_stateid.other[0] = *tl++;
668 clientid.lval[1] = stp->ls_stateid.other[1] = *tl++;
676 stp->ls_stateid.other[2] = *tl++;
709 nd->nd_repstat = nfsrv_lockctrl(vp, &stp,
791 struct nfsstate st, *stp = &st; local
2161 struct nfsstate *stp = NULL; local
2337 struct nfsstate *stp = NULL; local
2447 struct nfsstate *stp; local
2542 struct nfsstate *stp = NULL; local
2902 struct nfsstate st, *stp = &st; local
3029 struct nfsstate st, *stp = &st; local
3074 struct nfsstate st, *stp = &st; local
3491 struct nfsstate *stp = NULL; local
[all...]
/freebsd-10.0-release/contrib/ipfilter/
H A Dradix_ipf.c1040 myst_t *stp; local
1042 stp = (myst_t *)node;
1043 rv = ipf_rx_delete(head, &stp->dst, &stp->mask);
1144 myst_t *stp = (myst_t *)node; local
1150 addrname(&stp->dst), node[0].maskbitcount);
1151 if (stp->printed == -1)
1152 printf("!!! %d\n", stp->printed);
1154 stp->printed = 1;
1159 printnode(stp)
1313 myst_t *stp; local
1335 myst_t *stp; local
1373 myst_t *stp; local
1414 myst_t *stp; local
[all...]
/freebsd-10.0-release/sys/contrib/ipfilter/netinet/
H A Dradix_ipf.c1040 myst_t *stp; local
1042 stp = (myst_t *)node;
1043 rv = ipf_rx_delete(head, &stp->dst, &stp->mask);
1144 myst_t *stp = (myst_t *)node; local
1150 addrname(&stp->dst), node[0].maskbitcount);
1151 if (stp->printed == -1)
1152 printf("!!! %d\n", stp->printed);
1154 stp->printed = 1;
1159 printnode(stp)
1313 myst_t *stp; local
1335 myst_t *stp; local
1373 myst_t *stp; local
1414 myst_t *stp; local
[all...]
/freebsd-10.0-release/sys/kern/
H A Dsys_generic.c1212 struct seltd *stp; local
1221 stp = td->td_sel;
1223 STAILQ_FOREACH_SAFE(sfp, &stp->st_selq, sf_link, sfn) {
1226 selfdfree(stp, sfp);
1240 stp->st_flags = 0;
1369 struct seltd *stp; local
1383 stp = td->td_sel;
1385 STAILQ_FOREACH_SAFE(sfp, &stp->st_selq, sf_link, sfn) {
1388 selfdfree(stp, sfp);
1415 stp
1586 struct seltd *stp; local
1600 selfdfree(struct seltd *stp, struct selfd *sfp) argument
1636 struct seltd *stp; local
1706 struct seltd *stp; local
1734 struct seltd *stp; local
1749 struct seltd *stp; local
1781 struct seltd *stp; local
1801 struct seltd *stp; local
[all...]
H A Dsubr_disk.c169 bioq_flush(struct bio_queue_head *head, struct devstat *stp, int error) argument
174 biofinish(bp, stp, error);
/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_program.c67 dt_stmt_t *stp, *next; local
70 for (stp = dt_list_next(&pgp->dp_stmts); stp != NULL; stp = next) {
71 next = dt_list_next(stp);
72 dtrace_stmt_destroy(dtp, stp->ds_desc);
73 dt_free(dtp, stp);
89 dt_stmt_t *stp; local
106 for (stp = dt_list_next(&pgp->dp_stmts); stp; st
283 dt_stmt_t *stp = dt_alloc(dtp, sizeof (dt_stmt_t)); local
298 dt_stmt_t *stp, *next; local
[all...]
H A Ddt_dof.c630 const dt_stmt_t *stp; local
663 for (last = NULL, stp = dt_list_next(&pgp->dp_stmts);
664 stp != NULL; stp = dt_list_next(stp), last = edp) {
666 dtrace_stmtdesc_t *sdp = stp->ds_desc;
707 for (last = NULL, stp = dt_list_next(&pgp->dp_stmts);
708 stp != NULL; stp = dt_list_next(stp), las
[all...]
H A Ddt_handle.c55 dt_stmt_t *stp; local
76 stp = dt_list_next(&pgp->dp_stmts);
77 assert(stp != NULL);
79 edp = stp->ds_desc->dtsd_ecbdesc;
/freebsd-10.0-release/sys/geom/sched/
H A Dsubr_disk.c128 gs_bioq_flush(struct bio_queue_head *head, struct devstat *stp, int error) argument
133 biofinish(bp, stp, error);
/freebsd-10.0-release/sys/sparc64/include/
H A Dtsb.h86 void tsb_tte_remove(struct tte *stp);
/freebsd-10.0-release/contrib/gdb/gdb/
H A Drs6000-nat.c1152 struct section_table *stp;
1155 stp = target->to_sections_end - 2;
1157 stp->bfd = vp->bfd;
1158 stp->the_bfd_section = bfd_get_section_by_name (stp->bfd, ".text");
1159 stp->addr = vp->tstart;
1160 stp->endaddr = vp->tend;
1161 stp++;
1163 stp->bfd = vp->bfd;
1164 stp
1146 struct section_table *stp; local
[all...]
/freebsd-10.0-release/contrib/nvi/regex/
H A Dengine.c315 register const RCHAR_T *stp; /* string matched by it cannot pass here */ local
365 stp = stop;
368 rest = slow(m, sp, stp, ss, es);
375 stp = rest - 1;
376 assert(stp >= sp); /* it did work */
389 stp = stop;
392 rest = slow(m, sp, stp, ss, es);
399 stp = rest - 1;
400 assert(stp >= sp); /* it did work */
425 stp
[all...]
/freebsd-10.0-release/lib/libc/regex/
H A Dengine.c380 const char *stp; /* string matched by it cannot pass here */ local
430 stp = stop;
433 rest = slow(m, sp, stp, ss, es);
440 stp = rest - 1;
441 assert(stp >= sp); /* it did work */
454 stp = stop;
457 rest = slow(m, sp, stp, ss, es);
464 stp = rest - 1;
465 assert(stp >= sp); /* it did work */
490 stp
[all...]
/freebsd-10.0-release/contrib/ipfilter/tools/
H A Dipfstat.c2213 static int state_matcharray(stp, array)
2214 ipstate_t *stp;
2236 if ((p != 0) && (p != stp->is_p))
2243 rv |= (stp->is_p == e->ipfe_arg0[i]);
2248 if (stp->is_v != 4)
2251 rv |= ((stp->is_saddr &
2258 if (stp->is_v != 4)
2261 rv |= ((stp->is_daddr &
2268 if (stp->is_v != 4)
2271 rv |= ((stp
[all...]

Completed in 217 milliseconds

123