Home
last modified time | relevance | path

Searched refs:num_pad_chars (Results 1 – 1 of 1) sorted by last modified time

/PHP-5.4/ext/standard/
H A Dstring.c5287 size_t num_pad_chars; /* Number of padding characters (total - input size) */ local
5316 num_pad_chars = pad_length - input_len;
5317 if (num_pad_chars >= INT_MAX) {
5321 result = (char *)emalloc(input_len + num_pad_chars + 1);
5327 right_pad = num_pad_chars;
5331 left_pad = num_pad_chars;
5336 left_pad = num_pad_chars / 2;
5337 right_pad = num_pad_chars - left_pad;

Completed in 16 milliseconds