/illumos-gate/usr/src/cmd/eqn/ |
H A D | mark.c | 20 mark(int p1) argument 23 printf(".ds %d \\k(97\\*(%d\n", p1, p1); 24 yyval = p1; 25 if (dbg) printf(".\tmark %d\n", p1); 29 lineup(int p1) argument 32 if (p1 == 0) { 36 if (dbg) printf(".\tlineup %d\n", p1);
|
H A D | diacrit.c | 21 diacrit(int p1, int type) argument 31 nrwid(p1, ps, p1); 32 printf(".nr 10 %du\n", max(eht[p1]-ebase[p1]-VERT(2), 0)); 35 nrwid(p1, effps, p1); 38 printf(".nr 10 %du\n", VERT(max(eht[p1]-ebase[p1]-EM(1, ps), 0))); 90 c, effps, p1); [all...] |
H A D | eqnbox.c | 20 eqnbox(int p1, int p2, int lu) argument 25 yyval = p1; 26 b = max(ebase[p1], ebase[p2]); 27 eht[yyval] = h = b + max(eht[p1]-ebase[p1], eht[p2]-ebase[p2]); 31 yyval, p1, p2, b, h); 32 if (rfont[p1] == ITAL && lfont[p2] == ROM) 37 printf(".nr %d \\w'\\s%d\\*(%d%s'\n", p1, ps, p1, sh); 38 printf(".ds %d \\h'|\\n(97u-\\n(%du'\\*(%d\n", p1, p [all...] |
H A D | integral.c | 21 integral(int p, int p1, int p2) argument 24 if (p1 != 0) 25 printf(".ds %d \\h'-0.4m'\\v'0.4m'\\*(%d\\v'-0.4m'\n", p1, p1); 29 if (p1 != 0 && p2 != 0) 30 shift2(p, p1, p2); 31 else if (p1 != 0) 32 bshiftb(p, SUB, p1);
|
H A D | over.c | 20 boverb(int p1, int p2) argument 25 yyval = p1; 28 h = eht[p1] + eht[p2] + d; 31 h = eht[p1] + eht[p2]; 36 yyval, p1, p2, b, h); 37 nrwid(p1, ps, p1); 39 printf(".nr %d \\n(%d\n", treg, p1); 48 p2, p1, -(eht[p2]-ebase[p2]+d+ebase[p1]), p [all...] |
H A D | font.c | 41 font(int p1, int p2) argument 43 /* old font in p1, new in ft */ 48 "rf=%c\n", yyval, ft, p2, p1, ebase[yyval], eht[yyval], 50 printf(".ds %d \\f%c\\*(%d\\f%c\n", yyval, ft, p2, p1); 51 ft = p1;
|
H A D | fromto.c | 20 fromto(int p1, int p2, int p3) argument 25 h1 = eht[yyval] = eht[p1]; 26 b1 = ebase[p1]; 30 nrwid(p1, ps, p1); 31 printf(".nr %d \\n(%d\n", yyval, p1); 54 yyval, p1, p1, yyval, p1); 57 yyval, p1, p [all...] |
H A D | size.c | 32 size(int p1, int p2) argument 34 /* old size in p1, new in ps */ 41 yyval, ps, p2, p1, ebase[yyval], eht[yyval]); 43 effp1 = EFFPS(p1); 45 ps = p1;
|
H A D | matrix.c | 20 column(int type, int p1) argument 24 lp[p1] = ct - p1 - 1; 27 for (i = p1 + 1; i < ct; i++) 29 printf(", rows=%d\n", lp[p1]); 35 matrix(int p1) argument 41 nrow = lp[p1]; /* disaster if rows inconsistent */ 43 for (i = p1; i < ct; i += lp[i] + 2) { 49 j = p1 + k; 56 j = p1 [all...] |
H A D | paren.c | 24 paren(int leftc, int p1, int rightc) argument 27 h1 = eht[p1]; b1 = ebase[p1]; 28 yyval = p1; 93 printf("\\v'%du'\\*(%d", -v, p1);
|
H A D | pile.c | 20 lpile(int type, int p1, int p2) argument 30 nlist = p2 - p1; 32 mid = p1 + nlist2 -1; 34 for (i = p1; i < p2; i++) 49 for (i = p1; i < p2; i++) 53 nrwid(lp[p1], ps, lp[p1]); 54 printf(".nr %d \\n(%d\n", yyval, lp[p1]); 55 for (i = p1+1; i < p2; i++) { 62 for (i = p2-1; i >= p1; [all...] |
/illumos-gate/usr/src/cmd/ipf/lib/common/ |
H A D | getport.c | 15 u_short p1; local 34 p1 = s->s_port; 36 if (s == NULL || s->s_port != p1) 38 *port = p1;
|
H A D | portnum.c | 25 u_short p1 = 0; local 47 p1 = sp->s_port; 54 if (p1 != sp2->s_port) { 56 linenum, name, p1); 60 *port = ntohs(p1);
|
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | nl_strncmp.c | 42 register char *p1, *p2; local 44 p1 = ns1; 48 *p1++ = *s1++; 51 *p1 = *p2 = '\0';
|
/illumos-gate/usr/src/ucbcmd/basename/ |
H A D | basename.c | 24 char *p1, *p2, *p3; local 30 p1 = argv[1]; 31 p2 = p1; 32 while (*p1) { 33 if (*p1++ == '/') 34 p2 = p1; 42 if (p1 <= p2 || *--p3 != *--p1) 44 *p1 = '\0';
|
/illumos-gate/usr/src/boot/lib/libc/string/ |
H A D | bcmp.c | 44 char *p1, *p2; local 48 p1 = (char *)b1; 51 if (*p1++ != *p2++)
|
H A D | memcmp.c | 48 const unsigned char *p1 = s1, *p2 = s2; local 51 if (*p1++ != *p2++) 52 return (*--p1 - *--p2);
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | trace.c | 84 char *p1 = string; local 90 while (*p1 = *p2++) 91 p1++;
|
/illumos-gate/usr/src/lib/libc/port/i18n/ |
H A D | wmemcpy.c | 39 wchar_t *p1, *p2; local 48 p1 = ws1; 56 (void) memcpy((void *)p1, 59 p1 += len;
|
H A D | wsprintf.c | 56 char *p1 = (char *)wstring; local 61 if (vsprintf(p1, format, ap) == -1) { 66 len = strlen(p1) + 1; 74 (void) strcpy(p2, p1);
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/ |
H A D | princ_comp.c | 66 register const krb5_data *p1 = krb5_princ_component(context, princ1, i); local 68 if (p1->length != p2->length || 69 memcmp(p1->data, p2->data, p1->length)) 95 register const krb5_data *p1 = krb5_princ_component(context, princ1, i); local 97 if (p1->length != p2->length || 98 strncasecmp(p1->data, p2->data, p1->length))
|
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | vdbe.h | 41 int p1; /* First operand */ member in struct:VdbeOp 58 signed char p1; /* First operand */ member in struct:VdbeOpList
|
/illumos-gate/usr/src/lib/libcmdutils/common/ |
H A D | avltree.c | 71 * const void *p1 (pointer to the 1st node to compare and 127 * id, then on the inode number. Return -1 when p1 < p2, 128 * 0 when p1 == p2, and 1 when p1 > p2. This function is invoked 129 * by avl_find. p1 is always the node we are trying to insert or 133 tnode_compare(const void *p1, const void *p2) argument 135 tree_node_t *n1 = (tree_node_t *)p1;
|
/illumos-gate/usr/src/lib/brand/sn1/sn1_brand/common/ |
H A D | sn1_brand.c | 63 sn1_uname(sysret_t *rv, uintptr_t p1) argument 65 struct utsname un, *unp = (struct utsname *)p1;
|
/illumos-gate/usr/src/lib/cfgadm_plugins/ac/common/ |
H A D | mema_test_subr.c | 67 struct mtest_alloc_ent **p, *p1; local 73 p1 = *p; 75 free(p1->buf); 76 free((void *)p1); 82 struct mtest_alloc_ent *p1; local 84 while ((p1 = handle->alloc_list) != NULL) { 85 handle->alloc_list = p1->next; 86 free(p1->buf); 87 free((void *)p1);
|