HomeSort by relevance Sort by last modified time
    Searched defs:bw (Results 51 - 75 of 165) sorted by null

1 23 4 5 6 7

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
isacfix.c 1420 BwEstimatorstr * bw = (BwEstimatorstr*)&(ISAC_inst->bwestimator_obj); local
    [all...]
  /external/flac/libFLAC/
bitwriter.c 84 #define FLAC__TOTAL_BITS(bw) (FLAC__WORDS_TO_BITS((bw)->words) + (bw)->bits)
120 static FLAC__bool bitwriter_grow_(FLAC__BitWriter *bw, unsigned bits_to_add)
125 FLAC__ASSERT(0 != bw);
126 FLAC__ASSERT(0 != bw->buffer);
129 new_capacity = bw->words + ((bw->bits + bits_to_add + FLAC__BITS_PER_WORD - 1) / FLAC__BITS_PER_WORD);
134 if(bw->capacity >= new_capacity)
138 if((new_capacity - bw->capacity) % FLAC__BITWRITER_DEFAULT_INCREMENT
162 FLAC__BitWriter *bw = (FLAC__BitWriter*)calloc(1, sizeof(FLAC__BitWriter)); local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_pred_common.c 372 const int bw = num_8x8_blocks_wide_lookup[bsize]; local
374 const int xmis = MIN(cm->mi_cols - mi_col, bw);
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_cyclicrefresh.c 134 const int bw = num_8x8_blocks_wide_lookup[bsize]; local
136 const int xmis = MIN(cm->mi_cols - mi_col, bw);
vp9_segmentation.c 128 int bw, int bh, int mi_row, int mi_col) {
139 set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, cm->mi_rows, cm->mi_cols);
173 int bw, bh; local
179 bw = num_8x8_blocks_wide_lookup[mi_8x8[0]->mbmi.sb_type];
182 if (bw == bs && bh == bs) {
185 } else if (bw == bs && bh < bs) {
191 } else if (bw < bs && bh == bs) {
201 assert(bw < bs && bh < bs);
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_rgtc.c 53 const unsigned bw = 4, bh = 4, comps = 4; local
59 for(x = 0; x < width; x += bw) {
61 for(i = 0; i < bw; ++i) {
79 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
84 for(x = 0; x < width; x += bw) {
85 uint8_t tmp[4][4]; /* [bh][bw][comps] */
87 for(i = 0; i < bw; ++i) {
126 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
131 for(x = 0; x < width; x += bw) {
132 uint8_t tmp[4][4]; /* [bh][bw][comps] *
177 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
245 const unsigned bw = 4, bh = 4, comps = 4; local
270 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
295 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
409 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_texture.c 229 unsigned int bw, bh; local
232 _mesa_get_format_block_size(texImage->TexFormat, &bw, &bh);
235 texel_size /= bw;
  /external/mesa3d/src/mesa/main/
formats.c 1880 const GLuint bw = info->BlockWidth, bh = info->BlockHeight; local
1906 const uint64_t bw = info->BlockWidth, bh = info->BlockHeight; local
1931 const GLuint bw = info->BlockWidth; local
    [all...]
texgetimage.c 640 GLuint bw, bh; local
641 _mesa_get_format_block_size(texImage->TexFormat, &bw, &bh);
  /external/opencv/cv/src/
cvfilter.cpp 203 int bsz = buf_size, bw = x_range.end_index - x_range.start_index, bw1 = bw + ksize.width - 1; local
216 bw = bw1;
220 buf_step = cvAlign(bw*work_pix_sz, ALIGN);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_bmp.c 439 const int bw = surface->w*surface->format->BytesPerPixel; local
513 pad = ((bw%4) ? (4-(bw%4)) : 0);
516 if ( SDL_RWwrite(dst, bits, 1, bw) != bw) {
  /external/tcpdump/
print-ospf.c 285 } bw; local
354 bw.i = EXTRACT_32BITS(tptr);
355 printf(", %.3f Mbps", bw.f*8/1000000 );
359 bw.i = EXTRACT_32BITS(tptr+te_class*4);
362 bw.f*8/1000000 );
371 bw.i = EXTRACT_32BITS(tptr+4+te_class*4);
374 bw.f*8/1000000 );
391 bw.i = EXTRACT_32BITS(tptr+4+(priority_level*4));
394 bw.f*8/1000000 );
408 bw.i = EXTRACT_32BITS(tptr)
    [all...]
  /external/webp/src/enc/
alpha.c 50 VP8BitWriter* const bw,
93 VP8BitWriterAppend(bw, buffer, buffer_size);
96 return ok && !bw->error_;
104 VP8BitWriter bw; member in struct:__anon17028
108 // This function always returns an initialized 'bw' object, even upon error.
134 VP8BitWriterInit(&result->bw, expected_size);
135 VP8BitWriterAppend(&result->bw, &header, ALPHA_HEADER_LEN);
146 ok = VP8BitWriterAppend(&result->bw, alpha_src, width * height);
147 ok = ok && !result->bw.error_;
150 &result->bw, &result->stats)
    [all...]
syntax.c 187 static void PutSegmentHeader(VP8BitWriter* const bw,
191 if (VP8PutBitUniform(bw, (hdr->num_segments_ > 1))) {
195 VP8PutBitUniform(bw, hdr->update_map_);
196 if (VP8PutBitUniform(bw, update_data)) {
198 VP8PutBitUniform(bw, 1); // (segment_feature_mode = 1. Paragraph 9.3.)
200 VP8PutSignedValue(bw, enc->dqm_[s].quant_, 7);
203 VP8PutSignedValue(bw, enc->dqm_[s].fstrength_, 6);
208 if (VP8PutBitUniform(bw, (proba->segments_[s] != 255u))) {
209 VP8PutValue(bw, proba->segments_[s], 8);
217 static void PutFilterHeader(VP8BitWriter* const bw,
267 VP8BitWriter* const bw = &enc->bw_; local
313 VP8BitWriter* const bw = &enc->bw_; local
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
isacfix.c 1391 BwEstimatorstr * bw = (BwEstimatorstr*)&(ISAC_inst->bwestimator_obj); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_pred_common.c 372 const int bw = num_8x8_blocks_wide_lookup[bsize]; local
374 const int xmis = MIN(cm->mi_cols - mi_col, bw);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_aq_cyclicrefresh.c 134 const int bw = num_8x8_blocks_wide_lookup[bsize]; local
136 const int xmis = MIN(cm->mi_cols - mi_col, bw);
vp9_segmentation.c 128 int bw, int bh, int mi_row, int mi_col) {
139 set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, cm->mi_rows, cm->mi_cols);
173 int bw, bh; local
179 bw = num_8x8_blocks_wide_lookup[mi_8x8[0]->mbmi.sb_type];
182 if (bw == bs && bh == bs) {
185 } else if (bw == bs && bh < bs) {
191 } else if (bw < bs && bh == bs) {
201 assert(bw < bs && bh < bs);
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
BaseTest.java 551 BufferedWriter bw = new BufferedWriter(w); local
552 bw.write(content);
553 bw.close();
  /external/aac/libSBRdec/src/
lpp_tran.cpp 244 FIXP_SGL bw = FL2FXCONST_SGL(0.0f); local
632 bw = FX_DBL2FX_SGL(bwVector[bwIndex[patch]]);
634 a0r = FX_DBL2FX_SGL(fMult(bw,alphar[0])); /* Apply current bandwidth expansion factor */
638 a0i = FX_DBL2FX_SGL(fMult(bw,alphai[0]));
639 bw = FX_DBL2FX_SGL(fPow2(bw));
640 a1r = FX_DBL2FX_SGL(fMult(bw,alphar[1]));
642 a1i = FX_DBL2FX_SGL(fMult(bw,alphai[1]));
650 if ( bw <= FL2FXCONST_SGL(0.0f) ) {
665 else { /* bw <= 0 *
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_reconinter.c 213 int bw, int bh, int ss_x, int ss_y) {
217 const int spel_left = (VP9_INTERP_EXTEND + bw) << SUBPEL_BITS;
261 int bw, int bh,
284 const MV mv_q4 = clamp_mv_to_umv_border_sb(xd, &mv, bw, bh,
335 const int bw = 4 * num_4x4_w; local
343 build_inter_predictors(xd, plane, i++, bw, bh,
346 build_inter_predictors(xd, plane, 0, bw, bh,
347 0, 0, bw, bh, mi_x, mi_y);
370 int bw, int bh,
394 const MV mv_q4 = clamp_mv_to_umv_border_sb(xd, &mv, bw, bh
561 const int bw = 4 * num_4x4_w; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_s3tc.c 250 const unsigned bw = 4, bh = 4, comps = 4; local
254 for(x = 0; x < width; x += bw) {
256 for(i = 0; i < bw; ++i) {
393 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
397 for(x = 0; x < width; x += bw) {
398 uint8_t tmp[4][4][3]; /* [bh][bw][comps] */
400 for(i = 0; i < bw; ++i) {
418 const unsigned bw = 4, bh = 4, comps = 4, bytes_per_block = 8; local
422 for(x = 0; x < width; x += bw) {
423 uint8_t tmp[4][4][4]; /* [bh][bw][comps] *
443 const unsigned bw = 4, bh = 4, comps = 4, bytes_per_block = 16; local
468 const unsigned bw = 4, bh = 4, comps = 4, bytes_per_block = 16; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
drisw_glx.c 142 unsigned uw, uh, bw, depth; local
146 XGetGeometry(dpy, drawable, &root, x, y, &uw, &uh, &bw, &depth);
  /external/chromium_org/third_party/opus/src/tests/
test_opus_api.c 279 int bw; local
281 bw=packet[0]>>4;
282 bw=OPUS_BANDWIDTH_NARROWBAND+(((((bw&7)*9)&(63-(bw&8)))+2+12*((bw&8)!=0))>>4);
283 if(bw!=opus_packet_get_bandwidth(packet))test_failed();
    [all...]
test_opus_encode.c 248 int bw,len,out_samples,frame_size; local
275 bw=modes[j]==0?OPUS_BANDWIDTH_NARROWBAND+(fast_rand()%3):
278 if(modes[j]==2&&bw==OPUS_BANDWIDTH_MEDIUMBAND)bw+=3;
279 if(opus_encoder_ctl(enc, OPUS_SET_BANDWIDTH(bw))!=OPUS_OK)test_failed();

Completed in 1001 milliseconds

1 23 4 5 6 7