Lines Matching refs:inputLen

256 …PHP_RIPEMD128Update(PHP_RIPEMD128_CTX * context, const unsigned char *input, unsigned int inputLen)  in PHP_RIPEMD128Update()  argument
264 if ((context->count[0] += ((php_hash_uint32) inputLen << 3)) < ((php_hash_uint32) inputLen << 3)) { in PHP_RIPEMD128Update()
267 context->count[1] += ((php_hash_uint32) inputLen >> 29); in PHP_RIPEMD128Update()
273 if (inputLen >= partLen) { in PHP_RIPEMD128Update()
277 for (i = partLen; i + 63 < inputLen; i += 64) { in PHP_RIPEMD128Update()
287 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i); in PHP_RIPEMD128Update()
354 …PHP_RIPEMD256Update(PHP_RIPEMD256_CTX * context, const unsigned char *input, unsigned int inputLen) in PHP_RIPEMD256Update() argument
362 if ((context->count[0] += ((php_hash_uint32) inputLen << 3)) < ((php_hash_uint32) inputLen << 3)) { in PHP_RIPEMD256Update()
365 context->count[1] += ((php_hash_uint32) inputLen >> 29); in PHP_RIPEMD256Update()
371 if (inputLen >= partLen) { in PHP_RIPEMD256Update()
375 for (i = partLen; i + 63 < inputLen; i += 64) { in PHP_RIPEMD256Update()
385 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i); in PHP_RIPEMD256Update()
453 …PHP_RIPEMD160Update(PHP_RIPEMD160_CTX * context, const unsigned char *input, unsigned int inputLen) in PHP_RIPEMD160Update() argument
461 if ((context->count[0] += ((php_hash_uint32) inputLen << 3)) < ((php_hash_uint32) inputLen << 3)) { in PHP_RIPEMD160Update()
464 context->count[1] += ((php_hash_uint32) inputLen >> 29); in PHP_RIPEMD160Update()
470 if (inputLen >= partLen) { in PHP_RIPEMD160Update()
474 for (i = partLen; i + 63 < inputLen; i += 64) { in PHP_RIPEMD160Update()
484 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i); in PHP_RIPEMD160Update()
561 …PHP_RIPEMD320Update(PHP_RIPEMD320_CTX * context, const unsigned char *input, unsigned int inputLen) in PHP_RIPEMD320Update() argument
569 if ((context->count[0] += ((php_hash_uint32) inputLen << 3)) < ((php_hash_uint32) inputLen << 3)) { in PHP_RIPEMD320Update()
572 context->count[1] += ((php_hash_uint32) inputLen >> 29); in PHP_RIPEMD320Update()
578 if (inputLen >= partLen) { in PHP_RIPEMD320Update()
582 for (i = partLen; i + 63 < inputLen; i += 64) { in PHP_RIPEMD320Update()
592 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i); in PHP_RIPEMD320Update()