Searched refs:qp (Results 1 - 25 of 49) sorted by relevance

12

/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dcomp_parse.c184 ENTRY *qp, *rp, *lastread = 0; local
195 for_entry_list(qp) {
199 if (qp > rp
200 && _nc_entry_match(qp->tterm.term_names, rp->tterm.term_names)) {
204 _nc_first_name(qp->tterm.term_names));
224 for_entry_list(qp) {
226 for (i = 0; i < qp->nuses; i++) {
228 char *child = _nc_first_name(qp->tterm.term_names);
229 char *lookfor = qp->uses[i].name;
230 long lookline = qp
[all...]
/macosx-10.10/BerkeleyDB-21/db/qam/
H A Dqam_verify.c33 QUEUE *qp; local
43 qp = (QUEUE *)dbp->q_internal;
87 qp->re_pad = (int)meta->re_pad;
88 qp->re_len = vdp->re_len = meta->re_len;
89 qp->rec_page = vdp->rec_page = meta->rec_page;
90 qp->page_ext = vdp->page_ext = meta->page_ext;
100 * rather than a per-page check, but since we're setting qp fields
101 * here (and have only one qp to set) we raise the alarm now if
102 * this assumption fails. (We need the qp info to be reasonable
113 qp
196 QAMDATA *qp; local
306 QUEUE *qp; local
482 QAMDATA *qp, *qep; local
[all...]
H A Dqam_files.c44 QUEUE *qp; local
52 qp = (QUEUE *)dbp->q_internal;
55 if (qp->page_ext == 0) {
84 array = &qp->array1;
102 if (qp->array2.n_extent != 0 &&
103 (extid >= qp->array2.low_extent ?
104 offset > extid - qp->array2.low_extent :
105 offset > qp->array2.low_extent - extid)) {
106 array = &qp->array2;
161 / (qp
351 QUEUE *qp; local
400 QUEUE *qp; local
502 QUEUE *qp; local
605 QUEUE *qp; local
712 QUEUE *qp; local
[all...]
H A Dqam_rec.c322 QAMDATA *qp; local
373 qp = QAM_GET_RECORD(file_dbp, pagep, argp->indx);
374 F_SET(qp, QAM_VALID);
388 qp = QAM_GET_RECORD(file_dbp, pagep, argp->indx);
389 F_CLR(qp, QAM_VALID);
432 QAMDATA *qp; local
505 qp = QAM_GET_RECORD(file_dbp, pagep, argp->indx);
506 F_CLR(qp, QAM_VALID);
548 QAMDATA *qp; local
626 qp
[all...]
H A Dqam_stat.c36 QAMDATA *qp, *ep; local
118 for (indx = 0, qp = QAM_GET_RECORD(dbp, h, indx);
119 qp <= ep;
120 ++indx, qp = QAM_GET_RECORD(dbp, h, indx)) {
121 if (F_ISSET(qp, QAM_VALID))
H A Dqam.c47 QAMDATA *qp; local
90 qp = QAM_GET_RECORD(dbp, cp->page, cp->indx);
91 *exactp = F_ISSET(qp, QAM_VALID) ? 1 : 0;
118 QAMDATA *qp; local
130 qp = QAM_GET_RECORD(dbp, pagep, indx);
132 p = qp->data;
160 if (DBC_LOGGING(dbc) || !F_ISSET(qp, QAM_VALID)) {
175 if (F_ISSET(qp, QAM_VALID))
191 if (F_ISSET(qp, QAM_SET)) {
192 olddata.data = qp
394 QUEUE *qp; local
537 QAMDATA *qp; local
669 QAMDATA *qp; local
1413 QAMDATA *qp; local
[all...]
H A Dqam_method.c305 QUEUE *qp; local
338 qp = (QUEUE *)tmpdbp->q_internal;
339 if (qp->page_ext != 0)
/macosx-10.10/IONetworkingFamily-101/
H A DIOMbufQueue.h109 void IOMbufQueuePrepend( IOMbufQueue * q, IOMbufQueue * qp )
111 if (qp->count)
113 mbuf_setnextpkt(qp->tail , q->head);
115 q->tail = qp->tail;
116 q->head = qp->head;
117 q->count += qp->count;
119 qp->head = qp->tail = 0;
120 qp->count = 0;
/macosx-10.10/postfix-255/postfix/src/showq/
H A Dshowq.c327 struct queue_info *qp; local
350 for (qp = queue_info; qp->name != 0; qp++) {
351 SCAN_DIR *scan = scan_dir_open(qp->name);
354 while ((id = qp->scan_next(scan)) != 0) {
363 msg_warn("readdir loop on queue %s id %s", qp->name, id);
369 status = mail_open_ok(qp->name, id, &st, &path);
378 if ((qfile = mail_queue_open(qp->name, id, O_RDONLY, 0)) != 0) {
380 showq_report(client, qp
[all...]
/macosx-10.10/ncurses-44/ncurses/progs/
H A Dinfocmp.c794 ENTRY *qp, *rp; local
818 for_entry_list(qp) {
819 if (qp->nuses) {
820 (void) fputs(qp->tterm.term_names, stderr);
836 for (qp = heads[0]; qp; qp = qp->next) {
838 if (_nc_entry_match(qp->tterm.term_names, rp->tterm.term_names)) {
839 if (qp
[all...]
H A Dtoe.c398 ENTRY *qp; local
400 for_entry_list(qp) {
401 if (qp->nuses) {
404 (void) printf("%s:", _nc_first_name(qp->tterm.term_names));
405 for (j = 0; j < qp->nuses; j++)
406 (void) printf(" %s", qp->uses[j].name);
416 ENTRY *qp, *rp; local
419 for_entry_list(qp) {
426 if (_nc_name_match(qp->tterm.term_names,
430 _nc_first_name(qp
[all...]
H A Dtic.c474 ENTRY *qp; local
719 for_entry_list(qp) {
720 if (matches(namelst, qp->tterm.term_names)) {
721 int len = fmt_entry(&qp->tterm, NULL, FALSE, TRUE, infodump, numbers);
726 _nc_first_name(qp->tterm.term_names),
736 for_entry_list(qp) {
737 if (matches(namelst, qp->tterm.term_names))
738 write_it(qp);
744 for_entry_list(qp) {
745 if (matches(namelst, qp
[all...]
/macosx-10.10/ncurses-44/ncurses/include/
H A Dterm_entry.h96 #define for_entry_list(qp) for (qp = _nc_head; qp; qp = qp->next)
/macosx-10.10/postfix-255/postfix/src/postsuper/
H A Dpostsuper.c393 #define MESSAGE_QUEUE(qp) ((qp)->perms == MAIL_QUEUE_STAT_READY)
400 struct queue_info *qp; local
402 for (qp = queue_info; qp->name; qp++)
403 if (strcmp(queue_name, qp->name) == 0)
404 return (qp);
739 struct queue_info *qp; local
758 qp
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/netinet/
H A Dip_dummynet.c235 static void cp_queue_to_64_user( struct dn_flow_queue *q, struct dn_flow_queue_64 *qp);
241 static void cp_queue_to_32_user( struct dn_flow_queue *q, struct dn_flow_queue_32 *qp);
419 void cp_queue_to_32_user( struct dn_flow_queue *q, struct dn_flow_queue_32 *qp) argument
421 qp->id = q->id;
422 qp->len = q->len;
423 qp->len_bytes = q->len_bytes;
424 qp->numbytes = q->numbytes;
425 qp->tot_pkts = q->tot_pkts;
426 qp->tot_bytes = q->tot_bytes;
427 qp
440 cp_queue_to_64_user( struct dn_flow_queue *q, struct dn_flow_queue_64 *qp) argument
2349 struct dn_flow_queue_32 *qp = (struct dn_flow_queue_32 *)bp; local
2381 struct dn_flow_queue_64 *qp = (struct dn_flow_queue_64 *)bp; local
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Dunwind-ia64.c416 #define UNW_DEC_SPILL_SPREL_P(fmt, qp, t, abreg, spoff, arg) \
422 printf ("\t%s:spill_sprel_p(qp=p%u,t=%lu,reg=%s,spoff=0x%lx)\n", \
423 fmt, qp, (unsigned long) t, regname, 4 * (unsigned long)spoff); \
427 #define UNW_DEC_SPILL_PSPREL_P(fmt, qp, t, abreg, pspoff, arg) \
433 printf ("\t%s:spill_psprel_p(qp=p%u,t=%lu,reg=%s,pspoff=0x10-0x%lx)\n",\
434 fmt, qp, (unsigned long) t, regname, 4*(unsigned long)pspoff);\
438 #define UNW_DEC_RESTORE_P(fmt, qp, t, abreg, arg) \
444 printf ("\t%s:restore_p(qp=p%u,t=%lu,reg=%s)\n", \
445 fmt, qp, (unsigned long) t, regname); \
449 #define UNW_DEC_SPILL_REG_P(fmt, qp,
628 unsigned char byte1, byte2, abreg, qp; local
650 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libcmd/
H A Dfmt.c141 register char* qp; local
191 for (qp = cp; qp < ep; qp++)
192 if (*qp == '\\')
193 qp++;
194 else if (*qp == '"')
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/iptcutil/
H A Diptcutil.c811 int qp; local
826 if((qp=sindex(c,brkchar))>=0) /* break */
834 *brkused=brkchar[qp];
842 else if((qp=sindex(c,quote))>=0) /* quote */
848 _p_curquote=quote[qp]; /* save quote char */
853 if(quote[qp]==_p_curquote) /* same as the beginning quote? */
868 else if((qp=sindex(c,white))>=0) /* white */
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/sh/
H A Dmain.c614 register char *cp,*sp,*qp; local
626 for(qp=0;*sp && *sp != ':';sp++)
627 if((*sp == '?' || *sp=='%') && qp == 0)
628 qp = sp;
632 if(qp)
633 *qp = 0;
663 errormsg(SH_DICT,0,sh_mactry(shp,qp?qp+1:(char*)e_mailmsg));
679 if(qp)
680 *qp
[all...]
/macosx-10.10/dtrace-147/libctf/
H A Dctf_lookup.c62 const struct qual *qp = &qhash[h]; local
65 len == qp->q_len && strncmp(qp->q_name, s, qp->q_len) == 0);
/macosx-10.10/syslog-267/aslcommon/
H A Dasl_memory.c1197 mem_record_t **qp; local
1205 qp = NULL;
1216 qp = (mem_record_t **)calloc(qcount, sizeof(mem_record_t *));
1217 if (qp == NULL) return ASL_STATUS_NO_MEMORY;
1222 free(qp);
1229 qp[i] = asl_memory_query_to_record(s, asl_msg_list_get_index(query, i), &(qtype[i]));
1232 for (j = 0; j < i; j++) asl_memory_record_free(s, qp[j]);
1233 free(qp);
1260 if (qp != NULL)
1262 for (i = 0; i < qcount; i++) asl_memory_record_free(s, qp[
[all...]
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Dqp.el0 ;;; qp.el --- Quoted-Printable functions
165 (provide 'qp)
168 ;;; qp.el ends here
/macosx-10.10/uucp-11/uucp/
H A Duuconv.c764 const struct uuconf_proto_param *qp;
770 for (qp = qparams; qp->uuconf_bproto != '\0'; qp++)
774 for (qe = qp->uuconf_qentries; qe->uuconf_cargs > 0; qe++)
778 fprintf (e, "%sprotocol-parameter %c", zprefix, qp->uuconf_bproto);
1053 struct uuconf_port *qp;
1056 qp = q->uuconf_qport;
1057 ftcp = (qp != (struct uuconf_port *) &_uuconf_unset
1058 && qp !
757 const struct uuconf_proto_param *qp; local
1044 struct uuconf_port *qp; local
1817 struct uuconf_pipe_port *qp; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_asn1/
H A Dprlong.h187 ** OUTPUTS: PRUint64 *qp: pointer to quotient
190 #define LL_UDIVMOD(qp, rp, a, b) \
191 (*(qp) = ((PRUint64)(a) / (b)), \
265 #define LL_UDIVMOD(qp, rp, a, b) ll_udivmod(qp, rp, a, b)
267 NSPR_API(void) ll_udivmod(PRUint64 *qp, PRUint64 *rp, PRUint64 a, PRUint64 b);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/Security/
H A Dprlong.h187 ** OUTPUTS: PRUint64 *qp: pointer to quotient
190 #define LL_UDIVMOD(qp, rp, a, b) \
191 (*(qp) = ((PRUint64)(a) / (b)), \
265 #define LL_UDIVMOD(qp, rp, a, b) ll_udivmod(qp, rp, a, b)
267 NSPR_API(void) ll_udivmod(PRUint64 *qp, PRUint64 *rp, PRUint64 a, PRUint64 b);

Completed in 433 milliseconds

12