Searched defs:kq (Results 1 - 2 of 2) sorted by relevance

/external/libevent/
H A Dkqueue.c78 int kq; member in struct:kqop
118 int kq = -1; local
126 if ((kq = kqueue()) == -1) {
131 kqueueop->kq = kq;
154 if (kevent(kq,
302 res = kevent(kqop->kq, changes, n_changes,
425 if (kqop->kq >= 0 && kqop->pid == getpid())
426 close(kqop->kq);
458 if (kevent(kqop->kq,
[all...]
/external/boringssl/src/crypto/dsa/
H A Ddsa.c838 BIGNUM k, kq, *kinv = NULL, *r = NULL; local
847 BN_init(&kq);
877 if (!BN_copy(&kq, &k)) {
887 if (!BN_add(&kq, &kq, dsa->q)) {
890 if (BN_num_bits(&kq) <= BN_num_bits(dsa->q) && !BN_add(&kq, &kq, dsa->q)) {
894 if (!BN_mod_exp_mont_consttime(r, dsa->g, &kq, dsa->p, ctx,
929 BN_clear_free(&kq);
[all...]

Completed in 171 milliseconds