HomeSort by relevance Sort by last modified time
    Searched refs:dmax (Results 1 - 25 of 31) 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/chromium/third_party/zlib/
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/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 116 state->dmax = 32768U;
664 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 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 282 (dest)->dmax=(b)->dmax, \
305 int dmax; /* Size of the d array. */ member in struct:bignum_st
664 #define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->dmax)?\
666 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words)))
714 if(_bnum1->top < _bnum1->dmax) { \
718 * wouldn't be constructed with top!=dmax. */ \
723 (_bnum1->dmax - _bnum1->top) * sizeof(BN_ULONG)); \
    [all...]