HomeSort by relevance Sort by last modified time
    Searched refs:dmax (Results 1 - 25 of 29) sorted by null

1 2

  /external/libgsm/src/
long_term.c 65 word R, S, dmax, scal, best_k; local
72 dmax = 0;
76 if (temp > dmax) {
77 dmax = temp;
82 if (dmax == 0) scal = 0;
84 assert(dmax > 0);
85 temp = gsm_norm( (longword)dmax << 16 );
168 word R, S, dmax, scal; local
173 dmax = 0;
178 if (temp > dmax) dmax = temp
309 word R, S, dmax, scal; local
485 word R, S, dmax, scal; local
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 83 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ member in struct:inflate_state
inffast.c 78 unsigned dmax; /* maximum distance from zlib header */ local
105 dmax = state->dmax;
177 if (dist > dmax) {
inflate.c 116 state->dmax = 32768U;
627 state->dmax = 1U << len;
    [all...]
infback.c 54 state->dmax = 32768U;
  /external/zlib/
inflate.h 87 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ member in struct:inflate_state
inffast.c 78 unsigned dmax; /* maximum distance from zlib header */ local
105 dmax = state->dmax;
177 if (dist > dmax) {
inflate.c 116 state->dmax = 32768U;
664 state->dmax = 1U << len;
    [all...]
infback.c 54 state->dmax = 32768U;
  /external/iproute2/tc/
q_hfsc.c 54 "SC := [ [ umax BYTE ] dmax SEC ] rate BPS\n"
57 " dmax : maximum delay\n"
336 unsigned int umax = 0, dmax = 0, rate = 0; local
347 if (matches(*argv, "dmax") == 0) {
349 if (get_time(&dmax, *argv) < 0) {
350 explain1("dmax");
365 if (umax != 0 && dmax == 0) {
366 fprintf(stderr, "HFSC: umax given but dmax is zero.\n");
370 if (dmax != 0 && ceil(1.0 * umax * TIME_UNITS_PER_SEC / dmax) > rate)
    [all...]
  /external/openssl/crypto/bn/
bn_lib.c 265 OPENSSL_cleanse(a->d,a->dmax*sizeof(a->d[0]));
310 ret->dmax=0;
317 /* The caller MUST check that words > b->dmax before calling this */
401 * words <= b->dmax && top < words
402 * because BN_dup() does not preserve 'dmax'!
406 if (words > b->dmax)
416 r->dmax = words;
449 if (words > b->dmax)
455 b->dmax=words;
461 if (b->top < b->dmax)
    [all...]
bn.h 300 (dest)->dmax=(b)->dmax, \
323 int dmax; /* Size of the d array. */ member in struct:bignum_st
682 #define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->dmax)?\
684 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words)))
732 if(_bnum1->top < _bnum1->dmax) { \
736 * wouldn't be constructed with top!=dmax. */ \
741 (_bnum1->dmax - _bnum1->top) * sizeof(BN_ULONG)); \
    [all...]
bn_div.c 252 wnum.dmax = snum->dmax - loop; /* so we don't step out of bounds */
490 wnum.dmax = snum->dmax - loop; /* so we don't step out of bounds */
bn_ctx.c 164 fprintf(stderr,"%03x ", item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax);
244 fprintf(stderr,"%02x ", pool->vals[loop++].dmax);
bn_lcl.h 295 int ind = (a)->dmax - (a)->top; \
bn_mont.c 431 tmod.dmax=2;
  /external/webkit/Source/WebCore/platform/graphics/
ContextShadow.cpp 120 int dmax = d >> 1; local
121 int dmin = dmax - 1 + (d & 1);
143 int side1 = (!step) ? dmin : dmax;
144 int side2 = (step == 1) ? dmin : dmax;
  /external/opencv/cv/src/
cvdominants.cpp 323 /* dmax is so big (more than contour diameter)
381 int dmax = cvRound(parameter2); local
389 if( dmax == 0 )
390 dmax = dmin + 2;
395 dmin*dmin, dmax*dmax, dneigh*dneigh, (float)amax ));
  /external/webkit/Source/WebCore/platform/wx/wxcode/win/
non-kerned-drawing.cpp 50 static inline double dmax(double a, double b) { return a > b ? a : b; } function
  /external/openssl/include/openssl/
bn.h 300 (dest)->dmax=(b)->dmax, \
323 int dmax; /* Size of the d array. */ member in struct:bignum_st
682 #define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->dmax)?\
684 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words)))
732 if(_bnum1->top < _bnum1->dmax) { \
736 * wouldn't be constructed with top!=dmax. */ \
741 (_bnum1->dmax - _bnum1->top) * sizeof(BN_ULONG)); \
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/openssl/
bn.h 269 (dest)->dmax=(b)->dmax, \
292 int dmax; /* Size of the d array. */ member in struct:bignum_st
640 #define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->dmax)?\
642 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words)))
690 if(_bnum1->top < _bnum1->dmax) { \
694 * wouldn't be constructed with top!=dmax. */ \
699 (_bnum1->dmax - _bnum1->top) * sizeof(BN_ULONG)); \
  /external/jdiff/src/jdiff/
DiffMyers.java 116 final int dmax = xlim - yoff; // Maximum valid diagonal. local
138 if (fmax < dmax)
170 if (bmax < dmax)
  /external/openssl/crypto/ec/
ec2_smpl.c 181 for (i = dest->a.top; i < dest->a.dmax; i++) dest->a.d[i] = 0;
182 for (i = dest->b.top; i < dest->b.dmax; i++) dest->b.d[i] = 0;
205 for (i = group->a.top; i < group->a.dmax; i++) group->a.d[i] = 0;
210 for (i = group->b.top; i < group->b.dmax; i++) group->b.d[i] = 0;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DoubleTest.java 1355 Double dmax = new Double(Double.MAX_VALUE); local
    [all...]
  /external/openssl/crypto/rsa/
rsa_lib.c 410 RAND_add(rsa->d->d, rsa->d->dmax * sizeof rsa->d->d[0], 0.0);

Completed in 1000 milliseconds

1 2