HomeSort by relevance Sort by last modified time
    Searched refs:ps (Results 1 - 25 of 667) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/FixIt/
fixit-pmem.cpp 15 int foo(int S::* ps, S s, S* p)
17 p.*ps = 1;
18 return s->*ps;
21 void foo1(int (S::*ps)(), S s, S* p)
23 (p.*ps)();
24 (s->*ps)();
  /external/bison/lib/
mbsinit.c 30 mbsinit (const mbstate_t *ps)
32 return ps == NULL || *ps == 0;
54 mbsinit (const mbstate_t *ps)
56 const char *pstate = (const char *)ps;
  /bionic/libc/bionic/
mbstate.cpp 33 __LIBC_HIDDEN__ size_t mbstate_bytes_so_far(const mbstate_t* ps) {
35 (ps->__seq[2] != 0) ? 3 :
36 (ps->__seq[1] != 0) ? 2 :
37 (ps->__seq[0] != 0) ? 1 : 0;
40 __LIBC_HIDDEN__ void mbstate_set_byte(mbstate_t* ps, int i, char byte) {
41 ps->__seq[i] = static_cast<uint8_t>(byte);
44 __LIBC_HIDDEN__ uint8_t mbstate_get_byte(const mbstate_t* ps, int n) {
45 return ps->__seq[n];
48 __LIBC_HIDDEN__ size_t reset_and_return_illegal(int _errno, mbstate_t* ps) {
50 *(reinterpret_cast<uint32_t*>(ps->__seq)) = 0
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_clear.h 48 struct pipe_surface *ps = framebuffer->cbufs[i]; local
49 pipe->clear_render_target(pipe, ps, color, 0, 0, ps->width, ps->height);
54 struct pipe_surface *ps = framebuffer->zsbuf; local
55 pipe->clear_depth_stencil(pipe, ps, buffers & PIPE_CLEAR_DEPTHSTENCIL,
57 0, 0, ps->width, ps->height);
u_surfaces.c 38 struct pipe_surface *ps; local
45 ps = cso_hash_iter_data(cso_hash_find(us->u.hash, (layer << 8) | level));
51 ps = us->u.array[level];
54 if(ps && ps->context == ctx)
56 p_atomic_inc(&ps->reference.count);
57 *res = ps;
61 ps = (struct pipe_surface *)CALLOC(1, surface_struct_size);
62 if(!ps)
68 pipe_surface_init(ctx, ps, pt, level, layer, flags)
116 struct pipe_surface *ps = us->u.array[i]; local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/locale/
mbrlen.c 32 mbrlen(const char * __restrict s, size_t n, mbstate_t * __restrict ps)
36 if (ps == NULL)
37 ps = &mbs;
38 return (mbrtowc(NULL, s, n, ps));
  /external/clang/test/Analysis/
NewDeleteLeaks-PR19102.cpp 31 S* ps = new S; local
34 new A2(ps); // no warning
35 new A2(*ps, 1); // no warning
36 new A2(1, &ps); // no warning
40 A2 *a2p2 = new A2(ps); // expected-warning@+1 {{Potential leak of memory}}
41 A2 *a2p3 = new A2(*ps, 1); // expected-warning@+1 {{Potential leak of memory}}
42 A2 *a2p4 = new A2(1, &ps); // expected-warning@+1 {{Potential leak of memory}}
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 113 PreparedStatement ps = null; local
115 ps = conn
117 ps.addBatch("INSERT INTO zoo VALUES (?,'Burenka', ?); ");
118 ps.addBatch("INSERT INTO zoo VALUES (?,'Mashka','cat')");
120 ps.executeBatch();
124 ps.setString(1, "dog");
127 ps.executeBatch();
142 ps.close();
148 ps = conn
150 ps.addBatch("")
178 PreparedStatement ps = null; local
279 PreparedStatement ps = null; local
295 PreparedStatement ps = null; local
332 PreparedStatement ps = null; local
347 PreparedStatement ps = null; local
368 PreparedStatement ps = null; local
409 PreparedStatement ps = null; local
440 PreparedStatement ps = null; local
486 PreparedStatement ps = null; local
542 PreparedStatement ps = null; local
596 PreparedStatement ps = null; local
649 PreparedStatement ps = null; local
704 PreparedStatement ps = null; local
775 PreparedStatement ps = null; local
855 PreparedStatement ps = null; local
930 PreparedStatement ps = null; local
999 PreparedStatement ps = null; local
1067 PreparedStatement ps = null; local
1136 PreparedStatement ps = null; local
1195 PreparedStatement ps = null; local
1262 PreparedStatement ps = null; local
1310 PreparedStatement ps = null; local
1358 PreparedStatement ps = null; local
1416 PreparedStatement ps = null; local
1462 PreparedStatement ps = null; local
1550 PreparedStatement ps = null; local
1638 PreparedStatement ps = null; local
1737 PreparedStatement ps = null; local
1830 PreparedStatement ps = null; local
1925 PreparedStatement ps = null; local
1985 PreparedStatement ps = null; local
2037 PreparedStatement ps = null; local
2077 PreparedStatement ps = null; local
2091 PreparedStatement ps = null; local
2112 PreparedStatement ps = null; local
2161 PreparedStatement ps = null; local
2178 PreparedStatement ps = null; local
2196 PreparedStatement ps = null; local
2211 PreparedStatement ps = null; local
2229 PreparedStatement ps = conn.prepareStatement(query); local
2240 PreparedStatement ps = conn.prepareStatement(query); local
2255 PreparedStatement ps = conn.prepareStatement(query); local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_eglimage.c 80 struct pipe_surface *ps; local
84 ps = st_manager_get_egl_image_surface(st, (void *) image_handle, usage);
85 if (ps) {
86 strb->Base.Width = ps->width;
87 strb->Base.Height = ps->height;
88 strb->Base.Format = st_pipe_format_to_mesa_format(ps->format);
89 strb->Base._BaseFormat = st_pipe_format_to_base_format(ps->format);
92 pipe_surface_reference(&strb->surface, ps);
93 pipe_resource_reference(&strb->texture, ps->texture);
95 pipe_surface_reference(&ps, NULL)
150 struct pipe_surface *ps; local
    [all...]
  /external/clang/test/Analysis/diagnostics/
deref-track-symbolic-region.c 16 struct S *ps = &syz; local
17 if (ps->x)
31 struct S *ps = &syz; local
32 if (ps->x)
  /external/slf4j/slf4j-simple/src/test/java/org/slf4j/
SilentPrintStream.java 33 public SilentPrintStream(PrintStream ps) {
34 super(ps);
35 other = ps;
  /frameworks/rs/driver/
rsdProgramStore.h 24 const android::renderscript::ProgramStore *ps);
26 const android::renderscript::ProgramStore *ps);
28 const android::renderscript::ProgramStore *ps);
  /bionic/libc/private/
bionic_mbstate.h 46 size_t mbstate_bytes_so_far(const mbstate_t* ps);
47 void mbstate_set_byte(mbstate_t* ps, int i, char byte);
48 uint8_t mbstate_get_byte(const mbstate_t* ps, int n);
49 size_t reset_and_return_illegal(int _errno, mbstate_t* ps);
50 size_t reset_and_return(int _return, mbstate_t* ps);
  /external/iproute2/doc/
Makefile 1 PSFILES=ip-cref.ps ip-tunnels.ps api-ip6-flowlabels.ps ss.ps nstat.ps arpd.ps rtstat.ps
2 # tc-cref.ps
4 # iki-netdev.ps iki-neighdst.ps
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 569 PrintStream ps = new PrintStream(s.getOutputStream()); local
596 ps.print(HTTP_VERSION_STRING + " " + HTTP_BAD_METHOD +
598 ps.write(buf, 0, 5);
599 ps.write(EOL);
600 ps.flush();
617 printStatus(ps);
618 printHeaders(ps);
621 psWriteEOL(ps);
628 send404(ps);
630 sendFile(ps);
    [all...]
  /external/llvm/test/MC/Mips/mips64r6/
invalid-mips5-wrong-error.s 8 abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
9 add.ps $f25,$f27,$f13 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 alnv.ps $f12,$f18,$f30,$12 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
18 c.lt.ps $f19,$f5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
19 c.nge.ps $f1,$f26 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
20 c.ngl.ps $f21,$f30 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
21 c.ngle.ps $fcc7,$f12,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instructio
    [all...]
  /external/llvm/test/MC/Mips/mips1/
invalid-mips5-wrong-error.s 9 abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 add.ps $f25,$f27,$f13 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
11 alnv.ps $f12,$f18,$f30,$t0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
12 c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
13 c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
14 c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 c.lt.ps $f19,$f5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 c.nge.ps $f1,$f26 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 c.ngl.ps $f21,$f30 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
18 c.ngle.ps $fcc7,$f12,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instructio
    [all...]
  /external/llvm/test/MC/Mips/mips2/
invalid-mips5-wrong-error.s 9 abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 add.ps $f25,$f27,$f13 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
11 alnv.ps $f12,$f18,$f30,$t0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
12 c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
13 c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
14 c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 c.lt.ps $f19,$f5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 c.nge.ps $f1,$f26 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 c.ngl.ps $f21,$f30 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
18 c.ngle.ps $fcc7,$f12,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instructio
    [all...]
  /external/llvm/test/MC/Mips/mips3/
invalid-mips5-wrong-error.s 9 abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 add.ps $f25,$f27,$f13 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
11 alnv.ps $f12,$f18,$f30,$t0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
12 c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
13 c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
14 c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 c.lt.ps $f19,$f5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 c.nge.ps $f1,$f26 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 c.ngl.ps $f21,$f30 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
18 c.ngle.ps $fcc7,$f12,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instructio
    [all...]
  /external/llvm/test/MC/Mips/mips4/
invalid-mips5-wrong-error.s 9 abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 add.ps $f25,$f27,$f13 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
11 alnv.ps $f12,$f18,$f30,$t0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
12 c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
13 c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
14 c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 c.lt.ps $f19,$f5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 c.nge.ps $f1,$f26 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 c.ngl.ps $f21,$f30 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
18 c.ngle.ps $fcc7,$f12,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instructio
    [all...]
  /frameworks/rs/driver/runtime/
rs_program.c 11 rsgProgramStoreGetDepthFunc(rs_program_store ps) {
12 ProgramStore_t *prog = (ProgramStore_t *)ps.p;
20 rsgProgramStoreIsDepthMaskEnabled(rs_program_store ps) {
21 ProgramStore_t *prog = (ProgramStore_t *)ps.p;
29 rsgProgramStoreIsColorMaskRedEnabled(rs_program_store ps) {
30 ProgramStore_t *prog = (ProgramStore_t *)ps.p;
38 rsgProgramStoreIsColorMaskGreenEnabled(rs_program_store ps) {
39 ProgramStore_t *prog = (ProgramStore_t *)ps.p;
47 rsgProgramStoreIsColorMaskBlueEnabled(rs_program_store ps) {
48 ProgramStore_t *prog = (ProgramStore_t *)ps.p
    [all...]
  /bionic/libc/kernel/uapi/linux/
coff.h 22 #define COFF_SHORT_L(ps) ((short) (((unsigned short) ((unsigned char) ps[1]) << 8) | ((unsigned short) ((unsigned char) ps[0]))))
24 #define COFF_LONG_L(ps) (((long) (((unsigned long) ((unsigned char) ps[3]) << 24) | ((unsigned long) ((unsigned char) ps[2]) << 16) | ((unsigned long) ((unsigned char) ps[1]) << 8) | ((unsigned long) ((unsigned char) ps[0])))))
25 #define COFF_SHORT_H(ps) ((short) (((unsigned short) ((unsigned char) ps[0]) << 8) | ((unsigned short) ((unsigned char) ps[1])))
    [all...]
  /development/ndk/platforms/android-21/include/linux/
coff.h 22 #define COFF_SHORT_L(ps) ((short)(((unsigned short)((unsigned char)ps[1])<<8)| ((unsigned short)((unsigned char)ps[0]))))
24 #define COFF_LONG_L(ps) (((long)(((unsigned long)((unsigned char)ps[3])<<24) | ((unsigned long)((unsigned char)ps[2])<<16) | ((unsigned long)((unsigned char)ps[1])<<8) | ((unsigned long)((unsigned char)ps[0])))))
25 #define COFF_SHORT_H(ps) ((short)(((unsigned short)((unsigned char)ps[0])<<8)| ((unsigned short)((unsigned char)ps[1])))
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
coff.h 22 #define COFF_SHORT_L(ps) ((short)(((unsigned short)((unsigned char)ps[1])<<8)| ((unsigned short)((unsigned char)ps[0]))))
24 #define COFF_LONG_L(ps) (((long)(((unsigned long)((unsigned char)ps[3])<<24) | ((unsigned long)((unsigned char)ps[2])<<16) | ((unsigned long)((unsigned char)ps[1])<<8) | ((unsigned long)((unsigned char)ps[0])))))
25 #define COFF_SHORT_H(ps) ((short)(((unsigned short)((unsigned char)ps[0])<<8)| ((unsigned short)((unsigned char)ps[1])))
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
coff.h 22 #define COFF_SHORT_L(ps) ((short)(((unsigned short)((unsigned char)ps[1])<<8)| ((unsigned short)((unsigned char)ps[0]))))
24 #define COFF_LONG_L(ps) (((long)(((unsigned long)((unsigned char)ps[3])<<24) | ((unsigned long)((unsigned char)ps[2])<<16) | ((unsigned long)((unsigned char)ps[1])<<8) | ((unsigned long)((unsigned char)ps[0])))))
25 #define COFF_SHORT_H(ps) ((short)(((unsigned short)((unsigned char)ps[0])<<8)| ((unsigned short)((unsigned char)ps[1])))
    [all...]

Completed in 1352 milliseconds

1 2 3 4 5 6 7 8 91011>>