Home
last modified time | relevance | path

Searched refs:near (Results 1 – 25 of 156) sorted by relevance

1234567

/external/valgrind/none/tests/mips32/
Dround_fpu64.stdout.exp2 roundig mode: near
198 roundig mode: near
394 roundig mode: near
590 roundig mode: near
786 roundig mode: near
982 roundig mode: near
1178 roundig mode: near
1374 roundig mode: near
1570 roundig mode: near
1766 roundig mode: near
[all …]
DFPUarithmetic.stdout.exp2 rounding mode: near
102 rounding mode: near
202 rounding mode: near
302 rounding mode: near
402 rounding mode: near
502 rounding mode: near
602 rounding mode: near
702 rounding mode: near
802 rounding mode: near
902 rounding mode: near
[all …]
DFPUarithmetic.stdout.exp-mips322 rounding mode: near
102 rounding mode: near
202 rounding mode: near
302 rounding mode: near
402 rounding mode: near
502 rounding mode: near
602 rounding mode: near
702 rounding mode: near
802 rounding mode: near
902 rounding mode: near
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/
DPssmShadowUtil.java57 public static void updateFrustumSplits(float[] splits, float near, float far, float lambda) { in updateFrustumSplits() argument
60 float log = near * FastMath.pow((far / near), IDM); in updateFrustumSplits()
61 float uniform = near + (far - near) * IDM; in updateFrustumSplits()
67 splits[0] = near; in updateFrustumSplits()
/external/libpcap/msdos/
Dndis_0.asm23 @&name label near
54 EXTRN _NdisSystemRequest : near
55 EXTRN _NdisRequestConfirm : near
56 EXTRN _NdisTransmitConfirm : near
57 EXTRN _NdisReceiveLookahead : near
58 EXTRN _NdisIndicationComplete : near
59 EXTRN _NdisReceiveChain : near
60 EXTRN _NdisStatusProc : near
61 EXTRN _NdisAllocStack : near
62 EXTRN _NdisFreeStack : near
/external/valgrind/none/tests/s390x/
Drounding-5.stdout.exp1 setting FPC rounding mode to [-> near]
10 setting FPC rounding mode to [-> near]
19 setting FPC rounding mode to [-> near]
28 setting FPC rounding mode to [-> near]
37 setting FPC rounding mode to [-> near]
46 setting FPC rounding mode to [-> near]
Drounding-4.stdout.exp1 setting FPC rounding mode to [-> near]
10 setting FPC rounding mode to [-> near]
19 setting FPC rounding mode to [-> near]
28 setting FPC rounding mode to [-> near]
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
Dpvsnotes21 float width, height, near;
28 near = z extent / 2
33 near = y extent / 2
38 near = x extent / 2
/external/valgrind/none/tests/mips64/
Dfpu_arithmetic.stdout.exp2 roundig mode: near
102 roundig mode: near
202 roundig mode: near
302 roundig mode: near
402 roundig mode: near
502 roundig mode: near
602 roundig mode: near
702 roundig mode: near
802 roundig mode: near
902 roundig mode: near
[all …]
/external/llvm/test/CodeGen/SystemZ/
Dint-cmp-31.ll6 ; Check unsigned comparison near the low end of the CLHHSI range, using zero
20 ; Check unsigned comparison near the low end of the CLHHSI range, using sign
34 ; Check unsigned comparison near the high end of the CLHHSI range, using zero
48 ; Check unsigned comparison near the high end of the CLHHSI range, using sign
104 ; Check signed comparison near the low end of the CLHHSI range, using zero
118 ; Check signed comparison near the low end of the CLHHSI range, using sign
132 ; Check signed comparison near the high end of the CLHHSI range, using zero
146 ; Check signed comparison near the high end of the CLHHSI range, using sign
173 ; Check signed comparison near the high end of the CHHSI range, using sign
200 ; Check signed comparison near the low end of the CHHSI range, using sign
Dint-cmp-30.ll6 ; Check unsigned comparison near the low end of the CLHHSI range, using zero
20 ; Check unsigned comparison near the low end of the CLHHSI range, using sign
34 ; Check unsigned comparison near the high end of the CLHHSI range, using zero
48 ; Check unsigned comparison near the high end of the CLHHSI range, using sign
104 ; Check signed comparison near the low end of the CLHHSI range, using zero
118 ; Check signed comparison near the low end of the CLHHSI range, using sign
132 ; Check signed comparison near the high end of the CLHHSI range, using zero
146 ; Check signed comparison near the high end of the CLHHSI range, using sign
173 ; Check signed comparison near the high end of the CHHSI range, using sign
200 ; Check signed comparison near the low end of the CHHSI range, using sign
Dint-cmp-21.ll6 ; Check unsigned comparison near the low end of the CLI range, using zero
20 ; Check unsigned comparison near the low end of the CLI range, using sign
34 ; Check unsigned comparison near the high end of the CLI range, using zero
48 ; Check unsigned comparison near the high end of the CLI range, using sign
103 ; Check signed comparison near the low end of the CLI range, using zero
117 ; Check signed comparison near the low end of the CLI range, using sign
130 ; Check signed comparison near the high end of the CLI range, using zero
144 ; Check signed comparison near the high end of the CLI range, using sign
Dint-cmp-20.ll6 ; Check unsigned comparison near the low end of the CLI range, using zero
20 ; Check unsigned comparison near the low end of the CLI range, using sign
34 ; Check unsigned comparison near the high end of the CLI range, using zero
48 ; Check unsigned comparison near the high end of the CLI range, using sign
103 ; Check signed comparison near the low end of the CLI range, using zero
117 ; Check signed comparison near the low end of the CLI range, using sign
130 ; Check signed comparison near the high end of the CLI range, using zero
144 ; Check signed comparison near the high end of the CLI range, using sign
Dint-cmp-10.ll5 ; Check a value near the low end of the range. We use signed forms for
40 ; Check a value near the high end of the range.
Dint-cmp-23.ll5 ; Check a value near the low end of the unsigned 16-bit range.
18 ; Check a value near the high end of the unsigned 16-bit range.
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/src/gl-matrix/
Dmat4.js1044 mat4.frustum = function (out, left, right, bottom, top, near, far) { argument
1047 nf = 1 / (near - far);
1048 out[0] = (near * 2) * rl;
1053 out[5] = (near * 2) * tb;
1058 out[10] = (far + near) * nf;
1062 out[14] = (far * near * 2) * nf;
1077 mat4.perspective = function (out, fovy, aspect, near, far) { argument
1079 nf = 1 / (near - far);
1090 out[10] = (far + near) * nf;
1094 out[14] = (2 * far * near) * nf;
[all …]
/external/pcre/dist/testdata/
Dgrepoutput4 Check up on PATTERN near the end.
13 610:Check up on PATTERN near the end.
22 ./testdata/grepinput:610:Check up on PATTERN near the end.
31 610:Check up on PATTERN near the end.
330 ./testdata/grepinput:610:Check up on PATTERN near the end.
352 ./testdata/grepinput:610:Check up on PATTERN near the end.
495 Check up on PATTERN near the end.
500 Check up on PATTERN near the end.
505 Check up on PATTERN near the end.
510 Check up on PATTERN near the end.
/external/jmonkeyengine/engine/src/core/com/jme3/input/
DFlyByCamera.java277 float near = cam.getFrustumNear(); in zoomCamera() local
279 float fovY = FastMath.atan(h / near) in zoomCamera()
283 h = FastMath.tan( fovY * FastMath.DEG_TO_RAD * .5f) * near; in zoomCamera()
/external/e2fsprogs/util/
Dgcc-wall-cleanup20 /warning: (near initialization for/d
/external/mesa3d/src/gallium/tests/graw/
Dgraw_util.h189 float near, float far) in graw_util_viewport() argument
191 float z = near; in graw_util_viewport()
194 float half_depth = (far - near) / 2.0f; in graw_util_viewport()
Dtri-gs.c54 float near, float far) in set_viewport() argument
59 float half_depth = ((float)far - (float)near) / 2.0f; in set_viewport()
Dshader-leak.c53 float near, float far) in set_viewport() argument
58 float half_depth = ((float)far - (float)near) / 2.0f; in set_viewport()
/external/ceres-solver/internal/ceres/
Drotation_test.cc92 bool near = true; variable
95 near = false;
100 if (near) {
104 near = true;
107 near = false;
112 if (near) {
/external/llvm/test/MC/X86/AlignedBundling/
Drelax-at-bundle-end.s6 # Test that an instruction near a bundle end gets properly padded
/external/flac/libFLAC/ia32/
Dbitreader_asm.nasm119 jae near .c1_next1
126 jz near .c1_next2 ; if(b) {
134 …jz near .break1 ; if(cbits >= FLAC__BITS_PER_WORD) { /* faster way of testing if(cbits =…
182 jmp near .break1 ; goto break1;
261 jb near .c1_loop
336 jnz near .unary_loop
355 jz near .break2
394 jae near .c2_next2
396 …jz near .c2_next3 ; /* this also works when consumed_bits==0, it's just a little slower t…

1234567