Home
last modified time | relevance | path

Searched refs:level (Results 26 – 50 of 218) sorted by relevance

123456789

/PHP-5.5/ext/sockets/
H A Dsendrecvmsg.h15 int php_do_setsockopt_ipv6_rfc3542(php_socket *php_sock, int level, int optname, zval **arg4 TSRMLS…
16 int php_do_getsockopt_ipv6_rfc3542(php_socket *php_sock, int level, int optname, zval *result TSRML…
/PHP-5.5/ext/zlib/tests/
H A Dzlib_filter_deflate2.phpt2 zlib.deflate (with level parameter set)
10 stream_filter_append($fp, 'zlib.deflate', STREAM_FILTER_WRITE, array('level' => 9));
H A D007.phpt36 Warning: gzencode(): compression level (-10) must be within -1..9 in %s on line %d
39 Warning: gzencode(): compression level (100) must be within -1..9 in %s on line %d
/PHP-5.5/ext/spl/
H A Dspl_iterators.c154 object->level = 0; in spl_recursive_it_dtor()
163 int level = object->level; in spl_recursive_it_valid_ex() local
165 while (level >=0) { in spl_recursive_it_valid_ex()
170 level--; in spl_recursive_it_valid_ex()
367 object->level--; in spl_recursive_it_move_forward_ex()
675 long level = object->level; in SPL_METHOD() local
680 if (level < 0 || level > object->level) { in SPL_METHOD()
691 long level = object->level; in SPL_METHOD() local
836 long level = object->level; in spl_recursive_it_get_method() local
981 int level; in spl_recursive_tree_iterator_get_prefix() local
[all …]
/PHP-5.5/Zend/tests/traits/
H A Dbug55355.phpt14 // A class on the second level in the
22 // A class on the first level in the
/PHP-5.5/ext/spl/internal/
H A Drecursiveiteratoriterator.inc156 /** @return Sub Iterator at given level or if unspecified the current sub
159 function getSubIterator($level = NULL)
161 if (is_null($level)) {
162 $level = $this->count;
164 return @$this->ait[$level];
179 return $this->level;
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_bt.c157 uint * level; in mysqlnd_build_trace_string() local
159 level = va_arg(args, uint *); in mysqlnd_build_trace_string()
164 if (!*level) { in mysqlnd_build_trace_string()
167 --*level; in mysqlnd_build_trace_string()
H A Dmysqlnd_debug.c59 unsigned int level, const char * type, const char * message) in MYSQLND_METHOD()
75 if (level == -1) { in MYSQLND_METHOD()
76 level = zend_stack_count(&self->call_stack); in MYSQLND_METHOD()
78 i = MIN(level, sizeof(pipe_buffer) / 2 - 1); in MYSQLND_METHOD()
128 snprintf(level_buffer, sizeof(level_buffer) - 1, "%4u: ", level); in MYSQLND_METHOD()
155 unsigned int level, const char * type, in MYSQLND_METHOD()
173 if (level == -1) { in MYSQLND_METHOD()
174 level = zend_stack_count(&self->call_stack); in MYSQLND_METHOD()
176 i = MIN(level, sizeof(pipe_buffer) / 2 - 1); in MYSQLND_METHOD()
226 snprintf(level_buffer, sizeof(level_buffer) - 1, "%4u: ", level); in MYSQLND_METHOD()
/PHP-5.5/tests/output/
H A Dob_start_basic_unerasable_002.phpt18 echo "The OB nesting will still be 1 level deep:\n";
32 The OB nesting will still be 1 level deep:
/PHP-5.5/ext/sockets/tests/
H A Dsocket_sendrecvmsg_multi_msg.phpt47 "level" => IPPROTO_IPV6,
87 [level] => %d
99 [level] => %d
H A Dmcast_ipv6_recv_limited.phpt46 $level = IPPROTO_IPV6;
61 $so = socket_set_option($s, $level, MCAST_JOIN_GROUP, array(
85 $so = socket_set_option($s, $level, MCAST_LEAVE_GROUP, array(
97 $so = socket_set_option($s, $level, MCAST_JOIN_GROUP, array(
H A Dsocket_sendrecvmsg_multi_msg-win32.phpt41 "level" => IPPROTO_IPV6,
84 [level] => %d
96 [level] => %d
/PHP-5.5/ext/phar/tests/
H A Dphar_extract.phpt18 $a->addEmptyDir('one/level');
41 $a->extractTo(dirname(__FILE__) . '/extract2', array('file2.txt', 'one/level'));
43 var_dump(is_dir(dirname(__FILE__) . '/extract2/one/level'));
113 @rmdir($e . 'one/level');
124 @rmdir($e . 'one/level');
H A Dphar_extract2.phpt20 $phar->addEmptyDir('one/level');
47 @rmdir($dir . 'one/level');
/PHP-5.5/ext/gd/libgd/
H A Dgd_png.c420 void gdImagePngEx (gdImagePtr im, FILE * outFile, int level, int basefilter) in gdImagePngEx() argument
423 gdImagePngCtxEx(im, out, level, basefilter); in gdImagePngEx()
445 void * gdImagePngPtrEx (gdImagePtr im, int *size, int level, int basefilter) in gdImagePngPtrEx() argument
449 gdImagePngCtxEx(im, out, level, basefilter); in gdImagePngPtrEx()
464 void gdImagePngCtxEx (gdImagePtr im, gdIOCtx * outfile, int level, int basefilter) in gdImagePngCtxEx() argument
520 if (level != -1 && (level < 0 || level > 9)) { in gdImagePngCtxEx()
524 png_set_compression_level(png_ptr, level); in gdImagePngCtxEx()
/PHP-5.5/ext/zlib/
H A Dzlib.c326 …if (Z_OK == (status = deflateInit2(&Z, level, Z_DEFLATED, encoding, MAX_MEM_LEVEL, Z_DEFAULT_STRAT… in php_zlib_encode()
649 long level = -1; \
652 …if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|ll", &in_buf, &in_len, &level, …
656 … zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|l", &in_buf, &in_len, &encoding, &level)) { \
660 if (level < -1 || level > 9) { \
661 …php_error_docref(NULL TSRMLS_CC, E_WARNING, "compression level (%ld) must be within -1..9", level)…
673 if (SUCCESS != php_zlib_encode(in_buf, in_len, &out_buf, &out_len, encoding, level TSRMLS_CC)) { \
772 ZEND_ARG_INFO(0, level)
782 ZEND_ARG_INFO(0, level)
788 ZEND_ARG_INFO(0, level)
[all …]
/PHP-5.5/Zend/tests/
H A Dtry_finally_011.phpt15 Fatal error: Cannot break/continue 1 level in %stry_finally_011.php on line %d
H A Dbug63882.phpt15 Fatal error: Nesting level too deep - recursive dependency? in %sbug63882.php on line 9
/PHP-5.5/ext/libxml/tests/
H A D002.phpt38 switch ($error->level) {
73 ["level"]=>
/PHP-5.5/ext/intl/doc/
H A DTutorial.txt48 Performance optimizations have been made for ICU collation with the default level
50 Following is a list of the names for each level and an example usage:
73 4. Quaternary Level: When punctuation is ignored (see Ignoring Punctuations ) at level
74 13, an additional level can be used to distinguish words with and without punctuation
77 quaternary level should only be used if ignoring punctuation is required or when
80 5. Identical Level: When all other levels are equal, the identical level is used as a
82 compared at this level, just in case there is no difference at levels 14
83 . For example, Hebrew cantillation marks are only distinguished at this level. This level should be
85 extremely rare occurrence. Using this level substantially decreases the performance for
87 key length). It is also known as level 5 strength.
[all …]
/PHP-5.5/ext/fileinfo/libmagic/
H A Dfuncs.c412 file_check_mem(struct magic_set *ms, unsigned int level) in file_check_mem() argument
416 if (level >= ms->c.len) { in file_check_mem()
417 len = (ms->c.len = 20 + level) * sizeof(*ms->c.li); in file_check_mem()
426 ms->c.li[level].got_match = 0; in file_check_mem()
428 ms->c.li[level].last_match = 0; in file_check_mem()
429 ms->c.li[level].last_cond = COND_NONE; in file_check_mem()
/PHP-5.5/ext/mbstring/oniguruma/doc/
H A DRE264 back reference with nest level
266 level: 0, 1, 2, ...
268 \k<n+level> (n >= 1)
269 \k<n-level> (n >= 1)
270 \k'n+level' (n >= 1)
271 \k'n-level' (n >= 1)
273 \k<name+level>
274 \k<name-level>
275 \k'name+level'
276 \k'name-level'
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A D005.phpt2 highlight_string(), output buffer and error level
/PHP-5.5/tests/basic/
H A Dbug61000.phpt2 Bug #61000 (Exceeding max nesting level doesn't delete numerical vars)
/PHP-5.5/ext/simplexml/tests/
H A Dbug46048.phpt2 Bug #46048 (SimpleXML top-level @attributes not part of iterator)

Completed in 76 milliseconds

123456789