Searched defs:p1 (Results 101 - 125 of 671) sorted by relevance

1234567891011>>

/external/ltp/testcases/kernel/containers/mqns/
H A Dmqns_03.c51 int p1[2]; variable
66 close(p1[1]);
69 if (read(p1[0], buf, 3) != 3) { /* go */
153 if (pipe(p1) == -1 || pipe(p2) == -1)
166 close(p1[0]);
168 write(p1[1], "go", 3);
H A Dmqns_04.c48 int p1[2]; variable
62 close(p1[1]);
65 read(p1[0], buf, 3); /* go */
84 read(p1[0], buf, 3);
113 if (pipe(p1) == -1) {
133 close(p1[0]);
135 write(p1[1], "go", 3);
149 write(p1[1], "go", 3);
153 write(p1[1], "go", 3);
/external/ltp/testcases/kernel/containers/sysvipc/
H A Dsem_nstest.c44 int p1[2]; variable
54 close(p1[1]);
57 read(p1[0], buf, 3);
90 if (pipe(p1) == -1) {
131 close(p1[0]);
133 write(p1[1], "go", 3);
H A Dshmnstest.c41 int p1[2]; variable
51 close(p1[1]);
54 read(p1[0], buf, 3);
90 if (pipe(p1) == -1) {
121 close(p1[0]);
123 write(p1[1], "go", 3);
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec.c196 * If we return true, it means that we can concatenate p1 onto p0 (and
197 * discard p1).
200 vbo_can_merge_prims(const struct _mesa_prim *p0, const struct _mesa_prim *p1) argument
203 !p1->begin ||
205 !p1->end)
209 if (p0->mode != p1->mode)
212 /* p1's vertices must come right after p0 */
213 if (p0->start + p0->count != p1->start)
216 if (p0->basevertex != p1->basevertex ||
217 p0->num_instances != p1
246 vbo_merge_prims(struct _mesa_prim *p0, const struct _mesa_prim *p1) argument
[all...]
/external/python/cpython2/Lib/lib2to3/fixes/
H A Dfix_dict.py84 p1 = patcomp.compile_pattern(P1) variable in class:FixDict
96 self.p1.match(node.parent.parent, results) and
/external/skia/gm/
H A Dfilterbug.cpp54 SkPaint p1; variable
55 p1.setAntiAlias(kDoAA);
56 p1.setFilterQuality(kFilterQuality);
59 p1.setShader(SkImageShader::Make(fTop,
63 canvas->drawRect(r1, p1);
/external/skia/tests/
H A DColorTest.cpp26 SkPMColor p1 = SkPreMultiplyColor(c1); local
29 // function, however, we can promise that p0 -> c1 -> p1 : p0 == p1
30 REPORTER_ASSERT(reporter, p0 == p1);
/external/skqp/gm/
H A Dfilterbug.cpp53 SkPaint p1; variable
54 p1.setAntiAlias(kDoAA);
55 p1.setFilterQuality(kFilterQuality);
58 p1.setShader(SkImageShader::Make(fTop,
62 canvas->drawRect(r1, p1);
/external/skqp/tests/
H A DColorTest.cpp26 SkPMColor p1 = SkPreMultiplyColor(c1); local
29 // function, however, we can promise that p0 -> c1 -> p1 : p0 == p1
30 REPORTER_ASSERT(reporter, p0 == p1);
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-mips64-linux.c446 Int p0, p1; local
449 p1 = sr_ResEx(status->sres);
452 !ML_(fd_allowed)(p1, "pipe", tid, True)) {
454 VG_(close)(p1);
459 ML_(record_fd_open_nameless)(tid, p1);
/external/valgrind/massif/tests/
H A Doverloaded-new.cpp49 s* p1 = new s; local
53 delete p1;
/external/valgrind/memcheck/tests/
H A Dleak-cases.c8 // p1 ---> AAA DR / R
58 Node* p1; variable
70 p1 = mk(NULL); // Case 1: 16/1 still reachable
H A Dvarinfo3.c40 void bar ( char* p1, char* p2, char* p3, char* p4 ) argument
42 croak(p1);
/external/python/cpython3/Modules/_decimal/libmpdec/literature/
H A Dumodarith.lisp367 (defmacro p1 () function
377 ;; reduce the double word number hi*2**64 + lo (mod p1)
378 (defun simple-mod-reduce-p1 (hi lo)
394 (defthmd congruence-p1-aux
396 (+ (* (p1) hi)
419 (defthmd simple-mod-reduce-p1-congruent
422 (equal (mod (simple-mod-reduce-p1 hi lo) (p1))
423 (mod (join hi lo) (p1))))
424 :hints (("Goal''" :use ((:instance congruence-p1
[all...]
/external/aac/libFDK/src/
H A DFDK_matrixCalloc.cpp135 void **p1; local
139 if ((p1 = (void **)fdkCallocMatrix1D(dim1, sizeof(void *))) == NULL) {
143 fdkFreeMatrix1D(p1);
144 p1 = NULL;
148 p1[i] = p2;
152 return p1;
156 void **p1; local
160 if ((p1 = (void **)fdkCallocMatrix1D(dim1, sizeof(void *))) == NULL) {
164 fdkFreeMatrix1D(p1);
165 p1
190 void **p1; local
213 void **p1; local
237 void ***p1; local
280 void ***p1; local
[all...]
/external/clang/test/Analysis/inlining/
H A Dinline-defensive-checks.cpp70 void test(int *p1, int *p2) { argument
71 idc(p1);
72 Foo f(p1);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp7.cpp7 auto v1 = 0, *p1 = &v1; local
/external/clang/test/CodeGen/
H A Dppc64-struct-onefloat.c30 Sf p1 = { 22.63f }; local
34 bar(p1, p2, p4, p5);
38 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr inbounds %struct.s1, %struct.s1* %p1, i32 0, i32 0
/external/clang/test/CodeGenCXX/
H A Dms-property.cpp54 S *p1 = 0; local
57 int j = p1->x[223][11];
60 p1->x[23][1] = j;
85 p2->y[t.X][argc] = p1->x[22][33];
99 p2->x[j][j] = p2->y[p1->x[argc][0]][t];
/external/clang/test/PCH/
H A Dtypes.c58 proto p1; variable
59 float p1(float x, float y, ...) { function
62 proto *p2 = p1;
/external/clang/test/Sema/
H A Dvla.c64 void pr23151(int (*p1)[*]) // expected-error {{variable length array must be bound in function definition}} argument
/external/clang/test/SemaCXX/
H A Dms-property.cpp41 S *p1 = 0; local
45 // CHECK-NEXT: int j = (p1->x)[223][11];
46 int j = (p1->x)[223][11];
47 // CHECK-NEXT: (p1->x[23])[1] = j;
48 (p1->x[23])[1] = j;
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
H A Dmake_shared.pass.cpp82 std::shared_ptr<Foo> p1 = std::make_shared<Foo>(); local
83 assert(p1.get());
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dswap.pass.cpp63 TT* p1 = newValueInit<VT>(expect_alive, 1); local
64 std::unique_ptr<VT, Deleter<VT> > s1(p1, Deleter<VT>(1));
67 assert(s1.get() == p1);
77 assert(s2.get() == p1);

Completed in 677 milliseconds

1234567891011>>