HomeSort by relevance Sort by last modified time
    Searched full:coef (Results 151 - 175 of 324) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/libjpeg_turbo/
jdapistd.c 54 /* If file has multiple scans, absorb them all into the coef buffer */
213 if (! (*cinfo->coef->decompress_data) (cinfo, data))
jdinput.c 276 (*cinfo->coef->start_input_pass) (cinfo);
277 cinfo->inputctl->consume_input = cinfo->coef->consume_data;
336 /* Prevent infinite loop in coef ctlr's decompress_data routine
jidctflt.c 60 #define DEQUANTIZE(coef,quantval) (((FAST_FLOAT) (coef)) * (quantval))
jpegint.h 387 extern const int jpeg_zigzag_order[]; /* natural coef order to zigzag order */
389 extern const int jpeg_natural_order[]; /* zigzag coef order to natural order */
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/armv6/
bilinearfilter_v6.asm 46 cmp r5, #128 ; if filter coef = 128, then skip the filter
158 cmp r5, #128 ; if filter coef = 128, then skip the filter
  /external/eigen/bench/btl/libs/STL/
STL_interface.hh 182 static inline void axpy(real coef, const gene_vector & X, gene_vector & Y, int N){
184 Y[i]+=coef*X[i];
  /external/jpeg/
jcapimin.c 168 /* We bypass the main controller and invoke coef controller directly;
171 if (! (*cinfo->coef->compress_data) (cinfo, (JSAMPIMAGE) NULL))
jcmainct.c 135 if (! (*cinfo->coef->compress_data) (cinfo, main->buffer)) {
209 if (! (*cinfo->coef->compress_data) (cinfo, main->buffer)) {
  /external/libvpx/libvpx/vp8/common/arm/armv6/
bilinearfilter_v6.asm 46 cmp r5, #128 ; if filter coef = 128, then skip the filter
158 cmp r5, #128 ; if filter coef = 128, then skip the filter
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jcapimin.c 169 /* We bypass the main controller and invoke coef controller directly;
172 if (! (*cinfo->coef->compress_data) (cinfo, (JSAMPIMAGE) NULL))
fpdfapi_jcmainct.c 136 if (! (*cinfo->coef->compress_data) (cinfo, main->buffer)) {
210 if (! (*cinfo->coef->compress_data) (cinfo, main->buffer)) {
fpdfapi_jdapistd.c 52 /* If file has multiple scans, absorb them all into the coef buffer */
212 if (! (*cinfo->coef->decompress_data) (cinfo, data))
fpdfapi_jdinput.c 260 (*cinfo->coef->start_input_pass) (cinfo);
261 cinfo->inputctl->consume_input = cinfo->coef->consume_data;
320 /* Prevent infinite loop in coef ctlr's decompress_data routine
  /external/qemu/distrib/jpeg-6b/
jcapimin.c 168 /* We bypass the main controller and invoke coef controller directly;
171 if (! (*cinfo->coef->compress_data) (cinfo, (JSAMPIMAGE) NULL))
jcmainct.c 135 if (! (*cinfo->coef->compress_data) (cinfo, main->buffer)) {
209 if (! (*cinfo->coef->compress_data) (cinfo, main->buffer)) {
  /frameworks/av/media/libeffects/lvm/lib/Bass/src/
LVDBE_Init.c 89 * Coef memory
214 * Set pointer to data and coef memory
  /frameworks/base/core/java/android/speech/srec/
UlawEncoderInputStream.java 78 int coef = MAX_ULAW * (1 << SCALE_BITS) / max; local
82 pcm = (pcm * coef) >> SCALE_BITS;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/
bilinearfilter_v6.asm 46 cmp r5, #128 ; if filter coef = 128, then skip the filter
158 cmp r5, #128 ; if filter coef = 128, then skip the filter
  /frameworks/base/core/java/android/widget/
OverScroller.java 612 float x, tx, coef; typedefs
615 coef = 3.0f * x * (1.0f - x);
616 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
621 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
627 coef = 3.0f * y * (1.0f - y);
628 dy = coef * ((1.0f - y) * START_TENSION + y) + y * y * y;
633 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
OverScrollerSGV.java 615 float x, tx, coef; typedefs
618 coef = 3.0f * x * (1.0f - x);
619 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
624 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
630 coef = 3.0f * y * (1.0f - y);
631 dy = coef * ((1.0f - y) * START_TENSION + y) + y * y * y;
636 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 613 float x, tx, coef; typedefs
616 coef = 3.0f * x * (1.0f - x);
617 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
622 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
628 coef = 3.0f * y * (1.0f - y);
629 dy = coef * ((1.0f - y) * START_TENSION + y) + y * y * y;
634 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
    [all...]
  /external/deqp/modules/gles2/functional/
es2fFlushFinishTests.cpp 399 const float coef = ndx == 0 ? normWaitCoef : normReadCoef;
403 const bool isOk = behavior == EXPECT_COEF_GREATER_THAN ? coef > threshold :
404 behavior == EXPECT_COEF_LESS_THAN ? coef < threshold : false;
  /external/chromium_org/pdf/
draw_utils.cc 236 double coef = 256.0 / pow(r, factor); local
256 double f = 256.0 - coef * pow(v, factor);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
entropy_coding.h 79 /* decode & dequantize LPC Coef */
88 /* quantize & code LPC Coef */
  /external/eigen/bench/btl/libs/eigen3/
eigen3_interface.hh 177 static inline void axpy(real coef, const gene_vector & X, gene_vector & Y, int N){
178 Y += coef * X;

Completed in 640 milliseconds

1 2 3 4 5 67 8 91011>>