HomeSort by relevance Sort by last modified time
    Searched defs:segment_id (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/chrome/browser/history/
visitsegment_database.cc 30 // segment_id Corresponding segment id
69 "segment_id INTEGER NOT NULL,"
76 "segment_usage(time_slot, segment_id)")) {
83 "ON segment_usage(segment_id)"))
137 bool VisitSegmentDatabase::UpdateSegmentRepresentationURL(SegmentID segment_id,
142 statement.BindInt64(1, segment_id);
147 URLID VisitSegmentDatabase::GetSegmentRepresentationURL(SegmentID segment_id) {
150 statement.BindInt64(0, segment_id);
169 bool VisitSegmentDatabase::IncreaseSegmentVisitCount(SegmentID segment_id,
176 "WHERE time_slot = ? AND segment_id = ?"))
227 SegmentID segment_id = statement.ColumnInt64(0); local
    [all...]
history_unittest.cc 1811 const SegmentID segment_id = 2; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_aq_variance.c 30 static int segment_id[MAX_SEGMENTS] = { 5, 3, 1, 0, 2, 4, 6, 7 }; variable
34 #define SEGMENT_ID(i) segment_id[(i) - ENERGY_MIN]
41 return SEGMENT_ID(energy);
104 vp9_set_segdata(seg, SEGMENT_ID(i), SEG_LVL_ALT_Q, qindex_delta);
105 vp9_enable_segfeature(seg, SEGMENT_ID(i), SEG_LVL_ALT_Q);
vp9_quantize.c 631 const int segment_id = xd->mi[0].src_mi->mbmi.segment_id; local
632 const int qindex = vp9_get_qindex(&cm->seg, segment_id, cm->base_qindex);
667 x->skip_block = vp9_segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP);
vp9_segmentation.c 45 void vp9_disable_segfeature(struct segmentation *seg, int segment_id,
47 seg->feature_mask[segment_id] &= ~(1 << feature_id);
50 void vp9_clear_segdata(struct segmentation *seg, int segment_id,
52 seg->feature_data[segment_id][feature_id] = 0;
119 int segment_id; local
125 segment_id = xd->mi[0].src_mi->mbmi.segment_id;
130 no_pred_segcounts[segment_id]++;
138 const int pred_flag = pred_segment_id == segment_id;
148 t_unpred_seg_counts[segment_id]++
    [all...]
vp9_rd.c 220 int i, bsize, segment_id; local
222 for (segment_id = 0; segment_id < MAX_SEGMENTS; ++segment_id) {
224 clamp(vp9_get_qindex(&cm->seg, segment_id, cm->base_qindex) +
236 rd->threshes[segment_id][bsize][i] =
242 rd->threshes[segment_id][bsize][i] =
vp9_tokenize.c 287 static INLINE int get_tx_eob(const struct segmentation *seg, int segment_id,
290 return vp9_segfeature_active(seg, segment_id, SEG_LVL_SKIP) ? 0 : eob_max;
309 const int segment_id = mbmi->segment_id; local
320 const int seg_eob = get_tx_eob(&cpi->common.seg, segment_id, tx_size);
413 const int skip_inc = !vp9_segfeature_active(&cm->seg, mbmi->segment_id,
vp9_bitstream.c 97 int segment_id, const MODE_INFO *mi, vp9_writer *w) {
98 if (vp9_segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP)) {
184 int segment_id) {
186 vp9_write_tree(w, vp9_segment_tree, seg->tree_probs, segment_id, 3, 0);
194 const int segment_id = mbmi->segment_id; local
198 if (vp9_segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) {
201 vp9_get_segdata(&cm->seg, segment_id, SEG_LVL_REF_FRAME));
234 const int segment_id = mbmi->segment_id; local
    [all...]
vp9_pickmode.c 448 const int8_t segment_id = mbmi->segment_id; local
449 const int *const rd_threshes = cpi->rd.threshes[segment_id][bsize];
494 mbmi->segment_id = segment_id;
vp9_rdopt.c 2559 unsigned char segment_id = mbmi->segment_id; local
3210 unsigned char segment_id = mbmi->segment_id; local
3319 unsigned char segment_id = mbmi->segment_id; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_variance.c 30 static int segment_id[MAX_SEGMENTS] = { 5, 3, 1, 0, 2, 4, 6, 7 }; variable
34 #define SEGMENT_ID(i) segment_id[(i) - ENERGY_MIN]
41 return SEGMENT_ID(energy);
103 vp9_set_segdata(seg, SEGMENT_ID(i), SEG_LVL_ALT_Q, qindex_delta);
104 vp9_enable_segfeature(seg, SEGMENT_ID(i), SEG_LVL_ALT_Q);
vp9_quantize.c 220 const int segment_id = xd->mi[0]->mbmi.segment_id; local
221 const int qindex = vp9_get_qindex(&cm->seg, segment_id, cm->base_qindex);
253 x->skip_block = vp9_segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP);
vp9_pickmode.c 235 unsigned char segment_id = mbmi->segment_id; local
236 const int *const rd_threshes = cpi->rd_threshes[segment_id][bsize];
259 mbmi->segment_id = segment_id;
vp9_segmentation.c 55 void vp9_disable_segfeature(struct segmentation *seg, int segment_id,
57 seg->feature_mask[segment_id] &= ~(1 << feature_id);
60 void vp9_clear_segdata(struct segmentation *seg, int segment_id,
62 seg->feature_data[segment_id][feature_id] = 0;
131 int segment_id; local
137 segment_id = xd->mi[0]->mbmi.segment_id;
142 no_pred_segcounts[segment_id]++;
150 const int pred_flag = pred_segment_id == segment_id;
160 t_unpred_seg_counts[segment_id]++
    [all...]
vp9_tokenize.c 203 static INLINE int get_tx_eob(const struct segmentation *seg, int segment_id,
206 return vp9_segfeature_active(seg, segment_id, SEG_LVL_SKIP) ? 0 : eob_max;
225 const int segment_id = mbmi->segment_id; local
237 const int seg_eob = get_tx_eob(&cpi->common.seg, segment_id, tx_size);
315 const int skip_inc = !vp9_segfeature_active(&cm->seg, mbmi->segment_id,
vp9_bitstream.c 97 static int write_skip(const VP9_COMP *cpi, int segment_id, const MODE_INFO *mi,
100 if (vp9_segfeature_active(&cpi->common.seg, segment_id, SEG_LVL_SKIP)) {
186 int segment_id) {
188 vp9_write_tree(w, vp9_segment_tree, seg->tree_probs, segment_id, 3, 0);
197 const int segment_id = mbmi->segment_id; local
201 if (vp9_segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) {
204 vp9_get_segdata(&cm->seg, segment_id, SEG_LVL_REF_FRAME));
237 const int segment_id = mbmi->segment_id; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_pred_common.c 376 int x, y, segment_id = INT_MAX; local
380 segment_id = MIN(segment_id,
383 assert(segment_id >= 0 && segment_id < MAX_SEGMENTS);
384 return segment_id;
vp9_blockd.h 132 int8_t segment_id; member in struct:__anon17731
  /external/libvpx/libvpx/vp9/common/
vp9_pred_common.c 376 int x, y, segment_id = INT_MAX; local
380 segment_id = MIN(segment_id,
383 assert(segment_id >= 0 && segment_id < MAX_SEGMENTS);
384 return segment_id;
vp9_blockd.h 128 uint8_t segment_id; member in struct:__anon4448
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_decodemv.c 87 int mi_row, int mi_col, int segment_id) {
95 assert(segment_id >= 0 && segment_id < MAX_SEGMENTS);
99 cm->last_frame_seg_map[mi_offset + y * cm->mi_cols + x] = segment_id;
107 int segment_id; local
115 segment_id = read_segment_id(r, seg);
116 set_segment_id(cm, bsize, mi_row, mi_col, segment_id);
117 return segment_id;
125 int predicted_segment_id, segment_id; local
138 segment_id = mbmi->seg_id_predicted ? predicted_segment_i
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 88 int mi_row, int mi_col, int segment_id) {
96 assert(segment_id >= 0 && segment_id < MAX_SEGMENTS);
100 cm->last_frame_seg_map[mi_offset + y * cm->mi_cols + x] = segment_id;
108 int segment_id; local
116 segment_id = read_segment_id(r, seg);
117 set_segment_id(cm, bsize, mi_row, mi_col, segment_id);
118 return segment_id;
126 int predicted_segment_id, segment_id; local
139 segment_id = mbmi->seg_id_predicted ? predicted_segment_i
    [all...]
  /external/chromium_org/components/history/core/browser/
history_types.h 104 SegmentID segment_id; member in class:history::VisitRow
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
blockd.h 165 uint8_t segment_id; /* Which set of segmentation parameters should be used for this MB */ member in struct:__anon17673
  /external/libvpx/libvpx/vp8/common/
blockd.h 165 uint8_t segment_id; /* Which set of segmentation parameters should be used for this MB */ member in struct:__anon4391

Completed in 540 milliseconds

1 2