HomeSort by: relevance | last modified time | path
    Searched defs:recip (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
powidf2.c 22 const int recip = b < 0; local in function:__powidf2
33 return recip ? 1/r : r;
powisf2.c 22 const int recip = b < 0; local in function:__powisf2
33 return recip ? 1/r : r;
powitf2.c 24 const int recip = b < 0; local in function:__powitf2
35 return recip ? 1/r : r;
powixf2.c 24 const int recip = b < 0; local in function:__powixf2
35 return recip ? 1/r : r;
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/ed25519/ref10/
ed25519_ref10.c 450 fe25519 recip; local in function:ge25519_p3_to_precomp
455 fe25519_invert(recip, p->Z);
456 fe25519_mul(x, p->X, recip);
457 fe25519_mul(y, p->Y, recip);
479 fe25519 recip; local in function:ge25519_p3_tobytes
483 fe25519_invert(recip, h->Z);
484 fe25519_mul(x, h->X, recip);
485 fe25519_mul(y, h->Y, recip);
635 fe25519 recip; local in function:ge25519_tobytes
639 fe25519_invert(recip, h->Z)
    [all...]

Completed in 17 milliseconds