HomeSort by relevance Sort by last modified time
    Searched refs:far (Results 126 - 150 of 231) sorted by null

1 2 3 4 56 7 8 910

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
zconf.h 237 /* The following definitions for FAR are needed only for MSDOS mixed
238 * model programming (small or medium model with some far allocations).
241 * just define FAR to be empty.
248 # define FAR _far
250 # define FAR far
257 # define FAR _far
259 # define FAR far
282 # ifdef FAR
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
fs-test.c 177 float near, float far)
179 float z = far;
182 float half_depth = ((float)far - (float)near) / 2.0f;
gs-test.c 210 float near, float far)
212 float z = far;
215 float half_depth = ((float)far - (float)near) / 2.0f;
vs-test.c 121 float near, float far)
123 float z = far;
126 float half_depth = ((float)far - (float)near) / 2.0f;
graw_util.h 189 float near, float far)
194 float half_depth = (far - near) / 2.0f;
  /external/mesa3d/src/gallium/tests/graw/
fs-test.c 177 float near, float far)
179 float z = far;
182 float half_depth = ((float)far - (float)near) / 2.0f;
gs-test.c 210 float near, float far)
212 float z = far;
215 float half_depth = ((float)far - (float)near) / 2.0f;
vs-test.c 121 float near, float far)
123 float z = far;
126 float half_depth = ((float)far - (float)near) / 2.0f;
graw_util.h 189 float near, float far)
194 float half_depth = (far - near) / 2.0f;
  /frameworks/base/opengl/java/android/opengl/
GLErrorWrapper.java 231 public void glDepthRangef(float near, float far) {
233 mgl.glDepthRangef(near, far);
237 public void glDepthRangex(int near, int far) {
239 mgl.glDepthRangex(near, far);
334 float near, float far) {
336 mgl.glFrustumf(left, right, bottom, top, near, far);
341 int far) {
343 mgl.glFrustumx(left, right, bottom, top, near, far);
608 float near, float far) {
610 mgl.glOrthof(left, right, bottom, top, near, far);
    [all...]
GLLogWrapper.java     [all...]
  /frameworks/base/libs/hwui/
Matrix.cpp 372 void Matrix4::loadOrtho(float left, float right, float bottom, float top, float near, float far) {
377 data[kScaleZ] = -2.0f / (far - near);
380 data[kTranslateZ] = -(far + near) / (far - near);
Matrix.h 125 void loadOrtho(float left, float right, float bottom, float top, float near, float far);
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXFocus.cpp 557 status_t OMXCameraAdapter::getFocusDistances(OMX_U32 &near,OMX_U32 &optimal, OMX_U32 &far)
592 far = focusDist.nFocusDistanceFar;
634 OMX_U32 &far,
661 ret = encodeFocusDistance(far, mFocusDistFar, FOCUS_DIST_SIZE);
  /external/qemu-pc-bios/vgabios/tests/
testbios.c 134 unsigned char far *ptable;
157 {unsigned char far *pvar;
  /external/zlib/src/
zconf.h 281 /* The following definitions for FAR are needed only for MSDOS mixed
282 * model programming (small or medium model with some far allocations).
285 * just define FAR to be empty.
292 # define FAR _far
294 # define FAR far
301 # define FAR _far
303 # define FAR far
326 # ifdef FAR
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/shadow/
ShadowUtil.java 85 * to override the camera's near/far values with own values.
105 float far = farOverride; local
123 far_height = depthHeightRatio * far;
130 temp.set(dir).multLocal(far).addLocal(pos);
  /external/chromium/chrome/browser/resources/net_internals/
testview.js 10 * - Shows the set of experiments that have been run so far, and their
  /external/chromium_org/chrome/tools/
webforms_aggregator.py 362 # All links downloaded and parsed so far.
513 Crawler object exists as far as a specific site is examined and the
514 Retriever object exists as far as a page of this site is examined.
  /external/chromium_org/native_client_sdk/src/examples/tutorial/load_progress/
example.js 31 // loaded The number of bytes loaded so far.
  /external/openfst/src/include/fst/extensions/far/
far.h 0 // far.h
25 #include <fst/extensions/far/stlist.h>
26 #include <fst/extensions/far/sttable.h>
281 LOG(ERROR) << "FarWriter::Create: unknown far type";
  /external/zlib/src/contrib/delphi/
ZLib.pas 26 total_in: Longint; // total nb of input bytes read so far
30 total_out: Longint; // total nb of bytes output so far
70 data that have been written to the stream so far.
109 have been read from the stream so far.
  /frameworks/base/graphics/java/android/renderscript/
Matrix4f.java 254 * @param f location of the far clipping plane
270 * far are set to -1, 1 respectively
288 * @param f location of the far clipping plane, must be positive
309 * @param far far clipping plane, must be positive
311 public void loadPerspective(float fovy, float aspect, float near, float far) {
316 loadFrustum(left, right, bottom, top, near, far);
322 * and (near, far), (bottom, top) mapping to (-1, 1) at z = 0
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix4f.java 254 * @param f location of the far clipping plane
270 * far are set to -1, 1 respectively
288 * @param f location of the far clipping plane, must be positive
309 * @param far far clipping plane, must be positive
311 public void loadPerspective(float fovy, float aspect, float near, float far) {
316 loadFrustum(left, right, bottom, top, near, far);
322 * and (near, far), (bottom, top) mapping to (-1, 1) at z = 0
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java 108 * FAR_PLANE represents the far plane of the camera frustum.
136 * Distance from camera to far frustum plane.
485 * <code>getFrustumFar</code> gets the value of the far frustum plane.
487 * @return the value of the far frustum plane.
494 * <code>setFrustumFar</code> sets the value of the far frustum plane.
496 * @param frustumFar the value of the far frustum plane.
735 * @param far the far plane.
743 public void setFrustum(float near, float far, float left, float right,
747 frustumFar = far;
    [all...]

Completed in 1452 milliseconds

1 2 3 4 56 7 8 910