Searched refs:divisors (Results 1 - 4 of 4) sorted by relevance

/external/jpeg/
H A Djcdctmgr.c28 /* The actual post-DCT divisors --- not identical to the quant table
32 DCTELEM * divisors[NUM_QUANT_TBLS]; member in struct:__anon6540
70 /* Compute divisors for this quant table */
75 /* For LL&M IDCT method, divisors are equal to raw quantization
78 if (fdct->divisors[qtblno] == NULL) {
79 fdct->divisors[qtblno] = (DCTELEM *)
83 dtbl = fdct->divisors[qtblno];
92 /* For AA&N IDCT method, divisors are equal to quantization
112 if (fdct->divisors[qtblno] == NULL) {
113 fdct->divisors[qtbln
189 DCTELEM * divisors = fdct->divisors[compptr->quant_tbl_no]; local
279 FAST_FLOAT * divisors = fdct->float_divisors[compptr->quant_tbl_no]; local
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djcdctmgr.c28 /* The actual post-DCT divisors --- not identical to the quant table
32 DCTELEM * divisors[NUM_QUANT_TBLS]; member in struct:__anon10394
70 /* Compute divisors for this quant table */
75 /* For LL&M IDCT method, divisors are equal to raw quantization
78 if (fdct->divisors[qtblno] == NULL) {
79 fdct->divisors[qtblno] = (DCTELEM *)
83 dtbl = fdct->divisors[qtblno];
92 /* For AA&N IDCT method, divisors are equal to quantization
112 if (fdct->divisors[qtblno] == NULL) {
113 fdct->divisors[qtbln
189 DCTELEM * divisors = fdct->divisors[compptr->quant_tbl_no]; local
279 FAST_FLOAT * divisors = fdct->float_divisors[compptr->quant_tbl_no]; local
[all...]
/external/v8/test/mjsunit/
H A Ddiv-mod.js69 var divisors = [ variable
88 for (var i = 0; i < divisors.length; i++) {
89 run_tests_for(divisors[i]);
206 for (var j = 0; j < divisors.length; j++) {
207 mod_func = this.eval("(function(left) { return left % " + divisors[j]+ "; })");
208 assertEquals((mod_func)(left_operands[i]), left_operands[i] % divisors[j]);
209 assertEquals((mod_func)(-left_operands[i]), -left_operands[i] % divisors[j]);
/external/chromium-trace/trace-viewer/src/tracks/
H A Dtimeline_viewport_track.js151 var divisors = [10, 5, 2, 1];
152 for (var i = 0; i < divisors.length; ++i) {
153 var tightenedGuess = conservativeGuess / divisors[i];
156 majorMarkDistanceWorld = conservativeGuess / divisors[i - 1];

Completed in 98 milliseconds