Home
last modified time | relevance | path

Searched refs:depth (Results 1 – 25 of 39) sorted by last modified time

12

/PHP-5.6/
H A Dserver-tests.php1083 $depth = substr_count($parts['path'],'/');
1085 for ($i=0 ; $i < $depth; $i++) $docroot = dirname($docroot);
/PHP-5.6/sapi/phpdbg/
H A Dphpdbg_btree.c33 void phpdbg_btree_init(phpdbg_btree *tree, zend_ulong depth) { in phpdbg_btree_init() argument
34 tree->depth = depth; in phpdbg_btree_init()
41 int i = tree->depth - 1; in phpdbg_btree_find()
68 int i = tree->depth - 1, last_superior_i = -1; in phpdbg_btree_find_closest()
86 i = tree->depth - 1; in phpdbg_btree_find_closest()
141 int i = tree->depth - 1; in phpdbg_btree_insert_or_update()
176 int i = tree->depth; in phpdbg_btree_delete()
H A Dphpdbg_btree.h39 zend_ulong depth; member
49 void phpdbg_btree_init(phpdbg_btree *tree, zend_ulong depth);
/PHP-5.6/main/
H A Dalloca.c162 register char *depth = ADDRESS_FUNCTION (probe); local
180 if ((STACK_DIR > 0 && hp->h.deep > depth)
181 || (STACK_DIR < 0 && hp->h.deep < depth))
212 ((header *) new)->h.deep = depth;
/PHP-5.6/ext/xmlrpc/
H A Dxmlrpc-epi-php.c520 static XMLRPC_VALUE PHP_to_XMLRPC_worker (const char* key, zval* in_val, int depth TSRMLS_DC) in PHP_to_XMLRPC_worker()
608 … XMLRPC_AddValueToVector(xReturn, PHP_to_XMLRPC_worker(num_str, *pIter, depth++ TSRMLS_CC)); in PHP_to_XMLRPC_worker()
613 XMLRPC_AddValueToVector(xReturn, PHP_to_XMLRPC_worker(my_key, *pIter, depth++ TSRMLS_CC)); in PHP_to_XMLRPC_worker()
/PHP-5.6/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c376 …r)(void *data, const char *text, int size), void *data, XML_ELEM_OUTPUT_OPTIONS options, int depth) in xml_element_serialize() argument
383 depth++; in xml_element_serialize()
394 if(depth == 1) { in xml_element_serialize()
412 if(options->verbosity == xml_elem_pretty && depth > 2) { in xml_element_serialize()
413 xml_elem_writefunc(fptr, whitespace, data, depth - 2); in xml_element_serialize()
482 xml_element_serialize(kids, fptr, data, options, depth); in xml_element_serialize()
486 if(options->verbosity == xml_elem_pretty && depth > 2) { in xml_element_serialize()
487 xml_elem_writefunc(fptr, whitespace, data, depth - 2); in xml_element_serialize()
H A Dxml_to_soap.c238 int depth) { in xml_element_to_SOAP_REQUEST_worker() argument
247 depth ++; in xml_element_to_SOAP_REQUEST_worker()
313 if (depth == 3) { in xml_element_to_SOAP_REQUEST_worker()
395 if ( depth <= 2 || in xml_element_to_SOAP_REQUEST_worker()
396 (rtype == xmlrpc_request_response && depth <= 3) ) { in xml_element_to_SOAP_REQUEST_worker()
397 xml_element_to_SOAP_REQUEST_worker(request, NULL, ai, xCurrent, iter, depth); in xml_element_to_SOAP_REQUEST_worker()
403 xml_element_to_SOAP_REQUEST_worker(request, xCurrent, ai, xNext, iter, depth); in xml_element_to_SOAP_REQUEST_worker()
H A Dxml_to_xmlrpc.c190 XMLRPC_REQUEST_TYPE request_type, int depth) { in XMLRPC_to_xml_element_worker() argument
200 if (depth == 0 && in XMLRPC_to_xml_element_worker()
206 xml_element* next_el = XMLRPC_to_xml_element_worker(NULL, node, request_type, depth + 1); in XMLRPC_to_xml_element_worker()
259 if(depth == 0) { in XMLRPC_to_xml_element_worker()
290 … xml_element* next_el = XMLRPC_to_xml_element_worker(node, xIter, request_type, depth + 1); in XMLRPC_to_xml_element_worker()
306 if (depth == 1) { in XMLRPC_to_xml_element_worker()
/PHP-5.6/ext/xmlreader/examples/
H A Dxmlreader_file.php8 print "Node Depth: ".$reader->depth."\n";
H A Dxmlreader_relaxNG.php13 print str_repeat(" ", $reader->depth * $indent).$reader->name."\n";
H A Dxmlreader_string.php19 print "Node Depth: ".$reader->depth."\n";
H A Dxmlreader_validatedtd.php10 print str_repeat(" ", $xml->depth * $indent).$xml->name."\n";
13 print str_repeat(" ", $xml->depth * $indent)." Number of Attributes: ".$xml->attributeCount."\n";
/PHP-5.6/ext/standard/tests/strings/
H A Dsscanf_basic3.phpt18 list($part, $length, $width, $depth) = sscanf($str, $format);
19 var_dump($part, $length, $width, $depth);
23 $res = sscanf($str, $format, $part, $length, $width, $depth);
24 var_dump($res, $part, $length, $width, $depth);
/PHP-5.6/ext/standard/tests/array/
H A D001.phpt16 function make_nested_array ($depth, $breadth, $function = NULL, $args = array ()) {
23 for ($y = 1; $y < $depth; ++$y) {
/PHP-5.6/ext/standard/
H A Dstring.c4620 int br, i=0, depth=0, in_q = 0; local
4670 depth++;
4711 if (depth) {
4712 depth--;
/PHP-5.6/ext/sqlite3/libsqlite/
H A Dsqlite3.c17748 if( depth<0 ){ depth = 0; } in sqlite3MemdebugBacktrace()
17749 if( depth>20 ){ depth = 20; } in sqlite3MemdebugBacktrace()
17750 depth = (depth+1)&0xfe; in sqlite3MemdebugBacktrace()
17751 mem.nBacktrace = depth; in sqlite3MemdebugBacktrace()
61659 int i, rc, depth, d2, pgno, cnt;
61684 depth = -1;
61696 depth = -1;
61702 depth = 0;
61750 if( i>0 && d2!=depth ){
61753 depth = d2;
[all …]
/PHP-5.6/ext/spl/internal/
H A Drecursivetreeiterator.inc43 /** Prefix used if $level < depth and hasNext($level) == true. */
45 /** Prefix used if $level < depth and hasNext($level) == false. */
47 /** Prefix used if $level == depth and hasNext($level) == true. */
49 /** Prefix used if $level == depth and hasNext($level) == false. */
/PHP-5.6/ext/session/
H A Dmod_files.bat9 ECHO Usage %0 ^<basedir^> ^<depth^> ^[^hash_bits^]
12 ECHO ^<depth^> is the number of levels defined in session.save_path
52 ECHO ERROR: Invalid depth : %2
H A Dmod_files.sh20 depth="$2"
59 echo "Creating session path in $directory with a depth of $depth for session.hash_bits_per_characte…
64 bash $0 $newpath `expr $depth - 1` $hashbits recurse
/PHP-5.6/ext/pcre/pcrelib/doc/
H A Dpcre.txt1151 In some environments it is desirable to limit the depth of recursive
1407 tree: depth-first and breadth-first, and these correspond to the two
1415 depth-first search of the pattern tree. That is, it proceeds along a
1995 The output is a long integer that gives the maximum depth of nesting of
2011 The output is a long integer that gives the default limit for the depth
3177 the depth of recursion. The recursion depth is a smaller number than
3181 Limiting the recursion depth limits the amount of machine stack that
4866 internal match() function is called and on the maximum depth of recur-
6955 depth of nesting. It is not possible to handle an arbitrary nesting
6956 depth.
[all …]
/PHP-5.6/ext/pcre/pcrelib/
H A DHACKING92 depth of parentheses was removed. However, there is a downside: pcre_compile()
97 At release 8.34, a limit on the nesting depth of parentheses was re-introduced
H A DREADME284 . PCRE has a counter that limits the depth of nesting of parentheses in a
302 . There is a separate counter that limits the depth of recursive function calls
H A DChangeLog292 depth limit of 1000 has been imposed to limit the resources used by this
722 33. There is now a limit (default 250) on the depth of nesting of parentheses.
1492 11. Change 17 for 8.13 increased the recursion depth for patterns like
1691 the recursion depth to 10.
3479 depth of parentheses has been removed (though this was never a serious
3978 17. Added a new limit, MATCH_LIMIT_RECURSION, which limits the depth of nesting
3981 the depth of recursion. Limiting the recursion depth limits the amount of
/PHP-5.6/ext/openssl/
H A Dxp_ssl.c238 int err, depth, ret; in verify_callback() local
246 depth = X509_STORE_CTX_get_error_depth(ctx); in verify_callback()
262 if ((unsigned long)depth > allowed_depth) { in verify_callback()
/PHP-5.6/ext/mysqli/tests/
H A Dmysqli_store_result_copy.phpt105 /* There's no need for in-depth testing here. If you want in-depth switch mysqlnd

Completed in 489 milliseconds

12