Home
last modified time | relevance | path

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

/php-src/ext/hash/
H A Dhash_md.c323 if (context->in_buffer) { in PHP_MD2Update()
324 if (context->in_buffer + len < 16) { in PHP_MD2Update()
326 memcpy(context->buffer + context->in_buffer, p, len); in PHP_MD2Update()
327 context->in_buffer += (char) len; in PHP_MD2Update()
331 memcpy(context->buffer + context->in_buffer, p, 16 - context->in_buffer); in PHP_MD2Update()
333 p += 16 - context->in_buffer; in PHP_MD2Update()
334 context->in_buffer = 0; in PHP_MD2Update()
346 context->in_buffer = (char) (e - p); in PHP_MD2Update()
352 memset(context->buffer + context->in_buffer, 16 - context->in_buffer, 16 - context->in_buffer); in PHP_MD2Final()
365 && (unsigned char) ctx->in_buffer < sizeof(ctx->buffer)) { in php_md2_unserialize()
H A Dphp_hash_md.h41 unsigned char in_buffer; member
/php-src/ext/iconv/
H A Diconv.c2201 zend_string *in_buffer; in PHP_FUNCTION() local
2207 &in_charset, &in_charset_len, &out_charset, &out_charset_len, &in_buffer) == FAILURE) { in PHP_FUNCTION()
2216 …err = php_iconv_string(ZSTR_VAL(in_buffer), (size_t)ZSTR_LEN(in_buffer), &out_buffer, out_charset,… in PHP_FUNCTION()

Completed in 13 milliseconds