Home
last modified time | relevance | path

Searched refs:q2 (Results 1 – 25 of 34) sorted by relevance

12

/NextBSD/contrib/ntp/ntpd/
HDntp_prio_q.c217 queue *q2 in append_queue() argument
220 while (!empty(q2)) in append_queue()
221 enqueue(q1, dequeue(q2)); in append_queue()
222 destroy_queue(q2); in append_queue()
HDntpsim.c618 double q1, q2; local
629 q2 = drand48();
630 return (m + s * sqrt(-2. * log(q1)) * cos(2. * PI * q2));
/NextBSD/crypto/openssh/
HDsc25519.c55 crypto_uint32 q2[66]; in barrett_reduce() local
56 crypto_uint32 *q3 = q2 + 33; in barrett_reduce()
63 for (i = 0;i < 66;++i) q2[i] = 0; in barrett_reduce()
68 if(i+j >= 31) q2[i+j] += mu[i]*x[j+31]; in barrett_reduce()
69 carry = q2[31] >> 8; in barrett_reduce()
70 q2[32] += carry; in barrett_reduce()
71 carry = q2[32] >> 8; in barrett_reduce()
72 q2[33] += carry; in barrett_reduce()
/NextBSD/crypto/openssl/engines/ccgost/
HDgost_sign.c166 BIGNUM *q2 = NULL; in gost_do_verify() local
185 q2 = BN_CTX_get(ctx); in gost_do_verify()
191 if(!tmp || !v || !q2 || !z1 || !z2 || !tmp2 || !tmp3 || !u) { in gost_do_verify()
200 BN_copy(q2, dsa->q); in gost_do_verify()
201 BN_sub_word(q2, 2); in gost_do_verify()
202 BN_mod_exp(v, md, q2, dsa->q, ctx); in gost_do_verify()
/NextBSD/contrib/llvm/include/llvm/Analysis/
HDTrace.h105 iterator erase(iterator q1, iterator q2) { return BasicBlocks.erase (q1, q2); } in erase() argument
/NextBSD/sys/libkern/
HDqdivrem.c138 digit q1, q2, q3, q4; local
151 q2 = rbj / t;
158 tmp.ul[H] = COMBINE(q1, q2);
/NextBSD/lib/libc/quad/
HDqdivrem.c141 digit q1, q2, q3, q4; local
154 q2 = rbj / t;
161 tmp.ul[H] = COMBINE(q1, q2);
/NextBSD/bin/test/
HDtest.c553 intmax_t q1, q2; in intcmp() local
557 q2 = getq(s2); in intcmp()
559 if (q1 > q2) in intcmp()
562 if (q1 < q2) in intcmp()
/NextBSD/crypto/openssl/crypto/
HDarmv4cpuid.S142 veor q2, q2, q2
/NextBSD/contrib/llvm/lib/Support/
HDAPInt.cpp1420 APInt ad, anc, delta, q1, r1, q2, r2, t; in magic() local
1430 q2 = signedMin.udiv(ad); // initialize q2 = 2p/abs(d) in magic()
1431 r2 = signedMin - q2*ad; // initialize r2 = rem(2p,abs(d)) in magic()
1440 q2 = q2<<1; // update q2 = 2p/abs(d) in magic()
1443 q2 = q2 + 1; in magic()
1449 mag.m = q2 + 1; in magic()
1464 APInt nc, delta, q1, r1, q2, r2; in magicu() local
1475 q2 = signedMax.udiv(d); // initialize q2 = (2p-1)/d in magicu()
1476 r2 = signedMax - q2*d; // initialize r2 = rem((2p-1),d) in magicu()
1488 if (q2.uge(signedMax)) magu.a = 1; in magicu()
[all …]
/NextBSD/lib/libstand/
HDqdivrem.c139 digit q1, q2, q3, q4; local
152 q2 = rbj / t;
159 tmp.ul[H] = COMBINE(q1, q2);
/NextBSD/sys/dev/ubsec/
HDubsec.c646 struct ubsec_q2 *q2; in ubsec_intr() local
651 q2 = SIMPLEQ_FIRST(&sc->sc_qchip2); in ubsec_intr()
653 ubsec_dma_sync(&q2->q_mcr, in ubsec_intr()
656 mcr = (struct ubsec_mcr *)q2->q_mcr.dma_vaddr; in ubsec_intr()
658 ubsec_dma_sync(&q2->q_mcr, in ubsec_intr()
663 ubsec_callback2(sc, q2); in ubsec_intr()
716 struct ubsec_q *q, *q2; in ubsec_feed() local
777 q2 = SIMPLEQ_FIRST(&sc->sc_queue); in ubsec_feed()
778 bus_dmamap_sync(sc->sc_dmat, q2->q_src_map, in ubsec_feed()
780 if (q2->q_dst_map != NULL) in ubsec_feed()
[all …]
/NextBSD/contrib/gcc/
HDlocal-alloc.c1760 qty_compare (int q1, int q2) in qty_compare() argument
1762 return QTY_CMP_PRI (q2) - QTY_CMP_PRI (q1); in qty_compare()
1768 int q1 = *(const int *) q1p, q2 = *(const int *) q2p; in qty_compare_1() local
1769 int tem = QTY_CMP_PRI (q2) - QTY_CMP_PRI (q1); in qty_compare_1()
1776 return q1 - q2; in qty_compare_1()
1792 qty_sugg_compare (int q1, int q2) in qty_sugg_compare() argument
1794 int tem = QTY_CMP_SUGG (q1) - QTY_CMP_SUGG (q2); in qty_sugg_compare()
1799 return QTY_CMP_PRI (q2) - QTY_CMP_PRI (q1); in qty_sugg_compare()
1805 int q1 = *(const int *) q1p, q2 = *(const int *) q2p; in qty_sugg_compare_1() local
1806 int tem = QTY_CMP_SUGG (q1) - QTY_CMP_SUGG (q2); in qty_sugg_compare_1()
[all …]
/NextBSD/libexec/rtld-elf/aarch64/
HDrtld_start.S75 stp q2, q3, [sp, #-32]!
102 ldp q2, q3, [sp], #32
/NextBSD/sys/dev/ctau/
HDctau.c1503 unsigned char q1, q2, q3; in ct_get_lq() local
1512 q2 = inb (GLQ (c->board->port)); in ct_get_lq()
1517 q2 >>= GLQ_SHIFT; in ct_get_lq()
1521 q2 &= GLQ_MASK; in ct_get_lq()
1523 if (q1 <= q2 && q2 <= q3) return lq_to_santibells [q2]; in ct_get_lq()
1524 if (q2 <= q3 && q3 <= q1) return lq_to_santibells [q3]; in ct_get_lq()
1525 if (q3 <= q1 && q1 <= q2) return lq_to_santibells [q1]; in ct_get_lq()
1526 if (q1 <= q3 && q3 <= q2) return lq_to_santibells [q3]; in ct_get_lq()
1527 if (q3 <= q2 && q2 <= q1) return lq_to_santibells [q2]; in ct_get_lq()
/NextBSD/sys/dev/advansys/
HDadvansys.c506 scsiq.q2.ccb_index = cinfo - adv->ccb_infos; in adv_execute_ccb()
507 scsiq.q2.target_ix = ADV_TIDLUN_TO_IX(ccb_h->target_id, in adv_execute_ccb()
509 scsiq.q2.flag = 0; in adv_execute_ccb()
510 scsiq.q2.cdb_len = csio->cdb_len; in adv_execute_ccb()
512 scsiq.q2.tag_code = csio->tag_action; in adv_execute_ccb()
514 scsiq.q2.tag_code = 0; in adv_execute_ccb()
515 scsiq.q2.vm_id = 0; in adv_execute_ccb()
HDadvlib.c703 target_ix = scsiq->q2.target_ix; in adv_execute_scsi_queue()
782 scsiq->q2.tag_code &= in adv_execute_scsi_queue()
784 scsiq->q2.tag_code |= (ADV_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX in adv_execute_scsi_queue()
797 scsiq->q2.tag_code |= ADV_TAG_FLAG_EXTRA_BYTES; in adv_execute_scsi_queue()
1813 tid_no = ADV_TIX_TO_TID(scsiq->q2.target_ix); in adv_put_ready_queue()
1827 scsiq->q2.cdb_len >> 1); in adv_put_ready_queue()
1835 ((sizeof(scsiq->q1) + sizeof(scsiq->q2)) / 2) - 1); in adv_put_ready_queue()
/NextBSD/contrib/ntp/tests/ntpd/
HDntp_prio_q.c207 queue* q2 = create_queue(); in test_AppendQueues() local
213 append_queue(q1, q2); // destroys q2 in test_AppendQueues()
/NextBSD/contrib/unbound/services/
HDoutside_network.c105 struct serviced_query* q2 = (struct serviced_query*)key2; in serviced_cmp() local
107 if(q1->qbuflen < q2->qbuflen) in serviced_cmp()
109 if(q1->qbuflen > q2->qbuflen) in serviced_cmp()
111 log_assert(q1->qbuflen == q2->qbuflen); in serviced_cmp()
114 if((r = memcmp(q1->qbuf, q2->qbuf, 10)) != 0) in serviced_cmp()
116 if((r = memcmp(q1->qbuf+q1->qbuflen-4, q2->qbuf+q2->qbuflen-4, 4)) != 0) in serviced_cmp()
118 if(q1->dnssec != q2->dnssec) { in serviced_cmp()
119 if(q1->dnssec < q2->dnssec) in serviced_cmp()
123 if((r = query_dname_compare(q1->qbuf+10, q2->qbuf+10)) != 0) in serviced_cmp()
125 return sockaddr_cmp(&q1->addr, q1->addrlen, &q2->addr, q2->addrlen); in serviced_cmp()
/NextBSD/lib/libc/net/
HDgetaddrinfo.c2250 struct res_target q, q2; in _dns_getaddrinfo() local
2257 memset(&q2, 0, sizeof(q2)); in _dns_getaddrinfo()
2289 q.next = &q2; in _dns_getaddrinfo()
2290 q2.name = hostname; in _dns_getaddrinfo()
2291 q2.qclass = C_IN; in _dns_getaddrinfo()
2292 q2.qtype = T_AAAA; in _dns_getaddrinfo()
2293 q2.answer = buf2->buf; in _dns_getaddrinfo()
2294 q2.anslen = sizeof(buf2->buf); in _dns_getaddrinfo()
2330 ai = getanswer(buf2, q2.n, q2.name, q2.qtype, pai, res); in _dns_getaddrinfo()
/NextBSD/contrib/ntp/include/
HDntp_prio_q.h50 void append_queue(queue *q1, queue *q2);
/NextBSD/contrib/byacc/test/yacc/
HDgrammar.dot14q2 [label="2:\l any_id -> . T_IDENTIFIER\l any_id -> . T_TYPEDEF_NAME\l declarator -> . pointer…
165 q0 -> q2 [label="'('"];
219 q2 -> q2 [label="'('"];
220 q2 -> q3 [label="'*'"];
221 q2 -> q4 [label="'&'"];
222 q2 -> q5 [label="T_IDENTIFIER"];
223 q2 -> q56 [label="T_TYPEDEF_NAME"];
224 q2 -> q57 [label="declarator"];
225 q2 -> q42 [label="direct_declarator"];
226 q2 -> q44 [label="pointer"];
[all …]
/NextBSD/contrib/byacc/test/btyacc/
HDgrammar.dot14q2 [label="2:\l any_id -> . T_IDENTIFIER\l any_id -> . T_TYPEDEF_NAME\l declarator -> . pointer…
165 q0 -> q2 [label="'('"];
219 q2 -> q2 [label="'('"];
220 q2 -> q3 [label="'*'"];
221 q2 -> q4 [label="'&'"];
222 q2 -> q5 [label="T_IDENTIFIER"];
223 q2 -> q56 [label="T_TYPEDEF_NAME"];
224 q2 -> q57 [label="declarator"];
225 q2 -> q42 [label="direct_declarator"];
226 q2 -> q44 [label="pointer"];
[all …]
/NextBSD/contrib/gdb/gdb/
HDstabsread.c1494 char *from, *to, *p, *q1, *q2; in read_type() local
1526 for (q2 = q1; *q2; q2++) in read_type()
1528 if (*q2 == '<') in read_type()
1530 else if (*q2 == '>') in read_type()
1532 else if (*q2 == ':' && nesting_level == 0) in read_type()
1535 p = q2; in read_type()
/NextBSD/contrib/binutils/binutils/
HDstabs.c1234 const char *q1, *q2, *p; in parse_stab_type() local
1268 for (q2 = q1; *q2 != '\0'; ++q2) in parse_stab_type()
1270 if (*q2 == '<') in parse_stab_type()
1272 else if (*q2 == '>') in parse_stab_type()
1274 else if (*q2 == ':' && nest == 0) in parse_stab_type()
1277 p = q2; in parse_stab_type()

12