Home
last modified time | relevance | path

Searched refs:MAX_SEGMENTS (Results 1 – 25 of 41) sorted by relevance

12

/external/libaom/libaom/av1/common/
Dseg_common.h21 #define MAX_SEGMENTS 8 macro
22 #define SEG_TREE_PROBS (MAX_SEGMENTS - 1)
45 int16_t feature_data[MAX_SEGMENTS][SEG_LVL_MAX];
46 unsigned int feature_mask[MAX_SEGMENTS];
56 aom_cdf_prob tree_cdf[CDF_SIZE(MAX_SEGMENTS)];
59 [CDF_SIZE(MAX_SEGMENTS)];
71 for (i = 0; i < MAX_SEGMENTS; i++) { in segfeatures_copy()
Donyxc_int.h399 int16_t y_dequant_QTX[MAX_SEGMENTS][2];
400 int16_t u_dequant_QTX[MAX_SEGMENTS][2];
401 int16_t v_dequant_QTX[MAX_SEGMENTS][2];
408 const qm_val_t *y_iqmatrix[MAX_SEGMENTS][TX_SIZES_ALL];
409 const qm_val_t *u_iqmatrix[MAX_SEGMENTS][TX_SIZES_ALL];
410 const qm_val_t *v_iqmatrix[MAX_SEGMENTS][TX_SIZES_ALL];
1363 for (int i = 0; i < MAX_SEGMENTS; ++i) { in is_coded_lossless()
Dseg_common.c45 for (int i = 0; i < MAX_SEGMENTS; i++) { in calculate_segdata()
Dentropy.c137 RESET_CDF_COUNTER(fc->seg.tree_cdf, MAX_SEGMENTS); in av1_reset_cdf_symbol_counters()
139 RESET_CDF_COUNTER(fc->seg.spatial_pred_seg_cdf, MAX_SEGMENTS); in av1_reset_cdf_symbol_counters()
Dblockd.h408 int16_t seg_dequant_QTX[MAX_SEGMENTS][2];
414 qm_val_t *seg_iqmatrix[MAX_SEGMENTS][TX_SIZES_ALL];
415 qm_val_t *seg_qmatrix[MAX_SEGMENTS][TX_SIZES_ALL];
550 int qindex[MAX_SEGMENTS];
551 int lossless[MAX_SEGMENTS];
Dpred_common.h32 int x, y, segment_id = MAX_SEGMENTS; in get_segment_id()
39 assert(segment_id >= 0 && segment_id < MAX_SEGMENTS); in get_segment_id()
Dav1_loopfilter.h117 uint8_t lvl[MAX_MB_PLANE][MAX_SEGMENTS][2][REF_FRAMES][MAX_MODE_LF_DELTAS];
Dentropymode.c854 static const aom_cdf_prob default_seg_tree_cdf[CDF_SIZE(MAX_SEGMENTS)] = {
865 MAX_SEGMENTS)] = {
/external/libvpx/libvpx/vp9/common/
Dvp9_seg_common.h23 #define MAX_SEGMENTS 8 macro
24 #define SEG_TREE_PROBS (MAX_SEGMENTS - 1)
47 int16_t feature_data[MAX_SEGMENTS][SEG_LVL_MAX];
48 uint32_t feature_mask[MAX_SEGMENTS];
75 extern const vpx_tree_index vp9_segment_tree[TREE_SIZE(MAX_SEGMENTS)];
Dvp9_pred_common.h30 int x, y, segment_id = MAX_SEGMENTS; in get_segment_id()
37 assert(segment_id >= 0 && segment_id < MAX_SEGMENTS); in get_segment_id()
Dvp9_seg_common.c58 const vpx_tree_index vp9_segment_tree[TREE_SIZE(MAX_SEGMENTS)] = {
Dvp9_onyxc_int.h170 int16_t y_dequant[MAX_SEGMENTS][2];
171 int16_t uv_dequant[MAX_SEGMENTS][2];
Dvp9_loopfilter.h48 uint8_t lvl[MAX_SEGMENTS][MAX_REF_FRAMES][MAX_MODE_LF_DELTAS];
Dvp9_blockd.h125 int16_t seg_dequant[MAX_SEGMENTS][2];
/external/libaom/libaom/test/
Dsegment_binarization_sync.cc31 static const int MAX_SEGMENTS = 8; in GenerateSegment() local
36 const int last_segid = rnd_.PseudoUniform(MAX_SEGMENTS); in GenerateSegment()
38 segment.pred = rnd_.PseudoUniform(MAX_SEGMENTS); in GenerateSegment()
/external/libaom/libaom/av1/decoder/
Dinspection.h75 int16_t y_dequant[MAX_SEGMENTS][2];
76 int16_t u_dequant[MAX_SEGMENTS][2];
77 int16_t v_dequant[MAX_SEGMENTS][2];
Dinspection.c62 for (i = 0; i < MAX_SEGMENTS; i++) { in ifd_inspect()
/external/libaom/libaom/av1/encoder/
Dsegmentation.c177 unsigned no_pred_segcounts[MAX_SEGMENTS] = { 0 }; in av1_choose_segmap_coding_method()
178 unsigned t_unpred_seg_counts[MAX_SEGMENTS] = { 0 }; in av1_choose_segmap_coding_method()
205 int seg_id_cost[MAX_SEGMENTS]; in av1_choose_segmap_coding_method()
208 for (int i = 0; i < MAX_SEGMENTS; ++i) in av1_choose_segmap_coding_method()
223 for (int i = 0; i < MAX_SEGMENTS; ++i) in av1_choose_segmap_coding_method()
Daq_variance.c25 static const double rate_ratio[MAX_SEGMENTS] = { 2.2, 1.7, 1.3, 1.0,
28 static const double deltaq_rate_ratio[MAX_SEGMENTS] = { 2.5, 2.0, 1.5, 1.0,
76 for (i = 0; i < MAX_SEGMENTS; ++i) { in av1_vaq_frame_setup()
Drd.h287 int threshes[MAX_SEGMENTS][BLOCK_SIZES_ALL][MAX_MODES];
/external/libvpx/libvpx/vp9/encoder/
Dvp9_aq_360.c25 static const double rate_ratio[MAX_SEGMENTS] = { 1.0, 0.75, 0.6, 0.5,
53 for (i = 0; i < MAX_SEGMENTS; ++i) { in vp9_360aq_frame_setup()
Dvp9_segmentation.c56 for (i = 0; i < MAX_SEGMENTS; ++i) { in vp9_psnr_aq_mode_setup()
57 vp9_set_segdata(seg, i, SEG_LVL_ALT_Q, 2 * (i - (MAX_SEGMENTS / 2))); in vp9_psnr_aq_mode_setup()
210 int no_pred_segcounts[MAX_SEGMENTS] = { 0 }; in vp9_choose_segmap_coding_method()
211 int t_unpred_seg_counts[MAX_SEGMENTS] = { 0 }; in vp9_choose_segmap_coding_method()
Dvp9_aq_variance.c31 static const double rate_ratio[MAX_SEGMENTS] = { 2.5, 2.0, 1.5, 1.0,
62 for (i = 0; i < MAX_SEGMENTS; ++i) { in vp9_vaq_frame_setup()
Dvp9_rd.h106 int threshes[MAX_SEGMENTS][BLOCK_SIZES][MAX_MODES];
/external/ltp/testcases/kernel/hotplug/memory_hotplug/
Dsegment.c71 #define MAX_SEGMENTS 63 /* arbitrary max */ macro
88 gcp->seglist = calloc(MAX_SEGMENTS + 1, sizeof(segment_t *)); in segment_init()
131 if (segpp < &gcp->seglist[MAX_SEGMENTS]) { in get_seg_slot()
485 if (gcp->seg_avail == NULL && segpp < &gcp->seglist[MAX_SEGMENTS]) { in segment_get()

12