Home
last modified time | relevance | path

Searched refs:dataend (Results 1 – 8 of 8) sorted by relevance

/external/tcpdump/
Dprint-ospf6.c388 register const struct lsa6_hdr *lshp, const u_char *dataend) in ospf6_print_lshdr() argument
390 if ((const u_char *)(lshp + 1) > dataend) in ospf6_print_lshdr()
451 register const struct lsa6 *lsap, const u_char *dataend) in ospf6_print_lsa() argument
473 if (ospf6_print_lshdr(ndo, &lsap->ls_hdr, dataend)) in ospf6_print_lsa()
484 if (length < sizeof(struct lsa6_hdr) || (const u_char *)lsap + length > dataend) in ospf6_print_lsa()
726 register const u_char *dataend) in ospf6_decode_v3() argument
762 while ((const u_char *)ap < dataend) { in ospf6_decode_v3()
789 while ((const u_char *)lshp < dataend) { in ospf6_decode_v3()
790 if (ospf6_print_lshdr(ndo, lshp++, dataend)) in ospf6_decode_v3()
800 while ((const u_char *)lsrp < dataend) { in ospf6_decode_v3()
[all …]
Dprint-ospf.c892 register const u_char *dataend; in ospf_decode_lls() local
916 dataend = (const u_char *)op + length; in ospf_decode_lls()
936 while (dptr < dataend) { in ospf_decode_lls()
981 register const struct ospfhdr *op, register const u_char *dataend) in ospf_decode_v2() argument
1021 if ((const u_char *)ap < dataend) in ospf_decode_v2()
1023 while ((const u_char *)ap < dataend) { in ospf_decode_v2()
1046 while (((const u_char *)lshp < dataend) && ospf_print_lshdr(ndo, lshp) != -1) { in ospf_decode_v2()
1053 while ((const u_char *)lsrp < dataend) { in ospf_decode_v2()
1115 register const u_char *dataend; in ospf_print() local
1145 dataend = bp + EXTRACT_16BITS(&op->ospf_len); in ospf_print()
[all …]
/external/elfutils/libdw/
DlibdwP.h1162 const unsigned char *const dataend in __libdw_cu_ranges_base() local
1169 if (unlikely (readp > dataend - 8)) in __libdw_cu_ranges_base()
1176 if (readp > dataend - 8 in __libdw_cu_ranges_base()
1178 || unit_length > (uint64_t) (dataend - readp)) in __libdw_cu_ranges_base()
1240 const unsigned char *const dataend in __libdw_cu_locs_base() local
1247 if (unlikely (readp > dataend - 8)) in __libdw_cu_locs_base()
1254 if (readp > dataend - 8 in __libdw_cu_locs_base()
1256 || unit_length > (uint64_t) (dataend - readp)) in __libdw_cu_locs_base()
/external/elfutils/src/
Dreadelf.c5656 const unsigned char *const dataend = ((unsigned char *) data->d_buf in print_debug_rnglists_section() local
5658 while (readp < dataend) in print_debug_rnglists_section()
5660 if (unlikely (readp > dataend - 4)) in print_debug_rnglists_section()
5676 if (unlikely (readp > dataend - 8)) in print_debug_rnglists_section()
5687 if (readp > dataend - 8 in print_debug_rnglists_section()
5689 || unit_length > (uint64_t) (dataend - readp)) in print_debug_rnglists_section()
6655 const unsigned char *const dataend = ((unsigned char *) data->d_buf in print_debug_frame_section() local
6657 while (readp < dataend) in print_debug_frame_section()
6659 if (unlikely (readp + 4 > dataend)) in print_debug_frame_section()
6675 if (unlikely (readp + 8 > dataend)) in print_debug_frame_section()
[all …]
DChangeLog1871 dataend checks.
/external/libcups/backend/
Ddnssd.c995 *dataend; /* End of entire TXT record */ local
1050 for (data = rdata, dataend = data + rdlen;
1051 data < dataend;
1062 if (!datalen || (data + datalen) > dataend)
/external/zopfli/src/zopflipng/lodepng/
Dlodepng.cpp1672 const unsigned char* data, size_t datapos, size_t dataend, in deflateDynamic() argument
1702 size_t datasize = dataend - datapos; in deflateDynamic()
1732 error = encodeLZ77(&lz77_encoded, hash, data, datapos, dataend, settings->windowsize, in deflateDynamic()
1739 …for(i = datapos; i < dataend; i++) lz77_encoded.data[i] = data[i]; /*no LZ77, but still will be Hu… in deflateDynamic()
1918 size_t datapos, size_t dataend, in deflateFixed() argument
1942 error = encodeLZ77(&lz77_encoded, hash, data, datapos, dataend, settings->windowsize, in deflateFixed()
1949 for(i = datapos; i < dataend; i++) in deflateFixed()
/external/libcups/tools/
Dipptool.c836 *dataend = data + datalen; in copy_hex_string() local
846 for (dataptr = data; dataptr < dataend; dataptr ++) in copy_hex_string()
850 if (dataptr < dataend) in copy_hex_string()
858 for (bufptr = buffer + 1, dataptr = data; bufptr < bufend && dataptr < dataend; dataptr ++) in copy_hex_string()