Home
last modified time | relevance | path

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

/haiku/src/system/libroot/posix/crypt/
H A Dcrypto_scrypt.cpp57 void * B0, * V0, * XY0; in crypto_scrypt() local
97 if ((errno = posix_memalign(&V0, 64, 128 * r * N)) != 0) in crypto_scrypt()
99 V = (uint32_t *)(V0); in crypto_scrypt()
109 if ((V0 = malloc(128 * r * N + 63)) == NULL) in crypto_scrypt()
111 V = (uint32_t *)(((uintptr_t)(V0) + 63) & ~ (uintptr_t)(63)); in crypto_scrypt()
115 if ((V0 = mmap(NULL, 128 * r * N, PROT_READ | PROT_WRITE, in crypto_scrypt()
123 V = (uint32_t *)(V0); in crypto_scrypt()
140 if (munmap(V0, 128 * r * N)) in crypto_scrypt()
143 free(V0); in crypto_scrypt()
/haiku/src/system/libroot/posix/musl/math/
H A Dj1f.c94 static const float V0[5] = { variable
120 v = 1.0f+z*(V0[0]+z*(V0[1]+z*(V0[2]+z*(V0[3]+z*V0[4])))); in y1f()
H A Dj1.c144 static const double V0[5] = { variable
172 v = 1+z*(V0[0]+z*(V0[1]+z*(V0[2]+z*(V0[3]+z*V0[4])))); in y1()