Searched refs:p1 (Results 1 - 25 of 482) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.rfg/
H A D00321_01-.C6 int (*p1)[3]; variable
12 p1 == p2; // ERROR - comparison.*
13 p1 > p2; // ERROR - comparison.*
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Dcmb.c1 foo (p1, p2)
2 short p1, *p2;
5 return (int) p1 + (int) *p2;
H A Dcsebug.c3 reg0indreg1 (r0, p1)
4 short r0; short *p1;
6 return (r0 + *p1);
H A Dq.c3 reg0indreg1 (r0, p1)
4 unsigned short r0; unsigned short p1;
6 return (r0 + p1);
H A Dbugc.c3 reg0indreg1 (r0, p1)
4 short r0; short *p1;
H A DHIset.c13 #define indreg1 (*p1)
17 #define adrreg1 (p1[1111111/4])
19 #define regx1 (p1[x1])
25 reg0reg1_set (r0, r1, x0, x1, p0, p1)
26 type r0, r1; type *p0, *p1;
29 reg0indreg1_set (r0, r1, x0, x1, p0, p1)
30 type r0, r1; type *p0, *p1;
33 reg0imm1_set (r0, r1, x0, x1, p0, p1)
34 type r0, r1; type *p0, *p1;
37 reg0limm1_set (r0, r1, x0, x1, p0, p1)
[all...]
H A DQIset.c13 #define indreg1 (*p1)
17 #define adrreg1 (p1[1111111/4])
19 #define regx1 (p1[x1])
25 reg0reg1_set (r0, r1, x0, x1, p0, p1)
26 type r0, r1; type *p0, *p1;
29 reg0indreg1_set (r0, r1, x0, x1, p0, p1)
30 type r0, r1; type *p0, *p1;
33 reg0imm1_set (r0, r1, x0, x1, p0, p1)
34 type r0, r1; type *p0, *p1;
37 reg0limm1_set (r0, r1, x0, x1, p0, p1)
[all...]
H A DSFset.c13 #define indreg1 (*p1)
17 #define adrreg1 (p1[1111111/4])
19 #define regx1 (p1[x1])
25 reg0reg1_set (r0, r1, x0, x1, p0, p1)
26 type r0, r1; type *p0, *p1;
29 reg0indreg1_set (r0, r1, x0, x1, p0, p1)
30 type r0, r1; type *p0, *p1;
33 reg0imm1_set (r0, r1, x0, x1, p0, p1)
34 type r0, r1; type *p0, *p1;
37 reg0limm1_set (r0, r1, x0, x1, p0, p1)
[all...]
H A DSIset.c13 #define indreg1 (*p1)
17 #define adrreg1 (p1[1111111/4])
19 #define regx1 (p1[x1])
25 reg0reg1_set (r0, r1, x0, x1, p0, p1)
26 type r0, r1; type *p0, *p1;
29 reg0indreg1_set (r0, r1, x0, x1, p0, p1)
30 type r0, r1; type *p0, *p1;
33 reg0imm1_set (r0, r1, x0, x1, p0, p1)
34 type r0, r1; type *p0, *p1;
37 reg0limm1_set (r0, r1, x0, x1, p0, p1)
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900212_01.C16 int struct0::*p1; member in class:struct0
23 p0 = p1 + 3; // ERROR -
24 p0 = p1 - 3; // ERROR -
25 p1++; /* ERROR - caught by g++ */
26 ++p1; /* ERROR - caught by g++ */
27 p1--; /* ERROR - caught by g++ */
28 --p1; /* ERROR - caught by g++ */
H A D900324_03.C14 void (*p1)(); // gets bogus errors
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D930210-1.c4 char *p1, *p2; local
7 c1 = c2 = *p1++;
9 *p2++ = *p1++;
H A D930325-1.c13 f (uint *p1, uint c, uint *p2) argument
15 while (c > 0 && *p1 == 0)
17 p1++;
22 g (p2, p1, c);
/openbsd-current/regress/usr.bin/ssh/unittests/sshbuf/
H A Dtest_sshbuf.c27 struct sshbuf *p1; local
34 p1 = sshbuf_new();
35 ASSERT_PTR_NE(p1, NULL);
39 ASSERT_SIZE_T_GT(sshbuf_max_size(p1), 0);
43 ASSERT_SIZE_T_GT(sshbuf_avail(p1), 0);
47 ASSERT_SIZE_T_EQ(sshbuf_len(p1), 0);
51 ASSERT_INT_EQ(sshbuf_set_max_size(p1, 65536), 0);
52 ASSERT_SIZE_T_EQ(sshbuf_max_size(p1), 65536);
56 ASSERT_SIZE_T_EQ(sshbuf_avail(p1), 65536);
60 sshbuf_free(p1);
[all...]
H A Dtest_sshbuf_misc.c24 struct sshbuf *p1; local
32 p1 = sshbuf_new();
33 ASSERT_PTR_NE(p1, NULL);
34 ASSERT_INT_EQ(sshbuf_put_u32(p1, 0x12345678), 0);
35 sshbuf_dump(p1, out);
45 sshbuf_free(p1);
49 p1 = sshbuf_new();
50 ASSERT_PTR_NE(p1, NULL);
51 ASSERT_INT_EQ(sshbuf_put_u32(p1, 0x12345678), 0);
52 p = sshbuf_dtob16(p1);
[all...]
H A Dtest_sshbuf_getput_basic.c23 struct sshbuf *p1, *p2; local
73 p1 = sshbuf_new();
74 ASSERT_PTR_NE(p1, NULL);
75 ASSERT_INT_EQ(sshbuf_put(p1, x, 5), 0);
76 ASSERT_SIZE_T_EQ(sshbuf_len(p1), 5);
77 cd = sshbuf_ptr(p1);
87 ASSERT_INT_EQ(sshbuf_get(p1, d2, 4), 0);
89 ASSERT_SIZE_T_EQ(sshbuf_len(p1), 1);
90 ASSERT_U8_EQ(*(sshbuf_ptr(p1)), 0x55);
94 r = sshbuf_get(p1, d
[all...]
H A Dtest_sshbuf_fuzz.c26 struct sshbuf *p1; local
39 p1 = sshbuf_new();
40 ASSERT_INT_EQ(sshbuf_set_max_size(p1, 16 * 1024), 0);
41 ASSERT_PTR_NE(p1, NULL);
42 ASSERT_PTR_NE(sshbuf_ptr(p1), NULL);
43 ASSERT_MEM_ZERO_NE(sshbuf_ptr(p1), sshbuf_len(p1));
50 sz = sshbuf_avail(p1);
51 sz2 = sshbuf_len(p1);
52 ret = sshbuf_reserve(p1,
[all...]
H A Dtest_sshbuf_fixed.c27 struct sshbuf *p1, *p2, *p3; local
34 p1 = sshbuf_from(test_buf, sizeof(test_buf));
35 ASSERT_PTR_NE(p1, NULL);
36 ASSERT_PTR_EQ(sshbuf_mutable_ptr(p1), NULL);
37 ASSERT_INT_EQ(sshbuf_check_reserve(p1, 1), SSH_ERR_BUFFER_READ_ONLY);
38 ASSERT_INT_EQ(sshbuf_reserve(p1, 1, NULL), SSH_ERR_BUFFER_READ_ONLY);
39 ASSERT_INT_EQ(sshbuf_set_max_size(p1, 200), SSH_ERR_BUFFER_READ_ONLY);
40 ASSERT_INT_EQ(sshbuf_put_u32(p1, 0x12345678), SSH_ERR_BUFFER_READ_ONLY);
41 ASSERT_SIZE_T_EQ(sshbuf_avail(p1), 0);
42 ASSERT_PTR_EQ(sshbuf_ptr(p1), test_bu
74 ASSERT_PTR_EQ(sshbuf_parent(p2), p1); local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dunify8.C16 void baz (int **p1) argument
18 Foo (p1); // ERROR - no such function
19 Bar (p1); // OK
/openbsd-current/lib/libc/string/
H A Dbcmp.c40 char *p1, *p2; local
44 p1 = (char *)b1;
47 if (*p1++ != *p2++)
H A Dmemcmp.c43 const unsigned char *p1 = s1, *p2 = s2; local
46 if (*p1++ != *p2++)
47 return (*--p1 - *--p2);
/openbsd-current/sys/lib/libsa/
H A Dmemcmp.c44 const unsigned char *p1 = s1, *p2 = s2; local
47 if (*p1++ != *p2++)
48 return (*--p1 - *--p2);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp4619.C7 int (*p1)[5][7][13][10] = new int [i][5][7][13][10];
8 delete [] p1;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D950426-1.c5 } s1, *p1; variable in typeref:struct:tag
12 p1 = &s1;
14 if ( func1( &p1->m1 ) == -1 )
22 if ( strlen( (p1->m2[i])++ ) == 3 )
/openbsd-current/usr.bin/w/
H A Dproc_compare.c41 * Returns 1 if p2 is "better" than p1
67 proc_compare(const struct kinfo_proc *p1, const struct kinfo_proc *p2) argument
69 if (p1 == NULL)
74 switch (TESTAB(ISRUN(p1), ISRUN(p2))) {
83 if (p2->p_estcpu > p1->p_estcpu)
85 if (p1->p_estcpu > p2->p_estcpu)
87 return (p2->p_pid > p1->p_pid); /* tie - return highest pid */
92 switch (TESTAB(p1->p_stat == SDEAD, p2->p_stat == SDEAD)) {
98 return (p2->p_pid > p1->p_pid); /* tie - return highest pid */
103 if (p2->p_slptime > p1
[all...]

Completed in 295 milliseconds

1234567891011>>