Searched defs:seg (Results 1 - 25 of 103) sorted by relevance

12345

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_seg_common.c28 int vp9_segfeature_active(const struct segmentation *seg, int segment_id, argument
30 return seg->enabled &&
31 (seg->feature_mask[segment_id] & (1 << feature_id));
34 void vp9_clearall_segfeatures(struct segmentation *seg) { argument
35 vp9_zero(seg->feature_data);
36 vp9_zero(seg->feature_mask);
39 void vp9_enable_segfeature(struct segmentation *seg, int segment_id, argument
41 seg->feature_mask[segment_id] |= 1 << feature_id;
52 void vp9_set_segdata(struct segmentation *seg, int segment_id, argument
60 seg
63 vp9_get_segdata(const struct segmentation *seg, int segment_id, SEG_LVL_FEATURES feature_id) argument
[all...]
H A Dvp9_quant_common.c267 int vp9_get_qindex(const struct segmentation *seg, int segment_id, argument
269 if (vp9_segfeature_active(seg, segment_id, SEG_LVL_ALT_Q)) {
270 const int data = vp9_get_segdata(seg, segment_id, SEG_LVL_ALT_Q);
271 const int seg_qindex = seg->abs_delta == SEGMENT_ABSDATA ?
H A Dvp9_pred_common.h42 static INLINE vp9_prob vp9_get_pred_prob_seg_id(const struct segmentation *seg, argument
44 return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer_skyline.h27 SkylineSegment* seg = fSkyline.append(1); variable
28 seg->fX = 0;
29 seg->fY = 0;
30 seg->fWidth = this->width();
/external/libvpx/libvpx/vp9/common/
H A Dvp9_seg_common.c28 int vp9_segfeature_active(const struct segmentation *seg, int segment_id, argument
30 return seg->enabled &&
31 (seg->feature_mask[segment_id] & (1 << feature_id));
34 void vp9_clearall_segfeatures(struct segmentation *seg) { argument
35 vp9_zero(seg->feature_data);
36 vp9_zero(seg->feature_mask);
39 void vp9_enable_segfeature(struct segmentation *seg, int segment_id, argument
41 seg->feature_mask[segment_id] |= 1 << feature_id;
52 void vp9_set_segdata(struct segmentation *seg, int segment_id, argument
60 seg
63 vp9_get_segdata(const struct segmentation *seg, int segment_id, SEG_LVL_FEATURES feature_id) argument
[all...]
H A Dvp9_quant_common.c133 int vp9_get_qindex(const struct segmentation *seg, int segment_id, argument
135 if (vp9_segfeature_active(seg, segment_id, SEG_LVL_ALT_Q)) {
136 const int data = vp9_get_segdata(seg, segment_id, SEG_LVL_ALT_Q);
137 const int seg_qindex = seg->abs_delta == SEGMENT_ABSDATA ?
H A Dvp9_pred_common.h42 static INLINE vp9_prob vp9_get_pred_prob_seg_id(const struct segmentation *seg, argument
44 return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
/external/skia/src/gpu/
H A DGrRectanizer_skyline.h27 SkylineSegment* seg = fSkyline.append(1); variable
28 seg->fX = 0;
29 seg->fY = 0;
30 seg->fWidth = this->width();
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g711/
H A Dg711.h209 int seg; local
221 seg = top_bit(linear | 0xFF) - 7;
227 if (seg >= 8)
230 u_val = (uint8_t)(((seg << 4) | ((linear >> (seg + 3)) & 0xF)) ^ mask);
282 int seg; local
296 seg = top_bit(linear | 0xFF) - 7;
297 if (seg >= 8) {
306 return (uint8_t)(((seg << 4) | ((linear >> ((seg)
316 int seg; local
[all...]
/external/strace/
H A Dkexec.c14 } seg; local
16 (current_wordsize == 4 ? sizeof(seg.seg32) : sizeof(seg.seg64))
18 (current_wordsize == 4 ? (uint64_t) seg.seg32.buf : seg.seg64.buf)
20 (current_wordsize == 4 ? (uint64_t) seg.seg32.bufsz : seg.seg64.bufsz)
22 (current_wordsize == 4 ? (uint64_t) seg.seg32.mem : seg.seg64.mem)
24 (current_wordsize == 4 ? (uint64_t) seg
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_aq_complexity.c23 struct segmentation *const seg = &cm->seg; local
39 vp9_enable_segmentation(seg);
40 vp9_clearall_segfeatures(seg);
43 seg->abs_delta = SEGMENT_DELTADATA;
46 vp9_disable_segfeature(seg, 0, SEG_LVL_ALT_Q);
53 vp9_enable_segfeature(seg, segment, SEG_LVL_ALT_Q);
54 vp9_set_segdata(seg, segment, SEG_LVL_ALT_Q, qindex_delta);
H A Dvp9_aq_variance.c77 struct segmentation *seg = &cm->seg; local
86 vp9_enable_segmentation(seg);
87 vp9_clearall_segfeatures(seg);
89 seg->abs_delta = SEGMENT_DELTADATA;
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);
/external/tcpdump/
H A Dprint-token.c108 int seg; local
144 for (seg = 0; seg < SEGMENT_COUNT(trp); seg++)
145 printf(" [%d:%d]", RING_NUMBER(trp, seg),
146 BRIDGE_NUMBER(trp, seg));
150 for (seg = 0; seg < SEGMENT_COUNT(trp); seg++)
151 printf(":%x", EXTRACT_16BITS(&trp->token_rseg[seg]));
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_aq_complexity.c34 struct segmentation *const seg = &cm->seg; local
52 vp9_clearall_segfeatures(seg);
57 vp9_disable_segmentation(seg);
61 vp9_enable_segmentation(seg);
64 seg->abs_delta = SEGMENT_DELTADATA;
67 vp9_disable_segfeature(seg, 0, SEG_LVL_ALT_Q);
84 vp9_enable_segfeature(seg, segment, SEG_LVL_ALT_Q);
85 vp9_set_segdata(seg, segment, SEG_LVL_ALT_Q, qindex_delta);
H A Dvp9_aq_variance.c77 struct segmentation *seg = &cm->seg; local
86 vp9_enable_segmentation(seg);
87 vp9_clearall_segfeatures(seg);
89 seg->abs_delta = SEGMENT_DELTADATA;
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);
/external/chromium_org/third_party/skia/src/core/
H A DSkPathMeasure.cpp33 const SkPathMeasure::Segment* SkPathMeasure::NextSegment(const Segment* seg) { argument
34 unsigned ptIndex = seg->fPtIndex;
37 ++seg;
38 } while (seg->fPtIndex == ptIndex);
39 return seg;
97 Segment* seg = fSegments.append(); local
98 seg->fDistance = distance;
99 seg->fPtIndex = ptIndex;
100 seg->fType = kQuad_SegType;
101 seg
121 Segment* seg = fSegments.append(); local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dinsn.h102 yasm_expr *seg; /**< Segment expression */ member in struct:yasm_insn_operand
/external/skia/src/core/
H A DSkPathMeasure.cpp33 const SkPathMeasure::Segment* SkPathMeasure::NextSegment(const Segment* seg) { argument
34 unsigned ptIndex = seg->fPtIndex;
37 ++seg;
38 } while (seg->fPtIndex == ptIndex);
39 return seg;
97 Segment* seg = fSegments.append(); local
98 seg->fDistance = distance;
99 seg->fPtIndex = ptIndex;
100 seg->fType = kQuad_SegType;
101 seg
121 Segment* seg = fSegments.append(); local
[all...]
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-amd64-linux.c213 NSegment const* seg; local
272 seg = VG_(am_find_nsegment)((Addr)rsp);
273 if (seg && seg->kind != SkResvn) {
275 ctst->client_stack_szB = ctst->client_stack_highest_word - seg->start;
277 VG_(register_stack)(seg->start, ctst->client_stack_highest_word);
281 ctid, seg->start, VG_PGROUNDUP(rsp));
H A Dsyswrap-arm-linux.c180 NSegment const* seg; local
218 seg = VG_(am_find_nsegment)((Addr)sp);
219 if (seg && seg->kind != SkResvn) {
221 ctst->client_stack_szB = ctst->client_stack_highest_word - seg->start;
223 VG_(register_stack)(seg->start, ctst->client_stack_highest_word);
227 ctid, seg->start, VG_PGROUNDUP(sp));
H A Dsyswrap-arm64-linux.c229 NSegment const* seg; local
288 seg = VG_(am_find_nsegment)((Addr)child_xsp);
289 if (seg && seg->kind != SkResvn) {
291 ctst->client_stack_szB = ctst->client_stack_highest_word - seg->start;
293 VG_(register_stack)(seg->start, ctst->client_stack_highest_word);
297 ctid, seg->start, VG_PGROUNDUP(child_xsp));
H A Dsyswrap-mips64-linux.c208 NSegment const *seg; local
233 seg = VG_(am_find_nsegment)((Addr)sp);
235 if (seg && seg->kind != SkResvn) {
237 ctst->client_stack_szB = ctst->client_stack_highest_word - seg->start;
238 VG_(register_stack)(seg->start, ctst->client_stack_highest_word);
241 ctid, seg->start, sp /* VG_PGROUNDUP (sp) */ );
H A Dsyswrap-ppc32-linux.c247 NSegment const* seg; local
318 seg = VG_(am_find_nsegment)(sp);
319 if (seg && seg->kind != SkResvn) {
321 ctst->client_stack_szB = ctst->client_stack_highest_word - seg->start;
323 VG_(register_stack)(seg->start, ctst->client_stack_highest_word);
327 ctid, seg->start, VG_PGROUNDUP(sp));
H A Dsyswrap-ppc64-linux.c274 NSegment const* seg; local
345 seg = VG_(am_find_nsegment)(sp);
346 if (seg && seg->kind != SkResvn) {
348 ctst->client_stack_szB = ctst->client_stack_highest_word - seg->start;
350 VG_(register_stack)(seg->start, ctst->client_stack_highest_word);
354 ctid, seg->start, VG_PGROUNDUP(sp));
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dloopfilter.c116 int seg, /* segment number */ local
129 for(seg = 0; seg < MAX_MB_SEGMENTS; seg++)
140 lvl_seg = mbd->segment_feature_data[MB_LVL_ALT_LF][seg];
144 lvl_seg += mbd->segment_feature_data[MB_LVL_ALT_LF][seg];
154 vpx_memset(lfi->lvl[seg][0], lvl_seg, 4 * 4 );
171 lfi->lvl[seg][ref][mode] = lvl_mode;
176 lfi->lvl[seg][ref][mode] = lvl_mode;
191 lfi->lvl[seg][re
216 const int seg = mode_info_context->mbmi.segment_id; local
272 const int seg = mode_info_context->mbmi.segment_id; local
347 const int seg = mode_info_context->mbmi.segment_id; local
403 const int seg = mode_info_context->mbmi.segment_id; local
489 const int seg = mode_info_context->mbmi.segment_id; local
605 const int seg = mode_info_context->mbmi.segment_id; local
[all...]

Completed in 3555 milliseconds

12345