Home
last modified time | relevance | path

Searched refs:left (Results 26 – 50 of 84) sorted by relevance

1234

/php-src/ext/standard/tests/file/
H A Dbug38450_1.phpt33 $left = substr($GLOBALS[$this->varname], 0, $this->position);
35 $GLOBALS[$this->varname] = $left . $data . $right;
H A Dbug38450_2.phpt33 $left = substr($GLOBALS[$this->varname], 0, $this->position);
35 $GLOBALS[$this->varname] = $left . $data . $right;
H A Dbug38450_3.phpt33 $left = substr($GLOBALS[$this->varname], 0, $this->position);
35 $GLOBALS[$this->varname] = $left . $data . $right;
/php-src/ext/dom/tests/
H A DDOMDocument_getElementsByTagName_liveness.phpt23 Note that everything shifted to the left.
34 Note again everything shifted to the left.
/php-src/ext/standard/
H A Dbase64.c118 *left = inl; in neon_base64_encode()
127 size_t left = 0; in php_base64_encode_impl() local
128 out = neon_base64_encode(in, inl, out, &left); in php_base64_encode_impl()
129 in += inl - left; in php_base64_encode_impl()
130 inl = left; in php_base64_encode_impl()
181 … size_t neon_base64_decode(const unsigned char *in, size_t inl, unsigned char *out, size_t *left) { in neon_base64_decode() argument
245 *left = inl; in neon_base64_decode()
257 size_t left = 0; in php_base64_decode_impl() local
258 j += neon_base64_decode(in, inl, out, &left); in php_base64_decode_impl()
259 i = inl - left; in php_base64_decode_impl()
[all …]
/php-src/ext/date/lib/
H A Dparse_tz.c582 int left = 0, right = tzdb->index_size - 1; in seek_to_tz_position() local
589 int mid = ((unsigned)left + right) >> 1; in seek_to_tz_position()
595 left = mid + 1; in seek_to_tz_position()
601 } while (left <= right); in seek_to_tz_position()
792 uint32_t left, right; in timelib_fetch_timezone_offset() local
838 left = 0; in timelib_fetch_timezone_offset()
841 while (right - left > 1) { in timelib_fetch_timezone_offset()
842 uint32_t mid = (left + right) >> 1; in timelib_fetch_timezone_offset()
847 left = mid; in timelib_fetch_timezone_offset()
850 *transition_time = tz->trans[left]; in timelib_fetch_timezone_offset()
[all …]
/php-src/ext/sysvshm/tests/
H A D004.phpt32 Warning: shm_put_var(): Not enough shared memory left in %s004.php on line %d
/php-src/scripts/dev/
H A Dcheck_parameters.php73 $left = 0;
78 $mid = intval(($left + $right)/2);
86 $left = $mid;
/php-src/ext/gd/tests/
H A Dbug77200.phpt2 Bug #77200 (imagecropauto(…, GD_CROP_SIDES) crops left but not right)
/php-src/ext/opcache/tests/jit/
H A Dbug80861.phpt18 public $left = null;
26 $b->left = $a;
/php-src/ext/reflection/tests/
H A Dbug64936.phpt2 ReflectionMethod::getDocComment() uses left over doc comment from previous scanner run
/php-src/ext/standard/tests/strings/
H A Dtrim_error.phpt21 Warning: trim(): Invalid '..'-range, no character to the left of '..' in %s on line %d
H A Dltrim_error.phpt21 Warning: ltrim(): Invalid '..'-range, no character to the left of '..' in %s on line %d
H A Drtrim_error.phpt21 Warning: rtrim(): Invalid '..'-range, no character to the left of '..' in %s on line %d
H A Dsprintf_f_2.phpt64 var_dump(sprintf("[%-10s]", $s)); // left-justification with spaces
67 var_dump(sprintf("[%10.10s]", $t)); // left-justification but with a cutoff of 10 characters
/php-src/ext/dom/lexbor/lexbor/core/
H A Davl.h30 lexbor_avl_node_t *left; member
H A Dbst.h34 lexbor_bst_entry_t *left; member
/php-src/Zend/
H A Dzend_language_parser.y57 %left T_LOGICAL_OR
58 %left T_LOGICAL_XOR
59 %left T_LOGICAL_AND
65 %left '?' ':'
67 %left T_BOOLEAN_OR
69 %left '|'
70 %left '^'
74 %left '.'
75 %left T_SL T_SR
76 %left '+' '-'
[all …]
/php-src/ext/standard/tests/math/
H A Dpow.phpt11 function epsilon_equal($left, $right): bool {
12 return abs(($left-$right) / $left) < 1e-12;
/php-src/Zend/asm/
H A Dmake_mips64_n64_elf_gas.S87 # the previous function should have left the 16 bytes incoming argument
H A Dmake_mips32_o32_elf_gas.S88 # the previous function should have left the 16 bytes incoming argument
/php-src/Zend/tests/constexpr/
H A Dnew_not_allowed_property.phpt14 // left uninitialized. A third option is another mechanism between object creation and
/php-src/ext/dom/lexbor/patches/
H A D0001-Shrink-size-of-static-binary-search-tree.patch28 - size_t left;
31 + unsigned short left;
/php-src/ext/standard/tests/array/
H A Darray_shift_variation8.phpt6 * From a comment left by Traps on 09-Jul-2007 on the array_shift documentation page:
/php-src/ext/xmlreader/tests/
H A Dbug70309.phpt13 /* From the bug report an extra message comes from libxml2 debug output left unwrapped. */

Completed in 50 milliseconds

1234