/external/tcpdump/tests/ |
D | decnet.out | 9 1.1 > 1.1 19 link-service 8195>8196 ack 0 ackdat 0 seg 1 dat seg count 0 11 1.1 > 1.1 45 data 8195>8196 ack 0 oack 0 seg 1 13 1.1 > 1.1 18 data 8196>8195 ack 1 oack 1 seg 1 15 1.1 > 1.1 33 data 8195>8196 ack 1 oack 0 seg 2 17 1.1 > 1.1 18 data 8196>8195 ack 2 oack 1 seg 2 23 1.1 > 1.1 19 link-service 8197>8198 ack 0 ackdat 0 seg 1 dat seg count 0 25 1.1 > 1.1 45 data 8197>8198 ack 0 oack 0 seg 1 27 1.1 > 1.1 32 data 8197>8198 ack 0 oack 0 seg 2 29 1.1 > 1.1 18 data 8198>8197 ack 2 oack 1 seg 1 31 1.1 > 1.1 19 link-service 8195>8196 ack 0 ackdat 2 seg 2 dat seg count 0 [all …]
|
/external/syslinux/core/lwip/src/core/ |
D | tcp_out.c | 61 #define TCP_DATA_COPY(dst, src, len, seg) do { \ argument 63 len, &seg->chksum, &seg->chksum_swapped); \ 64 seg->flags |= TF_SEG_DATA_CHECKSUMMED; } while(0) 68 #define TCP_DATA_COPY(dst, src, len, seg) MEMCPY(dst, src, len) argument 79 static void tcp_output_segment(struct tcp_seg *seg, struct tcp_pcb *pcb); 158 struct tcp_seg *seg; in tcp_create_segment() local 161 if ((seg = (struct tcp_seg *)memp_malloc(MEMP_TCP_SEG)) == NULL) { in tcp_create_segment() 166 seg->flags = optflags; in tcp_create_segment() 167 seg->next = NULL; in tcp_create_segment() 168 seg->p = p; in tcp_create_segment() [all …]
|
/external/valgrind/exp-sgcheck/ |
D | h_main.c | 105 void Seg__cmp(Seg* seg, Addr a, Int* cmp, UWord* n) in Seg__cmp() argument 107 if (a < seg->addr) { in Seg__cmp() 109 *n = seg->addr - a; in Seg__cmp() 110 } else if (a < seg->addr + seg->szB && seg->szB > 0) { in Seg__cmp() 112 *n = a - seg->addr; in Seg__cmp() 115 *n = a - (seg->addr + seg->szB); in Seg__cmp() 119 /*inline*/ Bool Seg__is_freed(Seg* seg) in Seg__is_freed() argument 121 if (!is_known_segment(seg)) in Seg__is_freed() 124 return seg->nextfree != (Seg*)1; in Seg__is_freed() 127 ExeContext* Seg__where(Seg* seg) in Seg__where() argument [all …]
|
/external/webrtc/webrtc/p2p/base/ |
D | pseudotcp.cc | 577 Segment seg; in parse() local 578 seg.conv = bytes_to_long(buffer); in parse() 579 seg.seq = bytes_to_long(buffer + 4); in parse() 580 seg.ack = bytes_to_long(buffer + 8); in parse() 581 seg.flags = buffer[13]; in parse() 582 seg.wnd = bytes_to_short(buffer + 14); in parse() 584 seg.tsval = bytes_to_long(buffer + 16); in parse() 585 seg.tsecr = bytes_to_long(buffer + 20); in parse() 587 seg.data = reinterpret_cast<const char *>(buffer) + HEADER_SIZE; in parse() 588 seg.len = size - HEADER_SIZE; in parse() [all …]
|
/external/skqp/src/core/ |
D | SkPathMeasure.cpp | 27 const SkPathMeasure::Segment* SkPathMeasure::NextSegment(const Segment* seg) { in NextSegment() argument 28 unsigned ptIndex = seg->fPtIndex; in NextSegment() 31 ++seg; in NextSegment() 32 } while (seg->fPtIndex == ptIndex); in NextSegment() 33 return seg; in NextSegment() 244 Segment* seg = fSegments.append(); in compute_quad_segs() local 245 seg->fDistance = distance; in compute_quad_segs() 246 seg->fPtIndex = ptIndex; in compute_quad_segs() 247 seg->fType = kQuad_SegType; in compute_quad_segs() 248 seg->fTValue = maxt; in compute_quad_segs() [all …]
|
/external/skia/src/core/ |
D | SkPathMeasure.cpp | 27 const SkPathMeasure::Segment* SkPathMeasure::NextSegment(const Segment* seg) { in NextSegment() argument 28 unsigned ptIndex = seg->fPtIndex; in NextSegment() 31 ++seg; in NextSegment() 32 } while (seg->fPtIndex == ptIndex); in NextSegment() 33 return seg; in NextSegment() 244 Segment* seg = fSegments.append(); in compute_quad_segs() local 245 seg->fDistance = distance; in compute_quad_segs() 246 seg->fPtIndex = ptIndex; in compute_quad_segs() 247 seg->fType = kQuad_SegType; in compute_quad_segs() 248 seg->fTValue = maxt; in compute_quad_segs() [all …]
|
/external/valgrind/coregrind/m_aspacemgr/ |
D | aspacemgr-linux.c | 433 static void show_nsegment_full ( Int logLevel, Int segNo, const NSegment* seg ) in show_nsegment_full() argument 436 const HChar* name = ML_(am_get_segname)( seg->fnIdx ); in show_nsegment_full() 441 show_len_concisely(len_buf, seg->start, seg->end); in show_nsegment_full() 447 segNo, show_SegKind(seg->kind), in show_nsegment_full() 448 seg->start, seg->end, len_buf, in show_nsegment_full() 449 seg->hasR ? 'r' : '-', seg->hasW ? 'w' : '-', in show_nsegment_full() 450 seg->hasX ? 'x' : '-', seg->hasT ? 'T' : '-', in show_nsegment_full() 451 seg->isCH ? 'H' : '-', in show_nsegment_full() 452 show_ShrinkMode(seg->smode), in show_nsegment_full() 453 seg->dev, seg->ino, seg->offset, in show_nsegment_full() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_segmentation.c | 21 void vp9_enable_segmentation(struct segmentation *seg) { in vp9_enable_segmentation() argument 22 seg->enabled = 1; in vp9_enable_segmentation() 23 seg->update_map = 1; in vp9_enable_segmentation() 24 seg->update_data = 1; in vp9_enable_segmentation() 27 void vp9_disable_segmentation(struct segmentation *seg) { in vp9_disable_segmentation() argument 28 seg->enabled = 0; in vp9_disable_segmentation() 29 seg->update_map = 0; in vp9_disable_segmentation() 30 seg->update_data = 0; in vp9_disable_segmentation() 33 void vp9_set_segment_data(struct segmentation *seg, signed char *feature_data, in vp9_set_segment_data() argument 35 seg->abs_delta = abs_delta; in vp9_set_segment_data() [all …]
|
D | vp9_aq_360.c | 41 struct segmentation *seg = &cm->seg; in vp9_360aq_frame_setup() local 46 vp9_enable_segmentation(seg); in vp9_360aq_frame_setup() 47 vp9_clearall_segfeatures(seg); in vp9_360aq_frame_setup() 49 seg->abs_delta = SEGMENT_DELTADATA; in vp9_360aq_frame_setup() 71 vp9_set_segdata(seg, i, SEG_LVL_ALT_Q, qindex_delta); in vp9_360aq_frame_setup() 72 vp9_enable_segfeature(seg, i, SEG_LVL_ALT_Q); in vp9_360aq_frame_setup()
|
D | vp9_segmentation.h | 21 void vp9_enable_segmentation(struct segmentation *seg); 22 void vp9_disable_segmentation(struct segmentation *seg); 24 void vp9_disable_segfeature(struct segmentation *seg, int segment_id, 26 void vp9_clear_segdata(struct segmentation *seg, int segment_id, 39 void vp9_set_segment_data(struct segmentation *seg, signed char *feature_data, 44 void vp9_reset_segment_features(struct segmentation *seg);
|
D | vp9_aq_complexity.c | 49 struct segmentation *const seg = &cm->seg; in vp9_setup_in_frame_q_adj() local 63 vp9_clearall_segfeatures(seg); in vp9_setup_in_frame_q_adj() 68 vp9_disable_segmentation(seg); in vp9_setup_in_frame_q_adj() 72 vp9_enable_segmentation(seg); in vp9_setup_in_frame_q_adj() 75 seg->abs_delta = SEGMENT_DELTADATA; in vp9_setup_in_frame_q_adj() 78 vp9_disable_segfeature(seg, DEFAULT_AQ2_SEG, SEG_LVL_ALT_Q); in vp9_setup_in_frame_q_adj() 98 vp9_enable_segfeature(seg, segment, SEG_LVL_ALT_Q); in vp9_setup_in_frame_q_adj() 99 vp9_set_segdata(seg, segment, SEG_LVL_ALT_Q, qindex_delta); in vp9_setup_in_frame_q_adj()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/ |
D | g711.h | 209 int seg; in linear_to_ulaw() local 221 seg = top_bit(linear | 0xFF) - 7; in linear_to_ulaw() 227 if (seg >= 8) in linear_to_ulaw() 230 u_val = (uint8_t)(((seg << 4) | ((linear >> (seg + 3)) & 0xF)) ^ mask); in linear_to_ulaw() 282 int seg; in linear_to_alaw() local 296 seg = top_bit(linear | 0xFF) - 7; in linear_to_alaw() 297 if (seg >= 8) { in linear_to_alaw() 306 return (uint8_t)(((seg << 4) | ((linear >> ((seg) ? (seg + 3) : 4)) & 0x0F)) ^ in linear_to_alaw() 316 int seg; in alaw_to_linear() local 320 seg = (((int) alaw & 0x70) >> 4); in alaw_to_linear() [all …]
|
/external/syslinux/gpxe/src/arch/i386/include/ |
D | libkir.h | 98 #define put_real_kir_const_off( var, seg, off ) \ argument 104 : "r,r" ( var ), "rm,rm" ( seg ), "i,!r" ( off ) \ 107 #define put_real_kir_nonconst_off( var, seg, off ) \ argument 113 : "r" ( var ), "rm" ( seg ), "r" ( off ) \ 116 #define put_real_kir( var, seg, off ) \ argument 119 put_real_kir_const_off ( var, seg, off ); \ 121 put_real_kir_nonconst_off ( var, seg, off ); \ 124 #define get_real_kir_const_off( var, seg, off ) \ argument 130 : "rm,rm" ( seg ), "i,!r" ( off ) \ 133 #define get_real_kir_nonconst_off( var, seg, off ) \ argument [all …]
|
/external/syslinux/dos/ |
D | getsetsl.c | 20 uint16_t seg; in set_fs_sl() local 22 seg = ds() + ((size_t) p >> 4); in set_fs_sl() 23 set_fs(seg); in set_fs_sl() 97 uint16_t seg; in memcpy_to_sl() local 100 seg = ds() + ((size_t)dst >> 4); in memcpy_to_sl() 108 : "r" (seg) in memcpy_to_sl() 114 uint16_t seg; in memcpy_from_sl() local 117 seg = ds() + ((size_t)src >> 4); in memcpy_from_sl() 125 : "r" (seg) in memcpy_from_sl() 131 uint16_t seg; in memset_sl() local [all …]
|
/external/valgrind/coregrind/ |
D | fixup_macho_loadcmds.c | 476 struct segment_command_64 *seg = (struct segment_command_64 *)cmd; in modify_macho_loadcmds() local 477 if (0 == strcmp(seg->segname, "__LINKEDIT")) in modify_macho_loadcmds() 478 seg__linkedit = seg; in modify_macho_loadcmds() 479 if (0 == strcmp(seg->segname, "__UNIXSTACK")) in modify_macho_loadcmds() 480 seg__unixstack = seg; in modify_macho_loadcmds() 481 if (0 == strcmp(seg->segname, "__PAGEZERO")) in modify_macho_loadcmds() 482 seg__pagezero = seg; in modify_macho_loadcmds() 512 struct segment_command_64 *seg = seg__unixstack; in modify_macho_loadcmds() local 513 if (seg->vmaddr != expected_stack_start) in modify_macho_loadcmds() 515 if (seg->vmsize != expected_stack_size) in modify_macho_loadcmds() [all …]
|
D | m_addrinfo.c | 236 const NSegment *seg = VG_(am_find_nsegment) (a); in VG_() local 237 if (seg != NULL && seg->kind == SkAnonC in VG_() 238 && !seg->hasR && !seg->hasW && !seg->hasX) { in VG_() 264 const NSegment *seg = VG_(am_find_nsegment) (a); in VG_() local 267 if (seg != NULL in VG_() 269 && (seg->kind == SkAnonC || seg->kind == SkFileC) in VG_() 271 && seg->kind == SkAnonC in VG_() 273 && VG_(brk_limit) >= seg->start in VG_() 274 && VG_(brk_limit) <= seg->end+1) { in VG_() 290 if (seg != NULL in VG_() [all …]
|
/external/strace/ |
D | kexec.c | 44 const kernel_ulong_t *seg; in print_seg() local 52 seg = seg_buf; in print_seg() 54 seg = elem_buf; in print_seg() 58 printaddr(seg[0]); in print_seg() 59 tprintf(", bufsz=%" PRI_klu ", mem=", seg[1]); in print_seg() 60 printaddr(seg[2]); in print_seg() 61 tprintf(", memsz=%" PRI_klu "}", seg[3]); in print_seg() 75 kernel_ulong_t seg[4]; in print_kexec_segments() local 76 const size_t sizeof_seg = ARRAY_SIZE(seg) * current_wordsize; in print_kexec_segments() 78 print_array(tcp, addr, len, seg, sizeof_seg, in print_kexec_segments()
|
/external/freetype/src/autofit/ |
D | afcjk.c | 186 AF_Segment seg, limit, link; in af_cjk_metrics_init_widths() local 206 seg = axhints->segments; in af_cjk_metrics_init_widths() 207 limit = seg + axhints->num_segments; in af_cjk_metrics_init_widths() 209 for ( ; seg < limit; seg++ ) in af_cjk_metrics_init_widths() 211 link = seg->link; in af_cjk_metrics_init_widths() 214 if ( link && link->link == seg && link > seg ) in af_cjk_metrics_init_widths() 219 dist = seg->pos - link->pos; in af_cjk_metrics_init_widths() 787 AF_Segment seg; in af_cjk_hints_compute_segments() local 796 for ( seg = segments; seg < segment_limit; seg++ ) in af_cjk_hints_compute_segments() 798 AF_Point pt = seg->first; in af_cjk_hints_compute_segments() [all …]
|
D | aflatin2.c | 116 AF_Segment seg, limit, link; in af_latin2_metrics_init_widths() local 128 seg = axhints->segments; in af_latin2_metrics_init_widths() 129 limit = seg + axhints->num_segments; in af_latin2_metrics_init_widths() 131 for ( ; seg < limit; seg++ ) in af_latin2_metrics_init_widths() 133 link = seg->link; in af_latin2_metrics_init_widths() 136 if ( link && link->link == seg && link > seg ) in af_latin2_metrics_init_widths() 141 dist = seg->pos - link->pos; in af_latin2_metrics_init_widths() 1094 AF_Segment seg; in af_latin2_hints_compute_edges() local 1153 for ( seg = segments; seg < segment_limit; seg++ ) in af_latin2_hints_compute_edges() 1159 if ( seg->height < segment_length_threshold ) in af_latin2_hints_compute_edges() [all …]
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_seg_common.c | 28 void vp9_clearall_segfeatures(struct segmentation *seg) { in vp9_clearall_segfeatures() argument 29 vp9_zero(seg->feature_data); in vp9_clearall_segfeatures() 30 vp9_zero(seg->feature_mask); in vp9_clearall_segfeatures() 31 seg->aq_av_offset = 0; in vp9_clearall_segfeatures() 34 void vp9_enable_segfeature(struct segmentation *seg, int segment_id, in vp9_enable_segfeature() argument 36 seg->feature_mask[segment_id] |= 1 << feature_id; in vp9_enable_segfeature() 47 void vp9_set_segdata(struct segmentation *seg, int segment_id, in vp9_set_segdata() argument 55 seg->feature_data[segment_id][feature_id] = seg_data; in vp9_set_segdata()
|
D | vp9_seg_common.h | 52 static INLINE int segfeature_active(const struct segmentation *seg, in segfeature_active() argument 55 return seg->enabled && (seg->feature_mask[segment_id] & (1 << feature_id)); in segfeature_active() 58 void vp9_clearall_segfeatures(struct segmentation *seg); 60 void vp9_enable_segfeature(struct segmentation *seg, int segment_id, 67 void vp9_set_segdata(struct segmentation *seg, int segment_id, 70 static INLINE int get_segdata(const struct segmentation *seg, int segment_id, in get_segdata() argument 72 return seg->feature_data[segment_id][feature_id]; in get_segdata()
|
/external/syslinux/core/fs/pxe/ |
D | bios.c | 135 uint16_t seg, off; in pxe_init() local 149 seg = *(const uint16_t *)(base + 50); in pxe_init() 150 pxe = MK_PTR(seg, off); in pxe_init() 157 seg = *(const uint16_t *)(base + 4); /* Original ES */ in pxe_init() 158 pxenv = MK_PTR(seg, off); in pxe_init() 169 seg = regs.es; in pxe_init() 170 pxenv = MK_PTR(seg, off); in pxe_init() 179 seg = SEG(pxe); in pxe_init() 187 seg = SEG(pxenv); in pxe_init() 228 data_len = pxe->seg[PXE_Seg_UNDIData].size; in pxe_init() [all …]
|
/external/ltp/testcases/kernel/hotplug/memory_hotplug/ |
D | README | 41 anon <seg-name> <seg-size>[k|m|g|p] [<seg-share>] - 43 <seg-share> := private|shared - default = private 45 file <pathname> [<offset>[k|m|g|p] <length>[k|m|g|p]] [<seg-share>] - 49 <seg-share> := private|shared - default = private 51 shm <seg-name> <seg-size>[k|m|g|p] - 56 remove <seg-name> [<seg-name> ...] - remove the named segment[s] 58 map <seg-name> [<offset>[k|m|g|p] <length>[k|m|g|p]] [<seg-share>] - 65 unmap <seg-name> - unmap specified segment, but remember name/size/... 67 touch <seg-name> [<offset>[k|m|g|p] <length>[k|m|g|p]] [read|write] - 72 mbind <seg-name> [<offset>[k|m|g|p] <length>[k|m|g|p]] [all …]
|
/external/ltp/testcases/kernel/syscalls/modify_ldt/ |
D | modify_ldt02.c | 98 int seg[4]; in main() local 114 seg[0] = 12345; in main() 115 if (create_segment(seg, sizeof(seg)) == -1) { in main() 121 if (val != seg[0]) { in main() 123 val, seg[0]); in main() 168 int create_segment(void *seg, size_t size) in create_segment() argument 173 entry.base_addr = (unsigned long)seg; in create_segment()
|
/external/icu/icu4c/source/data/unit/ |
D | es_AR.txt | 48 dnam{"seg."} 49 one{"{0}seg."} 50 other{"{0}seg."} 69 dnam{"seg."} 70 one{"{0} seg."} 71 other{"{0} seg."} 72 per{"{0}/seg."}
|