HomeSort by relevance Sort by last modified time
    Searched full:plane (Results 226 - 250 of 572) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/quake/quake/src/WinQuake/
mathlib.cpp 78 ** project the point onto the plane defined by src
254 if (plane->normal[i] < 0)
265 dist = DotProduct (plane->normal, corners[0]) - plane->dist;
266 dist2 = DotProduct (plane->normal, corners[1]) - plane->dist;
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.cpp 179 const GraphicPlane& plane(mGraphicPlanes[dpy]);
180 return plane;
223 GraphicPlane& plane(graphicPlane(dpy));
225 plane.setDisplayHardware(hw);
242 const GraphicPlane& plane(graphicPlane(dpy));
243 const DisplayHardware& hw = plane.displayHardware();
253 dcblk->w = plane.getWidth();
254 dcblk->h = plane.getHeight();
541 GraphicPlane& plane(graphicPlane(dpy));
542 plane.setOrientation(orientation)
    [all...]
  /gdk/samples/quake/jni/
mathlib.cpp 78 ** project the point onto the plane defined by src
254 if (plane->normal[i] < 0)
265 dist = DotProduct (plane->normal, corners[0]) - plane->dist;
266 dist2 = DotProduct (plane->normal, corners[1]) - plane->dist;
  /external/kernel-headers/original/linux/
videodev2.h 571 * struct v4l2_plane - plane info for multi-planar buffers
572 * @bytesused: number of bytes occupied by data in the plane (payload)
573 * @length: size of this plane (NOT the payload) in bytes
576 * the device memory for this plane (or is a "cookie" that
579 * pointing to this plane
580 * @data_offset: offset in the plane to the start of data; usually 0,
584 * with two planes can have one plane for Y, and another for interleaved CbCr
585 * components. Each plane can reside in a separate memory buffer, or even in
612 * offset from the start of the device memory for this plane,
616 * @planes: for multiplanar buffers; userspace pointer to the array of plane
    [all...]
  /external/libvpx/
vpxenc.c 277 int plane = 0; local
298 for (plane = 0; plane < 3; plane++)
301 int w = (plane ? (1 + img->d_w) / 2 : img->d_w);
302 int h = (plane ? (1 + img->d_h) / 2 : img->d_h);
305 /* Determine the correct plane based on the image format. The for-loop
309 switch (plane)
318 ptr = img->planes[plane];
339 ptr += img->stride[plane];
    [all...]
  /external/chromium-trace/src/tracing/
linux_perf_importer.js     [all...]
  /external/quake/quake/src/QW/server/
sv_phys.c 287 if (trace.plane.normal[2] > 0.7)
296 if (!trace.plane.normal[2])
313 // cliped to another plane
320 VectorCopy (trace.plane.normal, planes[numplanes]);
340 { // go along this plane
752 ClipVelocity (ent->v.velocity, trace.plane.normal, ent->v.velocity, backoff);
755 if (trace.plane.normal[2] > 0.7)
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
OrientedBoundingBox.java 159 // public int whichSide(Plane plane) {
160 // float fRadius = FastMath.abs(extent.x * (plane.getNormal().dot(xAxis)))
161 // + FastMath.abs(extent.y * (plane.getNormal().dot(yAxis)))
162 // + FastMath.abs(extent.z * (plane.getNormal().dot(zAxis)));
163 // float fDistance = plane.pseudoDistance(center);
165 // return Plane.NEGATIVE_SIDE;
167 // return Plane.POSITIVE_SIDE;
169 // return Plane.NO_SIDE;
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/
CameraFormatsActivity.java 557 // a W x H-size 1-byte-per-pixel Y plane, then
558 // a W/2 x H/2-size 2-byte-per-pixel plane, where each pixel has V then U.
592 // a W x H-size 1-byte-per-pixel Y plane, then
593 // a W/2 x H/2-size 1-byte-per-pixel V plane, then
594 // a W/2 x H/2-size 1-byte-per-pixel U plane
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_include/khronos/
OMX_IVCommon.h 649 * Plane blend configuration
654 * nPortIndex : Index of input port associated with the plane.
655 * nDepth : Depth of the plane in relation to the screen. Higher
658 * nAlpha : Transparency blending component for the entire plane.
680 * the interleaved plane.
  /frameworks/native/include/media/openmax/
OMX_IVCommon.h 676 * Plane blend configuration
681 * nPortIndex : Index of input port associated with the plane.
682 * nDepth : Depth of the plane in relation to the screen. Higher
685 * nAlpha : Transparency blending component for the entire plane.
707 * the interleaved plane.
    [all...]
  /hardware/qcom/media/mm-core/omxcore/inc/
OMX_IVCommon.h 649 * Plane blend configuration
654 * nPortIndex : Index of input port associated with the plane.
655 * nDepth : Depth of the plane in relation to the screen. Higher
658 * nAlpha : Transparency blending component for the entire plane.
680 * the interleaved plane.
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_IVCommon.h 649 * Plane blend configuration
654 * nPortIndex : Index of input port associated with the plane.
655 * nDepth : Depth of the plane in relation to the screen. Higher
658 * nAlpha : Transparency blending component for the entire plane.
680 * the interleaved plane.
    [all...]
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_IVCommon.h 649 * Plane blend configuration
654 * nPortIndex : Index of input port associated with the plane.
655 * nDepth : Depth of the plane in relation to the screen. Higher
658 * nAlpha : Transparency blending component for the entire plane.
680 * the interleaved plane.
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/
SweepSphere.java 51 private final Plane triPlane = new Plane();
221 // we are travelling exactly parrallel to the plane
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHTree.java 234 // // no left plane
346 //The left node right border is the plane most right
353 //The right node left border is the plane most left
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
NavCalculator.java 89 //plane sailing...
112 * Calculate a plane sailing situation - i.e. where Lats are the same
453 //plane sailing
  /external/webp/include/webp/
encode.h 72 int alpha_compression; // Algorithm for optimizing the alpha plane (0 = none)
173 uint8_t *a; // pointer to the alpha plane
174 int a_stride; // stride of the alpha plane
  /frameworks/av/libvideoeditor/vss/src/
M4DECODER_Null.c 63 M4VIFI_ImagePlane *pDecYuvData; // Pointer to Yuv data plane
64 M4VIFI_ImagePlane *pDecYuvWithEffect; // Pointer to Yuv plane with color effect
311 * @param pOutputPlane:(OUT) Output plane filled with decoded data
  /frameworks/base/core/jni/
android_opengl_GLES11.cpp 189 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
192 (JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) {
211 (GLenum)plane,
222 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
225 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) {
232 (GLenum)plane,
240 /* void glClipPlanex ( GLenum plane, const GLfixed *equation ) */
243 (JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) {
262 (GLenum)plane,
273 /* void glClipPlanex ( GLenum plane, const GLfixed *equation ) *
    [all...]
android_opengl_GLES11Ext.cpp 514 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */
517 (JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) {
536 (GLenum)plane,
547 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */
550 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) {
557 (GLenum)plane,
    [all...]
  /frameworks/native/opengl/libs/
trace.in 42 TRACE_GL_VOID(glClipPlanef, (GLenum plane, const GLfloat *equation), (plane, equation), 2, "GLenum", plane, "const GLfloat *", equation)
44 TRACE_GL_VOID(glClipPlanefOES, (GLenum plane, const GLfloat *equation), (plane, equation), 2, "GLenum", plane, "const GLfloat *", equation)
45 TRACE_GL_VOID(glClipPlanex, (GLenum plane, const GLfixed *equation), (plane, equation), 2, "GLenum", plane, "const GLfixed *", equation)
47 TRACE_GL_VOID(glClipPlanexOES, (GLenum plane, const GLfixed *equation), (plane, equation), 2, "GLenum", plane, "const GLfixed *", equation
    [all...]
  /external/libvpx/vp8/common/x86/
postproc_mmx.c 1043 * unsigned int Width width of plane
1044 * unsigned int Height height of plane
1053 * FUNCTION : adds gaussian noise to a plane of pixels
    [all...]
  /development/tools/yuv420sp2rgb/
yuv420sp2rgb.c 22 YUV 4:2:0 image with a plane of 8 bit Y samples followed by an interleaved
23 U/V plane containing 8 bit 2x2 subsampled chroma samples.
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
UVProjectionGenerator.java 150 if((xSideFactor>-3 || xSideFactor<3) && ySideFactor<0) {//the triangle is on the splitting plane
211 if((xSideFactor>-3 || xSideFactor<3) && ySideFactor<0) {//the triangle is on the splitting plane

Completed in 1682 milliseconds

1 2 3 4 5 6 7 8 91011>>