/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_setup_point.c | 387 struct lp_rast_plane *plane = GET_PLANES(point); local 389 plane[0].dcdx = -1; 390 plane[0].dcdy = 0; 391 plane[0].c = 1-bbox.x0; 392 plane[0].eo = 1; 394 plane[1].dcdx = 1; 395 plane[1].dcdy = 0; 396 plane[1].c = bbox.x1+1; 397 plane[1].eo = 0; 399 plane[2].dcdx = 0 [all...] |
lp_rast_tri.c | 256 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[1]); /* c, dcdx, dcdy, eo * [all...] |
lp_setup_tri.c | 245 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[1].dcdx = position->y[1] - position->y[2] 656 struct lp_rast_plane *plane = GET_PLANES(tri); local [all...] |
/external/mesa3d/src/gallium/drivers/svga/ |
svga_state_framebuffer.c | 498 /* need to express the plane in D3D-style coordinate space. 504 * Apply that matrix to our plane equation, and invert Y. 510 float plane[4]; local 512 plane[0] = a; 513 plane[1] = b; 514 plane[2] = 2.0f * c; 515 plane[3] = d - c; 517 ret = SVGA3D_SetClipPlane(svga->swc, i, plane);
|
/hardware/samsung_slsi/exynos5/libhwjpeg/ |
ExynosJpegBase.cpp | 200 struct v4l2_plane plane[JPEG_MAX_PLANE_CNT]; local 205 memset(plane, 0, (int)JPEG_MAX_PLANE_CNT * sizeof(struct v4l2_plane)); 212 v4l2_buf.m.planes = plane;
|
/external/chromium_org/content/common/gpu/ |
image_transport_surface_mac.cc | 466 // Don't think we need to identify a plane. 467 GLuint plane = 0; local 478 plane);
|
/external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/ |
VideoStreamsView.java | 225 ByteBuffer plane = frame.yuvPlanes[i]; local 233 GLES20.GL_LUMINANCE, GLES20.GL_UNSIGNED_BYTE, plane); 305 // YUV to RGB pixel shader. Loads a pixel from each plane and pass through the
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_pipe_clip.c | 67 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's bit * [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_rast_tri.c | 256 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[1]); /* c, dcdx, dcdy, eo * [all...] |
lp_setup_tri.c | 245 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[1].dcdx = position->y[1] - position->y[2] 656 struct lp_rast_plane *plane = GET_PLANES(tri); local [all...] |
/external/libvpx/libvpx/ |
vp9_spatial_scalable_encoder.c | 126 int plane; local 128 for (plane = 0; plane < 3; ++plane) { 130 const int w = (plane ? (1 + img->d_w) / 2 : img->d_w); 131 const int h = (plane ? (1 + img->d_h) / 2 : img->d_h); 134 switch (plane) { 142 ptr = img->planes[plane]; 154 ptr += img->stride[plane];
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_pipe_clip.c | 67 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's bit * [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
SDL_x11events.c | 271 int plane; local 276 plane = (-0xC8 + (c << 2) + (utf8[1] >> 4)); 277 if (plane == 0) { 282 } else if (plane <= 16) { [all...] |
/external/svox/pico/lib/ |
picotrns.c | 46 picoos_uint8 picotrns_unplane(picoos_int16 symIn, picoos_uint8 * plane) { 48 (*plane) = 0; 51 (*plane) = symIn >> 8; 62 picoos_uint8 plane; local 64 sym = picotrns_unplane(insym, &plane); 65 switch (plane) { 695 * Add chars from NULLC-terminated string \c inStr, shifted to plane \c plane, to internal input buffer of 700 * @param plane 703 pico_status_t picotrns_stAddWithPlane(picotrns_SimpleTransducer this, picoos_char * inStr, picoos_uint8 plane) 727 picoos_uint8 plane; local [all...] |
picosa.c | 1681 picoos_uint8 plane; local [all...] |
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/dec/vp8/ |
Exynos_OMX_Vp8dec.c | 649 ExynosVideoPlane plane; local 650 plane.addr = pExynosInputPort->extendBufferHeader[i].OMXBufferHeader->pBuffer; 651 plane.allocSize = pExynosInputPort->extendBufferHeader[i].OMXBufferHeader->nAllocLen; 652 plane.fd = pExynosInputPort->extendBufferHeader[i].buf_fd[0]; 653 if (pInbufOps->Register(hMFCHandle, &plane, MFC_INPUT_BUFFER_PLANE) != VIDEO_ERROR_NONE) { 804 int plane; local 1194 int i, plane; local 1284 int i, plane; local 1522 int plane; local [all...] |
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/enc/ |
Exynos_OMX_Venc.c | 163 Exynos_OSAL_Log(EXYNOS_LOG_ERROR, "Failed to Alloc plane"); 343 /* YUV420Planar converted to YUV420Semiplanar (interleaved UV plane) as per MFC spec.*/ 447 int plane = 0; local 466 /* input buffers are 2 plane. */ 488 for (plane = 0; plane < MFC_INPUT_BUFFER_PLANE; plane++) { 489 srcInputData->buffer.multiPlaneBuffer.dataBuffer[plane] = 490 Exynos_OSAL_SharedMemory_IONToVirt(pVideoEnc->hSharedMemory, srcInputData->buffer.multiPlaneBuffer.fd[plane]); 491 if(srcInputData->buffer.multiPlaneBuffer.dataBuffer[plane] == NULL) [all...] |
/cts/tests/tests/display/src/android/display/cts/ |
VirtualDisplayTest.java | 340 final Image.Plane plane = image.getPlanes()[0]; local 341 final ByteBuffer buffer = plane.getBuffer(); 344 final int pixelStride = plane.getPixelStride(); 345 final int rowStride = plane.getRowStride();
|
/external/chromium_org/media/cdm/ppapi/ |
cdm_adapter.cc | 808 cdm::VideoFrame::VideoPlane plane = local 810 if (ppb_buffer->Size() < video_frame->PlaneOffset(plane) + 811 plane_height * video_frame->Stride(plane)) { [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/ |
vl_mpeg12_decoder.c | 743 unsigned plane = plane_order[component]; local 744 if (!buf->num_ycbcr_blocks[plane]) continue; 746 vb[1] = vl_vb_get_ycbcr(&buf->vertex_stream, plane); 750 vl_idct_prepare_stage2(i ? &dec->idct_c : &dec->idct_y, &buf->idct[plane]); 752 dec->base.context->set_fragment_sampler_views(dec->base.context, 1, &mc_source_sv[plane]); 755 vl_mc_render_ycbcr(i ? &dec->mc_c : &dec->mc_y, &buf->mc[i], j, buf->num_ycbcr_blocks[plane]); [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_blockd.h | 189 struct macroblockd_plane plane[MAX_MB_PLANE]; member in struct:macroblockd 266 xd->plane[i].plane_type = i ? PLANE_TYPE_UV : PLANE_TYPE_Y_WITH_DC; 267 xd->plane[i].subsampling_x = i ? ss_x : 0; 268 xd->plane[i].subsampling_y = i ? ss_y : 0; 272 xd->plane[3].subsampling_x = 0; 273 xd->plane[3].subsampling_y = 0; 290 const struct macroblockd_plane* plane) { 291 return 4 << (b_width_log2(bsize) - plane->subsampling_x); 295 const struct macroblockd_plane* plane) { 296 return 4 << (b_height_log2(bsize) - plane->subsampling_y) [all...] |
/external/mesa3d/src/gallium/auxiliary/vl/ |
vl_mpeg12_decoder.c | 743 unsigned plane = plane_order[component]; local 744 if (!buf->num_ycbcr_blocks[plane]) continue; 746 vb[1] = vl_vb_get_ycbcr(&buf->vertex_stream, plane); 750 vl_idct_prepare_stage2(i ? &dec->idct_c : &dec->idct_y, &buf->idct[plane]); 752 dec->base.context->set_fragment_sampler_views(dec->base.context, 1, &mc_source_sv[plane]); 755 vl_mc_render_ycbcr(i ? &dec->mc_c : &dec->mc_y, &buf->mc[i], j, buf->num_ycbcr_blocks[plane]); [all...] |
/frameworks/base/core/tests/coretests/src/android/hardware/display/ |
VirtualDisplayTest.java | 435 final Image.Plane plane = image.getPlanes()[0]; local 436 final ByteBuffer buffer = plane.getBuffer(); 439 final int pixelStride = plane.getPixelStride(); 440 final int rowStride = plane.getRowStride();
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/ |
TestAppRS.java | 88 Renderable plane = (Renderable)mActiveScene.getRenderableByName("pPlaneShape1"); local 89 if (plane != null) { 90 plane.setVisible(!mUseBlur); 257 Renderable plane = (Renderable)mActiveScene.getRenderableByName("pPlaneShape1"); local 258 if (plane != null) { 259 plane.setRenderState(texState); 260 plane.setVisible(!mUseBlur);
|
/hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/dec/src/ |
ExynosVideoDecoder.c | 1242 int nIndex, plane; local 1280 int nIndex, plane; local [all...] |