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

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/mesa/src/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...]
u_surfaces.h 61 struct pipe_surface *ps = us->u.array[level]; local
62 if(ps && ps->context == ctx)
64 p_atomic_inc(&ps->reference.count);
65 *res = ps;
85 void util_surfaces_do_detach(struct util_surfaces *us, struct pipe_surface *ps);
88 util_surfaces_detach(struct util_surfaces *us, struct pipe_surface *ps)
90 if(likely(ps->texture->target == PIPE_TEXTURE_2D || ps->texture->target == PIPE_TEXTURE_RECT))
92 us->u.array[ps->u.tex.level] = 0
    [all...]
  /external/clang/test/CodeGen/
struct-passing.c 17 void *ps[] = { f0, f1, f2, f3, f4, f5 }; variable
  /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...]
u_surfaces.h 61 struct pipe_surface *ps = us->u.array[level]; local
62 if(ps && ps->context == ctx)
64 p_atomic_inc(&ps->reference.count);
65 *res = ps;
85 void util_surfaces_do_detach(struct util_surfaces *us, struct pipe_surface *ps);
88 util_surfaces_detach(struct util_surfaces *us, struct pipe_surface *ps)
90 if(likely(ps->texture->target == PIPE_TEXTURE_2D || ps->texture->target == PIPE_TEXTURE_RECT))
92 us->u.array[ps->u.tex.level] = 0
    [all...]
  /bionic/tests/
uchar_test.cpp 49 mbstate_t ps; local
52 memset(&ps, 0, sizeof(ps));
53 EXPECT_EQ(static_cast<size_t>(-2), mbrtoc32(NULL, "\xc2", 1, &ps));
54 EXPECT_EQ(static_cast<size_t>(-1), c32rtomb(out, 0x00a2, &ps));
59 memset(&ps, 0, sizeof(ps));
60 EXPECT_EQ(static_cast<size_t>(-2), mbrtoc32(NULL, "\xc2", 1, &ps));
61 EXPECT_EQ(1U, c32rtomb(NULL, 0x00a2, &ps));
62 EXPECT_TRUE(mbsinit(&ps));
267 mbstate_t ps; local
403 mbstate_t ps; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_clear.c 74 struct pipe_surface *ps = softpipe->framebuffer.zsbuf; local
76 cv = util_pack64_z_stencil(ps->format, depth, stencil);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
enh_upsample.c 32 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--,*pp++)
    [all...]
  /external/compiler-rt/test/BlocksRuntime/
byrefstruct.c 15 unsigned long ps[30]; member in struct:__anon24263
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) ) {
large-struct.c 15 unsigned long ps[30]; member in struct:__anon24264
29 inny.ps[i] = i * i * i;
42 if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) {
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_clear.c 74 struct pipe_surface *ps = softpipe->framebuffer.zsbuf; local
76 cv = util_pack64_z_stencil(ps->format, depth, stencil);
  /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)
  /cts/tests/tests/util/src/android/util/cts/
PrintStreamPrinterTest.java 50 PrintStream ps = new PrintStream(mFile); local
51 printStreamPrinter = new PrintStreamPrinter(ps);
53 ps.flush();
54 ps.close();
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DHGenParameterSpecTest.java 46 DHGenParameterSpec ps = new DHGenParameterSpec(primes[i], local
50 ps.getPrimeSize(), primes[i]);
53 ps.getPrimeSize(), exponents[i]);
DHParameterSpecTest.java 44 BigInteger[] ps = { new BigInteger("-1000000000000"), BigInteger.ZERO, local
49 for (int i = 0; i < ps.length; i++) {
50 DHParameterSpec dhps = new DHParameterSpec(ps[i], gs[i]);
53 dhps.getP(), ps[i]);
58 for (int i = 0; i < ps.length; i++) {
59 DHParameterSpec dhps = new DHParameterSpec(ps[i], gs[i], ls[i]);
62 dhps.getP(), ps[i]);
DHPrivateKeySpecTest.java 44 BigInteger[] ps = { new BigInteger("-1000000000000"), BigInteger.ZERO, local
48 for (int i = 0; i < ps.length; i++) {
49 DHPrivateKeySpec dhpks = new DHPrivateKeySpec(xs[i], ps[i], gs[i]);
55 dhpks.getP(), ps[i]);
DHPublicKeySpecTest.java 44 BigInteger[] ps = { new BigInteger("-1000000000000"), BigInteger.ZERO, local
48 for (int i = 0; i < ps.length; i++) {
49 DHPublicKeySpec dhpks = new DHPublicKeySpec(ys[i], ps[i], gs[i]);
55 dhpks.getP(), ps[i]);
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/spec/
PSourceTest.java 54 PSource.PSpecified ps = new PSource.PSpecified(p); local
58 p[0] == ps.getValue()[0]);
69 PSource.PSpecified ps = new PSource.PSpecified(p); local
70 byte[] result = ps.getValue();
78 result[0] == ps.getValue()[0]);
100 PSource ps = new PSource(pSrcName); local
102 + "in constructor", pSrcName.equals(ps.getAlgorithm()));
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
ECGenParameterSpecTest.java 77 ECGenParameterSpec ps = new ECGenParameterSpec(name); local
78 assertEquals(name, ps.getName());
  /external/bluetooth/bluedroid/bta/gatt/
bta_gatts_utils.c 196 UINT8 *ps, *pt; local
215 ps = su;
218 ps = src.uu.uuid128;
229 return(memcmp(ps, pt, LEN_UUID_128) == 0);
  /external/chromium_org/ash/shell/
lock_view.cc 55 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/
sys_string_conversions_posix.cc 43 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/state_trackers/d3d1x/progs/d3d11tex/
d3d11tex.cpp 29 #include "d3d11tex.hlsl.ps.h"
36 ID3D11PixelShader* ps; member in struct:d3d11tex
44 ensure(dev->CreatePixelShader(g_ps, sizeof(g_ps), NULL, &ps));
104 ctx->PSSetShader(ps, NULL, 0);

Completed in 1101 milliseconds

1 2 3 4 5 6 7 8