HomeSort by relevance Sort by last modified time
    Searched defs:vp (Results 126 - 150 of 247) sorted by null

1 2 3 4 56 7 8 910

  /external/libvpx/libvpx/vp8/common/
mfqe.c 146 unsigned char *vp; local
235 for (vp = v, vdp = vd, i = 0; i < uvblksize; ++i, vp += uv_stride, vdp += uvd_stride)
236 vpx_memcpy(vdp, vp, uvblksize);
337 unsigned char *vp = v_ptr + 4*(i*show->uv_stride+j); local
342 vp += show->uv_stride, vdp += dest->uv_stride)
345 vpx_memcpy(vdp, vp, 4);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_draw.c 274 struct nv30_vertprog *vp = nv30->vertprog.program; local
298 /* setup routing for all necessary vp outputs */
299 for (i = 0; i < vp->info.num_outputs && attrib < 16; i++) {
300 uint semantic = vp->info.output_semantic_name[i];
301 uint index = vp->info.output_semantic_index[i];
308 /* setup routing for replaced point coords not written by vp */
392 struct nv30_vertprog *vp = nv30->vertprog.program; local
393 if (!vp->draw)
394 vp->draw = draw_create_vertex_shader(draw, &vp->pipe)
    [all...]
nv30_state_validate.c 251 struct pipe_viewport_state *vp = &nv30->viewport; local
254 PUSH_DATAf(push, vp->translate[0]);
255 PUSH_DATAf(push, vp->translate[1]);
256 PUSH_DATAf(push, vp->translate[2]);
257 PUSH_DATAf(push, vp->translate[3]);
258 PUSH_DATAf(push, vp->scale[0]);
259 PUSH_DATAf(push, vp->scale[1]);
260 PUSH_DATAf(push, vp->scale[2]);
261 PUSH_DATAf(push, vp->scale[3]);
263 PUSH_DATAf(push, vp->translate[2] - fabsf(vp->scale[2]))
    [all...]
nv30_transfer.c 74 struct nouveau_heap *vp; local
76 vp = nv30->blit_vp;
77 if (!vp) {
88 vp = nv30->blit_vp;
89 if (vp) {
93 PUSH_DATA (push, vp->start);
107 return vp;
147 struct nouveau_heap *vp = nv30_transfer_rect_vertprog(nv30); local
270 PUSH_DATA (push, vp->start);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_program.h 77 ubyte bfc[2]; /* indices into varying for FFC (FP) or BFC (VP) */
81 } vp; member in struct:nv50_program
nv50_shader_state.c 150 struct nv50_program *vp = nv50->vertprog; local
152 if (!nv50_program_validate(nv50, vp))
154 nv50_program_update_context_state(nv50, vp, 0);
157 PUSH_DATA (push, vp->vp.attrs[0]);
158 PUSH_DATA (push, vp->vp.attrs[1]);
160 PUSH_DATA (push, vp->max_out);
162 PUSH_DATA (push, vp->max_gpr);
164 PUSH_DATA (push, vp->code_base)
340 struct nv50_program *vp = nv50->gmtyprog ? nv50->gmtyprog : nv50->vertprog; local
524 struct nv50_program *vp = nv50->vertprog; local
    [all...]
nv50_state_validate.c 142 struct pipe_viewport_state *vp = &nv50->viewport; local
163 minx = MAX2(minx, (int)(vp->translate[0] - fabsf(vp->scale[0])));
164 maxx = MIN2(maxx, (int)(vp->translate[0] + fabsf(vp->scale[0])));
165 miny = MAX2(miny, (int)(vp->translate[1] - fabsf(vp->scale[1])));
166 maxy = MIN2(maxy, (int)(vp->translate[1] + fabsf(vp->scale[1])));
205 struct nv50_program *vp, uint8_t mask
228 struct nv50_program *vp; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_state_validate.c 221 struct pipe_viewport_state *vp = &nvc0->viewport; local
226 PUSH_DATAf(push, vp->translate[0]);
227 PUSH_DATAf(push, vp->translate[1]);
228 PUSH_DATAf(push, vp->translate[2]);
230 PUSH_DATAf(push, vp->scale[0]);
231 PUSH_DATAf(push, vp->scale[1]);
232 PUSH_DATAf(push, vp->scale[2]);
236 x = util_iround(MAX2(0.0f, vp->translate[0] - fabsf(vp->scale[0])));
237 y = util_iround(MAX2(0.0f, vp->translate[1] - fabsf(vp->scale[1])))
291 struct nvc0_program *vp; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11u.h 205 D3D11_VIEWPORT vp; local
206 vp.TopLeftX = x;
207 vp.TopLeftY = y;
208 vp.Width = width;
209 vp.Height = height;
210 vp.MinDepth = 0;
211 vp.MaxDepth = 1;
212 ctx->RSSetViewports(1, &vp);
  /external/mesa3d/src/gallium/tests/graw/
fs-test.c 183 struct pipe_viewport_state vp; local
185 vp.scale[0] = half_width;
186 vp.scale[1] = half_height;
187 vp.scale[2] = half_depth;
188 vp.scale[3] = 1.0f;
190 vp.translate[0] = half_width + x;
191 vp.translate[1] = half_height + y;
192 vp.translate[2] = half_depth + z;
193 vp.translate[3] = 0.0f;
195 ctx->set_viewport_state( ctx, &vp );
    [all...]
quad-sample.c 69 struct pipe_viewport_state vp; local
71 vp.scale[0] = half_width;
72 vp.scale[1] = half_height;
73 vp.scale[2] = half_depth;
74 vp.scale[3] = 1.0f;
76 vp.translate[0] = half_width + x;
77 vp.translate[1] = half_height + y;
78 vp.translate[2] = half_depth + z;
79 vp.translate[3] = 0.0f;
81 ctx->set_viewport_state( ctx, &vp );
    [all...]
tri-instanced.c 89 struct pipe_viewport_state vp; local
91 vp.scale[0] = half_width;
92 vp.scale[1] = half_height;
93 vp.scale[2] = half_depth;
94 vp.scale[3] = 1.0f;
96 vp.translate[0] = half_width + x;
97 vp.translate[1] = half_height + y;
98 vp.translate[2] = half_depth + z;
99 vp.translate[3] = 0.0f;
101 ctx->set_viewport_state( ctx, &vp );
    [all...]
vs-test.c 127 struct pipe_viewport_state vp; local
129 vp.scale[0] = half_width;
130 vp.scale[1] = half_height;
131 vp.scale[2] = half_depth;
132 vp.scale[3] = 1.0f;
134 vp.translate[0] = half_width + x;
135 vp.translate[1] = half_height + y;
136 vp.translate[2] = half_depth + z;
137 vp.translate[3] = 0.0f;
139 ctx->set_viewport_state( ctx, &vp );
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_dump.c 126 batch_out(brw, name, offset, 7, "vp xmin %f\n", clip->viewport_xmin);
127 batch_out(brw, name, offset, 8, "vp xmax %f\n", clip->viewport_xmax);
128 batch_out(brw, name, offset, 9, "vp ymin %f\n", clip->viewport_ymin);
129 batch_out(brw, name, offset, 10, "vp ymax %f\n", clip->viewport_ymax);
302 const char *name = "SF VP";
303 struct brw_sf_viewport *vp = intel->batch.bo->virtual + offset; local
307 batch_out(brw, name, offset, 0, "m00 = %f\n", vp->viewport.m00);
308 batch_out(brw, name, offset, 1, "m11 = %f\n", vp->viewport.m11);
309 batch_out(brw, name, offset, 2, "m22 = %f\n", vp->viewport.m22);
310 batch_out(brw, name, offset, 3, "m30 = %f\n", vp->viewport.m30)
325 struct brw_clipper_viewport *vp = intel->batch.bo->virtual + offset; local
340 struct gen7_sf_clip_viewport *vp = intel->batch.bo->virtual + offset; local
360 struct brw_cc_viewport *vp = brw->intel.batch.bo->virtual + offset; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_vertprog.c 103 static GLboolean r200VertexProgUpdateParams(struct gl_context *ctx, struct r200_vertex_program *vp)
108 struct gl_vertex_program *mesa_vp = &vp->mesa_program;
127 //fprintf(stderr, "%s", vp->Parameters->Parameters[pi].Name);
239 static void vp_dump_inputs(struct r200_vertex_program *vp, char *caller)
243 if(vp == NULL){
244 fprintf(stderr, "vp null in call to %s from %s\n", __FUNCTION__, caller);
250 fprintf(stderr, "%d ", vp->inputs[i]);
256 static unsigned long t_src_index(struct r200_vertex_program *vp, struct prog_src_register *src)
263 /* if(vp->inputs[src->Index] != -1)
264 return vp->inputs[src->Index]
1119 struct r200_vertex_program *vp = (struct r200_vertex_program *)ctx->VertexProgram.Current; local
1214 struct r200_vertex_program *vp; local
1239 struct r200_vertex_program *vp = (void *)prog; local
1264 struct r200_vertex_program *vp = (void *)prog; local
    [all...]
  /external/mesa3d/src/mesa/program/
program.c 445 ((*ptr)->Target == GL_VERTEX_PROGRAM_ARB ? "VP" :
470 (prog->Target == GL_VERTEX_PROGRAM_ARB ? "VP" :
538 const struct gl_vertex_program *vp = gl_vertex_program_const(prog); local
540 vpc->IsPositionInvariant = vp->IsPositionInvariant;
541 vpc->IsNVProgram = vp->IsNVProgram;
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_array.c 310 is_interleaved_arrays(const struct st_vertex_program *vp,
321 const GLuint mesaAttr = vp->index_to_input[attr];
359 setup_interleaved_attribs(const struct st_vertex_program *vp,
375 const GLuint mesaAttr0 = vp->index_to_input[0];
385 low_addr = arrays[vp->index_to_input[0]]->Ptr;
388 const GLubyte *start = arrays[vp->index_to_input[attr]]->Ptr;
403 const GLuint mesaAttr = vp->index_to_input[attr];
462 const struct st_vertex_program *vp,
472 const GLuint mesaAttr = vp->index_to_input[attr];
534 const struct st_vertex_program *vp; local
    [all...]
st_cb_clear.c 287 struct pipe_viewport_state vp; local
288 vp.scale[0] = 0.5f * fb_width;
289 vp.scale[1] = fb_height * (invert ? -0.5f : 0.5f);
290 vp.scale[2] = 1.0f;
291 vp.scale[3] = 1.0f;
292 vp.translate[0] = 0.5f * fb_width;
293 vp.translate[1] = 0.5f * fb_height;
294 vp.translate[2] = 0.0f;
295 vp.translate[3] = 0.0f;
296 cso_set_viewport(st->cso_context, &vp);
    [all...]
st_cb_drawtex.c 257 struct pipe_viewport_state vp; local
258 vp.scale[0] = 0.5f * width;
259 vp.scale[1] = height * (invert ? -0.5f : 0.5f);
260 vp.scale[2] = 1.0f;
261 vp.scale[3] = 1.0f;
262 vp.translate[0] = 0.5f * width;
263 vp.translate[1] = 0.5f * height;
264 vp.translate[2] = 0.0f;
265 vp.translate[3] = 0.0f;
266 cso_set_viewport(cso, &vp);
    [all...]
  /external/openssl/crypto/bn/
bn_asm.c 853 volatile BN_ULONG *vp; local
859 vp = tp = alloca((num+2)*sizeof(BN_ULONG));
926 for(i=0;i<num+2;i++) vp[i] = 0;
930 for(i=0;i<num;i++) rp[i] = tp[i], vp[i] = 0;
931 vp[num] = 0;
932 vp[num+1] = 0;
989 volatile BN_ULONG *vp; local
992 vp = tp = alloca((num+2)*sizeof(BN_ULONG));
1015 for(i=0;i<num+2;i++) vp[i] = 0;
1019 for(i=0;i<num;i++) rp[i] = tp[i], vp[i] = 0
    [all...]
  /external/ppp/pppd/plugins/radius/
avpair.c 22 VALUE_PAIR **vp);
37 VALUE_PAIR *vp; local
39 vp = rc_avpair_new (attrid, pval, len, vendorcode);
41 if (vp != (VALUE_PAIR *) NULL)
43 rc_avpair_insert (list, (VALUE_PAIR *) NULL, vp);
46 return vp;
60 int rc_avpair_assign (VALUE_PAIR *vp, void *pval, int len)
64 switch (vp->type)
75 memcpy(vp->strvalue, (char *)pval, len);
76 vp->strvalue[len] = '\0'
112 VALUE_PAIR *vp = (VALUE_PAIR *) NULL; local
162 VALUE_PAIR *vp; local
369 VALUE_PAIR *vp, *fp = NULL, *lp = NULL; local
402 VALUE_PAIR *vp; local
775 VALUE_PAIR *vp = NULL; local
    [all...]
sendserver.c 33 static int rc_pack_list (VALUE_PAIR *vp, char *secret, AUTH_HDR *auth)
44 while (vp != (VALUE_PAIR *) NULL)
47 if (vp->vendorcode != VENDOR_NONE) {
55 *buf++ = (((unsigned int) vp->vendorcode) >> 16) & 255;
56 *buf++ = (((unsigned int) vp->vendorcode) >> 8) & 255;
57 *buf++ = ((unsigned int) vp->vendorcode) & 255;
60 *buf++ = vp->attribute;
63 switch(vp->type) {
65 length = vp->lvalue;
68 memcpy(buf, vp->strvalue, (size_t) length)
214 VALUE_PAIR *vp; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/svga/
SDL_svgavideo.c 494 int page, vp; local
509 vp = y * pitch + x * bpp;
510 src = (unsigned char *)this->screen->pixels + vp;
511 page = vp >> 16;
512 vp &= 0xffff;
515 if (vp + w > 0x10000) {
516 if (vp >= 0x10000) {
519 vp &= 0xffff;
521 SDL_memcpy(dst + vp, src, 0x10000 - vp);
    [all...]
  /external/zopfli/src/zopfli/
blocksplitter.c 62 double vp[NUM]; local
73 vp[i] = f(p[i], context);
76 best = vp[0];
78 if (vp[i] < best) {
79 best = vp[i];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
mfqe.c 146 unsigned char *vp; local
235 for (vp = v, vdp = vd, i = 0; i < uvblksize; ++i, vp += uv_stride, vdp += uvd_stride)
236 vpx_memcpy(vdp, vp, uvblksize);
337 unsigned char *vp = v_ptr + 4*(i*show->uv_stride+j); local
342 vp += show->uv_stride, vdp += dest->uv_stride)
345 vpx_memcpy(vdp, vp, 4);

Completed in 1588 milliseconds

1 2 3 4 56 7 8 910