Home
last modified time | relevance | path

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

/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.h168 int16_t y_dequant[MAX_SEGMENTS][2];
169 int16_t uv_dequant[MAX_SEGMENTS][2];
Dvp9_loopfilter.h48 uint8_t lvl[MAX_SEGMENTS][MAX_REF_FRAMES][MAX_MODE_LF_DELTAS];
Dvp9_blockd.h124 int16_t seg_dequant[MAX_SEGMENTS][2];
Dvp9_loopfilter.c268 for (seg_id = 0; seg_id < MAX_SEGMENTS; seg_id++) { in vp9_loop_filter_frame_init()
/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_aq_variance.c30 static const double rate_ratio[MAX_SEGMENTS] = { 2.5, 2.0, 1.5, 1.0,
61 for (i = 0; i < MAX_SEGMENTS; ++i) { in vp9_vaq_frame_setup()
Dvp9_segmentation.c197 int no_pred_segcounts[MAX_SEGMENTS] = { 0 }; in vp9_choose_segmap_coding_method()
198 int t_unpred_seg_counts[MAX_SEGMENTS] = { 0 }; in vp9_choose_segmap_coding_method()
Dvp9_rd.h106 int threshes[MAX_SEGMENTS][BLOCK_SIZES][MAX_MODES];
Dvp9_encoder.h552 int segment_encode_breakout[MAX_SEGMENTS];
Dvp9_rd.c229 for (segment_id = 0; segment_id < MAX_SEGMENTS; ++segment_id) { in set_block_thresholds()
Dvp9_bitstream.c792 for (i = 0; i < MAX_SEGMENTS; i++) { in encode_segmentation()
Dvp9_encoder.c1797 for (i = 0; i < MAX_SEGMENTS; i++) in vp9_change_config()
/external/ltp/testcases/kernel/hotplug/memory_hotplug/
Dsegment.c74 #define MAX_SEGMENTS 63 /* arbitrary max */ macro
91 gcp->seglist = calloc(MAX_SEGMENTS + 1, sizeof(segment_t *)); in segment_init()
134 if (segpp < &gcp->seglist[MAX_SEGMENTS]) { in get_seg_slot()
488 if (gcp->seg_avail == NULL && segpp < &gcp->seglist[MAX_SEGMENTS]) { in segment_get()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodemv.c100 assert(segment_id >= 0 && segment_id < MAX_SEGMENTS); in dec_get_segment_id()
108 assert(segment_id >= 0 && segment_id < MAX_SEGMENTS); in set_segment_id()
Dvp9_decodeframe.c1024 for (i = 0; i < MAX_SEGMENTS; i++) { in setup_segmentation()
1089 for (i = 0; i < MAX_SEGMENTS; ++i) { in setup_segmentation_dequant()
/external/guava/guava/src/com/google/common/collect/
DMapMakerInternalMap.java110 static final int MAX_SEGMENTS = 1 << 16; // slightly conservative field in MapMakerInternalMap
196 concurrencyLevel = Math.min(builder.getConcurrencyLevel(), MAX_SEGMENTS); in MapMakerInternalMap()
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java134 static final int MAX_SEGMENTS = 1 << 16; // slightly conservative field in LocalCache
237 concurrencyLevel = Math.min(builder.getConcurrencyLevel(), MAX_SEGMENTS); in LocalCache()