HomeSort by relevance Sort by last modified time
    Searched refs:dp (Results 51 - 75 of 365) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/dropbear/libtommath/
bn_mp_mul_2.c 37 tmpa = a->dp;
40 tmpb = b->dp;
70 tmpb = b->dp + b->used;
bn_mp_cmp_mag.c 34 tmpa = a->dp + (a->used - 1);
37 tmpb = b->dp + (a->used - 1);
bn_mp_copy.c 43 tmpa = a->dp;
46 tmpb = b->dp;
bn_mp_mod_2d.c 43 c->dp[x] = 0;
46 c->dp[b / DIGIT_BIT] &=
bn_mp_2expt.c 40 a->dp[b / DIGIT_BIT] = ((mp_digit)1) << (b % DIGIT_BIT);
bn_mp_add_d.c 33 if (a->sign == MP_NEG && (a->used > 1 || a->dp[0] >= b)) {
56 tmpa = a->dp;
59 tmpc = c->dp;
88 *tmpc++ = b - a->dp[0];
bn_mp_count_bits.c 34 q = a->dp[a->used - 1];
bn_mp_set_int.c 33 a->dp[0] |= (b >> 28) & 15;
bn_mp_zero.c 27 tmp = a->dp;
bn_s_mp_add.c 56 tmpa = a->dp;
59 tmpb = b->dp;
62 tmpc = c->dp;
83 *tmpc = x->dp[i] + u;
bn_fast_s_mp_sqr.c 57 tmpx = a->dp + tx;
58 tmpy = a->dp + ty;
81 _W += ((mp_word)a->dp[ix>>1])*((mp_word)a->dp[ix>>1]);
97 tmpb = b->dp;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
CRLDistPoint.java 63 DistributionPoint[] dp = new DistributionPoint[seq.size()]; local
67 dp[i] = DistributionPoint.getInstance(seq.getObjectAt(i));
70 return dp;
91 DistributionPoint dp[] = getDistributionPoints(); local
92 for (int i = 0; i != dp.length; i++)
95 buf.append(dp[i]);
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_ansi_x963_import.c 36 int ecc_ansi_x963_import_ex(const unsigned char *in, unsigned long inlen, ecc_key *key, ltc_ecc_set_type *dp)
69 if (dp == NULL) {
82 key->dp = &ltc_ecc_sets[x];
84 if (((inlen-1)>>1) != (unsigned long) dp->size) {
89 key->dp = dp;
ecc_make_key.c 50 int ecc_make_key_ex(prng_state *prng, int wprng, ecc_key *key, const ltc_ecc_set_type *dp)
60 LTC_ARGCHK(dp != NULL);
68 key->dp = dp;
69 keysize = dp->size;
95 if ((err = mp_read_radix(prime, (char *)key->dp->prime, 16)) != CRYPT_OK) { goto errkey; }
96 if ((err = mp_read_radix(base->x, (char *)key->dp->Gx, 16)) != CRYPT_OK) { goto errkey; }
97 if ((err = mp_read_radix(base->y, (char *)key->dp->Gy, 16)) != CRYPT_OK) { goto errkey; }
  /system/core/toolbox/
chmod.c 15 struct dirent *dp; local
24 while ((dp = readdir(dir)) != NULL) {
25 if (strcmp(dp->d_name, ".") == 0 ||
26 strcmp(dp->d_name, "..") == 0) continue;
28 if (strlen(dp->d_name) + pathlen + 2/*NUL and slash*/ > PATH_MAX) {
35 strcat(subpath, dp->d_name);
  /external/ppp/pppd/include/net/
ppp-comp.h 125 #define CCP_CODE(dp) ((dp)[0])
126 #define CCP_ID(dp) ((dp)[1])
127 #define CCP_LENGTH(dp) (((dp)[2] << 8) + (dp)[3])
130 #define CCP_OPT_CODE(dp) ((dp)[0])
131 #define CCP_OPT_LENGTH(dp) ((dp)[1]
    [all...]
  /external/bison/lib/
printf-parse.c 140 DIRECTIVE *dp = &d->dir[d->count]; /* pointer to next directive */ local
143 dp->dir_start = cp - 1;
144 dp->flags = 0;
145 dp->width_start = NULL;
146 dp->width_end = NULL;
147 dp->width_arg_index = ARG_NONE;
148 dp->precision_start = NULL;
149 dp->precision_end = NULL;
150 dp->precision_arg_index = ARG_NONE;
151 dp->arg_index = ARG_NONE
    [all...]
unsetenv.c 77 char **dp = ep; local
80 dp[0] = dp[1];
81 while (*dp++);
vasnprintf.c 375 mp_limb_t *dp; local
379 dp = (mp_limb_t *) malloc (dlen * sizeof (mp_limb_t));
380 if (dp == NULL)
383 dp[--k] = 0;
392 carry += dp[i + j];
393 dp[i + j] = (mp_limb_t) carry;
396 dp[i + len2] = (mp_limb_t) carry;
399 while (dlen > 0 && dp[dlen - 1] == 0)
402 dest->limbs = dp;
1802 DIRECTIVE *dp; local
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
p3.cpp 19 double * const &dp = ap; local
  /external/dropbear/libtommath/etc/
drprime.c 22 a.dp[y] = MP_MASK;
26 a.dp[0] = -1;
32 a.dp[0] += 4;
33 if (a.dp[0] >= MP_MASK) break;
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p1-0x.cpp 35 void test_simple_deduction(int *ip, float *fp, double *dp) {
38 int *ip3 = first_arg(ip, fp, dp);
48 void test_simple_ref_deduction(int *ip, float *fp, double *dp) {
51 int *ip3 = first_arg_ref(ip, fp, dp);
63 void test_pair_deduction(int *ip, float *fp, double *dp) {
67 make_pair(dp, 17));
70 make_pair(dp, 17));
  /external/e2fsprogs/intl/
printf-parse.c 121 DIRECTIVE *dp = &d->dir[d->count];/* pointer to next directive */ local
124 dp->dir_start = cp - 1;
125 dp->flags = 0;
126 dp->width_start = NULL;
127 dp->width_end = NULL;
128 dp->width_arg_index = ARG_NONE;
129 dp->precision_start = NULL;
130 dp->precision_end = NULL;
131 dp->precision_arg_index = ARG_NONE;
132 dp->arg_index = ARG_NONE
    [all...]
  /external/mksh/src/
eval.c 151 char *dp = null; local
156 dp = *XPptrv(w);
158 return (dp);
209 char *dp; /* destination */ local
239 Xinit(ds, dp, 128, ATEMP);
254 Xcheck(ds, dp);
285 *dp++ = '$';
287 *dp++ = '{';
288 *dp++ = ' ';
290 *dp++ = '('
1643 char *dp = *dpp; local
1681 char *dp = null; local
    [all...]
  /hardware/invensense/libsensors_iio/software/simple_apps/mpu_iio/
iio_utils.h 105 DIR *dp; local
127 dp = opendir(scan_el_dir);
128 if (dp == NULL) {
132 while (ent = readdir(dp), ent != NULL)
181 closedir(dp);
200 DIR *dp; local
216 dp = opendir(device_dir);
217 if (dp == NULL) {
221 while (ent = readdir(dp), ent != NULL)
242 closedir(dp);
281 DIR *dp; local
588 DIR *dp; local
617 DIR *dp; local
    [all...]

Completed in 1057 milliseconds

1 23 4 5 6 7 8 91011>>