Searched refs:depth (Results 151 - 175 of 574) sorted by relevance

1234567891011>>

/external/doclava/res/assets/templates/assets/
H A Ddoclava-developer-reference.js103 node.depth = mom.depth + 1;
115 node.label_div.style.paddingLeft = 10*node.depth + "px";
119 node.label_div.style.paddingLeft = ((10*node.depth)+12) + "px";
121 node.label_div.style.paddingLeft = 10*node.depth + "px";
280 me.node.depth = 0;
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
H A DBIHTree.java214 // private BIHNode createNode2(int l, int r, BoundingBox nodeBbox, int depth){
215 // if ((r - l) < maxTrisPerNode || depth > 100)
219 // int axis = depth % 3;
283 // node.left = createNode2(l, splitIndex-1, leftBbox, depth+1);
287 // node.right = createNode2(splitIndex, r, rightBbox, depth+1);
291 private BIHNode createNode(int l, int r, BoundingBox nodeBbox, int depth) { argument
292 if ((r - l) < maxTrisPerNode || depth > MAX_TREE_DEPTH) {
332 return createNode(l, r, rbbox, depth + 1);
337 return createNode(l, r, lbbox, depth + 1);
348 node.setLeftChild(createNode(l, max(l, pivot - 1), lbbox, depth
[all...]
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DCodedInputStreamTest.java403 private TestRecursiveMessage makeRecursiveMessage(int depth) { argument
404 if (depth == 0) {
408 .setA(makeRecursiveMessage(depth - 1)).build();
412 private void assertMessageDepth(TestRecursiveMessage message, int depth) { argument
413 if (depth == 0) {
418 assertMessageDepth(message.getA(), depth - 1);
/external/linux-tools-perf/util/
H A Dhist.c355 static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask, argument
361 for (i = 0; i < depth; i++)
373 int depth, int depth_mask, int period,
381 for (i = 0; i < depth; i++) {
386 if (!period && i == depth - 1) {
418 u64 total_samples, int depth,
447 * The depth mask manages the output of pipes that show
448 * the depth. We don't want to keep the pipes of the current
449 * level for the last child of this depth.
455 new_depth_mask &= ~(1 << (depth
372 ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain, int depth, int depth_mask, int period, u64 total_samples, u64 hits, int left_margin) argument
417 __callchain__fprintf_graph(FILE *fp, struct callchain_node *self, u64 total_samples, int depth, int depth_mask, int left_margin) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/dga/
H A DSDL_dgavideo.c250 mode->depth == 24 ? mode->bitsPerPixel : mode->depth,
289 int a_bpp = a->depth == 24 ? a->bitsPerPixel : a->depth;
290 int b_bpp = b->depth == 24 ? b->bitsPerPixel : b->depth;
366 /* Determine the current screen depth */
380 if ( vformat->BitsPerPixel == pix_format[i].depth )
476 int depth; local
478 depth
[all...]
/external/quake/quake/src/WinQuake/
H A Dvid_sunx.cpp375 cursormask = XCreatePixmap(display, root, 1, 1, 1/*depth*/);
402 pwidth = x_visinfo->depth / 8;
413 x_visinfo->depth,
454 x_visinfo->depth,
669 printf("Found more than one visual id at depth %d:\n", template.depth);
678 Sys_Error("VID: No visuals at depth %d\n", template.depth);
686 printf(" depth %d\n", x_visinfo->depth);
[all...]
H A Dvid_x.cpp279 cursormask = XCreatePixmap(display, root, 1, 1, 1/*depth*/);
328 pwidth = x_visinfo->depth / 8;
334 x_visinfo->depth,
399 x_visinfo->depth,
541 printf("Found more than one visual id at depth %d:\n", template.depth);
550 Sys_Error("VID: No visuals at depth %d\n", template.depth);
587 x_visinfo->depth,
599 if (x_visinfo->depth
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Dcpp.c268 int atom,depth=0; local
287 depth++; cpp->ifdepth++; cpp->elsetracker++;
291 if(--depth<0){
300 else if (((int)(matchelse) != 0)&& depth==0) {
477 CPPErrorToInfoLog("max #if nesting depth exceeded");
503 CPPErrorToInfoLog("max #if nesting depth exceeded");
936 int i,j, token, depth=0; local
976 depth = 0;
988 if (depth == 0 && (token == ',' || token == ')')) break;
989 if (token == '(') depth
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DThreadGroupTest.java947 final int depth, final Vector<ThreadGroup> allCreated) {
948 if (depth <= 0) {
955 final String name = " Depth = " + depth + ",N = " + iClone
964 asyncBuildRandomTreeUnder(newGroup, depth - 1, allCreated);
973 final int depth) {
975 asyncBuildRandomTreeUnder(aGroup, depth, result);
1066 private Vector<ThreadGroup> buildRandomTreeUnder(ThreadGroup aGroup, int depth) { argument
1067 Vector<ThreadGroup> result = asyncBuildRandomTreeUnder(aGroup, depth);
946 asyncBuildRandomTreeUnder(final ThreadGroup aGroup, final int depth, final Vector<ThreadGroup> allCreated) argument
972 asyncBuildRandomTreeUnder(final ThreadGroup aGroup, final int depth) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/
H A Ddirector-ant.jar ... org.eclipse.core.runtime.IStatus) int depth org.eclipse.core.runtime.IStatus status ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/76/1/.cp/ant_tasks/
H A Dresources-ant.jar ... eclipse.core.resources.IResource resource protected int depth public void " href="/4.2_r1/s?defs= ...
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp590 const SelectionDAG *G, unsigned depth,
592 if (depth == 0)
599 if (depth < 1)
607 printrWithDepthHelper(OS, N->getOperand(i).getNode(), G, depth-1, indent+2);
612 unsigned depth) const {
613 printrWithDepthHelper(OS, this, G, depth, 0);
621 void SDNode::dumprWithDepth(const SelectionDAG *G, unsigned depth) const {
622 printrWithDepth(dbgs(), G, depth); local
589 printrWithDepthHelper(raw_ostream &OS, const SDNode *N, const SelectionDAG *G, unsigned depth, unsigned indent) argument
/external/llvm/lib/Support/Unix/
H A DSignals.inc249 int depth = backtrace(StackTrace,
253 for (int i = 0; i < depth; ++i) {
265 for (int i = 0; i < depth; ++i) {
291 backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
/external/mesa3d/docs/OLD/
H A DMESA_packed_depth_stencil.spec35 transfer depth and stencil image data. Specifically, we defined new
36 packed pixel formats and types which pack both stencil and depth
50 preceeds depth in the 1_15 and 8_24 formats?
182 DEPTH_STENCIL_MESA depth stencil
/external/opencv/otherlibs/highgui/
H A Dgrfmt_base.cpp80 bool GrFmtWriter::IsFormatSupported( int depth )
82 return depth == IPL_DEPTH_8U;
/external/qemu/android/skin/
H A Dsurface.c89 int depth,
94 if (depth == 8) {
97 } else if (depth == 32) {
105 return SDL_CreateRGBSurface( flags, width, height, depth,
115 int depth )
119 if (depth == 8) {
122 } else if (depth == 32) {
130 return SDL_CreateRGBSurfaceFrom( pixels, width, height, pitch, depth,
87 _sdl_surface_create_rgb( int width, int height, int depth, int flags ) argument
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A DXvlib.h82 char depth; member in struct:__anon10565
135 int depth; member in struct:__anon10570
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11video.h106 int depth; /* number of significant bits/pixel */ member in struct:SDL_PrivateVideoData::__anon10721
112 int depth; /* current visual depth (not bpp) */ member in struct:SDL_PrivateVideoData
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCLayerImpl.h120 void setDrawDepth(float depth) { m_drawDepth = depth; } argument
180 // The global depth value of the center of the layer. This value is used
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dtls.h48 int depth; member in struct:tls_event_data::__anon15430
56 int depth; member in struct:tls_event_data::__anon15431
/external/wpa_supplicant_8/src/crypto/
H A Dtls.h48 int depth; member in struct:tls_event_data::__anon15654
56 int depth; member in struct:tls_event_data::__anon15655
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dtls.h48 int depth; member in struct:tls_event_data::__anon15880
56 int depth; member in struct:tls_event_data::__anon15881
/external/opencv/cxcore/src/
H A Dcxnorm.cpp977 int type, depth, cn, is_relative; local
1024 depth = CV_MAT_DEPTH(type);
1033 if( depth == CV_32F )
1069 if( depth == CV_64F )
1136 depth = CV_MAT_DEPTH(type);
1168 depth = CV_MAT_DEPTH(type);
1171 pass_hint = normType != 0 && (depth == CV_32F);
1179 CV_GET_FUNC_PTR( func, (CvFunc2D_1A1P)norm_tab[normType].fn_2d[depth]);
1194 CV_GET_FUNC_PTR( func, (CvFunc2D_1A1P1I)norm_tab[normType].fn_2d[depth]);
1212 CV_GET_FUNC_PTR( func, (CvFunc2D_2A1P)norm_tab[3 + normType].fn_2d[depth]);
[all...]
/external/emma/ant/ant14/com/vladium/emma/report/
H A DReportCfg.java60 public void setDepth (final DepthAttribute depth) argument
62 m_settings.setProperty (m_prefix.concat (DEPTH), depth.getValue ());
355 public void setDepth (final DepthAttribute depth) argument
357 m_settings.setProperty (PREFIX.concat (DEPTH), depth.getValue ());
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DRenderer.java81 * @param depth True if to clear depth/z
85 public void clearBuffers(boolean color, boolean depth, boolean stencil); argument
101 * Set the range of the depth values for objects. All rendered
102 * objects will have their depth clamped to this range.

Completed in 1051 milliseconds

1234567891011>>