HomeSort by relevance Sort by last modified time
    Searched refs:dmax (Results 1 - 25 of 33) 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...]
  /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 117 state->dmax = 32768U;
684 state->dmax = 1U << len;
    [all...]
  /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 246 OPENSSL_cleanse(a->d,a->dmax*sizeof(a->d[0]));
291 ret->dmax=0;
298 /* The caller MUST check that words > b->dmax before calling this */
382 * words <= b->dmax && top < words
383 * because BN_dup() does not preserve 'dmax'!
387 if (words > b->dmax)
397 r->dmax = words;
430 if (words > b->dmax)
436 b->dmax=words;
442 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
697 #define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->dmax)?\
699 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words)))
747 if(_bnum1->top < _bnum1->dmax) { \
751 * wouldn't be constructed with top!=dmax. */ \
756 (_bnum1->dmax - _bnum1->top) * sizeof(BN_ULONG)); \
    [all...]
bn_ctx.c 164 fprintf(stderr,"%03x ", item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax);
244 fprintf(stderr,"%02x ", pool->vals[loop++].dmax);
bn_div.c 272 wnum.dmax = snum->dmax - loop; /* so we don't step out of bounds */
bn_lcl.h 308 int ind = (a)->dmax - (a)->top; \
bn_mont.c 373 tmod.dmax=2;
  /external/aac/libSBRenc/src/
fram_gen.cpp 229 static void fillFramePre (INT dmax, INT *v_bord, INT *length_v_bord,
233 static void fillFramePost (INT *parts, INT *d, INT dmax, INT *v_bord,
243 INT dmin, INT dmax, INT numberTimeSlots);
392 INT dmax = hSbrEnvFrame->dmax; local
546 fillFramePre (dmax, v_bord, length_v_bord, v_freq, length_v_freq,
552 fillFramePost (&parts, &d, dmax, v_bord, length_v_bord, v_freq,
622 length_v_freqFollow, *i_fillFollow, dmin, dmax,
628 fillFramePost (&parts, &d, dmax, v_bord, length_v_bord, v_freq,
    [all...]
fram_gen.h 259 INT dmax; /*!< maximum length of dependent segments */ member in struct:__anon1802
  /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
697 #define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->dmax)?\
699 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words)))
747 if(_bnum1->top < _bnum1->dmax) { \
751 * wouldn't be constructed with top!=dmax. */ \
756 (_bnum1->dmax - _bnum1->top) * sizeof(BN_ULONG)); \
    [all...]
  /external/openssl/crypto/ec/
ec2_smpl.c 190 for (i = dest->a.top; i < dest->a.dmax; i++) dest->a.d[i] = 0;
191 for (i = dest->b.top; i < dest->b.dmax; i++) dest->b.d[i] = 0;
214 for (i = group->a.top; i < group->a.dmax; i++) group->a.d[i] = 0;
219 for (i = group->b.top; i < group->b.dmax; i++) group->b.d[i] = 0;
  /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/rsa/
rsa_crpt.c 229 RAND_add(rsa->d->d, rsa->d->dmax * sizeof rsa->d->d[0], 0.0);
  /external/regex-re2/re2/
re2.cc 461 string dmin, dmax; local
463 if (maxlen > 0 && prog_->PossibleMatchRange(&dmin, &dmax, maxlen)) {
465 pmax += dmax;
    [all...]
  /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...]

Completed in 1341 milliseconds

1 2