Searched defs:dmax (Results 1 - 19 of 19) sorted by relevance

/external/qemu/distrib/zlib-1.2.3/
H A Dinffast.c78 unsigned dmax; /* maximum distance from zlib header */ local
105 dmax = state->dmax;
177 if (dist > dmax) {
H A Dinflate.h83 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ member in struct:inflate_state
/external/zlib/src/
H A Dinffast.c78 unsigned dmax; /* maximum distance from zlib header */ local
105 dmax = state->dmax;
177 if (dist > dmax) {
H A Dinflate.h87 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ member in struct:inflate_state
/external/webkit/Source/WebCore/platform/wx/wxcode/win/
H A Dnon-kerned-drawing.cpp50 static inline double dmax(double a, double b) { return a > b ? a : b; } function
/external/iproute2/tc/
H A Dq_hfsc.c54 "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) > rat
[all...]
/external/opencv/cv/src/
H A Dcvdominants.cpp323 /* 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/graphics/
H A DContextShadow.cpp120 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/aac/libSBRenc/src/
H A Dfram_gen.h259 INT dmax; /*!< maximum length of dependent segments */ member in struct:__anon238
H A Dfram_gen.cpp229 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,
805 hSbrEnvFrame->dmax
955 fillFramePre(INT dmax, INT *v_bord, INT *length_v_bord, INT *v_freq, INT *length_v_freq, INT bmin, INT rest) argument
1077 fillFramePost(INT *parts, INT *d, INT dmax, INT *v_bord, INT *length_v_bord, INT *v_freq, INT *length_v_freq, INT bmax, INT bufferFrameStart, INT numberTimeSlots, INT fmax) argument
1157 fillFrameInter(INT *nL, const int *v_tuningSegm, INT *v_bord, INT *length_v_bord, INT bmin, INT *v_freq, INT *length_v_freq, INT *v_bordFollow, INT *length_v_bordFollow, INT *v_freqFollow, INT *length_v_freqFollow, INT i_fillFollow, INT dmin, INT dmax, INT numberTimeSlots) argument
[all...]
/external/libgsm/src/
H A Dlong_term.c65 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) dma
309 word R, S, dmax, scal; local
485 word R, S, dmax, scal; local
[all...]
/external/opencv/cxcore/src/
H A Dcxutils.cpp702 double dmin = MIN( a, b ), dmax = MAX( a, b ); local
704 scale = (dmax - dmin)*(smax - smin > DBL_EPSILON ? 1./(smax - smin) : 0);
/external/openssl/crypto/bn/
H A Dbn.h300 (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)); \
/external/openssl/include/openssl/
H A Dbn.h300 (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)); \
/external/regex-re2/re2/
H A Dre2.cc461 string dmin, dmax; local
463 if (maxlen > 0 && prog_->PossibleMatchRange(&dmin, &dmax, maxlen)) {
465 pmax += dmax;
/external/libpng/
H A Dpngrtran.c523 int dmax = ((dm > db) ? dm : db); local
524 int d = dmax + dt + db;
/external/qemu/distrib/libpng-1.2.19/
H A Dpngrtran.c498 int dmax = ((dm > db) ? dm : db); local
499 int d = dmax + dt + db;
/external/libppp/src/
H A Dcommand.c211 int n, cmax, dmax, cols, cxlen; local
230 cmax = dmax = 0;
235 if ((n = strlen(cmd->helpmes)) > dmax)
236 dmax = n;
239 cols = 80 / (dmax + cmax + 3);
250 cmd->name, cxlen, cxlen, cx, dmax, dmax, cmd->helpmes);
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...

Completed in 2347 milliseconds