Searched refs:dp (Results 51 - 75 of 108) sorted by relevance

12345

/barrelfish-2018-10-04/lib/tommath/
H A Dbn_fast_s_mp_mul_high_digs.c53 tmpx = a->dp + tx;
54 tmpy = b->dp + ty;
80 tmpc = c->dp + digs;
H A Dbn_mp_jacobi.c67 residue = p->dp[0] & 7;
77 if ( ((p->dp[0] & 3) == 3) && ((a1.dp[0] & 3) == 3)) {
H A Dbn_mp_montgomery_reduce.c55 mu = (mp_digit) (((mp_word)x->dp[ix]) * ((mp_word)rho) & MP_MASK);
64 tmpn = n->dp;
67 tmpx = x->dp + ix;
H A Dbn_mp_sub_d.c48 tmpa = a->dp;
49 tmpc = c->dp;
52 if ((a->used == 1 && a->dp[0] <= b) || a->used == 0) {
H A Dbn_s_mp_mul_digs.c53 tmpx = a->dp[ix];
56 tmpt = t.dp + ix;
59 tmpy = b->dp;
H A Dbn_s_mp_mul_high_digs.c50 tmpx = a->dp[ix];
53 tmpt = &(t.dp[digs]);
56 tmpy = b->dp + (digs - ix);
H A Dbn_s_mp_sub.c42 tmpa = a->dp;
43 tmpb = b->dp;
44 tmpc = c->dp;
H A Dbn_fast_mp_montgomery_reduce.c52 tmpx = x->dp;
98 tmpn = n->dp;
141 tmpx = x->dp;
H A Dbn_mp_div_d.c63 *d = a->dp[0] & ((((mp_digit)1)<<ix) - 1);
87 w = (w << ((mp_word)DIGIT_BIT)) | ((mp_word)a->dp[ix]);
95 q.dp[ix] = (mp_digit)t;
H A Dbn_mp_montgomery_setup.c32 b = n->dp[0];
H A Dbn_mp_reduce_2k_setup.c39 *d = tmp.dp[0];
H A Dbn_mp_div_3.c38 w = (w << ((mp_word)DIGIT_BIT)) | ((mp_word)a->dp[ix]);
57 q.dp[ix] = (mp_digit)t;
H A Dbn_mp_dr_reduce.c55 tmpx1 = x->dp;
58 tmpx2 = x->dp + m;
H A Dbn_mp_mul_2d.c57 tmpc = c->dp;
75 c->dp[(c->used)++] = r;
H A Dbn_mp_karatsuba_sqr.c58 src = a->dp;
61 dst = x0.dp;
66 dst = x1.dp;
/barrelfish-2018-10-04/lib/barrelfish/
H A Dlmp_endpoints.c174 struct dispatcher_generic *dp = get_dispatcher_generic(handle); local
209 assert(dp->lmp_poll_list == ep);
210 dp->lmp_poll_list = NULL;
214 if (dp->lmp_poll_list == ep) {
215 dp->lmp_poll_list = ep->next;
229 for (ep = dp->lmp_poll_list; ep != NULL; ep = nextep) {
231 firstep = dp->lmp_poll_list;
243 assert(dp->lmp_poll_list == ep);
244 dp->lmp_poll_list = NULL;
249 if (dp
284 struct dispatcher_generic *dp = get_dispatcher_generic(handle); local
322 struct dispatcher_generic *dp = get_dispatcher_generic(handle); local
[all...]
H A Dlmp_chan.c299 struct dispatcher_generic *dp = get_dispatcher_generic(handle); local
300 if (dp->lmp_send_events_list == NULL) {
301 dp->lmp_send_events_list = lc;
304 lc->prev = dp->lmp_send_events_list->prev;
305 lc->next = dp->lmp_send_events_list;
330 struct dispatcher_generic *dp = get_dispatcher_generic(handle); local
332 assert_disabled(dp->lmp_send_events_list == lc);
333 dp->lmp_send_events_list = NULL;
337 if (dp->lmp_send_events_list == lc) {
338 dp
393 struct dispatcher_generic *dp = get_dispatcher_generic(handle); local
[all...]
/barrelfish-2018-10-04/lib/libc/iconv/
H A Dcitrus_module.c195 struct dirent *dp; local
202 while ((dp = readdir(dd)) != NULL) {
205 if (dp->d_namlen < len + 4)
207 if (strncmp(dp->d_name, lname, (size_t)len) != 0)
209 if (strncmp(dp->d_name+len, ".so.", 4) != 0)
212 if ((n = _getdewey(tmp, dp->d_name+len+4)) == 0)
242 dp->d_name);
/barrelfish-2018-10-04/lib/libc/regex/
H A Dengine.c160 const char *dp = NULL; local
194 for (dp = start+g->mlen-1; dp < stop;) {
196 while (dp < stop && charjump[(int)*dp])
197 dp += charjump[(int)*dp];
199 if (dp >= stop)
206 while (*--dp == *--pp && pp != mustfirst);
208 if (*dp
388 const char *dp; local
571 const char *dp; local
[all...]
/barrelfish-2018-10-04/lib/tommath/pre_gen/
H A Dmpi.c256 tmpx = x->dp;
302 tmpn = n->dp;
345 tmpx = x->dp;
442 tmpx = a->dp + tx;
443 tmpy = b->dp + ty;
469 tmpc = c->dp;
544 tmpx = a->dp + tx;
545 tmpy = b->dp + ty;
571 tmpc = c->dp + digs;
650 tmpx = a->dp
[all...]
/barrelfish-2018-10-04/lib/tommath/mtest/
H A Dmpi.c133 void s_mp_setz(mp_digit *dp, mp_size count); /* zero digits */
134 void s_mp_copy(mp_digit *sp, mp_digit *dp, mp_size count); /* copy */
143 #define s_mp_setz(dp, count) \
144 {int ix;for(ix=0;ix<(count);ix++)(dp)[ix]=0;}
146 #define s_mp_setz(dp, count) memset(dp, 0, (count) * sizeof(mp_digit))
150 #define s_mp_copy(sp, dp, count) \
151 {int ix;for(ix=0;ix<(count);ix++)(dp)[ix]=(sp)[ix];}
153 #define s_mp_copy(sp, dp, count) memcpy(dp, s
2373 mp_digit *dp, *end, d; local
2707 s_mp_setz(mp_digit *dp, mp_size count) argument
2727 s_mp_copy(mp_digit *sp, mp_digit *dp, mp_size count) argument
2819 mp_digit *dp; local
2856 mp_digit *dp; local
2902 mp_digit kin = 0, kout, *dp = DIGITS(mp); local
2942 mp_digit dmask, *dp = DIGITS(mp); local
2971 mp_digit save, next, mask, *dp; local
3024 mp_digit save, next, mask, *dp = DIGITS(mp); local
3092 mp_digit *dp = DIGITS(mp); local
3127 mp_digit *dp = DIGITS(mp); local
3163 mp_digit *dp = DIGITS(a); local
3217 mp_digit *dp = DIGITS(mp), *qp; local
3837 mp_digit d, *dp; local
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/rxspencer/
H A Dengine.c77 register char *dp; local
98 for (dp = start; dp < stop; dp++)
99 if (*dp == g->must[0] && stop - dp >= g->mlen &&
100 memcmp(dp, g->must, (size_t)g->mlen) == 0)
102 if (dp == stop) /* we didn't find g->must */
156 dp = dissect(m, m->coldp, endp, gf, gl);
167 dp
251 register char *dp; local
434 register char *dp; local
[all...]
/barrelfish-2018-10-04/lib/tommath/etc/
H A Dmont.c25 modulus.dp[0] |= 1;
/barrelfish-2018-10-04/lib/lwip2/src/apps/snmp_private_mib/
H A Dlwip_prvmib.c182 struct dirent *dp; local
217 dp = (struct dirent *)cp;
218 if (isdigit(dp->d_name[0]))
220 unsigned char idx = dp->d_name[0] - '0';
223 strncpy(&sensors[idx].file[0], dp->d_name, SENSOR_NAME_LEN);
226 cp += dp->d_reclen;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3_purp.c317 static void setup_dp(X509 *x, DIST_POINT *dp) argument
321 if (dp->reasons)
323 if (dp->reasons->length > 0)
324 dp->dp_reasons = dp->reasons->data[0];
325 if (dp->reasons->length > 1)
326 dp->dp_reasons |= (dp->reasons->data[1] << 8);
327 dp->dp_reasons &= CRLDP_ALL_REASONS;
330 dp
[all...]

Completed in 125 milliseconds

12345