Searched defs:cpi (Results 26 - 50 of 97) sorted by relevance

1234

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dpicklpf.c99 static int get_min_filter_level(VP8_COMP *cpi, int base_qindex) argument
103 if (cpi->source_alt_ref_active && cpi->common.refresh_golden_frame &&
104 !cpi->common.refresh_alt_ref_frame)
120 static int get_max_filter_level(VP8_COMP *cpi, int base_qindex) argument
130 if (cpi->twopass.section_intra_rating > 8)
136 void vp8cx_pick_filter_level_fast(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi) argument
138 VP8_COMMON *cm = &cpi->common;
142 int min_filter_level = get_min_filter_level(cpi, cm->base_qindex);
143 int max_filter_level = get_max_filter_level(cpi, c
255 vp8cx_set_alt_lf_level(VP8_COMP *cpi, int filt_val) argument
266 vp8cx_pick_filter_level(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi) argument
[all...]
H A Dquantize.c267 void vp8cx_init_quantizer(VP8_COMP *cpi) argument
279 quant_val = vp8_dc_quant(Q, cpi->common.y1dc_delta_q);
280 cpi->Y1quant_fast[Q][0] = (1 << 16) / quant_val;
281 invert_quant(cpi->sf.improved_quant, cpi->Y1quant[Q] + 0,
282 cpi->Y1quant_shift[Q] + 0, quant_val);
283 cpi->Y1zbin[Q][0] = ((qzbin_factors[Q] * quant_val) + 64) >> 7;
284 cpi->Y1round[Q][0] = (qrounding_factors[Q] * quant_val) >> 7;
285 cpi->common.Y1dequant[Q][0] = quant_val;
286 cpi
381 vp8cx_mb_init_quantizer(VP8_COMP *cpi, MACROBLOCK *x, int ok_to_skip) argument
513 vp8_update_zbin_extra(VP8_COMP *cpi, MACROBLOCK *x) argument
539 vp8cx_frame_init_quantizer(VP8_COMP *cpi) argument
549 vp8_set_quantizer(struct VP8_COMP *cpi, int Q) argument
[all...]
H A Dtokenize.c26 void vp8_stuff_mb(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t) ;
107 VP8_COMP *cpi
132 t->context_tree = cpi->common.fc.coef_probs [1] [0] [pt];
147 t->context_tree = cpi->common.fc.coef_probs [1] [0] [pt];
164 t->context_tree = cpi->common.fc.coef_probs [1] [band] [pt];
177 t->context_tree = cpi->common.fc.coef_probs [1] [band] [pt];
196 VP8_COMP *cpi
231 t->context_tree = cpi->common.fc.coef_probs [type] [c] [pt];
247 t->context_tree = cpi->common.fc.coef_probs [type] [c] [pt];
265 t->context_tree = cpi
383 vp8_tokenize_mb(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t) argument
494 stuff2nd_order_b( TOKENEXTRA **tp, ENTROPY_CONTEXT *a, ENTROPY_CONTEXT *l, VP8_COMP *cpi, MACROBLOCK *x ) argument
518 stuff1st_order_b( TOKENEXTRA **tp, ENTROPY_CONTEXT *a, ENTROPY_CONTEXT *l, int type, VP8_COMP *cpi, MACROBLOCK *x ) argument
544 stuff1st_order_buv( TOKENEXTRA **tp, ENTROPY_CONTEXT *a, ENTROPY_CONTEXT *l, VP8_COMP *cpi, MACROBLOCK *x ) argument
567 vp8_stuff_mb(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t) argument
[all...]
H A Dratectrl.c216 void vp8_save_coding_context(VP8_COMP *cpi) argument
218 CODING_CONTEXT *const cc = & cpi->coding_context;
226 cc->frames_since_key = cpi->frames_since_key;
227 cc->filter_level = cpi->common.filter_level;
228 cc->frames_till_gf_update_due = cpi->frames_till_gf_update_due;
229 cc->frames_since_golden = cpi->frames_since_golden;
231 vp8_copy(cc->mvc, cpi->common.fc.mvc);
232 vp8_copy(cc->mvcosts, cpi->rd_costs.mvcosts);
234 vp8_copy(cc->ymode_prob, cpi->common.fc.ymode_prob);
235 vp8_copy(cc->uv_mode_prob, cpi
255 vp8_restore_coding_context(VP8_COMP *cpi) argument
293 vp8_setup_key_frame(VP8_COMP *cpi) argument
341 calc_iframe_target_size(VP8_COMP *cpi) argument
440 calc_gf_params(VP8_COMP *cpi) argument
606 calc_pframe_target_size(VP8_COMP *cpi) argument
1101 vp8_update_rate_correction_factors(VP8_COMP *cpi, int damp_var) argument
1208 vp8_regulate_q(VP8_COMP *cpi, int target_bits_per_frame) argument
1353 estimate_keyframe_frequency(VP8_COMP *cpi) argument
1410 vp8_adjust_key_frame_context(VP8_COMP *cpi) argument
1448 vp8_compute_frame_size_bounds(VP8_COMP *cpi, int *frame_under_shoot_limit, int *frame_over_shoot_limit) argument
1537 vp8_pick_frame_size(VP8_COMP *cpi) argument
[all...]
H A Dtemporal_filter.c141 VP8_COMP *cpi,
148 MACROBLOCK *x = &cpi->mb;
180 if (cpi->Speed < 8)
182 step_param = cpi->sf.first_step + (cpi->Speed > 5);
186 step_param = cpi->sf.first_step + 2;
193 &cpi->fn_ptr[BLOCK_16X16],
202 bestsme = cpi->find_fractional_mv_step(x, b, d,
206 &cpi->fn_ptr[BLOCK_16X16],
225 VP8_COMP *cpi,
139 vp8_temporal_filter_find_matching_mb_c( VP8_COMP *cpi, YV12_BUFFER_CONFIG *arf_frame, YV12_BUFFER_CONFIG *frame_ptr, int mb_offset, int error_thresh ) argument
223 vp8_temporal_filter_iterate_c( VP8_COMP *cpi, int frame_count, int alt_ref_index, int strength ) argument
428 vp8_temporal_filter_prepare_c( VP8_COMP *cpi, int distance ) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_aq_cyclicrefresh.c127 void vp9_cyclic_refresh_update_segment(VP9_COMP *const cpi, argument
131 const VP9_COMMON *const cm = &cpi->common;
132 CYCLIC_REFRESH *const cr = cpi->cyclic_refresh;
138 const int refresh_this_block = cpi->mb.in_static_area ||
169 cpi->segmentation_map[block_index + y * cm->mi_cols + x] =
179 void vp9_cyclic_refresh_setup(VP9_COMP *const cpi) { argument
180 VP9_COMMON *const cm = &cpi->common;
181 const RATE_CONTROL *const rc = &cpi->rc;
182 CYCLIC_REFRESH *const cr = cpi->cyclic_refresh;
184 unsigned char *const seg_map = cpi
[all...]
H A Dvp9_svc_layercontext.c17 void vp9_init_layer_context(VP9_COMP *const cpi) { argument
18 SVC *const svc = &cpi->svc;
19 const VP9EncoderConfig *const oxcf = &cpi->oxcf;
27 if (svc->number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) {
55 if (svc->number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) {
80 if (!(svc->number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR)
86 void vp9_update_layer_context_change_config(VP9_COMP *const cpi, argument
88 SVC *const svc = &cpi->svc;
89 const VP9EncoderConfig *const oxcf = &cpi->oxcf;
90 const RATE_CONTROL *const rc = &cpi
134 get_layer_context(VP9_COMP *const cpi) argument
140 vp9_update_temporal_layer_framerate(VP9_COMP *const cpi) argument
163 vp9_update_spatial_layer_framerate(VP9_COMP *const cpi, double framerate) argument
177 vp9_restore_layer_context(VP9_COMP *const cpi) argument
194 vp9_save_layer_context(VP9_COMP *const cpi) argument
204 vp9_init_second_pass_spatial_svc(VP9_COMP *cpi) argument
220 vp9_inc_frame_in_layer(VP9_COMP *const cpi) argument
229 vp9_is_upper_layer_key_frame(const VP9_COMP *const cpi) argument
255 vp9_svc_start_frame(VP9_COMP *const cpi) argument
328 vp9_svc_lookahead_pop(VP9_COMP *const cpi, struct lookahead_ctx *ctx, int drain) argument
[all...]
H A Dvp9_encodemv.c202 void vp9_encode_mv(VP9_COMP* cpi, vp9_writer* w, argument
219 if (cpi->sf.mv.auto_mv_step_size) {
221 cpi->max_mv_magnitude = MAX(maxv, cpi->max_mv_magnitude);
H A Dvp9_mbgraph.c22 static unsigned int do_16x16_motion_iteration(VP9_COMP *cpi, argument
27 MACROBLOCK *const x = &cpi->mb;
29 const MV_SPEED_FEATURES *const mv_sf = &cpi->sf.mv;
30 const vp9_variance_fn_ptr_t v_fn_ptr = cpi->fn_ptr[BLOCK_16X16];
48 /*cpi->sf.search_method == HEX*/
50 cond_sad_list(cpi, sad_list),
58 cpi->find_fractional_mv_step(
59 x, dst_mv, ref_mv, cpi->common.allow_high_precision_mv, x->errorperbit,
61 cond_sad_list(cpi, sad_list),
81 static int do_16x16_motion_search(VP9_COMP *cpi, cons argument
119 do_16x16_zerozero_search(VP9_COMP *cpi, int_mv *dst_mv) argument
133 find_best_16x16_intra(VP9_COMP *cpi, PREDICTION_MODE *pbest_mode) argument
165 update_mbgraph_mb_stats( VP9_COMP *cpi, MBGRAPH_MB_STATS *stats, YV12_BUFFER_CONFIG *buf, int mb_y_offset, YV12_BUFFER_CONFIG *golden_ref, const MV *prev_golden_ref_mv, YV12_BUFFER_CONFIG *alt_ref, int mb_row, int mb_col ) argument
227 update_mbgraph_frame_stats(VP9_COMP *cpi, MBGRAPH_FRAME_STATS *stats, YV12_BUFFER_CONFIG *buf, YV12_BUFFER_CONFIG *golden_ref, YV12_BUFFER_CONFIG *alt_ref) argument
296 separate_arf_mbs(VP9_COMP *cpi) argument
374 vp9_update_mbgraph_stats(VP9_COMP *cpi) argument
[all...]
H A Dvp9_quantize.c571 void vp9_init_quantizer(VP9_COMP *cpi) { argument
572 VP9_COMMON *const cm = &cpi->common;
573 QUANTS *const quants = &cpi->quants;
627 void vp9_init_plane_quantizers(VP9_COMP *cpi, MACROBLOCK *x) { argument
628 const VP9_COMMON *const cm = &cpi->common;
630 QUANTS *const quants = &cpi->quants;
633 const int rdmult = vp9_compute_rd_mult(cpi, qindex + cm->y_dc_delta_q);
634 const int zbin = cpi->zbin_mode_boost;
673 vp9_initialize_me_consts(cpi, x->q_index);
676 void vp9_update_zbin_extra(VP9_COMP *cpi, MACROBLOC argument
688 vp9_frame_init_quantizer(VP9_COMP *cpi) argument
[all...]
/external/e2fsprogs/intl/
H A Drelocatable.c225 const char *cpi = cp; local
227 while (rpi > rel_installdir && cpi > cp_base)
230 cpi--;
231 if (ISSLASH (*rpi) || ISSLASH (*cpi))
233 if (ISSLASH (*rpi) && ISSLASH (*cpi))
240 != (*cpi >= 'a' && *cpi <= 'z' ? *cpi - 'a' + 'A' : *cpi))
243 if (*rpi != *cpi)
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dencodemv.c357 void vp8_write_mvprobs(VP8_COMP *cpi) argument
359 vp8_writer *const w = cpi->bc;
360 MV_CONTEXT *mvc = cpi->common.fc.mvc;
367 cpi->mb.MVcount[0], 0, &flags[0]
371 cpi->mb.MVcount[1], 1, &flags[1]
375 vp8_build_component_cost_table(cpi->mb.mvcost, (const MV_CONTEXT *) cpi->common.fc.mvc, flags);
H A Dethreading.c20 extern void vp8cx_mb_init_quantizer(VP8_COMP *cpi, MACROBLOCK *x, int ok_to_skip);
22 extern void vp8_loopfilter_frame(VP8_COMP *cpi, VP8_COMMON *cm);
26 VP8_COMP *cpi = (VP8_COMP *)(((LPFTHREAD_DATA *)p_data)->ptr1); local
27 VP8_COMMON *cm = &cpi->common;
31 if (cpi->b_multi_threaded == 0)
34 if (sem_wait(&cpi->h_event_start_lpf) == 0)
36 if (cpi->b_multi_threaded == 0) /* we're shutting down */
39 vp8_loopfilter_frame(cpi, cm);
41 sem_post(&cpi->h_event_end_lpf);
52 VP8_COMP *cpi local
435 vp8cx_init_mbrthread_data(VP8_COMP *cpi, MACROBLOCK *x, MB_ROW_COMP *mbr_ei, int count ) argument
497 vp8cx_create_encoder_threads(VP8_COMP *cpi) argument
623 vp8cx_remove_encoder_threads(VP8_COMP *cpi) argument
[all...]
H A Dpicklpf.c99 static int get_min_filter_level(VP8_COMP *cpi, int base_qindex) argument
103 if (cpi->source_alt_ref_active && cpi->common.refresh_golden_frame &&
104 !cpi->common.refresh_alt_ref_frame)
120 static int get_max_filter_level(VP8_COMP *cpi, int base_qindex) argument
130 if (cpi->twopass.section_intra_rating > 8)
136 void vp8cx_pick_filter_level_fast(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi) argument
138 VP8_COMMON *cm = &cpi->common;
142 int min_filter_level = get_min_filter_level(cpi, cm->base_qindex);
143 int max_filter_level = get_max_filter_level(cpi, c
255 vp8cx_set_alt_lf_level(VP8_COMP *cpi, int filt_val) argument
266 vp8cx_pick_filter_level(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi) argument
[all...]
H A Dtokenize.c26 void vp8_stuff_mb(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t) ;
107 VP8_COMP *cpi
132 t->context_tree = cpi->common.fc.coef_probs [1] [0] [pt];
147 t->context_tree = cpi->common.fc.coef_probs [1] [0] [pt];
164 t->context_tree = cpi->common.fc.coef_probs [1] [band] [pt];
177 t->context_tree = cpi->common.fc.coef_probs [1] [band] [pt];
196 VP8_COMP *cpi
231 t->context_tree = cpi->common.fc.coef_probs [type] [c] [pt];
247 t->context_tree = cpi->common.fc.coef_probs [type] [c] [pt];
265 t->context_tree = cpi
383 vp8_tokenize_mb(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t) argument
494 stuff2nd_order_b( TOKENEXTRA **tp, ENTROPY_CONTEXT *a, ENTROPY_CONTEXT *l, VP8_COMP *cpi, MACROBLOCK *x ) argument
518 stuff1st_order_b( TOKENEXTRA **tp, ENTROPY_CONTEXT *a, ENTROPY_CONTEXT *l, int type, VP8_COMP *cpi, MACROBLOCK *x ) argument
544 stuff1st_order_buv( TOKENEXTRA **tp, ENTROPY_CONTEXT *a, ENTROPY_CONTEXT *l, VP8_COMP *cpi, MACROBLOCK *x ) argument
567 vp8_stuff_mb(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t) argument
[all...]
H A Dquantize.c434 void vp8cx_init_quantizer(VP8_COMP *cpi) argument
446 quant_val = vp8_dc_quant(Q, cpi->common.y1dc_delta_q);
447 cpi->Y1quant_fast[Q][0] = (1 << 16) / quant_val;
448 invert_quant(cpi->sf.improved_quant, cpi->Y1quant[Q] + 0,
449 cpi->Y1quant_shift[Q] + 0, quant_val);
450 cpi->Y1zbin[Q][0] = ((qzbin_factors[Q] * quant_val) + 64) >> 7;
451 cpi->Y1round[Q][0] = (qrounding_factors[Q] * quant_val) >> 7;
452 cpi->common.Y1dequant[Q][0] = quant_val;
453 cpi
530 vp8cx_init_quantizer(VP8_COMP *cpi) argument
610 vp8cx_mb_init_quantizer(VP8_COMP *cpi, MACROBLOCK *x, int ok_to_skip) argument
742 vp8_update_zbin_extra(VP8_COMP *cpi, MACROBLOCK *x) argument
768 vp8cx_frame_init_quantizer(VP8_COMP *cpi) argument
778 vp8_set_quantizer(struct VP8_COMP *cpi, int Q) argument
[all...]
H A Dratectrl.c216 void vp8_save_coding_context(VP8_COMP *cpi) argument
218 CODING_CONTEXT *const cc = & cpi->coding_context;
226 cc->frames_since_key = cpi->frames_since_key;
227 cc->filter_level = cpi->common.filter_level;
228 cc->frames_till_gf_update_due = cpi->frames_till_gf_update_due;
229 cc->frames_since_golden = cpi->frames_since_golden;
231 vp8_copy(cc->mvc, cpi->common.fc.mvc);
232 vp8_copy(cc->mvcosts, cpi->rd_costs.mvcosts);
234 vp8_copy(cc->ymode_prob, cpi->common.fc.ymode_prob);
235 vp8_copy(cc->uv_mode_prob, cpi
255 vp8_restore_coding_context(VP8_COMP *cpi) argument
293 vp8_setup_key_frame(VP8_COMP *cpi) argument
341 calc_iframe_target_size(VP8_COMP *cpi) argument
440 calc_gf_params(VP8_COMP *cpi) argument
606 calc_pframe_target_size(VP8_COMP *cpi) argument
1101 vp8_update_rate_correction_factors(VP8_COMP *cpi, int damp_var) argument
1208 vp8_regulate_q(VP8_COMP *cpi, int target_bits_per_frame) argument
1353 estimate_keyframe_frequency(VP8_COMP *cpi) argument
1410 vp8_adjust_key_frame_context(VP8_COMP *cpi) argument
1448 vp8_compute_frame_size_bounds(VP8_COMP *cpi, int *frame_under_shoot_limit, int *frame_over_shoot_limit) argument
1537 vp8_pick_frame_size(VP8_COMP *cpi) argument
[all...]
H A Dtemporal_filter.c140 VP8_COMP *cpi,
147 MACROBLOCK *x = &cpi->mb;
179 if (cpi->Speed < 8)
181 step_param = cpi->sf.first_step + (cpi->Speed > 5);
185 step_param = cpi->sf.first_step + 2;
192 &cpi->fn_ptr[BLOCK_16X16],
201 bestsme = cpi->find_fractional_mv_step(x, b, d,
205 &cpi->fn_ptr[BLOCK_16X16],
224 VP8_COMP *cpi,
138 vp8_temporal_filter_find_matching_mb_c( VP8_COMP *cpi, YV12_BUFFER_CONFIG *arf_frame, YV12_BUFFER_CONFIG *frame_ptr, int mb_offset, int error_thresh ) argument
222 vp8_temporal_filter_iterate_c( VP8_COMP *cpi, int frame_count, int alt_ref_index, int strength ) argument
427 vp8_temporal_filter_prepare_c( VP8_COMP *cpi, int distance ) argument
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_aq_cyclicrefresh.c128 void vp9_cyclic_refresh_update_segment(VP9_COMP *const cpi, argument
132 const VP9_COMMON *const cm = &cpi->common;
133 CYCLIC_REFRESH *const cr = cpi->cyclic_refresh;
169 cpi->segmentation_map[block_index + y * cm->mi_cols + x] =
179 void vp9_cyclic_refresh_setup(VP9_COMP *const cpi) { argument
180 VP9_COMMON *const cm = &cpi->common;
181 const RATE_CONTROL *const rc = &cpi->rc;
182 CYCLIC_REFRESH *const cr = cpi->cyclic_refresh;
184 unsigned char *const seg_map = cpi->segmentation_map;
189 (cpi
[all...]
H A Dvp9_pickmode.c29 static void full_pixel_motion_search(VP9_COMP *cpi, MACROBLOCK *x, argument
48 const YV12_BUFFER_CONFIG *scaled_ref_frame = vp9_get_scaled_ref_frame(cpi,
67 for (i = LAST_FRAME; i <= LAST_FRAME && cpi->common.show_frame; ++i) {
88 if (cpi->sf.search_method == FAST_DIAMOND) {
91 &cpi->fn_ptr[bsize], 1,
93 } else if (cpi->sf.search_method == FAST_HEX) {
96 &cpi->fn_ptr[bsize], 1,
98 } else if (cpi->sf.search_method == HEX) {
101 &cpi->fn_ptr[bsize], 1,
103 } else if (cpi
139 sub_pixel_motion_search(VP9_COMP *cpi, MACROBLOCK *x, const TileInfo *const tile, BLOCK_SIZE bsize, int mi_row, int mi_col, MV *tmp_mv) argument
181 model_rd_for_sb_y(VP9_COMP *cpi, BLOCK_SIZE bsize, MACROBLOCK *x, MACROBLOCKD *xd, int *out_rate_sum, int64_t *out_dist_sum) argument
205 vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x, const TileInfo *const tile, int mi_row, int mi_col, int *returnrate, int64_t *returndistortion, BLOCK_SIZE bsize) argument
[all...]
H A Dvp9_quantize.c154 void vp9_init_quantizer(VP9_COMP *cpi) { argument
155 VP9_COMMON *const cm = &cpi->common;
156 QUANTS *const quants = &cpi->quants;
216 void vp9_init_plane_quantizers(VP9_COMP *cpi, MACROBLOCK *x) { argument
217 const VP9_COMMON *const cm = &cpi->common;
219 QUANTS *const quants = &cpi->quants;
222 const int rdmult = vp9_compute_rd_mult(cpi, qindex + cm->y_dc_delta_q);
223 const int zbin = cpi->zbin_mode_boost + x->act_zbin_adj;
245 x->plane[3].quant = cpi->a_quant[qindex];
246 x->plane[3].quant_shift = cpi
262 vp9_update_zbin_extra(VP9_COMP *cpi, MACROBLOCK *x) argument
274 vp9_frame_init_quantizer(VP9_COMP *cpi) argument
[all...]
H A Dvp9_segmentation.c32 void vp9_set_segmentation_map(VP9_COMP *cpi, unsigned char *segmentation_map) { argument
33 struct segmentation *const seg = &cpi->common.seg;
36 vpx_memcpy(cpi->segmentation_map, segmentation_map,
37 (cpi->common.mi_rows * cpi->common.mi_cols));
52 // vpx_memcpy(cpi->mb.e_mbd.segment_feature_mask, 0,
53 // sizeof(cpi->mb.e_mbd.segment_feature_mask));
123 static void count_segs(VP9_COMP *cpi, const TileInfo *const tile, argument
129 VP9_COMMON *const cm = &cpi->common;
130 MACROBLOCKD *const xd = &cpi
164 count_segs_sb(VP9_COMP *cpi, const TileInfo *const tile, MODE_INFO **mi_8x8, int *no_pred_segcounts, int (*temporal_predictor_count)[2], int *t_unpred_seg_counts, int mi_row, int mi_col, BLOCK_SIZE bsize) argument
215 vp9_choose_segmap_coding_method(VP9_COMP *cpi) argument
[all...]
H A Dvp9_encodemv.c202 void vp9_encode_mv(VP9_COMP* cpi, vp9_writer* w, argument
219 if (!cpi->dummy_packing && cpi->sf.auto_mv_step_size) {
221 cpi->max_mv_magnitude = MAX(maxv, cpi->max_mv_magnitude);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddcfmapts.cpp399 CurrencyPluralInfo *cpi = new CurrencyPluralInfo(status); local
404 CurrencyPluralInfo cpi1 = *cpi;
406 if(cpi->getDynamicClassID() != CurrencyPluralInfo::getStaticClassID()){
410 cpi->setCurrencyPluralPattern("","",status);
415 cpi->setLocale(Locale::getCanada(), status);
420 cpi->setPluralRules("",status);
430 df->adoptCurrencyPluralInfo(cpi);
/external/icu/icu4c/source/test/intltest/
H A Ddcfmapts.cpp405 CurrencyPluralInfo *cpi = new CurrencyPluralInfo(status); local
410 CurrencyPluralInfo cpi1 = *cpi;
412 if(cpi->getDynamicClassID() != CurrencyPluralInfo::getStaticClassID()){
416 cpi->setCurrencyPluralPattern("","",status);
421 cpi->setLocale(Locale::getCanada(), status);
426 cpi->setPluralRules("",status);
436 df->adoptCurrencyPluralInfo(cpi);

Completed in 283 milliseconds

1234