/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_screen.c | 643 /* depth renderbuffer */ 644 struct radeon_renderbuffer *depth = local 646 _mesa_add_renderbuffer(&rfb->base, BUFFER_DEPTH, &depth->base.Base); 647 depth->has_surface = screen->depthHasSurface; 650 /* just 16-bit depth buffer, no hw stencil */ 651 struct radeon_renderbuffer *depth = local 653 _mesa_add_renderbuffer(&rfb->base, BUFFER_DEPTH, &depth->base.Base); 654 depth->has_surface = screen->depthHasSurface;
|
/external/mesa3d/src/mesa/state_tracker/ |
st_manager.c | 294 /* do not distinguish depth/stencil buffers */ 483 GLuint width, height, depth; local 545 depth = tex->depth0; 553 if (depth != 1) 554 depth <<= 1; 560 width = height = depth = 0; 566 stObj->depth0 = depth;
|
/external/opencv/cv/src/ |
cvcalccontrasthistogram.cpp | 311 if(img[0]->depth != IPL_DEPTH_8U) 312 CV_ERROR( IPL_BadDepth, "bad image depth" ); 314 switch(img[0]->depth) 319 default: CV_ERROR( IPL_BadDepth, "bad image depth" ); 346 if( mask->depth != IPL_DEPTH_8U ) 347 CV_ERROR( CV_BadDepth, "bad mask depth" ); 360 if( img[0]->depth != IPL_DEPTH_8U ) 361 CV_ERROR( CV_BadDepth, "bad image depth" ); 364 switch (img[0]->depth) 378 CV_ERROR( CV_BadDepth, "bad image depth" ); [all...] |
/external/opencv/cxcore/src/ |
cxrand.cpp | 453 int type, depth, channels; local 505 depth = CV_MAT_DEPTH( type ); 511 if( depth <= CV_32S ) 537 CV_GET_FUNC_PTR( func, (CvFunc2D_1A2P)(fastrng_tab.fn_2d[depth])); 551 CV_GET_FUNC_PTR( func, (CvFunc2D_1A2P)(rng_tab[0].fn_2d[depth])); 565 CV_GET_FUNC_PTR( func, (CvFunc2D_1A2P)(rng_tab[1].fn_2d[depth]));
|
/external/valgrind/main/coregrind/ |
m_libcprint.c | 395 Int i, depth; local 402 depth = RUNNING_ON_VALGRIND; 403 if (depth > 0 && !VG_(strstr)(VG_(clo_sim_hints), "no-inner-prefix")) { 404 if (depth > 10) 405 depth = 10; // ?!?! 406 for (i = 0; i < depth; i++) {
|
/frameworks/native/opengl/libagl/ |
context.h | 447 uint8_t depth; member in struct:android::gl::matrix_stack_t 452 void init(int depth); 464 matrixf_t& top() { return stack[depth]; } 465 const matrixf_t& top() const { return stack[depth]; } 466 uint32_t top_ops() const { return ops[depth]; } 468 return !(ops[depth] & ~(OP_TRANSLATE|OP_UNIFORM_SCALE|OP_ROTATE));
|
/ndk/sources/host-tools/make-3.81/ |
implicit.c | 30 unsigned int depth, unsigned int recursions)); 40 try_implicit_rule (struct file *file, unsigned int depth) 49 if (pattern_search (file, 0, depth, 0)) 59 if (pattern_search (file, 1, depth, 0)) 199 DEPTH is used for debugging messages. */ 203 unsigned int depth, unsigned int recursions) 739 depth + 1,
|
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/ |
RenderTarget11.cpp | 192 RenderTarget11::RenderTarget11(Renderer *renderer, GLsizei width, GLsizei height, GLenum format, GLsizei samples, bool depth) 223 desc.BindFlags = (depth ? D3D11_BIND_DEPTH_STENCIL : (D3D11_BIND_RENDER_TARGET | D3D11_BIND_SHADER_RESOURCE)); 235 if (depth)
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_surface.c | 280 double depth, 311 unsigned zstencil = util_pack_z_stencil(dst->texture->format, depth, stencil); 368 depth, stencil);
|
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/ |
graw_util.h | 165 depthStencilAlpha.depth.enabled = depth_test; 166 depthStencilAlpha.depth.writemask = 1; 167 depthStencilAlpha.depth.func = PIPE_FUNC_LESS;
|
/external/chromium_org/third_party/zlib/ |
trees.c | 446 * Compares to subtrees, using the tree depth as tie breaker when 449 #define smaller(tree, n, m, depth) \ 451 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m])) 469 smaller(tree, s->heap[j+1], s->heap[j], s->depth)) { 473 if (smaller(tree, v, s->heap[j], s->depth)) break; 643 s->depth[n] = 0; 657 s->depth[node] = 0; 681 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] [all...] |
/external/chromium_org/v8/test/cctest/ |
test-log-stack-tracer.cc | 366 static int CFunc(int depth) { 367 if (depth <= 0) { 371 return CFunc(depth - 1) + 1;
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
Bone.java | 574 private String toString(int depth) { 576 for (int i = 0; i < depth; i++) { 582 sb.append(child.toString(depth + 1));
|
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/ |
Octnode.java | 112 public void subdivide(int depth, int minTrisPerNode){ 113 if (tris == null || depth > 50 || bbox.getVolume() < 0.01f || tris.size() < minTrisPerNode){ 164 children[i].subdivide(depth + 1, minTrisPerNode);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_surface.c | 280 double depth, 311 unsigned zstencil = util_pack_z_stencil(dst->texture->format, depth, stencil); 368 depth, stencil);
|
/external/mesa3d/src/gallium/tests/graw/ |
graw_util.h | 165 depthStencilAlpha.depth.enabled = depth_test; 166 depthStencilAlpha.depth.writemask = 1; 167 depthStencilAlpha.depth.func = PIPE_FUNC_LESS;
|
/external/opencv/cvaux/src/ |
cvlines.cpp | 385 if( img->depth != IPL_DEPTH_8U ) 386 CV_ERROR( CV_BadDepth, "Channel depth of source image must be 8." ); 423 if( img->depth != IPL_DEPTH_8U ) 424 CV_ERROR( CV_BadDepth, "Channel depth of image must be 8." ); 467 if( img->depth != IPL_DEPTH_8U ) 468 CV_ERROR( CV_BadDepth, "Channel depth of image must be 8." );
|
/external/v8/test/cctest/ |
test-log-stack-tracer.cc | 380 static int CFunc(int depth) { 381 if (depth <= 0) { 385 return CFunc(depth - 1) + 1;
|
/packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/ |
HoloSpiralRS.java | 218 private void generateSpiral(ScriptField_VertexColor_s points, float depth, float radius, 224 float halfDepth = depth / 2.0f; 233 radius * (float) Math.sin(radians), (percentage * depth) - halfDepth);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pprint.py | 409 self.assertEqual(pprint.pformat(nested_tuple, depth=1), lv1_tuple) 410 self.assertEqual(pprint.pformat(nested_dict, depth=1), lv1_dict) 411 self.assertEqual(pprint.pformat(nested_list, depth=1), lv1_list)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pprint.py | 409 self.assertEqual(pprint.pformat(nested_tuple, depth=1), lv1_tuple) 410 self.assertEqual(pprint.pformat(nested_dict, depth=1), lv1_dict) 411 self.assertEqual(pprint.pformat(nested_list, depth=1), lv1_list)
|
/dalvik/vm/jdwp/ |
JdwpConstants.h | 157 const char* dvmJdwpStepDepthStr(JdwpStepDepth depth);
|
/external/chromium_org/third_party/libxslt/libxslt/ |
xsltutils.c | 1096 int depth; local 1216 depth = 1; 1217 while (depth < nbsorts) { 1218 if (sorts[depth] == NULL) 1220 comp = sorts[depth]->psvi; 1230 if (resultsTab[depth] == NULL) 1231 resultsTab[depth] = xsltComputeSortResult(ctxt [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/ |
nv50_resource.c | 57 sf->depth = 1;
|
nv50_resource.h | 90 uint16_t depth; member in struct:nv50_surface
|