Home
last modified time | relevance | path

Searched refs:in_buffer (Results 1 – 3 of 3) sorted by relevance

/PHP-8.0/ext/hash/
H A Dhash_md.c322 if (context->in_buffer) { in PHP_MD2Update()
323 if (context->in_buffer + len < 16) { in PHP_MD2Update()
325 memcpy(context->buffer + context->in_buffer, p, len); in PHP_MD2Update()
326 context->in_buffer += (char) len; in PHP_MD2Update()
330 memcpy(context->buffer + context->in_buffer, p, 16 - context->in_buffer); in PHP_MD2Update()
332 p += 16 - context->in_buffer; in PHP_MD2Update()
333 context->in_buffer = 0; in PHP_MD2Update()
345 context->in_buffer = (char) (e - p); in PHP_MD2Update()
351 memset(context->buffer + context->in_buffer, 16 - context->in_buffer, 16 - context->in_buffer); in PHP_MD2Final()
364 && (unsigned char) ctx->in_buffer < sizeof(ctx->buffer)) { in php_md2_unserialize()
H A Dphp_hash_md.h40 unsigned char in_buffer; member
/PHP-8.0/ext/iconv/
H A Diconv.c2199 zend_string *in_buffer; in PHP_FUNCTION() local
2205 &in_charset, &in_charset_len, &out_charset, &out_charset_len, &in_buffer) == FAILURE) { in PHP_FUNCTION()
2214 …err = php_iconv_string(ZSTR_VAL(in_buffer), (size_t)ZSTR_LEN(in_buffer), &out_buffer, out_charset,… in PHP_FUNCTION()

Completed in 12 milliseconds