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

1 2 3 45 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
Intersection.java 35 import com.jme3.math.Plane;
266 // // test if the box intersects the plane of the triangle
267 // // compute plane equation of triangle: normal * x + d = 0
270 Plane p = vars.plane;
273 if (bbox.whichSide(p) == Plane.Side.Negative) {
BoundingBox.java 336 * <code>whichSide</code> takes a plane (typically provided by a view
339 * @param plane
340 * the plane to check against.
342 public Plane.Side whichSide(Plane plane) {
343 float radius = FastMath.abs(xExtent * plane.getNormal().getX())
344 + FastMath.abs(yExtent * plane.getNormal().getY())
345 + FastMath.abs(zExtent * plane.getNormal().getZ());
347 float distance = plane.pseudoDistance(center);
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/api/
armVC.h 575 * [in] pSrcRefBuf pointer to the reference Y plane; points to the reference MB that
577 * plane.
578 * [in] refWidth width of the reference plane
579 * [in] pRefRect pointer to the valid rectangular in reference plane. Relative to image origin.
583 * [in] pSrcCurrBuf pointer to the current macroblock extracted from original plane (linear array,
585 * [in] pCurrPointPos position of the current macroblock in the current plane
633 * [in] pSrcRefBuf pointer to the reference Y plane; points to the reference MB
635 * the current plane.
636 * [in] refWidth width of the reference plane
637 * [in] pRefRect reference plane valid region rectangl
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/api/
armVC.h 575 * [in] pSrcRefBuf pointer to the reference Y plane; points to the reference MB that
577 * plane.
578 * [in] refWidth width of the reference plane
579 * [in] pRefRect pointer to the valid rectangular in reference plane. Relative to image origin.
583 * [in] pSrcCurrBuf pointer to the current macroblock extracted from original plane (linear array,
585 * [in] pCurrPointPos position of the current macroblock in the current plane
633 * [in] pSrcRefBuf pointer to the reference Y plane; points to the reference MB
635 * the current plane.
636 * [in] refWidth width of the reference plane
637 * [in] pRefRect reference plane valid region rectangl
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/api/
armVC.h 575 * [in] pSrcRefBuf pointer to the reference Y plane; points to the reference MB that
577 * plane.
578 * [in] refWidth width of the reference plane
579 * [in] pRefRect pointer to the valid rectangular in reference plane. Relative to image origin.
583 * [in] pSrcCurrBuf pointer to the current macroblock extracted from original plane (linear array,
585 * [in] pCurrPointPos position of the current macroblock in the current plane
633 * [in] pSrcRefBuf pointer to the reference Y plane; points to the reference MB
635 * the current plane.
636 * [in] refWidth width of the reference plane
637 * [in] pRefRect reference plane valid region rectangl
    [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...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
package.html 35 <li>{@link com.jme3.math.Plane} - 3D plane</li>
Rectangle.java 41 * <code>Rectangle</code> defines a finite plane within three dimensional space
141 * <code>random</code> returns a random point within the plane defined by:
151 * <code>random</code> returns a random point within the plane defined by:
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorTools.h 104 M4OSA_Void prepareYUV420ImagePlane(M4VIFI_ImagePlane *plane,
108 M4OSA_Void prepareYV12ImagePlane(M4VIFI_ImagePlane *plane,
  /frameworks/av/libvideoeditor/vss/common/inc/
M4VPP_API.h 127 * @brief This method apply the video preprocessing to the input plane. Result is put into the
130 * @param format : (IN) Format of input plane (rgb, yuv, ...)
  /frameworks/av/libvideoeditor/vss/src/
M4PTO3GPP_VideoPreProcessing.c 106 pC->pSavedPlane = pPlaneOut; /* Save the last YUV plane ptr */
118 /** Copy the last YUV plane into the current one
M4AIR_API.c 85 M4OSA_UInt8* pu8_data_in[4]; /**< Save of input plane pointers
327 for U and V plane as there a 2 times sub-sampled vs Y*/
356 for U and V plane as there a 2 times sub-sampled vs Y*/
416 * @note In case the input format type is JPEG, input plane(s)
417 * in pIn is not used. In normal mode, dimension specified in output plane(s) structure
427 * @param pIn: (IN) Plane structure containing input Plane(s).
428 * @param pOut: (IN/OUT) Plane structure containing output Plane(s).
464 /**< Loop on each Plane */
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLStateType.java 64 DEPTH_RANGE_NEAR("Near Clipping Plane"),
65 DEPTH_RANGE_FAR("Far Clipping Plane"),
  /sdk/emulator/opengl/host/libs/Translator/EGL/
ClientAPIExts.in 57 (GLenum plane, const GLfloat *equation),
58 (plane, equation))
  /sdk/emulator/opengl/system/egl/
ClientAPIExts.in 57 (GLenum plane, const GLfloat *equation),
58 (plane, equation))
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
TempVars.java 200 * Plane
202 public final Plane plane = new Plane(); field in class:TempVars
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzYUV.m 262 plane2 = 2; /* U plane maps to plane 3 */
263 plane3 = 1; /* V plane maps to plane 2 */
  /frameworks/av/libvideoeditor/vss/video_filters/src/
M4VIFI_ResizeRGB888toRGB888.c 36 * @brief Resizes YUV420 Planar plane.
42 * Place the YUV in the ouput plane
51 * @param pPlaneIn: (IN) Pointer to YUV420 (Planar) plane buffer
52 * @param pPlaneOut: (OUT) Pointer to YUV420 (Planar) plane
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_InterpolateHalfHor_Luma.c 32 * in the reconstructed frame plane
armVCM4P10_InterpolateHalfVer_Luma.c 33 * in the reconstructed frame plane
omxVCM4P10_BlockMatch_Half.c 38 * pSrcOrgY - Pointer to the current position in original picture plane. If
46 * nSrcOrgStep - Stride of the original picture plane in terms of full
48 * nSrcRefStep - Stride of the reference picture plane in terms of full
omxVCM4P10_BlockMatch_Quarter.c 38 * pSrcOrgY - Pointer to the current position in original picture plane. If
46 * nSrcOrgStep - Stride of the original picture plane in terms of full
48 * nSrcRefStep - Stride of the reference picture plane in terms of full
  /external/libvpx/vpx_scale/arm/nds/
yv12extend.c 52 /* Y Plane */
95 /* U Plane */
129 /* V Plane */
  /frameworks/base/core/jni/
android_graphics_PixelFormat.cpp 52 // defined as the bytes per pixel of the Y plane
57 // defined as the bytes per pixel of the Y plane
62 // defined as the bytes per pixel of the Y plane
  /external/skia/third_party/glu/libtess/
README 60 results, all vertices should lie in some plane, since the vertices
61 are projected onto a plane before tesselation. "data" is a pointer
171 For example, if the polygon lies in an arbitrary plane in 3-space,
212 The input contours parition the plane into regions. A winding
220 the plane. Note that the winding number is the same for all
263 is projected into a plane perpendicular to the normal before
267 you know that all polygons lie in the x-y plane, call
272 up to its sign, is found by fitting a plane to the vertices,
274 expected that the input data lies approximately in plane;
350 the supplied normal. For example in the x-y plane, cal
    [all...]

Completed in 3261 milliseconds

1 2 3 45 6 7 8 91011>>