HomeSort by relevance Sort by last modified time
    Searched refs:cm (Results 1 - 25 of 590) 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...]
  /external/libaom/libaom/av1/common/
alloccommon.h 24 void av1_remove_common(struct AV1Common *cm);
26 int av1_alloc_above_context_buffers(struct AV1Common *cm,
28 void av1_free_above_context_buffers(struct AV1Common *cm,
30 int av1_alloc_context_buffers(struct AV1Common *cm, int width, int height);
31 void av1_init_context_buffers(struct AV1Common *cm);
32 void av1_free_context_buffers(struct AV1Common *cm);
35 void av1_alloc_restoration_buffers(struct AV1Common *cm);
36 void av1_free_restoration_buffers(struct AV1Common *cm);
38 int av1_alloc_state_buffers(struct AV1Common *cm, int width, int height);
39 void av1_free_state_buffers(struct AV1Common *cm);
    [all...]
alloccommon.c 35 static int alloc_loop_filter_mask(AV1_COMMON *cm) {
36 aom_free(cm->lf.lfm);
37 cm->lf.lfm = NULL;
43 cm->lf.lfm_stride = (cm->mi_cols + (MI_SIZE_64X64 - 1)) >> MIN_MIB_SIZE_LOG2;
44 cm->lf.lfm_num = ((cm->mi_rows + (MI_SIZE_64X64 - 1)) >> MIN_MIB_SIZE_LOG2) *
45 cm->lf.lfm_stride;
46 cm->lf.lfm =
47 (LoopFilterMask *)aom_calloc(cm->lf.lfm_num, sizeof(*cm->lf.lfm))
    [all...]
tile_common.c 17 void av1_tile_init(TileInfo *tile, const AV1_COMMON *cm, int row, int col) {
18 av1_tile_set_row(tile, cm, row);
19 av1_tile_set_col(tile, cm, col);
30 void av1_get_tile_limits(AV1_COMMON *const cm) {
31 int mi_cols = ALIGN_POWER_OF_TWO(cm->mi_cols, cm->seq_params.mib_size_log2);
32 int mi_rows = ALIGN_POWER_OF_TWO(cm->mi_rows, cm->seq_params.mib_size_log2);
33 int sb_cols = mi_cols >> cm->seq_params.mib_size_log2;
34 int sb_rows = mi_rows >> cm->seq_params.mib_size_log2
    [all...]
tile_common.h 33 // 'cm->log2_tile_(rows|cols)' & 'cm->mi_(rows|cols)'
34 void av1_tile_init(TileInfo *tile, const struct AV1Common *cm, int row,
37 void av1_tile_set_row(TileInfo *tile, const struct AV1Common *cm, int row);
38 void av1_tile_set_col(TileInfo *tile, const struct AV1Common *cm, int col);
40 int av1_get_sb_rows_in_tile(struct AV1Common *cm, TileInfo tile);
41 int av1_get_sb_cols_in_tile(struct AV1Common *cm, TileInfo tile);
49 const struct AV1Common *cm, int is_uv);
57 void av1_get_uniform_tile_size(const struct AV1Common *cm, int *w, int *h);
58 void av1_get_tile_limits(struct AV1Common *const cm);
    [all...]
debugmodes.c 18 static void log_frame_info(AV1_COMMON *cm, const char *str, FILE *f) {
20 fprintf(f, "(Frame %d, Show:%d, Q:%d): \n", cm->current_frame.frame_number,
21 cm->show_frame, cm->base_qindex);
27 static void print_mi_data(AV1_COMMON *cm, FILE *file, const char *descriptor,
30 MB_MODE_INFO **mi = cm->mi_grid_visible;
31 int rows = cm->mi_rows;
32 int cols = cm->mi_cols;
35 log_frame_info(cm, descriptor, file);
43 mi += cm->mi_stride - cols
    [all...]
  /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/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))
114 VP9_COMMON *volatile const cm = pbi ? &pbi->common : NULL; local
197 VP9_COMMON *cm = &pbi->common; local
272 VP9_COMMON *const cm = &pbi->common; local
307 VP9_COMMON *volatile const cm = &pbi->common; local
345 VP9_COMMON *volatile const cm = &pbi->common; local
432 VP9_COMMON *const cm = &pbi->common; local
    [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
  /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...]
  /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...]
  /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...]
  /external/libvpx/libvpx/vp8/decoder/
onyxd_if.c 44 extern void vp8_init_loop_filter(VP8_COMMON *cm);
45 static int get_free_fb(VP8_COMMON *cm);
126 VP8_COMMON *cm = &pbi->common; local
130 ref_fb_idx = cm->lst_fb_idx;
132 ref_fb_idx = cm->gld_fb_idx;
134 ref_fb_idx = cm->alt_fb_idx;
141 if (cm->yv12_fb[ref_fb_idx].y_height != sd->y_height ||
142 cm->yv12_fb[ref_fb_idx].y_width != sd->y_width ||
143 cm->yv12_fb[ref_fb_idx].uv_height != sd->uv_height ||
144 cm->yv12_fb[ref_fb_idx].uv_width != sd->uv_width)
156 VP8_COMMON *cm = &pbi->common; local
273 VP8_COMMON *cm = &pbi->common; local
307 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/libaom/libaom/av1/encoder/
aq_complexity.c 49 AV1_COMMON *const cm = &cpi->common; local
50 struct segmentation *const seg = &cm->seg;
52 cm->prev_frame && (cm->width != cm->prev_frame->width ||
53 cm->height != cm->prev_frame->height);
59 memset(cpi->segmentation_map, 0, cm->mi_rows * cm->mi_cols);
65 if (frame_is_intra_only(cm) || cm->error_resilient_mode |
121 const AV1_COMMON *const cm = &cpi->common; local
    [all...]
  /external/libaom/libaom/av1/decoder/
decoder.c 48 static void dec_setup_mi(AV1_COMMON *cm) {
49 cm->mi = cm->mip;
50 cm->mi_grid_visible = cm->mi_grid_base;
51 memset(cm->mi_grid_base, 0,
52 cm->mi_stride * cm->mi_rows * sizeof(*cm->mi_grid_base));
55 static int av1_dec_alloc_mi(AV1_COMMON *cm, int mi_size)
78 AV1_COMMON *volatile const cm = &pbi->common; local
238 AV1_COMMON *cm = &pbi->common; local
323 AV1_COMMON *const cm = &pbi->common; local
350 AV1_COMMON *const cm = &pbi->common; local
437 AV1_COMMON *volatile const cm = &pbi->common; local
    [all...]
  /external/python/cpython3/Lib/test/
test_flufl.py 10 with self.assertRaises(SyntaxError) as cm:
13 self.assertRegex(str(cm.exception),
15 self.assertEqual(cm.exception.text, '2 != 3\n')
16 self.assertEqual(cm.exception.filename, '<FLUFL test>')
17 self.assertEqual(cm.exception.lineno, 2)
18 self.assertEqual(cm.exception.offset, 4)
23 with self.assertRaises(SyntaxError) as cm:
25 self.assertRegex(str(cm.exception), "invalid syntax")
26 self.assertEqual(cm.exception.text, '2 <> 3\n')
27 self.assertEqual(cm.exception.filename, '<FLUFL test>'
    [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);

Completed in 423 milliseconds

1 2 3 4 5 6 7 8 91011>>