Searched refs:in_buffer (Results 1 – 3 of 3) sorted by relevance
/PHP-7.1/ext/hash/ |
H A D | hash_md.c | 661 if (context->in_buffer) { in PHP_MD2Update() 662 if (context->in_buffer + len < 16) { in PHP_MD2Update() 664 memcpy(context->buffer + context->in_buffer, p, len); in PHP_MD2Update() 665 context->in_buffer += len; in PHP_MD2Update() 669 memcpy(context->buffer + context->in_buffer, p, 16 - context->in_buffer); in PHP_MD2Update() 671 p += 16 - context->in_buffer; in PHP_MD2Update() 672 context->in_buffer = 0; in PHP_MD2Update() 684 context->in_buffer = e - p; in PHP_MD2Update() 690 memset(context->buffer + context->in_buffer, 16 - context->in_buffer, 16 - context->in_buffer); in PHP_MD2Final()
|
H A D | php_hash_md.h | 93 char in_buffer; member
|
/PHP-7.1/ext/iconv/ |
H A D | iconv.c | 2487 zend_string *in_buffer; in PHP_NAMED_FUNCTION() local 2493 &in_charset, &in_charset_len, &out_charset, &out_charset_len, &in_buffer) == FAILURE) in PHP_NAMED_FUNCTION() 2501 …err = php_iconv_string(ZSTR_VAL(in_buffer), (size_t)ZSTR_LEN(in_buffer), &out_buffer, out_charset,… in PHP_NAMED_FUNCTION()
|
Completed in 15 milliseconds