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

12345

/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,
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
41 vp9_disable_segfeature(struct segmentation *seg, int segment_id, SEG_LVL_FEATURES feature_id) argument
46 vp9_clear_segdata(struct segmentation *seg, int segment_id, SEG_LVL_FEATURES feature_id) argument
199 struct segmentation *seg = &cm->seg; local
274 vp9_reset_segment_features(struct segmentation *seg) argument
[all...]
H A Dvp9_aq_complexity.c49 struct segmentation *const seg = &cm->seg; local
63 vp9_clearall_segfeatures(seg);
68 vp9_disable_segmentation(seg);
72 vp9_enable_segmentation(seg);
75 seg->abs_delta = SEGMENT_DELTADATA;
78 vp9_disable_segfeature(seg, DEFAULT_AQ2_SEG, SEG_LVL_ALT_Q);
101 vp9_enable_segfeature(seg, segment, SEG_LVL_ALT_Q);
102 vp9_set_segdata(seg, segment, SEG_LVL_ALT_Q, qindex_delta);
/external/strace/
H A Dkexec.c41 print_seg(const unsigned long *seg) argument
44 printaddr(seg[0]);
45 tprintf(", %lu, ", seg[1]);
46 printaddr(seg[2]);
47 tprintf(", %lu}", seg[3]);
54 unsigned long seg[4]; local
55 const size_t sizeof_seg = ARRAY_SIZE(seg) * current_wordsize;
68 if (umove_ulong_array_or_printaddr(tcp, addr, seg, ARRAY_SIZE(seg)))
72 print_seg(seg);
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_seg_common.c28 void vp9_clearall_segfeatures(struct segmentation *seg) { argument
29 vp9_zero(seg->feature_data);
30 vp9_zero(seg->feature_mask);
33 void vp9_enable_segfeature(struct segmentation *seg, int segment_id, argument
35 seg->feature_mask[segment_id] |= 1 << feature_id;
46 void vp9_set_segdata(struct segmentation *seg, int segment_id, argument
54 seg->feature_data[segment_id][feature_id] = seg_data;
H A Dvp9_seg_common.h52 static INLINE int segfeature_active(const struct segmentation *seg, argument
55 return seg->enabled &&
56 (seg->feature_mask[segment_id] & (1 << feature_id));
59 void vp9_clearall_segfeatures(struct segmentation *seg);
61 void vp9_enable_segfeature(struct segmentation *seg,
69 void vp9_set_segdata(struct segmentation *seg,
74 static INLINE int get_segdata(const struct segmentation *seg, int segment_id, argument
76 return seg->feature_data[segment_id][feature_id];
H A Dvp9_quant_common.c267 int vp9_get_qindex(const struct segmentation *seg, int segment_id, argument
269 if (segfeature_active(seg, segment_id, SEG_LVL_ALT_Q)) {
270 const int data = 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/valgrind/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/webrtc/webrtc/p2p/base/
H A Dpseudotcp.cc577 Segment seg;
578 seg.conv = bytes_to_long(buffer);
579 seg.seq = bytes_to_long(buffer + 4);
580 seg.ack = bytes_to_long(buffer + 8);
581 seg.flags = buffer[13];
582 seg.wnd = bytes_to_short(buffer + 14);
584 seg.tsval = bytes_to_long(buffer + 16);
585 seg.tsecr = bytes_to_long(buffer + 20);
587 seg.data = reinterpret_cast<const char *>(buffer) + HEADER_SIZE;
588 seg
646 process(Segment& seg) argument
964 transmit(const SList::iterator& seg, uint32_t now) argument
1111 SList::iterator seg = it; local
[all...]
/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/webrtc/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/skia/src/core/
H A DSkPathMeasure.cpp35 const SkPathMeasure::Segment* SkPathMeasure::NextSegment(const Segment* seg) { argument
36 unsigned ptIndex = seg->fPtIndex;
39 ++seg;
40 } while (seg->fPtIndex == ptIndex);
41 return seg;
160 Segment* seg = fSegments.append(); local
161 seg->fDistance = distance;
162 seg->fPtIndex = ptIndex;
163 seg->fType = kQuad_SegType;
164 seg
183 Segment* seg = fSegments.append(); local
207 Segment* seg = fSegments.append(); local
268 Segment* seg = fSegments.append(); variable
[all...]
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/static/
H A Djquery.url.js53 uri = { attr : {}, param : {}, seg : {} },
65 uri.seg['path'] = uri.attr.path.replace(/^\/+|\/+$/g,'').split('/');
66 uri.seg['fragment'] = uri.attr.fragment.replace(/^\/+|\/+$/g,'').split('/');
232 segment : function( seg ) {
233 if ( typeof seg === 'undefined' ) {
234 return this.data.seg.path;
236 seg = seg < 0 ? this.data.seg.path.length + seg
[all...]
/external/opencv3/3rdparty/libjasper/
H A Djpc_t2dec.c171 jpc_dec_seg_t *seg; local
286 seg = cblk->curseg;
299 if (!discard && !seg) {
300 if (!(seg = jpc_seg_alloc())) {
303 jpc_seglist_insert(&cblk->segs, cblk->segs.tail, seg);
305 cblk->curseg = seg;
307 seg->passno = passno;
308 seg->type = JPC_SEGTYPE(seg->passno, cblk->firstpassno, (ccp->cblkctx & JPC_COX_LAZY) != 0);
309 seg
[all...]
/external/valgrind/coregrind/m_aspacemgr/
H A Daspacemgr-linux.c433 static void show_nsegment_full ( Int logLevel, Int segNo, const NSegment* seg )
436 const HChar* name = ML_(am_get_segname)( seg->fnIdx );
441 show_len_concisely(len_buf, seg->start, seg->end);
447 segNo, show_SegKind(seg->kind),
448 seg->start, seg->end, len_buf,
449 seg->hasR ? 'r' : '-', seg->hasW ? 'w' : '-',
450 seg
1312 const NSegment *seg = nsegments + find_nsegment_idx(addr); local
1488 init_resvn( NSegment* seg, Addr start, Addr end ) argument
1510 NSegment seg; local
1583 NSegment seg; local
2141 NSegment seg; local
2184 NSegment seg; local
2271 NSegment seg; local
2351 NSegment seg; local
2424 NSegment seg; local
2482 NSegment seg; local
2541 NSegment seg; local
2647 NSegment seg; local
2901 NSegment seg; local
3083 NSegment *seg = nsegments + ix; local
3140 NSegment seg; local
[all...]
/external/valgrind/coregrind/
H A Dfixup_macho_loadcmds.c476 struct segment_command_64 *seg = (struct segment_command_64 *)cmd; local
477 if (0 == strcmp(seg->segname, "__LINKEDIT"))
478 seg__linkedit = seg;
479 if (0 == strcmp(seg->segname, "__UNIXSTACK"))
480 seg__unixstack = seg;
481 if (0 == strcmp(seg->segname, "__PAGEZERO"))
482 seg__pagezero = seg;
512 struct segment_command_64 *seg = seg__unixstack; local
513 if (seg->vmaddr != expected_stack_start)
515 if (seg
532 struct segment_command_64 *seg = seg__linkedit; local
[all...]
H A Dm_addrinfo.c236 const NSegment *seg = VG_(am_find_nsegment) (a); local
237 if (seg != NULL && seg->kind == SkAnonC
238 && !seg->hasR && !seg->hasW && !seg->hasX) {
264 const NSegment *seg = VG_(am_find_nsegment) (a); local
267 if (seg != NULL
269 && (seg->kind == SkAnonC || seg
[all...]
/external/freetype/src/autofit/
H A Dafcjk.c171 AF_Segment seg, limit, link; local
185 seg = axhints->segments;
186 limit = seg + axhints->num_segments;
188 for ( ; seg < limit; seg++ )
190 link = seg->link;
193 if ( link && link->link == seg && link > seg )
198 dist = seg->pos - link->pos;
710 AF_Segment seg; local
856 AF_Segment seg; local
918 AF_Segment seg; local
2111 AF_Segment seg = edge->first; local
[all...]
H A Dafhints.c307 AF_Segment seg; local
320 for ( seg = segments; seg < limit; seg++ )
324 AF_INDEX_NUM( seg, segments ),
326 ? (int)seg->first->ox / 64.0
327 : (int)seg->first->oy / 64.0,
328 af_dir_str( (AF_Direction)seg->dir ),
329 AF_INDEX_NUM( seg->first, points ),
330 AF_INDEX_NUM( seg
386 AF_Segment seg; local
1037 AF_Segment seg; local
[all...]
H A Daflatin2.c108 AF_Segment seg, limit, link; local
120 seg = axhints->segments;
121 limit = seg + axhints->num_segments;
123 for ( ; seg < limit; seg++ )
125 link = seg->link;
128 if ( link && link->link == seg && link > seg )
133 dist = seg->pos - link->pos;
1070 AF_Segment seg; local
[all...]
/external/tcpdump/
H A Dprint-token.c155 int seg; local
191 for (seg = 0; seg < SEGMENT_COUNT(trp); seg++)
192 ND_PRINT((ndo, " [%d:%d]", RING_NUMBER(trp, seg),
193 BRIDGE_NUMBER(trp, seg)));
197 for (seg = 0; seg < SEGMENT_COUNT(trp); seg++)
198 ND_PRINT((ndo, ":%x", EXTRACT_16BITS(&trp->token_rseg[seg])));
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dvp8_loopfilter.c115 int seg, /* segment number */ local
128 for(seg = 0; seg < MAX_MB_SEGMENTS; seg++)
139 lvl_seg = mbd->segment_feature_data[MB_LVL_ALT_LF][seg];
143 lvl_seg += mbd->segment_feature_data[MB_LVL_ALT_LF][seg];
153 memset(lfi->lvl[seg][0], lvl_seg, 4 * 4 );
170 lfi->lvl[seg][ref][mode] = lvl_mode;
175 lfi->lvl[seg][ref][mode] = lvl_mode;
190 lfi->lvl[seg][re
215 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...]
/external/harfbuzz_ng/src/
H A Dhb-graphite2.cc245 gr_segment *seg = NULL; local
263 seg = gr_make_seg (grfont, grface,
269 if (unlikely (!seg)) {
274 unsigned int glyph_count = gr_seg_n_slots (seg);
277 gr_seg_destroy (seg);
290 gr_seg_destroy (seg);
314 float curradv = HB_DIRECTION_IS_BACKWARD(buffer->props.direction) ? gr_slot_origin_X(gr_seg_first_slot(seg)) : 0.;
317 curradv = gr_slot_origin_X(gr_seg_first_slot(seg));
318 clusters[0].advance = gr_seg_advance_X(seg) - curradv;
320 for (is = gr_seg_first_slot (seg), i
[all...]

Completed in 721 milliseconds

12345