HomeSort by relevance Sort by last modified time
    Searched refs:Near (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_viewport.c 67 GLfloat z = ctx->Viewport.Near;
70 GLfloat half_depth = (GLfloat)(ctx->Viewport.Far - ctx->Viewport.Near) * 0.5f;
  /external/mesa3d/src/mesa/state_tracker/
st_atom_viewport.c 67 GLfloat z = ctx->Viewport.Near;
70 GLfloat half_depth = (GLfloat)(ctx->Viewport.Far - ctx->Viewport.Near) * 0.5f;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
viewport.c 94 ctx->Viewport.Near, ctx->Viewport.Far,
111 * the near clip plane
124 if (ctx->Viewport.Near == nearval &&
128 ctx->Viewport.Near = (GLfloat) CLAMP(nearval, 0.0, 1.0);
140 ctx->Viewport.Near, ctx->Viewport.Far,
168 ctx->Viewport.Near = 0.0;
rastpos.c 234 z2 = CLAMP(z, 0.0F, 1.0F) * (ctx->Viewport.Far - ctx->Viewport.Near)
235 + ctx->Viewport.Near;
state.c 291 ctx->Viewport.Near, ctx->Viewport.Far,
  /external/mesa3d/src/mesa/main/
viewport.c 94 ctx->Viewport.Near, ctx->Viewport.Far,
111 * the near clip plane
124 if (ctx->Viewport.Near == nearval &&
128 ctx->Viewport.Near = (GLfloat) CLAMP(nearval, 0.0, 1.0);
140 ctx->Viewport.Near, ctx->Viewport.Far,
168 ctx->Viewport.Near = 0.0;
rastpos.c 234 z2 = CLAMP(z, 0.0F, 1.0F) * (ctx->Viewport.Far - ctx->Viewport.Near)
235 + ctx->Viewport.Near;
state.c 291 ctx->Viewport.Near, ctx->Viewport.Far,
  /external/llvm/include/llvm/ExecutionEngine/
SectionMemoryManager.h 89 sys::MemoryBlock Near;
  /external/llvm/unittests/Support/
MemoryTest.cpp 266 MemoryBlock Near((void*)(3*PageSize), 16);
267 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC);
269 MemoryBlock M2 = Memory::allocateMappedMemory(64, &Near, Flags, EC);
271 MemoryBlock M3 = Memory::allocateMappedMemory(32, &Near, Flags, EC);
288 MemoryBlock Near(nullptr, 0);
289 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC);
291 MemoryBlock M2 = Memory::allocateMappedMemory(64, &Near, Flags, EC);
293 MemoryBlock M3 = Memory::allocateMappedMemory(32, &Near, Flags, EC);
314 MemoryBlock Near((void*)(4*PageSize), 0);
315 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC)
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
SectionMemoryManager.cpp 72 // FIXME: Initialize the Near member for each memory group to avoid
76 &MemGroup.Near,
86 MemGroup.Near = MB;
  /external/llvm/tools/lli/
RemoteMemoryManager.h 57 // FIXME: This is part of a work around to keep sections near one another
60 sys::MemoryBlock Near;
RemoteMemoryManager.cpp 66 &Near,
72 // FIXME: This is part of a work around to keep sections near one another
76 Near = MB;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_cc.c 52 ccv->min_depth = MIN2(ctx->Viewport.Near, ctx->Viewport.Far);
53 ccv->max_depth = MAX2(ctx->Viewport.Near, ctx->Viewport.Far);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_util.h 154 a[MAT_SZ] = fb->_DepthMaxF * (vp->Far - vp->Near) / 2;
171 a[2] = fb->_DepthMaxF * (vp->Far + vp->Near) / 2;
nv10_state_fb.c 187 a[2] = nv10_transform_depth(ctx, (vp->Far + vp->Near) / 2);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cc.c 52 ccv->min_depth = MIN2(ctx->Viewport.Near, ctx->Viewport.Far);
53 ccv->max_depth = MAX2(ctx->Viewport.Near, ctx->Viewport.Far);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_util.h 154 a[MAT_SZ] = fb->_DepthMaxF * (vp->Far - vp->Near) / 2;
171 a[2] = fb->_DepthMaxF * (vp->Far + vp->Near) / 2;
nv10_state_fb.c 187 a[2] = nv10_transform_depth(ctx, (vp->Far + vp->Near) / 2);
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_depth.c 158 * Clamp fragment Z values to the depth near/far range (glDepthRange()).
160 * In that case, vertexes are not clipped against the near/far planes
174 if (ctx->Viewport.Near < ctx->Viewport.Far) {
175 min_f = ctx->Viewport.Near;
179 max_f = ctx->Viewport.Near;
  /external/mesa3d/src/mesa/swrast/
s_depth.c 158 * Clamp fragment Z values to the depth near/far range (glDepthRange()).
160 * In that case, vertexes are not clipped against the near/far planes
174 if (ctx->Viewport.Near < ctx->Viewport.Far) {
175 min_f = ctx->Viewport.Near;
179 max_f = ctx->Viewport.Near;
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_rasterpos.c 60 * Clip a point against the far/near Z clipping planes.
423 ctx->Viewport.Near,
  /external/llvm/lib/CodeGen/
SplitKit.cpp 783 MachineBasicBlock *Near =
785 if (Near == ValMBB)
788 else if (Near != Dom.first)
790 Dom = DomPair(Near, SlotIndex());
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_rasterpos.c 60 * Clip a point against the far/near Z clipping planes.
423 ctx->Viewport.Near,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_state.c 410 ctx->Viewport.Near,
419 ctx->Viewport.Near,
    [all...]

Completed in 856 milliseconds

1 2