Lines Matching refs:data
152 const unsigned char *data,
156 (void) mbedtls_md5_update(ctx, data, length);
158 (void) mbedtls_md5_update_ret(ctx, data, length);
272 * no exactly 32-bit integer data type is required (any 32-bit or wider
273 * unsigned integer data type will do), there's no compile-time endianness
284 /* Any 32-bit or wider unsigned integer data type will do */
296 static void my_md5_update(my_md5_ctx *ctx, const void *data,
346 * This processes one or more 64-byte data blocks, but does NOT update
349 static const void *body(my_md5_ctx *ctx, const void *data, unsigned long size)
354 ptr = (const unsigned char *)data;
470 static void my_md5_update(my_md5_ctx *ctx, const void *data,
488 memcpy(&ctx->buffer[used], data, size);
492 memcpy(&ctx->buffer[used], data, available);
493 data = (const unsigned char *)data + available;
499 data = body(ctx, data, size & ~(unsigned long)0x3f);
503 memcpy(ctx->buffer, data, size);
638 const unsigned char *data,
641 (*context->md5_hash->md5_update_func)(context->md5_hashctx, data, len);