HomeSort by: relevance | last modified time | path
    Searched refs:q2 (Results 1 - 25 of 59) sorted by relevancy

1 2 3

  /src/sys/arch/arm/cortex/
cpu_in_cksum_asm_neon.S 51 veor q2, q2, q2 /* clear accumulator */
52 vmvn.u64 q1, q2 /* create leading/trailing masks */
100 vadd.u32 q2, q2, q0 /* add 4 U32 to accumulator */
102 vadd.u32 q2, q2, q0 /* add 4 U32 to accumulator */
105 vadd.u32 q2, q2, q0 /* add 4 U32 to accumulator *
    [all...]
  /src/common/lib/libc/arch/arm/string/
strlen_neon.S 39 veor q2, q2, q2 /* clear mask */
46 vmvn q2, q2 /* set all 16 bytes of mask to all 1s */
56 vshl.u64 q2, q2, q0 /* shift */
66 vorr q0, q0, q2 /* or "in" leading byte mask */
67 veor q2, q2, q2 /* clear leading byte mask *
    [all...]
  /src/sys/crypto/aes/
aes_ct64_dec.c 42 uint64_t q0, q1, q2, q3, q4, q5, q6, q7; local
46 q2 = q[2];
54 q[5] = q7 ^ q2 ^ q4;
56 q[3] = q5 ^ q0 ^ q2;
59 q[0] = q2 ^ q5 ^ q7;
65 q2 = q[2];
73 q[5] = q7 ^ q2 ^ q4;
75 q[3] = q5 ^ q0 ^ q2;
78 q[0] = q2 ^ q5 ^ q7;
119 uint64_t q0, q1, q2, q3, q4, q5, q6, q7 local
    [all...]
aes_ct_dec.c 56 uint32_t q0, q1, q2, q3, q4, q5, q6, q7; local
60 q2 = q[2];
68 q[5] = q7 ^ q2 ^ q4;
70 q[3] = q5 ^ q0 ^ q2;
73 q[0] = q2 ^ q5 ^ q7;
79 q2 = q[2];
87 q[5] = q7 ^ q2 ^ q4;
89 q[3] = q5 ^ q0 ^ q2;
92 q[0] = q2 ^ q5 ^ q7;
130 uint32_t q0, q1, q2, q3, q4, q5, q6, q7 local
    [all...]
aes_ct_enc.c 72 uint32_t q0, q1, q2, q3, q4, q5, q6, q7; local
77 q2 = q[2];
85 r2 = (q2 >> 8) | (q2 << 24);
94 q[2] = q1 ^ r1 ^ r2 ^ rotr16(q2 ^ r2);
95 q[3] = q2 ^ r2 ^ q7 ^ r7 ^ r3 ^ rotr16(q3 ^ r3);
aes_ct64_enc.c 75 uint64_t q0, q1, q2, q3, q4, q5, q6, q7; local
80 q2 = q[2];
88 r2 = (q2 >> 16) | (q2 << 48);
97 q[2] = q1 ^ r1 ^ r2 ^ rotr32(q2 ^ r2);
98 q[3] = q2 ^ r2 ^ q7 ^ r7 ^ r3 ^ rotr32(q3 ^ r3);
  /src/sys/crypto/aes/arch/x86/
aes_sse2_4x32_dec.c 56 __m128i q0, q1, q2, q3, q4, q5, q6, q7; local
60 q2 = q[2];
68 q[5] = q7 ^ q2 ^ q4;
70 q[3] = q5 ^ q0 ^ q2;
73 q[0] = q2 ^ q5 ^ q7;
79 q2 = q[2];
87 q[5] = q7 ^ q2 ^ q4;
89 q[3] = q5 ^ q0 ^ q2;
92 q[0] = q2 ^ q5 ^ q7;
148 __m128i q0, q1, q2, q3, q4, q5, q6, q7 local
    [all...]
aes_sse2_4x32_enc.c 87 __m128i q0, q1, q2, q3, q4, q5, q6, q7; local
92 q2 = q[2];
100 r2 = _mm_srli_epi32(q2, 8) | _mm_slli_epi32(q2, 24);
109 q[2] = q1 ^ r1 ^ r2 ^ rotr16(q2 ^ r2);
110 q[3] = q2 ^ r2 ^ q7 ^ r7 ^ r3 ^ rotr16(q3 ^ r3);
  /src/lib/libm/noieee_src/
n_exp__E.c 65 * Q := q1*x^2 + q2*x^4 (for 56 bits precision, add q3*x^6)
68 * (See the listing below for the values of p1,p2,q1,q2,q3. The poly-
94 vc(q2, 1.2624568129896839182E-3 ,7905,3ba5,f5e7,72e4, -9, .A5790572E4F5E7)
100 ic(q2, 9.9176615021572857300E-4, -10, 1.03FC4CB8C98E8)
106 #define q2 vccast(q2) macro
119 q = z*( q1 +z*( q2 +z* q3 ));
121 q = z*( q1 +z* q2 );
  /src/sys/external/isc/libsodium/dist/test/default/
scalarmult_ed25519.c 25 unsigned char *n, *p, *q, *q2; local
30 q2 = (unsigned char *) sodium_malloc(crypto_scalarmult_ed25519_BYTES);
37 if (crypto_scalarmult_ed25519(q2, n, p) != 0) {
40 if (memcmp(q, q2, crypto_scalarmult_ed25519_BYTES) != 0) {
48 if (crypto_scalarmult_ed25519(q2, n, p) != -1) {
56 if (crypto_scalarmult_ed25519(q2, n, p) != 0) {
79 sodium_free(q2);
  /src/external/bsd/libbind/dist/irs/
dns_ho.c 339 struct dns_res_target *q, *q2, *p; local
347 q2 = memget(sizeof(*q2));
348 if (q == NULL || q2 == NULL) {
354 memset(q2, 0, sizeof(*q2));
381 q->next = q2;
383 q2->qclass = C_IN;
384 q2->qtype = T_PTR;
385 q2->answer = q2->qbuf.buf
561 struct dns_res_target *q, *q2, *p; local
    [all...]
lcl_ho.c 504 struct lcl_res_target q, q2, *p; local
507 memset(&q, 0, sizeof(q2));
508 memset(&q2, 0, sizeof(q2));
515 q.next = &q2;
516 q2.family = AF_INET;
  /src/external/bsd/ntp/dist/ntpd/
ntp_prio_q.c 219 queue *q2
222 while (!empty(q2))
223 enqueue(q1, dequeue(q2));
224 destroy_queue(q2);
  /src/external/apache2/mDNSResponder/dist/mDNSShared/
ClientRequests.c 627 inOp->q2 = mDNSPlatformMemAllocateClear(sizeof(*inOp->q2));
628 mdns_require_action_quiet(inOp->q2, exit, err = mStatus_NoMemoryErr);
629 *inOp->q2 = *q;
646 DNSQuestion *const q2 = inOp->q2; local
647 mdns_require_action_quiet(q2, exit, err = mStatus_BadStateErr);
649 if ((CountLabels(&q2->qname) == 2) && !SameDomainName(&q2->qname, &ActiveDirectoryPrimaryDomain)
650 && !DomainNameIsInSearchList(&q2->qname, mDNSfalse)
738 DNSQuestion * const q2 = op->q2; local
    [all...]
  /src/sys/arch/arm/vfp/
pmap_vfp.S 60 veor q2, q2, q2
  /src/sys/crypto/aes/arch/arm/
aes_neon_32.S 207 * q2={d4-d5}: lo/k/j/io
249 /* (q2, q3) := (lo, hi) */
251 vand q2, q0, q1 /* q2 := x & 0x0f0f... */
254 /* (q2, q3) := (iptlo(lo), ipthi(hi)) */
261 veor q0, q14, q2
307 /* (q2, q3) := (k, i) */
309 vand q2, q0, q1 /* q2 := x & 0x0f0f... */
316 /* q2 := j = i + k *
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
Trace.h 99 iterator erase(iterator q1, iterator q2) { return BasicBlocks.erase (q1, q2); }
  /src/sys/crypto/chacha/arch/arm/
chacha_neon_32.S 191 vdup.32 q2, d25[0]
210 1: ROUNDLD q0,q1,q2,q3, q5,q6,q7,q4, q10,q11,q8,q9, q15,q12,q13,q14
212 ROUND q0,q1,q2,q3, q4,q5,q6,q7, q8,q9,q10,q11, q12,q13,q14,q15, \
214 ROUNDLD q0,q1,q2,q3, q4,q5,q6,q7, q8,q9,q10,q11, q12,q13,q14,q15
215 ROUND q0,q1,q2,q3, q5,q6,q7,q4, q10,q11,q8,q9, q15,q12,q13,q14, \
224 * q2 = (x0[2], x1[2]; x2[2], x3[2])
234 * q2 = (x0[2], x0[3]; x1[2], x1[3])
252 * q2 = (x1[0], x1[1]; x1[2], x1[3])
263 vzip.32 q2, q3
282 * q2 = (x1[0], x1[1]; x1[2], x1[3]
    [all...]
  /src/external/bsd/ntp/dist/include/
ntp_prio_q.h 52 void append_queue(queue *q1, queue *q2);
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
atanq.c 164 q2 = 3.180448303864130128268191635189365331680E2Q, variable
239 q = ((((u + q4) * u + q3) * u + q2) * u + q1) * u + q0;
  /src/usr.sbin/lpr/common_source/
common.c 325 const struct queue *const *q2 = p2; local
328 if ((*q1)->q_time < (*q2)->q_time)
330 if ((*q1)->q_time > (*q2)->q_time)
334 j2 = atoi((*q2)->q_name+3);
  /src/common/lib/libc/quad/
qdivrem.c 132 digit q1, q2, q3, q4; local
145 q2 = (digit)(rbj / t);
152 tmp.ul[H] = COMBINE(q1, q2);
  /src/external/gpl3/gcc.old/dist/libgcc/config/spu/
divv2df3.c 49 vec_double2 mant_a, mant_b, inv_b, q0, q1, q2, mult; local
180 q2 = spu_mul(q1, mult);
182 return (q2);
  /src/external/gpl3/gcc.old/dist/libgomp/
priority_queue.c 290 /* Return the highest priority WAITING task from within Q1 and Q2,
292 items of type TYPE1. Q2 is a queue containing items of type TYPE2.
295 in Q1, we don't bother checking Q2, and just return NULL.
297 As a special case, Q2 can be NULL, in which case, we just choose
308 struct priority_queue *q2,
314 || !q2)
319 struct gomp_task *t2 = priority_tree_next_task_1 (type2, q2->t.root);
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid128_add.c 476 int q1, q2, delta, scale, x1, ind, shift, tmp_inexact = 0; local
648 // where scale = min (P34-q2, y_exp-x_exp)
649 // determine q2 = nr. of decimal digits in y
676 q2 = nr_digits[y_nr_bits].digits;
677 if (q2 == 0) {
678 q2 = nr_digits[y_nr_bits].digits1;
682 q2++;
685 // where scale = min (P34-q2, y_exp-x_exp)
686 scale = P34 - q2;
693 } else if (q2 <= 19) { // y fits in 64 bits
    [all...]

Completed in 45 milliseconds

1 2 3