HomeSort by relevance Sort by last modified time
    Searched refs:cm (Results 1 - 25 of 707) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/vp9/common/
vp9_alloccommon.c 20 void vp9_set_mb_mi(VP9_COMMON *cm, int width, int height) {
24 cm->mi_cols = aligned_width >> MI_SIZE_LOG2;
25 cm->mi_rows = aligned_height >> MI_SIZE_LOG2;
26 cm->mi_stride = calc_mi_size(cm->mi_cols);
28 cm->mb_cols = (cm->mi_cols + 1) >> 1;
29 cm->mb_rows = (cm->mi_rows + 1) >> 1;
30 cm->MBs = cm->mb_rows * cm->mb_cols
    [all...]
vp9_alloccommon.h 23 void vp9_remove_common(struct VP9Common *cm);
25 int vp9_alloc_loop_filter(struct VP9Common *cm);
26 int vp9_alloc_context_buffers(struct VP9Common *cm, int width, int height);
27 void vp9_init_context_buffers(struct VP9Common *cm);
28 void vp9_free_context_buffers(struct VP9Common *cm);
31 void vp9_free_postproc_buffers(struct VP9Common *cm);
33 int vp9_alloc_state_buffers(struct VP9Common *cm, int width, int height);
34 void vp9_free_state_buffers(struct VP9Common *cm);
36 void vp9_set_mb_mi(struct VP9Common *cm, int width, int height);
38 void vp9_swap_current_and_last_seg_map(struct VP9Common *cm);
    [all...]
vp9_mfqe.h 25 void vp9_mfqe(struct VP9Common *cm);
vp9_tile_common.c 24 void vp9_tile_set_row(TileInfo *tile, const VP9_COMMON *cm, int row) {
25 tile->mi_row_start = get_tile_offset(row, cm->mi_rows, cm->log2_tile_rows);
26 tile->mi_row_end = get_tile_offset(row + 1, cm->mi_rows, cm->log2_tile_rows);
29 void vp9_tile_set_col(TileInfo *tile, const VP9_COMMON *cm, int col) {
30 tile->mi_col_start = get_tile_offset(col, cm->mi_cols, cm->log2_tile_cols);
31 tile->mi_col_end = get_tile_offset(col + 1, cm->mi_cols, cm->log2_tile_cols)
    [all...]
vp9_debugmodes.c 16 static void log_frame_info(VP9_COMMON *cm, const char *str, FILE *f) {
18 fprintf(f, "(Frame %d, Show:%d, Q:%d): \n", cm->current_video_frame,
19 cm->show_frame, cm->base_qindex);
25 static void print_mi_data(VP9_COMMON *cm, FILE *file, const char *descriptor,
28 MODE_INFO **mi = cm->mi_grid_visible;
29 int rows = cm->mi_rows;
30 int cols = cm->mi_cols;
33 log_frame_info(cm, descriptor, file);
46 void vp9_print_modes_and_motion_vectors(VP9_COMMON *cm, const char *file)
    [all...]
vp9_tile_common.h 26 // 'cm->log2_tile_(rows|cols)' & 'cm->mi_(rows|cols)'
27 void vp9_tile_init(TileInfo *tile, const struct VP9Common *cm, int row,
30 void vp9_tile_set_row(TileInfo *tile, const struct VP9Common *cm, int row);
31 void vp9_tile_set_col(TileInfo *tile, const struct VP9Common *cm, int col);
  /device/google/contexthub/firmware/lib/libc/
strcasecmp.c 79 const u_char *cm = charmap; local
83 while (cm[*us1] == cm[*us2++])
86 return (cm[*us1] - cm[*--us2]);
93 const u_char *cm = charmap; local
98 if (cm[*us1] != cm[*us2++])
99 return (cm[*us1] - cm[*--us2])
    [all...]
  /external/libcxx/test/libcxx/extensions/hash_map/
const_iterator.fail.cpp 16 const __gnu_cxx::hash_map<int, int> &cm = m; local
17 cm.find(1)->second = 2; // error
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/extensions/hash_map/
const_iterator.fail.cpp 16 const __gnu_cxx::hash_map<int, int> &cm = m; local
17 cm.find(1)->second = 2; // error
  /external/libvpx/libvpx/vp9/decoder/
vp9_decoder.c 51 static void vp9_dec_setup_mi(VP9_COMMON *cm) {
52 cm->mi = cm->mip + cm->mi_stride + 1;
53 cm->mi_grid_visible = cm->mi_grid_base + cm->mi_stride + 1;
54 memset(cm->mi_grid_base, 0,
55 cm->mi_stride * (cm->mi_rows + 1) * sizeof(*cm->mi_grid_base))
76 VP9_COMMON *volatile const cm = pbi ? &pbi->common : NULL; local
155 VP9_COMMON *cm = &pbi->common; local
230 VP9_COMMON *const cm = &pbi->common; local
265 VP9_COMMON *volatile const cm = &pbi->common; local
380 VP9_COMMON *const cm = &pbi->common; local
    [all...]
vp9_decodeframe.c 48 static int is_compound_reference_allowed(const VP9_COMMON *cm) {
51 if (cm->ref_frame_sign_bias[i + 1] != cm->ref_frame_sign_bias[1]) return 1;
56 static void setup_compound_reference_mode(VP9_COMMON *cm) {
57 if (cm->ref_frame_sign_bias[LAST_FRAME] ==
58 cm->ref_frame_sign_bias[GOLDEN_FRAME]) {
59 cm->comp_fixed_ref = ALTREF_FRAME;
60 cm->comp_var_ref[0] = LAST_FRAME;
61 cm->comp_var_ref[1] = GOLDEN_FRAME;
62 } else if (cm->ref_frame_sign_bias[LAST_FRAME] =
749 VP9_COMMON *const cm = &pbi->common; local
900 VP9_COMMON *const cm = &pbi->common; local
1353 VP9_COMMON *const cm = &pbi->common; local
1536 VP9_COMMON *const cm = &pbi->common; local
1679 VP9_COMMON *const cm = (VP9_COMMON *)data; local
1729 VP9_COMMON *const cm = &pbi->common; local
1925 VP9_COMMON *const cm = &pbi->common; local
2014 VP9_COMMON *const cm = &pbi->common; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
With.py 18 cm = self.ContextManager()
21 with cm: pass
22 with cm: pass
23 with cm: pass
24 with cm: pass
25 with cm: pass
26 with cm: pass
27 with cm: pass
28 with cm: pass
29 with cm: pass
    [all...]
  /external/python/cpython2/Tools/pybench/
With.py 18 cm = self.ContextManager()
21 with cm: pass
22 with cm: pass
23 with cm: pass
24 with cm: pass
25 with cm: pass
26 with cm: pass
27 with cm: pass
28 with cm: pass
29 with cm: pas
    [all...]
  /external/python/cpython3/Tools/pybench/
With.py 17 cm = self.ContextManager()
20 with cm: pass
21 with cm: pass
22 with cm: pass
23 with cm: pass
24 with cm: pass
25 with cm: pass
26 with cm: pass
27 with cm: pass
28 with cm: pas
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/string/
strcasecmp.c 79 const u_char *cm = charmap; local
83 while (cm[*us1] == cm[*us2++])
86 return (cm[*us1] - cm[*--us2]);
94 const u_char *cm = charmap; local
99 if (cm[*us1] != cm[*us2++])
100 return (cm[*us1] - cm[*--us2])
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
segmentation.c 14 void vp8_update_gf_useage_maps(VP8_COMP *cpi, VP8_COMMON *cm, MACROBLOCK *x) {
17 MODE_INFO *this_mb_mode_info = cm->mi;
21 if ((cm->frame_type == KEY_FRAME) || (cm->refresh_golden_frame)) {
23 memset(cpi->gf_active_flags, 1, (cm->mb_rows * cm->mb_cols));
24 cpi->gf_active_count = cm->mb_rows * cm->mb_cols;
27 for (mb_row = 0; mb_row < cm->mb_rows; ++mb_row) {
29 for (mb_col = 0; mb_col < cm->mb_cols; ++mb_col)
    [all...]
picklpf.c 132 VP8_COMMON *cm = &cpi->common; local
136 int min_filter_level = get_min_filter_level(cpi, cm->base_qindex);
137 int max_filter_level = get_max_filter_level(cpi, cm->base_qindex);
140 YV12_BUFFER_CONFIG *saved_frame = cm->frame_to_show;
143 cm->frame_to_show = &cpi->pick_lf_lvl_frame;
145 if (cm->frame_type == KEY_FRAME) {
146 cm->sharpness_level = 0;
148 cm->sharpness_level = cpi->oxcf.Sharpness;
151 if (cm->sharpness_level != cm->last_sharpness_level)
258 VP8_COMMON *cm = &cpi->common; local
    [all...]
segmentation.h 22 extern void vp8_update_gf_useage_maps(VP8_COMP *cpi, VP8_COMMON *cm,
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_360.c 40 VP9_COMMON *cm = &cpi->common; local
41 struct segmentation *seg = &cm->seg;
44 if (frame_is_intra_only(cm) || cpi->force_update_segmentation ||
45 cm->error_resilient_mode) {
55 vp9_compute_qdelta_by_rate(&cpi->rc, cm->frame_type, cm->base_qindex,
56 rate_ratio[i], cm->bit_depth);
62 if ((cm->base_qindex != 0) && ((cm->base_qindex + qindex_delta) == 0)) {
63 qindex_delta = -cm->base_qindex + 1
    [all...]
vp9_aq_complexity.c 48 VP9_COMMON *const cm = &cpi->common; local
49 struct segmentation *const seg = &cm->seg;
54 if (frame_is_intra_only(cm) || cm->error_resilient_mode ||
58 const int aq_strength = get_aq_c_strength(cm->base_qindex, cm->bit_depth);
61 memset(cpi->segmentation_map, DEFAULT_AQ2_SEG, cm->mi_rows * cm->mi_cols);
87 &cpi->rc, cm->frame_type, cm->base_qindex
112 VP9_COMMON *const cm = &cpi->common; local
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
onyxd_if.c 43 extern void vp8_init_loop_filter(VP8_COMMON *cm);
44 static int get_free_fb(VP8_COMMON *cm);
125 VP8_COMMON *cm = &pbi->common; local
129 ref_fb_idx = cm->lst_fb_idx;
131 ref_fb_idx = cm->gld_fb_idx;
133 ref_fb_idx = cm->alt_fb_idx;
140 if (cm->yv12_fb[ref_fb_idx].y_height != sd->y_height ||
141 cm->yv12_fb[ref_fb_idx].y_width != sd->y_width ||
142 cm->yv12_fb[ref_fb_idx].uv_height != sd->uv_height ||
143 cm->yv12_fb[ref_fb_idx].uv_width != sd->uv_width)
155 VP8_COMMON *cm = &pbi->common; local
272 VP8_COMMON *cm = &pbi->common; local
306 VP8_COMMON *cm = &pbi->common; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/acm2/
codec_manager_unittest.cc 49 CodecManager cm; local
51 EXPECT_FALSE(cm.GetStackParams()->use_codec_fec);
52 cm.GetStackParams()->speech_encoder = enc0.get();
53 EXPECT_TRUE(rac.RentEncoderStack(cm.GetStackParams()));
54 EXPECT_FALSE(cm.GetStackParams()->use_codec_fec);
56 EXPECT_EQ(true, cm.SetCodecFEC(true));
57 EXPECT_TRUE(rac.RentEncoderStack(cm.GetStackParams()));
58 EXPECT_TRUE(cm.GetStackParams()->use_codec_fec);
59 cm.GetStackParams()->speech_encoder = enc1.get();
60 EXPECT_TRUE(rac.RentEncoderStack(cm.GetStackParams()))
    [all...]
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/serialization/
MarshalFloat.java 51 public void register(SoapSerializationEnvelope cm) {
52 cm.addMapping(cm.xsd, "float", Float.class, this);
53 cm.addMapping(cm.xsd, "double", Double.class, this);
54 cm.addMapping(cm.xsd, "decimal", java.math.BigDecimal.class, this);
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
DM.java 72 public void register(SoapSerializationEnvelope cm) {
73 cm.addMapping(cm.xsd, "int", PropertyInfo.INTEGER_CLASS, this);
74 cm.addMapping(cm.xsd, "long", PropertyInfo.LONG_CLASS, this);
75 cm.addMapping(cm.xsd, "string", PropertyInfo.STRING_CLASS, this);
76 cm.addMapping(cm.xsd, "boolean", PropertyInfo.BOOLEAN_CLASS, this);
  /external/libvpx/libvpx/vp8/common/
alloccommon.c 130 void vp8_setup_version(VP8_COMMON *cm) {
131 switch (cm->version) {
133 cm->no_lpf = 0;
134 cm->filter_type = NORMAL_LOOPFILTER;
135 cm->use_bilinear_mc_filter = 0;
136 cm->full_pixel = 0;
139 cm->no_lpf = 0;
140 cm->filter_type = SIMPLE_LOOPFILTER;
141 cm->use_bilinear_mc_filter = 1;
142 cm->full_pixel = 0
    [all...]

Completed in 419 milliseconds

1 2 3 4 5 6 7 8 91011>>