Home
last modified time | relevance | path

Searched refs:frame_offset (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/tcpdump/
H A Dprint-zeromq.c171 u_int frame_offset; in zmtp1_print_intermediate_part() local
174 frame_offset = GET_BE_U_2(cp); in zmtp1_print_intermediate_part()
175 ND_PRINT("\n\t frame offset 0x%04x", frame_offset); in zmtp1_print_intermediate_part()
179 if (frame_offset == 0xFFFF) in zmtp1_print_intermediate_part()
180 frame_offset = len - 2; /* always within the declared length */ in zmtp1_print_intermediate_part()
181 else if (2 + frame_offset > len) { in zmtp1_print_intermediate_part()
187 if (frame_offset) { in zmtp1_print_intermediate_part()
188 ND_PRINT("\n\t frame intermediate part, %u bytes", frame_offset); in zmtp1_print_intermediate_part()
189 if (frame_offset > remaining_len) in zmtp1_print_intermediate_part()
192 u_int len_printed = ND_MIN(frame_offset, remaining_len); in zmtp1_print_intermediate_part()
[all …]
/freebsd/sys/dev/firewire/
H A Dfwcam.c381 sc->frame_offset = 0; in fwcam_iso_start()
517 if (sc->frame_offset > 0) { in fwcam_iso_input()
518 if (sc->frame_offset == sc->frame_size) { in fwcam_iso_input()
537 sc->frame_offset = 0; in fwcam_iso_input()
548 if (sc->frame_offset + plen <= sc->frame_size) { in fwcam_iso_input()
549 memcpy(sc->frame_buf + sc->frame_offset, payload, plen); in fwcam_iso_input()
550 sc->frame_offset += plen; in fwcam_iso_input()
553 sc->frame_offset = 0; in fwcam_iso_input()
H A Dfwcam.h247 uint32_t frame_offset; /* write position in frame_buf */ member
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer.h115 sptr frame_offset; member
H A Dsanitizer_symbolizer_libcdep.cpp416 str = ExtractSptr(str, " ", &local.frame_offset); in ParseSymbolizeFrameOutput()
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp240 uptr local_beg_mod = (fp + local.frame_offset) % kRecordFPModulus; in PrintStackAllocations()