HomeSort by: relevance | last modified time | path
    Searched refs:p1 (Results 1 - 25 of 192) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/tests/lib/csu/arch/ia64/
h_initfini_align.S 24 cmp.eq p1, p0 = 0, loc1
29 (p1) mov loc1 = sp
31 (p1) and loc1 = 15, loc1
34 (p1) cmp.eq p1, p0 = 0, loc1
  /src/usr.bin/hexdump/
parse.c 224 char *p1, *p2; local in function:rewrite
240 for (p1 = fmtp; *p1 && *p1 != '%'; ++p1);
243 if (!*p1) {
256 for (++p1; *p1 && strchr(spec, *p1); ++p1);
    [all...]
  /src/tests/usr.bin/indent/
opt_lp.c 19 p1 = first_procedure(second_procedure(p2, p3),
22 p1 = first_procedure(second_procedure(p2,
27 p1 = first_procedure(
37 p1 = first_procedure(second_procedure(p2, p3),
40 p1 = first_procedure(second_procedure(p2,
45 p1 = first_procedure(
55 p1 = first_procedure(second_procedure(p2, p3),
58 p1 = first_procedure(second_procedure(p2,
63 p1 = first_procedure(
73 p1 = first_procedure(second_procedure(p2, p3)
    [all...]
  /src/sys/kern/
kern_fork.c 259 struct proc *p1, *p2, *parent; local in function:fork1
268 p1 = l1->l_proc;
280 KAUTH_PROCESS_FORK, p1, KAUTH_ARG(tnprocs), NULL, NULL);
296 if (__predict_false(count > p1->p_rlimit[RLIMIT_NPROC].rlim_cur)) {
298 p1, KAUTH_ARG(KAUTH_REQ_PROCESS_RLIMIT_BYPASS),
299 &p1->p_rlimit[RLIMIT_NPROC], KAUTH_ARG(RLIMIT_NPROC)) != 0) {
325 mutex_enter(p1->p_lock);
326 uid = kauth_cred_getuid(p1->p_cred);
328 mutex_exit(p1->p_lock);
345 memcpy(&p2->p_startcopy, &p1->p_startcopy
    [all...]
  /src/bin/csh/
exp.c 100 int p1; local in function:exp0
102 p1 = exp1(vp, ignore);
104 etraci("exp0 p1", p1, vp);
110 p2 = exp0(vp, (ignore & IGNORE) || p1);
114 return (p1 || p2);
116 return (p1);
122 int p1; local in function:exp1
124 p1 = csh_exp2(vp, ignore);
126 etraci("exp1 p1", p1, vp)
144 int p1; local in function:csh_exp2
166 int p1; local in function:exp2a
188 int p1; local in function:exp2b
210 Char *p1, *p2; local in function:exp2c
252 Char *p1, *p2; local in function:exp3
292 Char *op, *p1, *p2; local in function:exp3a
320 Char *p1, *p2; local in function:exp4
355 Char *p1, *p2; local in function:exp5
    [all...]
parse.c 92 asyntax(struct wordent *p1, struct wordent *p2)
94 while (p1 != p2)
95 if (any(";&\n", p1->word[0]))
96 p1 = p1->next;
98 asyn0(p1, p2);
104 asyn0(struct wordent *p1, struct wordent *p2)
110 for (p = p1; p != p2; p = p->next)
130 asyn3(p1, p);
135 asyn3(p1, p2)
    [all...]
dir.c 618 Char *p1, *p2; /* general purpose */ local in function:dcanon
630 p1 = value(STRcwd);
631 if (p1 == NULL || *p1 != '/')
633 if (Strlen(p1) + Strlen(cp) + 1 >= MAXPATHLEN)
635 (void)Strcpy(tmpdir, p1);
647 for (p1 = sp, p2 = p; (*p1++ = *p2++) != '\0';)
665 for (p1 = sp, p2 = p + 1; (*p1++ = *p2++) != '\0';
    [all...]
  /src/common/lib/libutil/
proc_compare.c 68 * Returns 1 if p2 is "better" than p1
89 proc_compare(const PROC *p1, const LWP *l1, const PROC *p2, const LWP *l2)
94 switch (TESTAB(P_ZOMBIE(p1), P_ZOMBIE(p2))) {
105 switch (TESTAB(ISRUN(p1), ISRUN(p2))) {
135 if (p1->P_RTIME_SEC < p2->P_RTIME_SEC)
137 if (p2->P_RTIME_SEC < p1->P_RTIME_SEC)
139 if (p1->P_RTIME_USEC < p2->P_RTIME_USEC)
141 if (p2->P_RTIME_USEC < p1->P_RTIME_USEC)
144 return p2->p_pid > p1->p_pid; /* Nonsense */
  /src/sys/arch/powerpc/include/oea/
sr_601.h 55 #define SR601(key, buid, csi, p1) \
59 (csi) << SR601_CSI_SHFT | (p1))
  /src/sys/arch/atari/stand/tostools/aptck/
disklbl.c 205 const part_t *p1 = x1, local in function:part_cmp
208 if (p1->start < p2->start)
210 if (p1->start > p2->start)
212 if (p1->end < p2->end)
214 if (p1->end > p2->end)
216 if (p1->rsec < p2->rsec)
218 if (p1->rsec > p2->rsec)
220 if (p1->rent < p2->rent)
222 if (p1->rent > p2->rent)
250 part_t *p1 = &dd->parts[i] local in function:ahdi_display
    [all...]
  /src/usr.bin/cmp/
regular.c 58 u_char ch, *p1, *p2; local in function:c_regular
79 p1 = mmap(NULL, blk_sz, PROT_READ, MAP_FILE|MAP_SHARED,
81 if (p1 == MAP_FAILED)
87 munmap(p1, blk_sz);
92 if ((lflag || sflag) && (memcmp(p1, p2, blk_sz) == 0)) {
100 p1 += blk_sz;
103 for (; blk_cnt--; ++p1, ++p2, ++byte) {
104 if ((ch = *p1) != *p2) {
117 munmap(p1 - blk_sz, blk_sz);
  /src/usr.sbin/ldpd/
pdu.c 48 const struct ldp_pdu *p1 = (const struct ldp_pdu *) s; local in function:get_pdu
50 p->version = ntohs(p1->version);
51 p->length = ntohs(p1->length);
52 memcpy(&p->ldp_id, &p1->ldp_id, sizeof(struct in_addr));
53 p->label_space = ntohs(p1->label_space);
  /src/usr.bin/mail/
mime_header.c 241 const char *p1; local in function:mime_decode_usfield
244 decode_word((p1 = p, &p1), (q1 = q, &q1), qend, charset) == 0 &&
245 (*p1 == '\0' || is_FWS(*p1))) {
246 p0 = p1; /* pointer to first character after encoded word */
248 p = skip_FWS(p1);
284 const char *p1; local in function:decode_comment
288 decode_word((p1 = p, &p1), (q1 = q, &q1), qend, charset) == 0 &
451 const char *p1; local in function:mime_decode_sfield
    [all...]
  /src/lib/libc/string/
swab.c 65 const char p0 = p[0], p1 = p[1]; local in function:swab
67 q[0] = p1;
  /src/usr.bin/spell/spellprog/
spellprog.c 141 int (*p1)(char *, const char *, const char *, size_t); member in struct:suftab
150 { .suf = "ssen", .p1 = ily, .n1 = 4,
152 { .suf = "ssel", .p1 = ily, .n1 = 4,
154 { .suf = "se", .p1 = s, .n1 = 1,
157 { .suf = "s'", .p1 = s, .n1 = 2,
159 { .suf = "s", .p1 = s, .n1 = 1,
161 { .suf = "ecn", .p1 = ncy, .n1 = 1,
163 { .suf = "ycn", .p1 = ncy, .n1 = 1,
165 { .suf = "ytilb", .p1 = nop, .n1 = 0,
167 { .suf = "ytilib", .p1 = bility, .n1 = 5
    [all...]
  /src/sys/arch/hp300/stand/common/
rominfo.h 49 char p1[0xDC0]; member in struct:rominfo
  /src/tests/lib/librumpclient/
h_execthr.c 102 int p1[2], p2[2]; local in function:main
160 if (rump_sys_pipe(p1) == -1)
162 if (p1[0] != P1_0 || p1[1] != P1_1)
163 errx(1, "p1 assumptions failed %d %d", p1[0], p1[1]);
168 if (rump_sys_fcntl(p1[0], F_SETFD, FD_CLOEXEC) == -1)
170 if (rump_sys_fcntl(p1[1], F_SETFD, FD_CLOEXEC) == -1)
177 wrk, (void *)(uintptr_t)p1[0])
    [all...]
  /src/lib/libm/noieee_src/
n_exp__E.c 64 * where P := p1*x^2 + p2*x^4,
68 * (See the listing below for the values of p1,p2,q1,q2,q3. The poly-
91 vc(p1, 1.5150724356786683059E-2 ,3abe,3d78,066a,67e1, -6, .F83ABE67E1066A)
97 ic(p1, 1.3887401997267371720E-2, -7, 1.C70FF8B3CC2CF)
103 #define p1 vccast(p1) macro
117 p = z*( p1 +z* p2 );
  /src/sys/arch/luna68k/dev/
lcd.c 284 struct pio *p1 = (struct pio *)OBIO_PIO1_BASE; local in function:lcdbusywait
288 p1->cntrl = PIO1_MODE_INPUT;
289 p1->portC = POWER | READ_BUSY | ENABLE;
293 msb = p1->portA & ENABLE;
298 p1->portC = POWER | READ_BUSY | DISABLE;
305 struct pio *p1 = (struct pio *)OBIO_PIO1_BASE; local in function:lcdput
311 p1->cntrl = PIO1_MODE_OUTPUT;
313 p1->portC = POWER | WRITE_DATA | ENABLE;
314 p1->portA = cc;
315 p1->portC = POWER | WRITE_DATA | DISABLE
322 struct pio *p1 = (struct pio *)OBIO_PIO1_BASE; local in function:lcdctrl
    [all...]
  /src/usr.sbin/memswitch/
methods.c 43 const char *p1 = *p; local in function:atoi_
47 while (*p1 == ' ' || *p1 == '\t')
48 p1++;
50 if (*p1 == 0) {
54 if (strlen(p1) >= 2 && strncasecmp("0x", p1, 2) == 0) {
55 p1 += 2;
57 if (*p1 >= '0' && *p1 <= '9')
    [all...]
  /src/tests/ipf/
t_filter_parse.sh 53 sed -e 's/security/!!!/g' i19.dist > i19.p1;
55 sed -e 's/security/audit/g' i19.dist > i19.p1;
58 cp i19.dist i19.p1;
61 sed -e 's/authpriv/!!!/g' i19.p1 > i19.p2;
63 cp i19.p1 i19.p2;
66 sed -e 's/logalert/!!!/g' i19.p2 > i19.p1;
68 cp i19.p2 i19.p1;
71 sed -e 's/ftp/!!!/g' i19.p1 > i19.p2;
73 cp i19.p1 i19.p2;
  /src/share/terminfo/
terminfo 344 cub=\E[%p1%dD, cud=\E[%p1%dB, cuf=\E[%p1%dC,
345 cuu=\E[%p1%dA, use=ansi+local1,
353 hpa=\E[%p1%{1}%+%dG, vpa=\E[%p1%{1}%+%dd,
355 hpa=\E[%i%p1%dG, vpa=\E[%i%p1%dd,
357 cup=\E[%i%p1%d;%p2%dH, home=\E[H,
359 rep=%p1%c\E[%p2%{1}%-%db
    [all...]
  /src/sys/arch/macppc/dev/
videopll.c 97 * 3.9064MHz * 2^p2 * p1 / p0
103 int p0, p1, p2; local in function:videopll_set_freq
117 for (p1 = 27; p1 < 43; p1++) {
119 freq_out = (3906400 * (1 << p2) * p1) / (p0 * 1000);
124 b1 = p1;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/pmu/fuc/
i2c_.fuc 102 bclr $flags $p1
106 bset $flags $p1
111 bclr $flags $p1
115 bset $flags $p1
166 bra $p1 #i2c_raise_scl_done
175 bra not $p1 #i2c_start_rep
177 bra not $p1 #i2c_start_rep
183 bra not $p1 #i2c_start_out
210 bra not $p1 #i2c_bitw_out
225 bra not $p1 #i2c_bitr_don
    [all...]
  /src/etc/rc.d/
bluetooth 122 p1=$(check_pidfile /var/run/bthcid.pid ${bthcid_cmd})
125 if [ -n "${p1}${p2}${p3}" ]; then
126 for pid in ${p1} ${p2} ${p3}; do
129 wait_for_pids ${p1} ${p2} ${p3}

Completed in 93 milliseconds

1 2 3 4 5 6 7 8