Lines Matching refs:cp
373 char *cp; in php_sha512_crypt_r() local
480 cp = p_bytes = alloca(key_len); in php_sha512_crypt_r()
482 cp = __php_mempcpy((void *) cp, (const void *)temp_result, 64); in php_sha512_crypt_r()
485 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r()
499 cp = s_bytes = alloca(salt_len); in php_sha512_crypt_r()
501 cp = __php_mempcpy(cp, temp_result, 64); in php_sha512_crypt_r()
503 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r()
541 cp = __php_stpncpy(buffer, sha512_salt_prefix, MAX(0, buflen)); in php_sha512_crypt_r()
546 int n = _snprintf(cp, MAX(0, buflen), "%s" ZEND_ULONG_FMT "$", sha512_rounds_prefix, rounds); in php_sha512_crypt_r()
548 int n = snprintf(cp, MAX(0, buflen), "%s%zu$", sha512_rounds_prefix, rounds); in php_sha512_crypt_r()
550 cp += n; in php_sha512_crypt_r()
554 cp = __php_stpncpy(cp, salt, MIN((size_t) MAX(0, buflen), salt_len)); in php_sha512_crypt_r()
558 *cp++ = '$'; in php_sha512_crypt_r()
568 *cp++ = b64t[w & 0x3f]; \ in php_sha512_crypt_r()
601 *cp = '\0'; /* Terminate the string. */ in php_sha512_crypt_r()
795 char *cp = php_sha512_crypt(tests2[cnt].input, tests2[cnt].salt); in main() local
797 if (strcmp (cp, tests2[cnt].expected) != 0) { in main()
799 cnt, tests2[cnt].expected, cp); in main()