Searched refs:depth (Results 1 - 25 of 809) sorted by relevance

1234567891011>>

/macosx-10.9.5/ruby-104/ruby/
H A Dinsns_info.inc381 insn_stack_increase(int depth, int insn, VALUE *opes)
385 return depth + 0;
388 return depth + 1;
391 return depth + -1;
394 return depth + 1;
397 return depth + -1;
400 return depth + 1;
403 return depth + -1;
406 return depth + 1;
409 return depth
[all...]
/macosx-10.9.5/CrackLib-37765/cracklib27/cracklib/
H A Dgenrules.pl15 my $depth = shift;
18 if ($depth == 0)
24 $stack[$depth] = $set[$i];
26 if ($depth == $#set)
38 &Permute($depth + 1);
/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_so_binary_trees.rb18 def bottom_up_tree(item, depth)
19 if depth > 0
21 depth -= 1
22 [bottom_up_tree(item_item - 1, depth), item, bottom_up_tree(item_item, depth)]
36 puts "stretch tree of depth #{stretch_depth}\t check: #{item_check(stretch_tree)}"
41 min_depth.step(max_depth + 1, 2) do |depth|
42 iterations = 2**(max_depth - depth + min_depth)
47 temp_tree = bottom_up_tree(i, depth)
50 temp_tree = bottom_up_tree(-i, depth)
[all...]
/macosx-10.9.5/CPANInternal-140/Sub-Uplevel/t/
H A D03_nested_uplevels.t11 my ($n, $f, $depth, $up, @case) = @_;
15 return wrap( $n, $f, $depth, $up, @case );
18 return uplevel( $up , $f, $depth, $up, @case );
25 my ($depth, $up, @case) = @_;
27 if ( $depth ) {
28 $depth--;
30 push @result, recurse_call_check($depth, $up, @case, 'Call' );
33 $depth, $n, @case,
59 my $depth = 4;
65 my @results = Call::recurse_call_check( $depth,
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/securityd/Regressions/
H A Dsd-10-policytree.c67 int depth; local
68 for (depth = 0; tree && depth < 7; ++depth) {
71 added = policy_tree_walk_depth(tree, depth,
74 diag("depth: %d %s", depth,
80 diag("prune_childless depth: %d", depth);
82 policy_tree_prune_childless(&tree, depth);
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_ctx.c107 ctx->depth = 0;
118 assert(ctx->depth == 0);
128 if (ctx->depth < BN_CTX_NUM_POS)
129 ctx->pos[ctx->depth] = ctx->tos;
130 ctx->depth++;
135 if (ctx->depth > BN_CTX_NUM_POS || ctx->tos >= BN_CTX_NUM)
151 assert(ctx->depth > 0);
152 if (ctx->depth == 0)
159 ctx->depth--;
160 if (ctx->depth < BN_CTX_NUM_PO
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DWebGLContextAttributes.idl32 attribute boolean depth;
H A DWebGLContextAttributes.cpp70 bool WebGLContextAttributes::depth() const function in class:WebCore::WebGLContextAttributes
72 return m_attrs.depth;
75 void WebGLContextAttributes::setDepth(bool depth) argument
77 m_attrs.depth = depth;
H A DWebGLContextAttributes.h50 // Whether or not the drawing buffer has a depth buffer; default=true
51 bool depth() const;
52 void setDepth(bool depth);
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DNSFEEPublicKey.h28 depth:(unsigned)depth // depth is in range 0-23
45 * Convenience methods. The first three use the default depth
57 depth:(unsigned)depth
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DNSFEEPublicKey.h28 depth:(unsigned)depth // depth is in range 0-23
45 * Convenience methods. The first three use the default depth
57 depth:(unsigned)depth
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Ddir_forest.c9 /* char *dir_forest(buf, path, depth)
12 /* int depth;
35 /* .IP depth
62 char *dir_forest(VSTRING *buf, const char *path, int depth) argument
75 if (depth < 1)
76 msg_panic("%s: depth %d", myname, depth);
94 for (cp = path, n = 0; n < depth; n++) {
/macosx-10.9.5/IOKitUser-907.100.13/
H A Diodisplayregistry.c37 static void indent(Boolean node, int depth, UInt64 stackOfBits);
39 int depth,
44 int depth, UInt64 stackOfBits);
107 int depth, UInt64 stackOfBits)
137 // Save has-more-siblings state into stackOfBits for this depth.
140 stackOfBits |= (1 << depth);
142 stackOfBits &= ~(1 << depth);
144 // Save has-children state into stackOfBits for this depth.
147 stackOfBits |= (2 << depth);
149 stackOfBits &= ~(2 << depth);
104 traverse(unsigned int options, io_name_t plane, io_iterator_t services, io_registry_entry_t serviceUpNext, int depth, UInt64 stackOfBits) argument
196 int depth; member in struct:indent_ctxt
256 properties(io_registry_entry_t service, int depth, UInt64 stackOfBits) argument
291 indent(Boolean node, int depth, UInt64 stackOfBits) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/surfaces/glx/
H A DGLXConfigSelector.h104 GLXFBConfig surfaceClientConfig(int depth, VisualID id) argument
107 clientAttributes[8] = depth == 32 ? GLX_BIND_TO_TEXTURE_RGBA_EXT : GLX_BIND_TO_TEXTURE_RGB_EXT;
109 GLXFBConfig config = findMatchingConfigWithVisualId(clientAttributes, depth, id);
112 config = findMatchingConfig(clientAttributes, depth);
140 GLXFBConfig findMatchingConfig(const int attributes[], int depth = 32)
160 if (scopedVisualInfo->depth == depth && format->direct.alphaMask > 0)
167 if (scopedVisualInfo->depth == depth)
174 if ((m_attributes & GLPlatformSurface::SupportAlpha) && (scopedVisualInfo->depth !
180 findMatchingConfigWithVisualId(const int attributes[], int depth, VisualID id) argument
[all...]
/macosx-10.9.5/rsync-42/rsync/testhelp/
H A Dmaketree.py25 depth = 5 variable
84 def build_tree(self, prefix, depth):
93 function(name, depth)
100 def make_child_recurse(self, dname, depth):
101 if depth > 1:
103 self.build_tree(dname, depth-1)
106 def make_dir(self, dname, depth='ignore'):
112 def make_symlink(self, lname, depth='ignore'):
116 def make_file(self, fname, depth='ignore'):
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DPlatformScreenQt.cpp57 return QGuiApplication::screens().value(screenNumber(w))->depth();
62 int depth = QGuiApplication::primaryScreen()->depth(); local
67 // values for each screen depth and assume RGB/RGBA where appropriate.
71 switch (depth) {
77 return depth / 3;
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/
H A DPlatformScreenEfl.cpp66 int depth = screenDepth(widget); local
68 switch (depth) {
77 return depth / 3;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dftw.c45 ftw(const char* path, int(*userf)(const char*, const struct stat*, int), int depth) argument
47 NoP(depth);
/macosx-10.9.5/CPANInternal-140/Test-NoWarnings/t/
H A D02_end.t17 depth => undef,
21 depth => undef,
/macosx-10.9.5/CPANInternal-140/Test-NoWarnings-1.04/t/
H A D03_end.t17 depth => undef,
21 depth => undef,
/macosx-10.9.5/CPANInternal-140/Test-Tester/lib/Test/Tester/
H A DCaptureRunner.pm36 next if defined $res->{depth};
37 my $depth = $res->{_depth} - $res->{_level} - $start - 3;
38 # print "my $depth = $res->{_depth} - $res->{_level} - $start - 1\n";
39 $res->{depth} = $depth;
/macosx-10.9.5/groff-38/groff/src/utils/addftinfo/
H A Dguess.h38 int depth; member in struct:char_metric
/macosx-10.9.5/ruby-104/ruby/missing/
H A Dalloca.c115 (b) keep track of stack depth.
131 char *deep; /* for stack depth measure */
150 auto char probe; /* probes stack depth: */
151 register char *depth = &probe; local
164 if (STACK_DIR > 0 && hp->h.deep > depth
165 || STACK_DIR < 0 && hp->h.deep < depth)
189 ((header *)new)->h.deep = depth;
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/library/
H A Dglobrecur.tcl50 proc for_recursive_glob {var dirlist globlist cmd {depth 1}} {
51 upvar $depth $var myVar
62 set code [catch {uplevel $depth $cmd} result]
91 [expr $depth + 1]]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DRegionPrinter.cpp102 unsigned depth = 0) {
104 O.indent(2 * depth) << "subgraph cluster_" << static_cast<const void*>(R)
106 O.indent(2 * (depth + 1)) << "label = \"\";\n";
109 O.indent(2 * (depth + 1)) << "style = filled;\n";
110 O.indent(2 * (depth + 1)) << "color = "
114 O.indent(2 * (depth + 1)) << "style = solid;\n";
115 O.indent(2 * (depth + 1)) << "color = "
120 printRegionCluster(*RI, GW, depth + 1);
127 O.indent(2 * (depth + 1)) << "Node"
131 O.indent(2 * depth) << "}\
[all...]

Completed in 304 milliseconds

1234567891011>>