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

1 2 3

  /src/common/lib/libc/arch/or1k/string/
memcpy.c 40 combine_words(unsigned long w1, unsigned long w2, int shift1, int shift2)
43 return (w1 << shift1) | (w2 >> shift2);
45 return (w1 >> shift1) | (w2 << shift2);
98 unsigned long w2 = lb[0]; local
100 la[0] = combine_words(w1, w2, shift1, shift2);
104 la[1] = combine_words(w2, w1, shift1, shift2);
106 w2 = lb[2];
108 la[2] = combine_words(w1, w2, shift1, shift2);
112 la[3] = combine_words(w2, w1, shift1, shift2);
119 unsigned long w2 = *lb++ local
    [all...]
  /src/lib/libc/locale/
c16rtomb.c 179 const char16_t w2 = c16; local
181 __SHIFTIN(__SHIFTOUT(w2, __BITS(9,0)), __BITS(9,0));
mbrtoc16.c 200 const char16_t w2 = 0xdc00 | __SHIFTOUT(c32, __BITS(9,0)); local
203 S->surrogate = w2;
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_mp_toom_mul.c 29 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local
33 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4,
147 /* w2 = (a2 + a1 + a0)(b2 + b1 + b0) */
160 if ((res = mp_mul(&tmp1, &tmp2, &w2)) != MP_OKAY) {
193 if ((res = mp_sub(&w2, &w0, &w2)) != MP_OKAY) {
196 if ((res = mp_sub(&w2, &w4, &w2)) != MP_OKAY) {
200 if ((res = mp_sub(&w1, &w2, &w1)) != MP_OKAY) {
204 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY)
    [all...]
bn_mp_toom_sqr.c 24 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2; local
28 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) {
98 /* w2 = (a2 + a1 + a0)**2 */
105 if ((res = mp_sqr(&tmp1, &w2)) != MP_OKAY) {
137 if ((res = mp_sub(&w2, &w0, &w2)) != MP_OKAY) {
140 if ((res = mp_sub(&w2, &w4, &w2)) != MP_OKAY) {
144 if ((res = mp_sub(&w1, &w2, &w1)) != MP_OKAY) {
148 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY)
    [all...]
  /src/external/lgpl3/gmp/dist/mpn/generic/
toom_interpolate_7pts.c 86 w2 = f(1),
93 w2 is stored at { rp + 2n, 2n+1 }, and w6 is stored at { rp + 6n,
111 #define w2 (rp + 2*n) macro
123 W3 =(W2 - W3)/2
124 W2 = W2 - W3
126 W5 = W5 - W2*65 May be negative.
127 W2 = W2 - W6 - W0
128 W5 =(W5 + W2*45)/2 Now >= 0 again
    [all...]
  /src/external/lgpl3/gmp/dist/tests/mpf/
t-dm2exp.c 35 mpf_t u, v, w1, w2, w3; local
58 mpf_init (w2);
68 mpf_set_prec (w2, res_prec);
83 mpf_div (w2, u, v);
84 mpf_reldiff (rerr, w1, w2);
91 printf (" w2 = "); mpf_dump (w2);
113 mpf_clear (w2);
  /src/external/gpl2/gettext/dist/gettext-tools/src/gnu/gettext/
DumpResource.java 214 Writer w2 = new BufferedWriter(w1); local
215 this.out = w2;
218 w2.close();
  /src/tests/rump/rumpkern/h_client/
h_reconcli.c 84 pthread_t pt, w1, w2, w3, w4; local
107 pthread_create(&w2, NULL, worker, NULL);
116 pthread_join(w2, NULL);
  /src/tests/fs/ffs/
t_fifos.c 48 w2(void *arg) function
54 atf_tc_fail_errno("w2 open");
56 atf_tc_fail_errno("w2 write");
132 pthread_create(&ptw2, NULL, w2, NULL);
  /src/tests/fs/vfs/
t_renamerace.c 77 w2(void *arg) function
173 pthread_create(&pt2[i], NULL, w2, NULL);
205 pthread_create(&pt2, NULL, w2, NULL);
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
rc2.c 120 int w0, w1, w2, w3; local
125 w2 = in[4] | (in[5] << 8);
130 t0 = (w0 + (w1 & ~w3) + (w2 & w3) + key->data[j + 0]) & 0xffff;
132 t1 = (w1 + (w2 & ~w0) + (w3 & w0) + key->data[j + 1]) & 0xffff;
134 t2 = (w2 + (w3 & ~w1) + (w0 & w1) + key->data[j + 2]) & 0xffff;
135 w2 = ROT16L(t2, 3);
136 t3 = (w3 + (w0 & ~w2) + (w1 & w2) + key->data[j + 3]) & 0xffff;
141 w2 += key->data[w1 & 63];
142 w3 += key->data[w2 & 63]
160 int w0, w1, w2, w3; local
    [all...]
  /src/external/gpl3/gdb/dist/readline/readline/
mbutil.c 399 int i, w1, w2; local
402 (w2 = _rl_get_char_len (&buf2[pos2], ps2)) <= 0 ||
403 (w1 != w2) ||
  /src/external/gpl3/gdb.old/dist/readline/readline/
mbutil.c 399 int i, w1, w2; local
402 (w2 = _rl_get_char_len (&buf2[pos2], ps2)) <= 0 ||
403 (w1 != w2) ||
  /src/sys/arch/x86/isa/
clock.c 232 int w1, w2, w3; local
285 w2 = v3 - v1 + x86_rtclock_tval;
287 if (w1 >= w2) {
291 if (w2 >= w3)
  /src/sys/nfs/
rpcv2.h 113 u_int32_t w2; member in struct:nfsrpc_fullverf
120 u_int32_t w2; member in struct:nfsrpc_fullblock
  /src/external/gpl3/gcc/dist/gcc/
gcov-tool.cc 137 /* Merging profile D1 and D2 with weight as W1 and W2, respectively.
142 profile_merge (const char *d1, const char *d2, const char *out, int w1, int w2)
152 merged_profile = gcov_profile_merge (d1_profile, d2_profile, w1, w2);
172 fnotice (file, " -w, --weight <w1,w2> Set weights (float point values)\n");
200 int w1 = 1, w2 = 1; local
215 sscanf (optarg, "%d,%d", &w1, &w2);
216 if (w1 < 0 || w2 < 0)
230 return profile_merge (argv[optind], argv[optind+1], output_dir, w1, w2);
243 fnotice (file, " -w, --weight <w1,w2> Set weights (float point values)\n");
269 int w1 = 1, w2 = 1 local
    [all...]
  /src/external/gpl3/gcc/dist/libquadmath/
quadmath-imp.h 129 uint32_t w2; member in struct:__anon14532::__anon14535
133 uint32_t w2;
  /src/external/gpl3/gcc.old/dist/gcc/
gcov-tool.cc 135 /* Merging profile D1 and D2 with weight as W1 and W2, respectively.
140 profile_merge (const char *d1, const char *d2, const char *out, int w1, int w2)
157 ret = gcov_profile_merge (d1_profile, d2_profile, w1, w2);
178 fnotice (file, " -w, --weight <w1,w2> Set weights (float point values)\n");
206 int w1 = 1, w2 = 1; local
221 sscanf (optarg, "%d,%d", &w1, &w2);
222 if (w1 < 0 || w2 < 0)
236 return profile_merge (argv[optind], argv[optind+1], output_dir, w1, w2);
  /src/external/gpl3/gcc.old/dist/libquadmath/
quadmath-imp.h 129 uint32_t w2; member in struct:__anon16943::__anon16946
133 uint32_t w2;
  /src/lib/libm/src/
e_lgammaf_r.c 86 w2 = -2.7777778450e-03, /* 0xbb360b61 */ variable
227 w = w0+z*(w1+y*(w2+y*(w3+y*(w4+y*(w5+y*w6)))));
  /src/crypto/external/apache2/openssl/dist/crypto/aria/
aria.c 477 uint32_t w0[4], w1[4], w2[4], w3[4]; local
541 w2[0] = reg0;
542 w2[1] = reg1;
543 w2[2] = reg2;
544 w2[3] = reg3;
560 ARIA_GSRK(rk, w1, w2, 19);
562 ARIA_GSRK(rk, w2, w3, 19);
569 ARIA_GSRK(rk, w1, w2, 31);
571 ARIA_GSRK(rk, w2, w3, 31);
578 ARIA_GSRK(rk, w1, w2, 67)
608 register uint32_t w1, w2; local
1034 ARIA_u128 kr, w0, w1, w2, w3; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/aria/
aria.c 542 uint32_t w0[4], w1[4], w2[4], w3[4]; local
608 w2[0] = reg0;
609 w2[1] = reg1;
610 w2[2] = reg2;
611 w2[3] = reg3;
627 ARIA_GSRK(rk, w1, w2, 19);
629 ARIA_GSRK(rk, w2, w3, 19);
636 ARIA_GSRK(rk, w1, w2, 31);
638 ARIA_GSRK(rk, w2, w3, 31);
645 ARIA_GSRK(rk, w1, w2, 67)
675 register uint32_t w1, w2; local
1126 ARIA_u128 kr, w0, w1, w2, w3; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/aria/
aria.c 542 uint32_t w0[4], w1[4], w2[4], w3[4]; local
608 w2[0] = reg0;
609 w2[1] = reg1;
610 w2[2] = reg2;
611 w2[3] = reg3;
627 ARIA_GSRK(rk, w1, w2, 19);
629 ARIA_GSRK(rk, w2, w3, 19);
636 ARIA_GSRK(rk, w1, w2, 31);
638 ARIA_GSRK(rk, w2, w3, 31);
645 ARIA_GSRK(rk, w1, w2, 67)
675 register uint32_t w1, w2; local
1126 ARIA_u128 kr, w0, w1, w2, w3; local
    [all...]
  /src/external/bsd/tcpdump/dist/
print-tipc.c 76 #define TIPC_LINK_ACK(w2) (((w2) >> 16) & 0xFFFF)
77 #define TIPC_LINK_SEQ(w2) (((w2) >> 0) & 0xFFFF)
112 nd_uint32_t w2; member in struct:payload_tipc_pkthdr
126 nd_uint32_t w2; member in struct:internal_tipc_pkthdr
137 #define TIPC_BC_GAP_AFTER(w2) (((w2) >> 16) & 0xFFFF)
138 #define TIPC_BC_GAP_TO(w2) (((w2) >> 0) & 0xFFFF
161 uint32_t w0, w1, w2; local
221 uint32_t w0, w1, w2, w4, w5, w9; local
    [all...]

Completed in 98 milliseconds

1 2 3