Searched refs:seg (Results 1 - 25 of 157) sorted by relevance

1234567

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_segmentation.h22 void vp9_enable_segmentation(struct segmentation *seg);
23 void vp9_disable_segmentation(struct segmentation *seg);
25 void vp9_disable_segfeature(struct segmentation *seg,
28 void vp9_clear_segdata(struct segmentation *seg,
42 void vp9_set_segment_data(struct segmentation *seg, signed char *feature_data,
47 void vp9_reset_segment_features(struct segmentation *seg);
H A Dvp9_segmentation.c22 void vp9_enable_segmentation(struct segmentation *seg) { argument
23 seg->enabled = 1;
24 seg->update_map = 1;
25 seg->update_data = 1;
28 void vp9_disable_segmentation(struct segmentation *seg) { argument
29 seg->enabled = 0;
30 seg->update_map = 0;
31 seg->update_data = 0;
34 void vp9_set_segment_data(struct segmentation *seg, argument
37 seg
45 vp9_disable_segfeature(struct segmentation *seg, int segment_id, SEG_LVL_FEATURES feature_id) argument
50 vp9_clear_segdata(struct segmentation *seg, int segment_id, SEG_LVL_FEATURES feature_id) argument
203 struct segmentation *seg = &cm->seg; local
278 vp9_reset_segment_features(struct segmentation *seg) argument
[all...]
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);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_segmentation.h22 void vp9_enable_segmentation(struct segmentation *seg);
23 void vp9_disable_segmentation(struct segmentation *seg);
25 void vp9_disable_segfeature(struct segmentation *seg,
28 void vp9_clear_segdata(struct segmentation *seg,
45 void vp9_set_segment_data(struct segmentation *seg, signed char *feature_data,
50 void vp9_reset_segment_features(struct segmentation *seg);
H A Dvp9_segmentation.c22 void vp9_enable_segmentation(struct segmentation *seg) { argument
23 seg->enabled = 1;
24 seg->update_map = 1;
25 seg->update_data = 1;
28 void vp9_disable_segmentation(struct segmentation *seg) { argument
29 seg->enabled = 0;
33 struct segmentation *const seg = &cpi->common.seg; local
40 seg->update_map = 1;
41 seg
44 vp9_set_segment_data(struct segmentation *seg, signed char *feature_data, unsigned char abs_delta) argument
55 vp9_disable_segfeature(struct segmentation *seg, int segment_id, SEG_LVL_FEATURES feature_id) argument
60 vp9_clear_segdata(struct segmentation *seg, int segment_id, SEG_LVL_FEATURES feature_id) argument
217 struct segmentation *seg = &cm->seg; local
294 vp9_reset_segment_features(struct segmentation *seg) argument
[all...]
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);
/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/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/
H A Dwin32-segof.asm2 mov ax, seg value
5 mov ax, seg local
/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_seg_common.h52 int vp9_segfeature_active(const struct segmentation *seg,
56 void vp9_clearall_segfeatures(struct segmentation *seg);
58 void vp9_enable_segfeature(struct segmentation *seg,
66 void vp9_set_segdata(struct segmentation *seg,
71 int vp9_get_segdata(const struct segmentation *seg,
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_quant_common.h29 int vp9_get_qindex(const struct segmentation *seg, int segment_id,
/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_seg_common.h52 int vp9_segfeature_active(const struct segmentation *seg,
56 void vp9_clearall_segfeatures(struct segmentation *seg);
58 void vp9_enable_segfeature(struct segmentation *seg,
66 void vp9_set_segdata(struct segmentation *seg,
71 int vp9_get_segdata(const struct segmentation *seg,
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_quant_common.h30 int vp9_get_qindex(const struct segmentation *seg, int segment_id,
/external/valgrind/main/exp-sgcheck/
H A Dh_main.c103 // Determines if 'a' is before, within, or after seg's range. Sets 'cmp' to
105 void Seg__cmp(Seg* seg, Addr a, Int* cmp, UWord* n) argument
107 if (a < seg->addr) {
109 *n = seg->addr - a;
110 } else if (a < seg->addr + seg->szB && seg->szB > 0) {
112 *n = a - seg->addr;
115 *n = a - (seg->addr + seg
119 Seg__is_freed(Seg* seg) argument
127 Seg__where(Seg* seg) argument
133 Seg__size(Seg* seg) argument
139 Seg__addr(Seg* seg) argument
193 Seg* seg; local
288 Seg* seg = get_Seg_for_malloc(); local
337 Seg* seg = find_Seg_by_addr( (Addr)p ); local
410 Seg* seg; local
454 Seg* seg = find_Seg_by_addr( (Addr)p ); local
[all...]
H A Dh_main.h49 void Seg__cmp(Seg* seg, Addr a, Int* cmp, UWord* n);
50 Bool Seg__is_freed(Seg* seg);
51 ExeContext* Seg__where(Seg* seg);
52 SizeT Seg__size(Seg* seg);
53 Addr Seg__addr(Seg* seg);
/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/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/libjingle/source/talk/p2p/base/
H A Dpseudotcp.cc587 Segment seg;
588 seg.conv = bytes_to_long(buffer);
589 seg.seq = bytes_to_long(buffer + 4);
590 seg.ack = bytes_to_long(buffer + 8);
591 seg.flags = buffer[13];
592 seg.wnd = bytes_to_short(buffer + 14);
594 seg.tsval = bytes_to_long(buffer + 16);
595 seg.tsecr = bytes_to_long(buffer + 20);
597 seg.data = reinterpret_cast<const char *>(buffer) + HEADER_SIZE;
598 seg
653 process(Segment& seg) argument
966 transmit(const SList::iterator& seg, uint32 now) argument
1113 SList::iterator seg = it; local
[all...]
/external/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-linux.c504 show_nsegment_full ( Int logLevel, Int segNo, NSegment* seg )
509 if (seg->fnIdx >= 0 && seg->fnIdx < segnames_used
510 && segnames[seg->fnIdx].inUse
511 && segnames[seg->fnIdx].fname[0] != 0)
512 name = segnames[seg->fnIdx].fname;
514 show_len_concisely(len_buf, seg->start, seg->end);
520 segNo, show_SegKind(seg->kind),
521 (ULong)seg
1543 init_resvn( NSegment* seg, Addr start, Addr end ) argument
1565 NSegment seg; local
1623 NSegment seg; local
2046 NSegment seg; local
2089 NSegment seg; local
2176 NSegment seg; local
2238 NSegment seg; local
2312 NSegment seg; local
2370 NSegment seg; local
2429 NSegment seg; local
2535 NSegment seg; local
2790 NSegment seg; local
2849 am_extend_into_adjacent_reservation_client( const NSegment* seg, SSizeT delta ) argument
2961 am_extend_map_client( Bool* need_discard, const NSegment* seg, SizeT delta ) argument
3026 NSegment seg; local
[all...]
/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/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...]

Completed in 646 milliseconds

1234567