/PHP-7.4/ext/mysqlnd/ |
H A D | mysqlnd_read_buffer.c | 30 return buffer->len? FALSE:TRUE; in mysqlnd_read_buffer_is_empty() 39 if (buffer->len >= count) { in mysqlnd_read_buffer_read() 40 memcpy(dest, buffer->data + buffer->offset, count); in mysqlnd_read_buffer_read() 41 buffer->offset += count; in mysqlnd_read_buffer_read() 42 buffer->len -= count; in mysqlnd_read_buffer_read() 52 return buffer->len; in mysqlnd_read_buffer_bytes_left() 59 mysqlnd_read_buffer_free(MYSQLND_READ_BUFFER ** buffer) in mysqlnd_read_buffer_free() argument 62 if (*buffer) { in mysqlnd_read_buffer_free() 63 mnd_efree((*buffer)->data); in mysqlnd_read_buffer_free() 64 mnd_efree(*buffer); in mysqlnd_read_buffer_free() [all …]
|
/PHP-7.4/ext/pcre/pcre2lib/ |
H A D | pcre2_ord2utf.c | 59 PRIV(ord2utf)(uint32_t cvalue, PCRE2_UCHAR *buffer) in PRIV() 62 (void)(buffer); in PRIV() 81 PRIV(ord2utf)(uint32_t cvalue, PCRE2_UCHAR *buffer) in PRIV() 89 buffer += i; in PRIV() 92 *buffer-- = 0x80 | (cvalue & 0x3f); in PRIV() 95 *buffer = PRIV(utf8_table2)[i] | cvalue; in PRIV() 103 *buffer = (PCRE2_UCHAR)cvalue; in PRIV() 107 *buffer++ = 0xd800 | (cvalue >> 10); in PRIV() 108 *buffer = 0xdc00 | (cvalue & 0x3ff); in PRIV() 114 *buffer = (PCRE2_UCHAR)cvalue; in PRIV()
|
/PHP-7.4/ext/mbstring/libmbfl/mbfl/ |
H A D | mbfl_memory_device.c | 50 device->buffer = NULL; in mbfl_memory_device_init() 75 device->buffer = tmp; in mbfl_memory_device_realloc() 91 if (device->buffer) { in mbfl_memory_device_clear() 94 device->buffer = NULL; in mbfl_memory_device_clear() 123 device->buffer = NULL; in mbfl_memory_device_result() 158 device->buffer = tmp; in mbfl_memory_device_output() 186 device->buffer = tmp; in mbfl_memory_device_output2() 216 device->buffer = tmp; in mbfl_memory_device_output4() 256 device->buffer = tmp; in mbfl_memory_device_strncat() 287 if (device->buffer) { in mbfl_wchar_device_clear() [all …]
|
/PHP-7.4/ext/date/lib/ |
H A D | parse_tz.c | 158 uint32_t buffer[6]; in read_32bit_header() local 160 memcpy(&buffer, *tzf, sizeof(buffer)); in read_32bit_header() 179 if (!buffer) { in read_64bit_transitions() 185 buffer[i] = timelib_conv_int64_signed(buffer[i]); in read_64bit_transitions() 187 if (i > 0 && !(buffer[i] > buffer[i - 1])) { in read_64bit_transitions() 223 if (!buffer) { in read_64bit_types() 238 …et += (int32_t) (((uint32_t) buffer[j]) << 24) + (buffer[j + 1] << 16) + (buffer[j + 2] << 8) + tz… in read_64bit_types() 276 if (!buffer) { in read_64bit_types() 291 if (!buffer) { in read_64bit_types() 347 memcpy(&buffer, *tzf, sizeof(buffer)); in read_location() [all …]
|
/PHP-7.4/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_htmlent.c | 184 buffer[0] = '&'; in mbfl_filt_conv_html_dec() 190 if (buffer[1]=='#') { in mbfl_filt_conv_html_dec() 191 if (filter->status > 2 && (buffer[2] == 'x' || buffer[2] == 'X')) { in mbfl_filt_conv_html_dec() 195 int v = buffer[pos]; in mbfl_filt_conv_html_dec() 215 int v = buffer[pos]; in mbfl_filt_conv_html_dec() 240 buffer[filter->status] = 0; in mbfl_filt_conv_html_dec() 256 buffer[filter->status++] = ';'; in mbfl_filt_conv_html_dec() 257 buffer[filter->status] = 0; in mbfl_filt_conv_html_dec() 264 buffer[filter->status++] = c; in mbfl_filt_conv_html_dec() 271 buffer[filter->status] = 0; in mbfl_filt_conv_html_dec() [all …]
|
/PHP-7.4/ext/standard/ |
H A D | formatted_print.c | 58 *buffer = zend_string_extend(*buffer, ZSTR_LEN(*buffer) << 1, 0); in php_sprintf_appendchar() 70 size_t nlen = ZSTR_LEN(*buffer); in php_sprintf_appendchars() 76 *buffer = zend_string_extend(*buffer, nlen, 0); in php_sprintf_appendchars() 99 *buffer, *pos, ZSTR_LEN(*buffer), add, min_width, padding, alignment)); in php_sprintf_appendstring() 117 *buffer = zend_string_extend(*buffer, size, 0); in php_sprintf_appendstring() 152 *buffer, pos, &ZSTR_LEN(*buffer), number, width, padding, alignment)); in php_sprintf_appendint() 196 *buffer, pos, &ZSTR_LEN(*buffer), number, width, padding, alignment)); in php_sprintf_appenduint() 238 *buffer, pos, &ZSTR_LEN(*buffer), number, width, padding, alignment, fmt)); in php_sprintf_appenddouble() 327 *buffer, pos, &ZSTR_LEN(*buffer), number, width, padding, alignment, n, in php_sprintf_append2n() 355 i = (endptr - *buffer); in php_sprintf_getnumber() [all …]
|
H A D | crypt_sha256.c | 254 memcpy(&ctx->buffer[left_over], buffer, add); in sha256_process_bytes() 261 memcpy(ctx->buffer, &ctx->buffer[(left_over + add) & ~63], ctx->buflen); in sha256_process_bytes() 264 buffer = (const char *) buffer + add; in sha256_process_bytes() 279 sha256_process_block(memcpy(ctx->buffer, buffer, 64), 64, ctx); in sha256_process_bytes() 280 buffer = (const char *) buffer + 64; in sha256_process_bytes() 284 buffer = (const char *) buffer + (len & ~63); in sha256_process_bytes() 293 memcpy(&ctx->buffer[left_over], buffer, len); in sha256_process_bytes() 298 memcpy(ctx->buffer, &ctx->buffer[64], left_over); in sha256_process_bytes() 548 buffer = NULL; in php_sha256_crypt_r() 571 return buffer; in php_sha256_crypt_r() [all …]
|
H A D | password.c | 71 zend_string *buffer; in php_password_salt_to64() local 76 if (ZSTR_LEN(buffer) < out_len) { in php_password_salt_to64() 85 zend_string_free(buffer); in php_password_salt_to64() 91 zend_string_free(buffer); in php_password_salt_to64() 98 zend_string *ret, *buffer; in php_password_make_salt() local 106 if (FAILURE == php_random_bytes_silent(ZSTR_VAL(buffer), ZSTR_LEN(buffer))) { in php_password_make_salt() 113 if (php_password_salt_to64(ZSTR_VAL(buffer), ZSTR_LEN(buffer), length, ZSTR_VAL(ret)) == FAILURE) { in php_password_make_salt() 119 zend_string_release_ex(buffer, 0); in php_password_make_salt() 126 zend_string *buffer; in php_password_get_salt() local 143 if (UNEXPECTED(!buffer)) { in php_password_get_salt() [all …]
|
H A D | iptc.c | 322 unsigned char *buffer, recnum, dataset; in PHP_FUNCTION() local 331 buffer = (unsigned char *)str; in PHP_FUNCTION() 334 if ((buffer[inx] == 0x1c) && ((buffer[inx+1] == 0x01) || (buffer[inx+1] == 0x02))){ in PHP_FUNCTION() 342 if (buffer[ inx++ ] != 0x1c) { in PHP_FUNCTION() 349 dataset = buffer[ inx++ ]; in PHP_FUNCTION() 350 recnum = buffer[ inx++ ]; in PHP_FUNCTION() 352 if (buffer[ inx ] & (unsigned char) 0x80) { /* long tag */ in PHP_FUNCTION() 356 len = (((zend_long) buffer[ inx + 2 ]) << 24) + (((zend_long) buffer[ inx + 3 ]) << 16) + in PHP_FUNCTION() 357 (((zend_long) buffer[ inx + 4 ]) << 8) + (((zend_long) buffer[ inx + 5 ])); in PHP_FUNCTION() 360 len = (((unsigned short) buffer[ inx ])<<8) | (unsigned short)buffer[ inx+1 ]; in PHP_FUNCTION() [all …]
|
H A D | crypt_sha512.c | 281 memcpy(&ctx->buffer[left_over], buffer, add); in sha512_process_bytes() 289 memcpy(ctx->buffer, &ctx->buffer[(left_over + add) & ~127], in sha512_process_bytes() 293 buffer = (const char *) buffer + add; in sha512_process_bytes() 309 sha512_process_block(memcpy(ctx->buffer, buffer, 128), 128, ctx); in sha512_process_bytes() 310 buffer = (const char *) buffer + 128; in sha512_process_bytes() 317 buffer = (const char *) buffer + (len & ~127); in sha512_process_bytes() 326 memcpy(&ctx->buffer[left_over], buffer, len); in sha512_process_bytes() 331 memcpy(ctx->buffer, &ctx->buffer[128], left_over); in sha512_process_bytes() 595 buffer = NULL; in php_sha512_crypt_r() 618 return buffer; in php_sha512_crypt_r() [all …]
|
/PHP-7.4/ext/hash/ |
H A D | hash_whirlpool.c | 46 unsigned char *buffer = context->buffer.data; in WhirlpoolTransform() local 51 for (i = 0; i < 8; i++, buffer += 8) { in WhirlpoolTransform() 280 unsigned char *buffer = context->buffer.data; in PHP_WHIRLPOOLUpdate() local 282 int bufferBits = context->buffer.bits; in PHP_WHIRLPOOLUpdate() 283 int bufferPos = context->buffer.pos; in PHP_WHIRLPOOLUpdate() 338 buffer[bufferPos] |= b >> bufferRem; in PHP_WHIRLPOOLUpdate() 371 context->buffer.bits = bufferBits; in PHP_WHIRLPOOLUpdate() 372 context->buffer.pos = bufferPos; in PHP_WHIRLPOOLUpdate() 378 unsigned char *buffer = context->buffer.data; in PHP_WHIRLPOOLFinal() local 380 int bufferBits = context->buffer.bits; in PHP_WHIRLPOOLFinal() [all …]
|
H A D | hash_tiger.c | 141 context->buffer[context->length++] = 0x1; in TigerFinalize() 143 memset(&context->buffer[context->length], 0, 8-context->length%8); in TigerFinalize() 150 memset(context->buffer, 0, 56); in TigerFinalize() 156 memcpy(&context->buffer[56], &context->passed, sizeof(uint64_t)); in TigerFinalize() 158 context->buffer[56] = (unsigned char) (context->passed & 0xff); in TigerFinalize() 199 memcpy(&context->buffer[context->length], input, len); in PHP_TIGERUpdate() 206 memcpy(&context->buffer[context->length], input, i); in PHP_TIGERUpdate() 208 ZEND_SECURE_ZERO(context->buffer, 64); in PHP_TIGERUpdate() 213 memcpy(context->buffer, &input[i], 64); in PHP_TIGERUpdate() 217 ZEND_SECURE_ZERO(&context->buffer[r], 64-r); in PHP_TIGERUpdate() [all …]
|
H A D | php_hash_sha.h | 39 unsigned char buffer[64]; /* input buffer */ member 55 unsigned char buffer[64]; /* input buffer */ member 66 unsigned char buffer[64]; /* input buffer */ member 77 unsigned char buffer[128]; /* input buffer */ member 88 unsigned char buffer[128]; /* input buffer */ member
|
H A D | php_hash_ripemd.h | 27 unsigned char buffer[64]; /* input buffer */ member 33 unsigned char buffer[64]; /* input buffer */ member 39 unsigned char buffer[64]; /* input buffer */ member 45 unsigned char buffer[64]; /* input buffer */ member
|
/PHP-7.4/tests/output/ |
H A D | ob_start_basic_unerasable_005.phpt | 2 ob_start(): Ensure unerasable buffer cannot be flushed by ob_flush() 13 echo "Attempt to flush unerasable buffer - should fail... "; 15 // Check content of buffer after flush - if flush failed it should still contain the string above. 19 [callback:1]Attempt to flush unerasable buffer - should fail... 20 Notice: ob_flush(): failed to flush buffer of callback (0) in %s on line 11 22 string(%d) "Attempt to flush unerasable buffer - should fail... 23 Notice: ob_flush(): failed to flush buffer of callback (0) in %s on line 11
|
H A D | bug60768.phpt | 2 Bug #60768 Output buffer not discarded 8 ob_start(function($buffer) use (&$storage) { $storage .= $buffer; }, 20); 10 echo str_repeat("0", 20); // fill in the buffer 13 echo str_pad($i, 9, ' ', STR_PAD_LEFT) . "\n"; // full buffer dumped every time
|
H A D | ob_start_basic_unerasable_003.phpt | 2 ob_start(): Ensure unerasable buffer cannot be accessed or erased by ob_get_clean(). 13 echo "This call will obtain the content, but will not clean the buffer."; 18 [callback:1]This call will obtain the content, but will not clean the buffer. 19 Notice: ob_get_clean(): failed to discard buffer of callback (0) in %s on line 11 21 Notice: ob_get_clean(): failed to delete buffer of callback (0) in %s on line 11 22 string(65) "This call will obtain the content, but will not clean the buffer."
|
H A D | ob_start_basic_unerasable_004.phpt | 2 ob_start(): Ensure unerasable buffer cannot be accessed or flushed by ob_get_flush(). 13 echo "This call will obtain the content, but will not flush the buffer."; 18 [callback:1]This call will obtain the content, but will not flush the buffer. 19 Notice: ob_get_flush(): failed to send buffer of callback (0) in %s on line 11 21 Notice: ob_get_flush(): failed to delete buffer of callback (0) in %s on line 11 22 string(65) "This call will obtain the content, but will not flush the buffer."
|
H A D | ob_flush_basic_001.phpt | 6 …Description: Flush (send) contents of the output buffer. The last buffer content is sent to next b… 21 echo "Ensure the buffer is still active after the flush.\n"; 33 Notice: ob_flush(): failed to flush buffer. No buffer to flush in %s on line 12 37 Ensure the buffer is still active after the flush.
|
H A D | bug46897.phpt | 13 echo "Attempt to flush unerasable buffer - should fail..."; 15 // Check content of buffer after flush - if flush failed it should still contain the string above. 20 [callback:1]Attempt to flush unerasable buffer - should fail... 21 Notice: ob_flush(): failed to flush buffer of callback (0) in %s on line %d 23 string(%d) "Attempt to flush unerasable buffer - should fail... 24 Notice: ob_flush(): failed to flush buffer of callback (0) in %s on line %d
|
H A D | ob_end_flush_basic_001.phpt | 6 * Description: Flush (send) the output buffer, and delete current output buffer 33 Notice: ob_end_flush(): failed to delete and flush buffer. No buffer to delete or flush in %s on li… 39 Notice: ob_end_flush(): failed to delete and flush buffer. No buffer to delete or flush in %s on li…
|
H A D | ob_start_basic_unerasable_002.phpt | 2 ob_start(): Ensure unerasable buffer cannot be erased by ob_clean(), ob_end_clean() or ob_end_flush… 13 echo "All of the following calls will fail to clean/remove the topmost buffer:\n"; 22 [callback:1]All of the following calls will fail to clean/remove the topmost buffer: 24 Notice: ob_clean(): failed to delete buffer of callback (0) in %s on line 11 27 Notice: ob_end_clean(): failed to discard buffer of callback (0) in %s on line 12 30 Notice: ob_end_flush(): failed to send buffer of callback (0) in %s on line 13
|
/PHP-7.4/ext/standard/tests/general_functions/ |
H A D | ob_get_flush_error.phpt | 8 …* Description: Get current buffer contents, flush (send) the output buffer, and delete current out… 30 Notice: ob_get_flush(): failed to delete and flush buffer. No buffer to delete or flush in %s on li…
|
/PHP-7.4/ext/zlib/tests/ |
H A D | deflate_add_basic.phpt | 13 $buffer = ""; 20 $buffer .= $dataToCompress; 21 if (strlen($buffer) >= $flushSize) { 22 $deflated = deflate_add($resource, $buffer, $flushType); 23 $buffer = ""; 28 $deflated = deflate_add($resource, $buffer, ZLIB_FINISH);
|
H A D | inflate_add_basic.phpt | 12 $buffer = ""; 19 $buffer .= $dataToInflate; 20 if (strlen($buffer) >= $flushSize) { 21 $inflated = inflate_add($resource, $buffer); 22 $buffer = ""; 27 $inflated = inflate_add($resource, $buffer, ZLIB_FINISH);
|