Searched refs:in_buffer (Results 1 – 3 of 3) sorted by relevance
/PHP-7.4/ext/hash/ |
H A D | hash_md.c | 659 if (context->in_buffer) { in PHP_MD2Update() 660 if (context->in_buffer + len < 16) { in PHP_MD2Update() 662 memcpy(context->buffer + context->in_buffer, p, len); in PHP_MD2Update() 663 context->in_buffer += (char) len; in PHP_MD2Update() 667 memcpy(context->buffer + context->in_buffer, p, 16 - context->in_buffer); in PHP_MD2Update() 669 p += 16 - context->in_buffer; in PHP_MD2Update() 670 context->in_buffer = 0; in PHP_MD2Update() 682 context->in_buffer = (char) (e - p); in PHP_MD2Update() 688 memset(context->buffer + context->in_buffer, 16 - context->in_buffer, 16 - context->in_buffer); in PHP_MD2Final()
|
H A D | php_hash_md.h | 91 char in_buffer; member
|
/PHP-7.4/ext/iconv/ |
H A D | iconv.c | 2474 zend_string *in_buffer; in PHP_NAMED_FUNCTION() local 2480 &in_charset, &in_charset_len, &out_charset, &out_charset_len, &in_buffer) == FAILURE) in PHP_NAMED_FUNCTION() 2488 …err = php_iconv_string(ZSTR_VAL(in_buffer), (size_t)ZSTR_LEN(in_buffer), &out_buffer, out_charset,… in PHP_NAMED_FUNCTION()
|
Completed in 12 milliseconds