Lines Matching refs:cp
389 char *cp; in php_sha512_crypt_r() local
492 cp = p_bytes = alloca(key_len); in php_sha512_crypt_r()
494 cp = __php_mempcpy((void *) cp, (const void *)temp_result, 64); in php_sha512_crypt_r()
497 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r()
511 cp = s_bytes = alloca(salt_len); in php_sha512_crypt_r()
513 cp = __php_mempcpy(cp, temp_result, 64); in php_sha512_crypt_r()
515 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r()
553 cp = __php_stpncpy(buffer, sha512_salt_prefix, MAX(0, buflen)); in php_sha512_crypt_r()
558 int n = _snprintf(cp, MAX(0, buflen), "%s%u$", sha512_rounds_prefix, rounds); in php_sha512_crypt_r()
560 int n = snprintf(cp, MAX(0, buflen), "%s%zu$", sha512_rounds_prefix, rounds); in php_sha512_crypt_r()
562 cp += n; in php_sha512_crypt_r()
566 cp = __php_stpncpy(cp, salt, MIN((size_t) MAX(0, buflen), salt_len)); in php_sha512_crypt_r()
570 *cp++ = '$'; in php_sha512_crypt_r()
580 *cp++ = b64t[w & 0x3f]; \ in php_sha512_crypt_r()
613 *cp = '\0'; /* Terminate the string. */ in php_sha512_crypt_r()
807 char *cp = php_sha512_crypt(tests2[cnt].input, tests2[cnt].salt); in main() local
809 if (strcmp (cp, tests2[cnt].expected) != 0) { in main()
811 cnt, tests2[cnt].expected, cp); in main()