HomeSort by: relevance | last modified time | path
    Searched defs:a2 (Results 1 - 25 of 48) sorted by relevancy

1 2

  /src/sys/external/isc/libsodium/dist/test/default/
auth.c 16 static unsigned char a2[crypto_auth_hmacsha512_BYTES]; variable in typeref:typename:unsigned char[]
38 crypto_auth_hmacsha512_final(&st, a2);
39 for (i = 0; i < sizeof a2; ++i) {
40 printf(",0x%02x", (unsigned int) a2[i]);
49 crypto_auth_hmacsha512_final(&st, a2);
50 for (i = 0; i < sizeof a2; ++i) {
51 printf(",0x%02x", (unsigned int) a2[i]);
56 memset(a2, 0, sizeof a2);
61 crypto_auth_hmacsha256_final(&st256, a2);
    [all...]
  /src/sys/arch/m68k/fpe/
fpu_mul.c 103 uint32_t a2, a1, a0, x2, x1, x0, bit, m; local in function:fpu_mul
146 sticky = a2 = a1 = a0 = 0;
149 FPU_ADDS(a2, a2, x2); \
154 sticky |= a2 & 1, \
155 a2 = (a2 >> 1) | (a1 << 31), a1 = (a1 >> 1) | (a0 << 31), a0 >>= 1
158 sticky |= a2, a2 = a1, a1 = a0, a0 = 0
206 x->fp_mant[2] = a2;
    [all...]
  /src/usr.bin/make/unit-tests/
varname-dot-make-mode.mk 34 randomize-targets: .WAIT a1 a2 a3 .WAIT b1 b2 b3 .WAIT c1 c2 c3 .WAIT
35 a1 a2 a3 b1 b2 b3 c1 c2 c3: target
  /src/tests/usr.bin/xlint/lint1/
msg_210.c 26 enum A a2 = B1; variable in typeref:enum:A
  /src/sys/arch/powerpc/fpu/
fpu_mul.c 109 u_int a3, a2, a1, a0, x3, x2, x1, x0, bit, m; local in function:fpu_mul
167 sticky = a3 = a2 = a1 = a0 = 0;
171 FPU_ADDCS(a2, a2, x2); \
176 sticky |= a3 & 1, a3 = (a3 >> 1) | (a2 << 31), \
177 a2 = (a2 >> 1) | (a1 << 31), a1 = (a1 >> 1) | (a0 << 31), a0 >>= 1
180 sticky |= a3, a3 = a2, a2 = a1, a1 = a0, a0 = 0
237 x->fp_mant[2] = a2;
    [all...]
  /src/sys/arch/sparc/fpu/
fpu_mul.c 105 u_int a3, a2, a1, a0, x3, x2, x1, x0, bit, m; local in function:fpu_mul
150 sticky = a3 = a2 = a1 = a0 = 0;
154 FPU_ADDCS(a2, a2, x2); \
159 sticky |= a3 & 1, a3 = (a3 >> 1) | (a2 << 31), \
160 a2 = (a2 >> 1) | (a1 << 31), a1 = (a1 >> 1) | (a0 << 31), a0 >>= 1
163 sticky |= a3, a3 = a2, a2 = a1, a1 = a0, a0 = 0
220 x->fp_mant[2] = a2;
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa20/xmm6int/
u0.h 6 __m128i a0, a1, a2, a3, a4, a5, a6, a7; variable in typeref:typename:__m128i
24 a2 = diag3;
32 a2 = _mm_add_epi32(a2, diag2);
34 b2 = a2;
35 a2 = _mm_slli_epi32(a2, 13);
37 diag1 = _mm_xor_si128(diag1, a2);
96 a2 = diag3;
104 a2 = _mm_add_epi32(a2, diag2)
    [all...]
u1.h 6 __m128i a0, a1, a2, a3, a4, a5, a6, a7; variable in typeref:typename:__m128i
25 a2 = diag3;
33 a2 = _mm_add_epi32(a2, diag2);
35 b2 = a2;
36 a2 = _mm_slli_epi32(a2, 13);
38 diag1 = _mm_xor_si128(diag1, a2);
97 a2 = diag3;
105 a2 = _mm_add_epi32(a2, diag2)
    [all...]
  /src/lib/libm/noieee_src/
n_atan2.c 55 * [0,7/16] atan(y/x) = t - t^3*(a1+t^2*(a2+...(a10+t^2*a11)...)
120 vc(a2, -2.0000000000017730678E-1 ,cccc,bf4c,946e,cccd, -2,-.CCCCCCCCCD946E)
140 ic(a2, -1.9999999999979536924E-1 , -3, -1.9999999997CCD)
160 #define a2 vccast(a2) macro
274 z = t*(z*(a1+z*(a2+z*(a3+z*(a4+z*(a5+z*(a6+z*(a7+z*(a8+
277 z = t*(z*(a1+z*(a2+z*(a3+z*(a4+z*(a5+z*(a6+z*(a7+z*(a8+
  /src/sys/external/bsd/ipf/netinet/
ip_raudio_pxy.c 192 int a1, a2, a3, a4; local in function:ipf_p_raudio_in
243 a2 = MIN(dlen, sizeof(rap->rap_svr));
250 a2 = MIN(dlen, sizeof(rap->rap_svr));
251 a2 -= a1;
256 for (a3 = a1, a4 = a2; (a4 > 0) && (a3 < 19) && (a3 >= 0); a4--,a3++) {
  /src/usr.sbin/mrouted/
inet.c 153 u_int a0, a1, a2, a3; local in function:inet_parse
157 if (sscanf(s, "%u.%u.%u.%u%n", &a0, &a1, &a2, &a3, &n) != 4)
159 if (a0 > 255 || a1 > 255 || a2 > 255 || a3 > 255)
173 ((u_char *)&a)[2] = a2;
  /src/sys/arch/amiga/dev/
if_le.c 442 volatile u_char *a2 = (u_char *)sc->sc_mem + boff; local in function:ariadne_copytobuf_word
451 b2 = (volatile u_short *)(a2 + 1);
458 b2 = (volatile u_short *)a2;
474 u_char *a2 = to; local in function:ariadne_copyfrombuf_word
483 b2 = (u_short *)(a2 + 1);
485 *a2 = b1[-1];
490 b2 = (u_short *)a2;
  /src/dist/pf/sbin/pfctl/
pfctl_table.c 131 struct pfr_addr *a, *a2; local in function:pfctl_table
336 a2 = NULL;
338 a2 = pfr_buf_next(&b2, a2);
339 print_addrx(a2, a, opts & PF_OPT_USEDNS);
pfctl_optimize.c 447 struct pf_rule a, a2, b, b2; local in function:remove_identical_rules
455 memcpy(&a2, &a, sizeof(a2));
459 exclude_supersets(&b2, &a2);
467 } else if (memcmp(&a2, &b2, sizeof(a2)) == 0) {
  /src/sys/arch/hpcmips/stand/romboot/
romboot.S 39 #define a2 $6 macro
115 la a2, bootinfo
116 addu a2, s0
  /src/sys/arch/mips/include/
regdef.h 49 #define a2 $6 macro
  /src/sys/dev/raidframe/
rf_nwayxor.c 109 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor2
122 a2 = a[2];
139 a2 ^= b2;
149 a2 ^= b2;
155 dst[2] = a2;
168 a2 = _dst[2]; \
179 a2 ^= b2; b2 = _n[2]; \
187 a2 ^= b2; _dst[2] = a2; \
199 unsigned long a0, a1, a2, a3, b0, b1, b2, b3 local in function:rf_nWayXor3
227 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor4
257 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor5
289 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor6
323 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor7
359 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor8
398 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor9
    [all...]
rf_pq.c 650 unsigned long a1, a2; local in function:rf_IncQ
663 a2 = EXTRACT(a, 1) ^ r;
664 new = INSERT(a2, 1) | a1;
666 a2 = EXTRACT(a, 3) ^ r;
668 a2 = q[a2];
669 new = new | INSERT(a1, 2) | INSERT(a2, 3);
671 a2 = EXTRACT(a, 5) ^ r;
673 a2 = q[a2];
723 unsigned long a1, a2; local in function:QDelta
863 unsigned long a1, a2; local in function:rf_InvertQ
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_atombios_crtc.c 54 int a1, a2; local in function:amdgpu_atombios_crtc_overscan_setup
69 a2 = adjusted_mode->crtc_vdisplay * mode->crtc_hdisplay;
71 if (a1 > a2) {
72 args.usOverscanLeft = cpu_to_le16((adjusted_mode->crtc_hdisplay - (a2 / mode->crtc_vdisplay)) / 2);
73 args.usOverscanRight = cpu_to_le16((adjusted_mode->crtc_hdisplay - (a2 / mode->crtc_vdisplay)) / 2);
74 } else if (a2 > a1) {
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/color/
color_gamma.h 66 int A2[3];
91 struct fixed31_32 a2; member in struct:translate_from_linear_space_args
  /src/usr.sbin/tprof/
tprof_analyze.c 74 const struct addr *a2 = (const struct addr *)keyp; local in function:addrtree_compare_key
76 if (a1->addr > a2->addr) {
78 } else if (a1->addr < a2->addr) {
81 if (a1->pid > a2->pid) {
83 } else if (a1->pid < a2->pid) {
86 if (a1->lwpid > a2->lwpid) {
88 } else if (a1->lwpid < a2->lwpid) {
91 if (a1->cpuid > a2->cpuid) {
93 } else if (a1->cpuid < a2->cpuid) {
96 if (a1->in_kernel > a2->in_kernel)
107 const struct addr *a2 = n2; local in function:addrtree_compare_nodes
121 const struct addr *a2 = *(const struct addr * const *)p2; local in function:compare_nsamples
    [all...]
  /src/lib/libm/src/
e_lgammaf_r.c 31 a2 = 6.7352302372e-02, /* 0x3d89f001 */ variable in typeref:typename:const float
188 p1 = a0+z*(a2+z*(a4+z*(a6+z*(a8+z*a10))));
  /src/usr.bin/sed/
defs.h 96 struct s_addr *a1, *a2; /* Start and end address */ member in struct:s_command
  /src/usr.bin/spell/spellprog/
spellprog.c 148 const char *a2; member in struct:suftab
156 .n2 = 2, .d2 = "-y+ies", .a2 = "+es" },
193 .n2 = 2, .d2 = "-y+ier", .a2 = "+er" },
196 .n2 = 2, .d2 = "-y+ied", .a2 = "+ed" },
203 .n2 = 3, .d2 = "-y+iest",.a2 = "+est" },
459 return (*t->p2)(ep - t->n2, t->d2, t->a2, lev);
  /src/usr.bin/xlint/lint2/
chk.c 1335 const type_t **a2 = tp2->t_args; local in function:prototypes_compatible
1337 for (; *a1 != NULL && *a2 != NULL; a1++, a2++)
1338 if (!types_compatible(*a1, *a2, true, false, false, dowarn))
1340 return *a1 == *a2;

Completed in 23 milliseconds

1 2