Searched defs:plane (Results 51 - 75 of 142) sorted by relevance

123456

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_rast_tri.c256 const struct lp_rast_plane *plane = GET_PLANES(tri); local
264 __m128i p0 = _mm_load_si128((__m128i *)&plane[0]); /* c, dcdx, dcdy, eo */
265 __m128i p1 = _mm_load_si128((__m128i *)&plane[1]); /* c, dcdx, dcdy, eo */
266 __m128i p2 = _mm_load_si128((__m128i *)&plane[2]); /* c, dcdx, dcdy, eo */
277 __m128i span_0; /* 0,dcdx,2dcdx,3dcdx for plane 0 */
278 __m128i span_1; /* 0,dcdx,2dcdx,3dcdx for plane 1 */
279 __m128i span_2; /* 0,dcdx,2dcdx,3dcdx for plane 2 */
370 const struct lp_rast_plane *plane = GET_PLANES(tri); local
374 __m128i p0 = _mm_load_si128((__m128i *)&plane[0]); /* c, dcdx, dcdy, eo */
375 __m128i p1 = _mm_load_si128((__m128i *)&plane[
[all...]
H A Dlp_setup_line.c102 * the plane coefficients (a0, dadx, dady).
283 struct lp_rast_plane *plane; local
592 plane = GET_PLANES(line);
593 plane[0].dcdy = x[0] - x[1];
594 plane[1].dcdy = x[1] - x[2];
595 plane[2].dcdy = x[2] - x[3];
596 plane[3].dcdy = x[3] - x[0];
598 plane[0].dcdx = y[0] - y[1];
599 plane[1].dcdx = y[1] - y[2];
600 plane[
[all...]
H A Dlp_setup_tri.c245 struct lp_rast_plane *plane; local
339 plane = GET_PLANES(tri);
400 _mm_store_si128((__m128i *)&plane[0], p0);
401 _mm_store_si128((__m128i *)&plane[1], p1);
402 _mm_store_si128((__m128i *)&plane[2], p2);
407 plane[0].dcdy = position->dx01;
408 plane[1].dcdy = position->x[1] - position->x[2];
409 plane[2].dcdy = position->dx20;
410 plane[0].dcdx = position->dy01;
411 plane[
656 struct lp_rast_plane *plane = GET_PLANES(tri); local
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_detokenize.c198 int plane, int block, BLOCK_SIZE plane_bsize,
200 struct macroblockd_plane *const pd = &xd->plane[plane];
197 vp9_decode_block_tokens(VP9_COMMON *cm, MACROBLOCKD *xd, int plane, int block, BLOCK_SIZE plane_bsize, int x, int y, TX_SIZE tx_size, vp9_reader *r) argument
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast_tri.c256 const struct lp_rast_plane *plane = GET_PLANES(tri); local
264 __m128i p0 = _mm_load_si128((__m128i *)&plane[0]); /* c, dcdx, dcdy, eo */
265 __m128i p1 = _mm_load_si128((__m128i *)&plane[1]); /* c, dcdx, dcdy, eo */
266 __m128i p2 = _mm_load_si128((__m128i *)&plane[2]); /* c, dcdx, dcdy, eo */
277 __m128i span_0; /* 0,dcdx,2dcdx,3dcdx for plane 0 */
278 __m128i span_1; /* 0,dcdx,2dcdx,3dcdx for plane 1 */
279 __m128i span_2; /* 0,dcdx,2dcdx,3dcdx for plane 2 */
370 const struct lp_rast_plane *plane = GET_PLANES(tri); local
374 __m128i p0 = _mm_load_si128((__m128i *)&plane[0]); /* c, dcdx, dcdy, eo */
375 __m128i p1 = _mm_load_si128((__m128i *)&plane[
[all...]
H A Dlp_setup_line.c102 * the plane coefficients (a0, dadx, dady).
283 struct lp_rast_plane *plane; local
592 plane = GET_PLANES(line);
593 plane[0].dcdy = x[0] - x[1];
594 plane[1].dcdy = x[1] - x[2];
595 plane[2].dcdy = x[2] - x[3];
596 plane[3].dcdy = x[3] - x[0];
598 plane[0].dcdx = y[0] - y[1];
599 plane[1].dcdx = y[1] - y[2];
600 plane[
[all...]
H A Dlp_setup_tri.c245 struct lp_rast_plane *plane; local
339 plane = GET_PLANES(tri);
400 _mm_store_si128((__m128i *)&plane[0], p0);
401 _mm_store_si128((__m128i *)&plane[1], p1);
402 _mm_store_si128((__m128i *)&plane[2], p2);
407 plane[0].dcdy = position->dx01;
408 plane[1].dcdy = position->x[1] - position->x[2];
409 plane[2].dcdy = position->dx20;
410 plane[0].dcdx = position->dy01;
411 plane[
656 struct lp_rast_plane *plane = GET_PLANES(tri); local
[all...]
/external/chromium_org/media/base/
H A Dvideo_frame.cc498 size_t plane,
507 switch (plane) {
519 switch (plane) {
530 switch (plane) {
542 switch (plane) {
553 switch (plane) {
569 NOTREACHED() << "Unsupported video frame format/plane: "
570 << format << "/" << plane; local
575 size_t plane,
578 return PlaneSize(format, plane, coded_siz
497 PlaneSize(Format format, size_t plane, const gfx::Size& coded_size) argument
574 PlaneAllocationSize(Format format, size_t plane, const gfx::Size& coded_size) argument
582 PlaneHorizontalBitsPerPixel(Format format, size_t plane) argument
638 << format << "/" << plane; local
743 IsValidPlane(size_t plane, VideoFrame::Format format) argument
753 RowBytes(size_t plane, VideoFrame::Format format, int width) argument
810 << plane; local
819 Rows(size_t plane, VideoFrame::Format format, int height) argument
876 << plane; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_reconinter.c260 static void build_inter_predictors(MACROBLOCKD *xd, int plane, int block, argument
264 struct macroblockd_plane *const pd = &xd->plane[plane];
327 int plane; local
330 for (plane = plane_from; plane <= plane_to; ++plane) {
332 &xd->plane[plane]);
343 build_inter_predictors(xd, plane,
369 dec_build_inter_predictors(MACROBLOCKD *xd, int plane, int block, int bw, int bh, int x, int y, int w, int h, int mi_x, int mi_y) argument
553 int plane; local
[all...]
H A Dvp9_reconintra.c636 int plane, int bd) {
647 const struct macroblockd_plane *const pd = &xd->plane[plane];
657 if (plane == 0) {
767 int plane) {
776 const struct macroblockd_plane *const pd = &xd->plane[plane];
786 if (plane == 0) {
888 int aoff, int loff, int plane) {
902 x, y, plane, x
625 build_intra_predictors_high(const MACROBLOCKD *xd, const uint8_t *ref8, int ref_stride, uint8_t *dst8, int dst_stride, PREDICTION_MODE mode, TX_SIZE tx_size, int up_available, int left_available, int right_available, int x, int y, int plane, int bd) argument
762 build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref, int ref_stride, uint8_t *dst, int dst_stride, PREDICTION_MODE mode, TX_SIZE tx_size, int up_available, int left_available, int right_available, int x, int y, int plane) argument
884 vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in, TX_SIZE tx_size, PREDICTION_MODE mode, const uint8_t *ref, int ref_stride, uint8_t *dst, int dst_stride, int aoff, int loff, int plane) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_encodemb.c54 void vp9_subtract_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) { argument
55 struct macroblock_plane *const p = &x->plane[plane];
56 const struct macroblockd_plane *const pd = &x->e_mbd.plane[plane];
101 static int optimize_b(MACROBLOCK *mb, int plane, int block, argument
104 struct macroblock_plane *const p = &mb->plane[plane];
105 struct macroblockd_plane *const pd = &xd->plane[plane];
315 vp9_xform_quant_fp(MACROBLOCK *x, int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size) argument
366 vp9_xform_quant_dc(MACROBLOCK *x, int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size) argument
413 vp9_xform_quant(MACROBLOCK *x, int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size) argument
464 encode_block(int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *arg) argument
546 encode_block_pass1(int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *arg) argument
575 int plane; local
598 encode_block_intra(int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *arg) argument
725 vp9_encode_block_intra(MACROBLOCK *x, int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, int8_t *skip) argument
733 vp9_encode_intra_block_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) argument
[all...]
H A Dvp9_tokenize.c251 static void set_entropy_context_b(int plane, int block, BLOCK_SIZE plane_bsize, argument
255 struct macroblock_plane *p = &args->cpi->mb.plane[plane];
256 struct macroblockd_plane *pd = &xd->plane[plane];
293 static void tokenize_b(int plane, int block, BLOCK_SIZE plane_bsize, argument
300 struct macroblock_plane *p = &cpi->mb.plane[plane];
301 struct macroblockd_plane *pd = &xd->plane[plane];
387 is_skippable(int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *argv) argument
398 vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_clip.c67 float (*plane)[4]; member in struct:clip_stage
271 * this function extracts the clip distance for the current plane,
279 const float *plane; local
288 plane = clipper->plane[plane_idx];
289 dp = dot4(vert->clip, plane);
385 * on whether it's a user-defined clipping plane. We're
389 /* we want to see an edge along the clip plane */
394 /* we don't want to see an edge along the frustum clip plane */
495 clipmask &= ~(1 << plane_idx); /* turn off this plane'
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_cmd.c1192 * plane is enabled then all 3d rendering is clipped to against
1193 * the plane.
1206 uint32 index, const float *plane)
1218 cmd->plane[0] = plane[0];
1219 cmd->plane[1] = plane[1];
1220 cmd->plane[2] = plane[2];
1221 cmd->plane[
1205 SVGA3D_SetClipPlane(struct svga_winsys_context *swc, uint32 index, const float *plane) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
H A Ddri2.c711 dri2_from_planar(__DRIimage *image, int plane, void *loaderPrivate) argument
715 if (plane != 0)
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_state.c61 nouveau_clip_plane(struct gl_context *ctx, GLenum plane, const GLfloat *equation) argument
63 context_dirty_i(ctx, CLIP_PLANE, plane - GL_CLIP_PLANE0);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Des1_conversion.c60 _es_ClipPlanef(GLenum plane, const GLfloat *equation) argument
69 _mesa_ClipPlane(plane, converted_equation);
73 _es_ClipPlanex(GLenum plane, const GLfixed *equation) argument
82 _mesa_ClipPlane(plane, converted_equation);
210 _es_GetClipPlanef(GLenum plane, GLfloat *equation) argument
215 _mesa_GetClipPlane(plane, converted_equation);
222 _es_GetClipPlanex(GLenum plane, GLfixed *equation) argument
227 _mesa_GetClipPlane(plane, converted_equation);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconinter.c142 static void build_inter_predictors(MACROBLOCKD *xd, int plane, int block, argument
146 struct macroblockd_plane *const pd = &xd->plane[plane];
163 ? (plane == 0 ? mi->bmi[block].as_mv[ref].as_mv
204 int plane; local
207 for (plane = plane_from; plane <= plane_to; ++plane) {
209 &xd->plane[plane]);
246 dec_build_inter_predictors(MACROBLOCKD *xd, int plane, int block, int bw, int bh, int x, int y, int w, int h, int mi_x, int mi_y) argument
387 int plane; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemb.c54 void vp9_subtract_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) { argument
55 struct macroblock_plane *const p = &x->plane[plane];
56 const struct macroblockd_plane *const pd = &x->e_mbd.plane[plane];
108 static void optimize_b(int plane, int block, BLOCK_SIZE plane_bsize, argument
112 struct macroblock_plane *p = &mb->plane[plane];
113 struct macroblockd_plane *pd = &xd->plane[plane];
317 vp9_xform_quant(MACROBLOCK *x, int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size) argument
367 encode_block(int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *arg) argument
428 encode_block_pass1(int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *arg) argument
457 int plane; local
475 encode_block_intra(int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *arg) argument
601 vp9_encode_block_intra(MACROBLOCK *x, int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, unsigned char *skip) argument
609 vp9_encode_intra_block_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) argument
[all...]
H A Dvp9_tokenize.c167 static void set_entropy_context_b(int plane, int block, BLOCK_SIZE plane_bsize, argument
171 struct macroblock_plane *p = &args->cpi->mb.plane[plane];
172 struct macroblockd_plane *pd = &xd->plane[plane];
209 static void tokenize_b(int plane, int block, BLOCK_SIZE plane_bsize, argument
216 struct macroblock_plane *p = &cpi->mb.plane[plane];
217 struct macroblockd_plane *pd = &xd->plane[plane];
293 is_skippable(int plane, int block, BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *argv) argument
300 vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_clip.c67 float (*plane)[4]; member in struct:clip_stage
271 * this function extracts the clip distance for the current plane,
279 const float *plane; local
288 plane = clipper->plane[plane_idx];
289 dp = dot4(vert->clip, plane);
385 * on whether it's a user-defined clipping plane. We're
389 /* we want to see an edge along the clip plane */
394 /* we don't want to see an edge along the frustum clip plane */
495 clipmask &= ~(1 << plane_idx); /* turn off this plane'
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_cmd.c1192 * plane is enabled then all 3d rendering is clipped to against
1193 * the plane.
1206 uint32 index, const float *plane)
1218 cmd->plane[0] = plane[0];
1219 cmd->plane[1] = plane[1];
1220 cmd->plane[2] = plane[2];
1221 cmd->plane[
1205 SVGA3D_SetClipPlane(struct svga_winsys_context *swc, uint32 index, const float *plane) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/dri/drm/
H A Ddri2.c711 dri2_from_planar(__DRIimage *image, int plane, void *loaderPrivate) argument
715 if (plane != 0)
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_state.c61 nouveau_clip_plane(struct gl_context *ctx, GLenum plane, const GLfloat *equation) argument
63 context_dirty_i(ctx, CLIP_PLANE, plane - GL_CLIP_PLANE0);
/external/mesa3d/src/mesa/main/
H A Des1_conversion.c60 _es_ClipPlanef(GLenum plane, const GLfloat *equation) argument
69 _mesa_ClipPlane(plane, converted_equation);
73 _es_ClipPlanex(GLenum plane, const GLfixed *equation) argument
82 _mesa_ClipPlane(plane, converted_equation);
210 _es_GetClipPlanef(GLenum plane, GLfloat *equation) argument
215 _mesa_GetClipPlane(plane, converted_equation);
222 _es_GetClipPlanex(GLenum plane, GLfixed *equation) argument
227 _mesa_GetClipPlane(plane, converted_equation);

Completed in 569 milliseconds

123456