Searched defs:ps (Results 1 - 25 of 271) sorted by relevance

1234567891011

/external/bison/lib/
H A Dmbsinit.c30 mbsinit (const mbstate_t *ps) argument
32 return ps == NULL || *ps == 0;
54 mbsinit (const mbstate_t *ps) argument
56 const char *pstate = (const char *)ps;
/external/clang/test/CodeGen/
H A Dstruct-passing.c17 void *ps[] = { f0, f1, f2, f3, f4, f5 }; variable
/external/clang/test/FixIt/
H A Dfixit-pmem.cpp15 int foo(int S::* ps, S s, S* p) argument
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/proguard/src/proguard/
H A DSeedPrinter.java42 private final PrintStream ps; field in class:SeedPrinter
48 public SeedPrinter(PrintStream ps) throws IOException argument
50 this.ps = ps;
89 SimpleClassPrinter printer = new SimpleClassPrinter(false, ps);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_clear.h48 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);
H A Du_surfaces.c38 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, p
80 util_surfaces_do_detach(struct util_surfaces *us, struct pipe_surface *ps) argument
116 struct pipe_surface *ps = us->u.array[i]; local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Denh_upsample.c32 int16_t *ps, *w16tmp; local
41 ps=seq1+2;
42 (*pu11) = WEBRTC_SPL_MUL_16_16(*ps--,*pp++);
43 (*pu11) += WEBRTC_SPL_MUL_16_16(*ps--,*pp++);
44 (*pu11) += WEBRTC_SPL_MUL_16_16(*ps--,*pp++);
48 ps=seq1+3;
49 (*pu11) = WEBRTC_SPL_MUL_16_16(*ps--,*pp++);
50 (*pu11) += WEBRTC_SPL_MUL_16_16(*ps--,*pp++);
51 (*pu11) += WEBRTC_SPL_MUL_16_16(*ps--,*pp++);
52 (*pu11) += WEBRTC_SPL_MUL_16_16(*ps
[all...]
/external/clang/test/Analysis/diagnostics/
H A Dderef-track-symbolic-region.c16 struct S *ps = &syz; local
17 if (ps->x)
31 struct S *ps = &syz; local
32 if (ps->x)
/external/compiler-rt/test/BlocksRuntime/
H A Dbyrefstruct.c15 unsigned long ps[30]; member in struct:__anon19645
26 fiddly.ps[i]++;
36 fiddly.ps[i] = i * i * i;
48 //printf("[%d]: fiddly.ps: %lu, copy.ps: %lu, fiddly.qs: %d, copy.qs: %d\n", i, fiddly.ps[i], copy.ps[i], fiddly.qs[i], copy.qs[i]);
49 if ( (fiddly.ps[i] != copy.ps[i] + 1) || (fiddly.qs[i] != copy.qs[i] + 1) ) {
H A Dlarge-struct.c15 unsigned long ps[30]; member in struct:__anon19646
29 inny.ps[i] = i * i * i;
42 if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) {
/external/emma/core/java12/com/vladium/util/exception/
H A DIThrowableWrapper.java49 * this method delegates to super.printStackTrace(ps) where 'super' is the
54 void __printStackTrace (PrintStream ps); argument
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_clear.h48 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);
H A Du_surfaces.c38 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, p
80 util_surfaces_do_detach(struct util_surfaces *us, struct pipe_surface *ps) argument
116 struct pipe_surface *ps = us->u.array[i]; local
[all...]
/external/chromium_org/ash/shell/
H A Dlock_view.cc55 gfx::Size ps = unlock_button_->GetPreferredSize(); variable
56 bounds.set_y(bounds.bottom() - ps.height() - 5);
57 bounds.set_x((bounds.width() - ps.width()) / 2);
58 bounds.set_size(ps);
90 gfx::Size ps = lock_view->GetPreferredSize(); local
93 params.bounds = gfx::Rect((root_window_size.width() - ps.width()) / 2,
94 (root_window_size.height() - ps.height()) / 2,
95 ps.width(), ps.height());
/external/chromium_org/base/strings/
H A Dsys_string_conversions_posix.cc43 mbstate_t ps; local
48 memset(&ps, 0, sizeof(ps));
55 size_t res = src ? wcrtomb(buf, src, &ps) : 0;
79 memset(&ps, 0, sizeof(ps));
83 size_t res = src ? wcrtomb(&out[j], src, &ps) : 0;
103 mbstate_t ps; local
108 memset(&ps, 0, sizeof(ps));
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_clear.c74 struct pipe_surface *ps = softpipe->framebuffer.zsbuf; local
76 cv = util_pack64_z_stencil(ps->format, depth, stencil);
/external/chromium_org/ui/views/examples/
H A Dthrobber_example.cc34 gfx::Size ps = child->GetPreferredSize(); variable
35 child->SetBounds((width() - ps.width()) / 2,
36 (height() - ps.height()) / 2,
37 ps.width(), ps.height());
/external/clang/test/SemaCXX/
H A Dblocks-1.cpp6 unsigned long ps[30]; member in struct:__anon19245
17 inny.ps[i] = i * i * i;
29 if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) {
H A Dptrtomember.cpp9 int foo(int S::* ps, S *s) argument
11 return (s->*ps)(1); // expected-error {{called object type 'int' is not a function or function pointer}}
/external/eigen/blas/
H A Dlevel1_real_impl.h57 int EIGEN_BLAS_FUNC(rot)(int *n, RealScalar *px, int *incx, RealScalar *py, int *incy, RealScalar *pc, RealScalar *ps) argument
65 Scalar s = *reinterpret_cast<Scalar*>(ps);
/external/jemalloc/test/integration/
H A Daligned_alloc.c79 void *ps[NITER]; local
82 ps[i] = NULL;
92 ps[i] = aligned_alloc(alignment, size);
93 if (ps[i] == NULL) {
102 total += malloc_usable_size(ps[i]);
107 if (ps[i] != NULL) {
108 free(ps[i]);
109 ps[i] = NULL;
H A Dmallocx.c40 void *ps[NITER]; local
43 ps[i] = NULL;
58 ps[i] = mallocx(sz, MALLOCX_ALIGN(alignment) |
60 assert_ptr_not_null(ps[i],
63 rsz = sallocx(ps[i], 0);
71 (void *)((uintptr_t)ps[i] & (alignment-1)),
73 " alignment=%zu, size=%zu", ps[i],
80 if (ps[i] != NULL) {
81 dallocx(ps[i], 0);
82 ps[
[all...]
H A Dposix_memalign.c72 void *ps[NITER]; local
75 ps[i] = NULL;
85 err = posix_memalign(&ps[i],
96 total += malloc_usable_size(ps[i]);
101 if (ps[i] != NULL) {
102 free(ps[i]);
103 ps[i] = NULL;
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_clear.c74 struct pipe_surface *ps = softpipe->framebuffer.zsbuf; local
76 cv = util_pack64_z_stencil(ps->format, depth, stencil);
/external/chromium_org/mojo/examples/wm_flow/wm/
H A Dframe_controller.cc37 gfx::Size ps = close_button_->GetPreferredSize(); variable
39 close_button_->SetBounds(bounds.right() - kButtonFrameMargin - ps.width(),
40 kButtonFrameMargin, ps.width(), ps.height());
42 ps = maximize_button_->GetPreferredSize();
44 close_button_->x() - kButtonFrameSpacing - ps.width(),
45 kButtonFrameMargin, ps.width(), ps.height());

Completed in 609 milliseconds

1234567891011