/external/jmonkeyengine/engine/src/core/com/jme3/shadow/ |
D | PssmShadowUtil.java | 57 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()
|
D | ShadowUtil.java | 104 float near = nearOverride; in updateFrustumPoints() local 121 near_height = depthHeightRatio * near; in updateFrustumPoints() 132 temp.set(dir).multLocal(near).addLocal(pos); in updateFrustumPoints()
|
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/ |
D | pvsnotes | 21 float width, height, near; 28 near = z extent / 2 33 near = y extent / 2 38 near = x extent / 2
|
/external/icu4c/data/curr/ |
D | ga.txt | 88 "Dínear Bhoisnia-Heirseagaivéin", 124 "Dínear na Bairéine", 276 "Dínear na hAilgéire", 388 "Dínear na Cróite", 424 "Dínear Irácach", 444 "Dínear Iordánach", 476 "Dínear Cuátach", 528 "Dínear Libia", 732 "Dínear na Súdáine", 808 "Dínear na Túinéise", [all …]
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
D | 3d-raytrace.js | 160 Triangle.prototype.intersect = function(orig, dir, near, far) { argument 165 if (t < near || t > far) 189 Scene.prototype.intersect = function(origin, dir, near, far) { argument 193 var d = triangle.intersect(origin, dir, near, far); 194 if (d == null || d > far || d < near) 245 var near = 0.0001; 249 var d = triangle.intersect(O, D, near, far); 250 if (d == null || d > far || d < near)
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
D | 3d-raytrace.js | 160 Triangle.prototype.intersect = function(orig, dir, near, far) { argument 165 if (t < near || t > far) 189 Scene.prototype.intersect = function(origin, dir, near, far) { argument 193 var d = triangle.intersect(origin, dir, near, far); 194 if (d == null || d > far || d < near) 245 var near = 0.0001; 249 var d = triangle.intersect(O, D, near, far); 250 if (d == null || d > far || d < near)
|
/external/valgrind/main/none/tests/mips32/ |
D | round.stdout.exp | 195 roundig mode: near 295 roundig mode: near 395 roundig mode: near 495 roundig mode: near 595 roundig mode: near 695 roundig mode: near
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/ |
D | FlyByCamera.java | 277 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/oprofile/events/i386/nehalem/ |
D | unit_masks | 211 …0x01 cond Counts the number of conditional near branch instructions executed, but not necessarily … 212 0x02 direct Counts all unconditional near branch instructions excluding calls and indirect branches 213 …0x04 indirect_non_call Counts the number of executed indirect near branch instructions that are no… 214 0x07 non_calls Counts all non call near branch instructions executed, but not necessarily retired 215 0x08 return_near Counts indirect near branches that have a return mnemonic 216 …0x10 direct_near_call Counts unconditional near call branch instructions, excluding non call branc… 217 …0x20 indirect_near_call Counts indirect near calls, including both register and memory indirect, e… 218 0x30 near_calls Counts all near call branches executed, but not necessarily retired 219 0x40 taken Counts taken near branches executed, but not necessarily retired 220 0x7F any Counts all near executed branches (not necessarily retired) [all …]
|
/external/e2fsprogs/util/ |
D | gcc-wall-cleanup | 20 /warning: (near initialization for/d
|
/external/llvm/test/MC/X86/AlignedBundling/ |
D | relax-at-bundle-end.s | 4 # Test that an instruction near a bundle end gets properly padded
|
/external/ceres-solver/internal/ceres/ |
D | rotation_test.cc | 92 bool near = true; variable 95 near = false; 100 if (near) { 104 near = true; 107 near = false; 112 if (near) {
|
/external/flac/libFLAC/ia32/ |
D | bitreader_asm.nasm | 119 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…
|
/external/llvm/test/CodeGen/Hexagon/ |
D | doubleconvert-ieee-rnd-near.ll | 1 ; RUN: llc -march=hexagon -mcpu=hexagonv5 -enable-hexagon-ieee-rnd-near < %s | FileCheck %s
|
/external/clang/test/Index/ |
D | complete-protocols.m | 1 /* Note: the RUN lines are near the end of the file, since line/column
|
D | complete-categories.m | 1 /* Note: the RUN lines are near the end of the file, since line/column
|
D | complete-interfaces.m | 1 /* Note: the RUN lines are near the end of the file, since line/column
|
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/ |
D | Camera.java | 743 public void setFrustum(float near, float far, float left, float right, in setFrustum() argument 746 frustumNear = near; in setFrustum() 764 public void setFrustumPerspective(float fovY, float aspect, float near, in setFrustumPerspective() argument 772 float h = FastMath.tan(fovY * FastMath.DEG_TO_RAD * .5f) * near; in setFrustumPerspective() 778 frustumNear = near; in setFrustumPerspective()
|
/external/ipsec-tools/src/racoon/ |
D | cftoken.l | 553 certname { YYD; yywarn("certname will be obsoleted in near future."); yylval.num = IDTYPE_ASN1DN; r…
|
/external/chromium-trace/trace-viewer/third_party/python_gflags/ |
D | README | 6 having to define all flags in or near main(), each python module defines flags
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Matrix4f.java | 863 …public void fromFrustum(float near, float far, float left, float right, float top, float bottom, b… in fromFrustum() argument 870 m22 = -2.0f / (far - near); in fromFrustum() 877 m23 = -(far + near) / (far - near); in fromFrustum() 879 m00 = (2.0f * near) / (right - left); in fromFrustum() 880 m11 = (2.0f * near) / (top - bottom); in fromFrustum() 891 m22 = -(far + near) / (far - near); in fromFrustum() 894 m23 = -(2.0f * far * near) / (far - near); in fromFrustum()
|
/external/llvm/lib/Support/Unix/ |
D | Memory.inc | 110 // Use any near hint and the page size to set a page-aligned starting address 119 if (NearBlock) //Try again without a near hint 212 if (NearBlock) //Try again without a near hint
|
/external/chromium/base/third_party/dmg_fp/ |
D | gcc_warnings.patch | 55 if (rv->d == 0.) { /* special case: value near underflow-to-zero */
|
/external/zlib/src/doc/ |
D | txtvsbin.txt | 29 a much increased precision and a near-100% recall. This scheme is 96 a near-100% recall.
|
/external/llvm/test/CodeGen/ARM/ |
D | machine-licm.ll | 8 ; The generated code is no where near ideal. It's not recognizing the two
|