Home
last modified time | relevance | path

Searched refs:ip_end (Results 1 – 12 of 12) sorted by relevance

/external/brotli/c/enc/
Dcompress_fragment.c432 const uint8_t* ip_end; in BrotliCompressFragmentFastImpl() local
493 ip_end = input + block_size; in BrotliCompressFragmentFastImpl()
565 candidate + 5, ip + 5, (size_t)(ip_end - ip) - 5); in BrotliCompressFragmentFastImpl()
625 candidate + 5, ip + 5, (size_t)(ip_end - ip) - 5); in BrotliCompressFragmentFastImpl()
662 assert(next_emit <= ip_end); in BrotliCompressFragmentFastImpl()
682 if (next_emit < ip_end) { in BrotliCompressFragmentFastImpl()
683 const size_t insert = (size_t)(ip_end - next_emit); in BrotliCompressFragmentFastImpl()
690 EmitUncompressedMetaBlock(metablock_start, ip_end, mlen_storage_ix - 3, in BrotliCompressFragmentFastImpl()
699 next_emit = ip_end; in BrotliCompressFragmentFastImpl()
Dcompress_fragment_two_pass.c243 const uint8_t* ip_end = input + block_size; in CreateCommands() local
324 candidate + 6, ip + 6, (size_t)(ip_end - ip) - 6); in CreateCommands()
374 candidate + 6, ip + 6, (size_t)(ip_end - ip) - 6); in CreateCommands()
414 assert(next_emit <= ip_end); in CreateCommands()
416 if (next_emit < ip_end) { in CreateCommands()
417 const uint32_t insert = (uint32_t)(ip_end - next_emit); in CreateCommands()
/external/syslinux/lzo/src/
Dlzo1x_c.ch48 const lzo_bytep const ip_end = in + in_len - 20;
65 if __lzo_unlikely(ip >= ip_end)
107 if __lzo_unlikely(ip >= ip_end)
181 if __lzo_unlikely(ip + m_len >= ip_end)
215 if __lzo_unlikely(ip + m_len >= ip_end)
263 if __lzo_unlikely(ip + m_len >= ip_end)
Dlzo1_d.ch77 # define TEST_IP (ip < ip_end)
81 if ((lzo_uint)(ip_end - ip) < (lzo_uint)(x)) goto input_overrun
109 # define TEST_IP (ip < ip_end)
Dlzo1x_oo.ch29 #define TEST_IP (ip < ip_end)
85 lzo_bytep const ip_end = in + in_len;
347 return (ip == ip_end ? LZO_E_OK :
348 (ip < ip_end ? LZO_E_INPUT_NOT_CONSUMED : LZO_E_INPUT_OVERRUN));
Dlzo1x_d.ch53 const lzo_bytep const ip_end = in + in_len;
451 return (ip == ip_end ? LZO_E_OK :
452 (ip < ip_end ? LZO_E_INPUT_NOT_CONSUMED : LZO_E_INPUT_OVERRUN));
/external/libunwind_llvm/src/
DUnwindCursor.hpp46 static void add(pint_t mh, pint_t ip_start, pint_t ip_end, pint_t fde);
49 unw_word_t ip_end,
57 pint_t ip_end; member
104 if ((p->ip_start <= pc) && (pc < p->ip_end)) { in findFDE()
115 void DwarfFDECache<A>::add(pint_t mh, pint_t ip_start, pint_t ip_end, in add() argument
133 _bufferUsed->ip_end = ip_end; in add()
170 unw_word_t ip_start, unw_word_t ip_end, unw_word_t fde, unw_word_t mh)) { in iterateCacheEntries() argument
173 (*func)(p->ip_start, p->ip_end, p->fde, p->mh); in iterateCacheEntries()
Dlibunwind_ext.h28 unw_word_t ip_end,
Dlibunwind.cpp317 unw_word_t ip_start, unw_word_t ip_end, unw_word_t fde, unw_word_t mh)) { in unw_iterate_dwarf_unwind_cache() argument
/external/valgrind/coregrind/m_debuginfo/
Dminilzo-inl.c3178 const lzo_bytep const ip_end = in + in_len - 20; in do_compress() local
3195 if __lzo_unlikely(ip >= ip_end) in do_compress()
3235 if __lzo_unlikely(ip >= ip_end) in do_compress()
3324 if __lzo_unlikely(ip + m_len >= ip_end) in do_compress()
3354 if __lzo_unlikely(ip + m_len >= ip_end) in do_compress()
3381 if __lzo_unlikely(ip + m_len >= ip_end) in do_compress()
3563 # define TEST_IP (ip < ip_end)
3567 if ((lzo_uint)(ip_end - ip) < (lzo_uint)(x)) goto input_overrun
3591 # define TEST_IP (ip < ip_end)
3640 const lzo_bytep const ip_end = in + in_len; local
[all …]
/external/libvncserver/common/
Dminilzo.c4604 const lzo_bytep const ip_end = in + in_len - 20; in do_compress() local
4621 if __lzo_unlikely(ip >= ip_end) in do_compress()
4661 if __lzo_unlikely(ip >= ip_end) in do_compress()
4733 if __lzo_unlikely(ip + m_len >= ip_end) in do_compress()
4767 if __lzo_unlikely(ip + m_len >= ip_end) in do_compress()
4815 if __lzo_unlikely(ip + m_len >= ip_end) in do_compress()
4991 # define TEST_IP (ip < ip_end)
4995 if ((lzo_uint)(ip_end - ip) < (lzo_uint)(x)) goto input_overrun
5021 # define TEST_IP (ip < ip_end)
5082 const lzo_bytep const ip_end = in + in_len; local
[all …]
/external/curl/lib/
Dftp.c975 char *ip_end = NULL; in ftp_state_use_port() local
987 ip_end = strchr(string_ftpport, ']'); in ftp_state_use_port()
988 if(ip_end) in ftp_state_use_port()
989 strncpy(addr, ip_start, ip_end - ip_start); in ftp_state_use_port()
995 ip_end = string_ftpport; in ftp_state_use_port()
998 ip_end = strchr(string_ftpport, ':'); in ftp_state_use_port()
999 if(ip_end) { in ftp_state_use_port()
1006 ip_end = NULL; /* this got no port ! */ in ftp_state_use_port()
1011 strncpy(addr, string_ftpport, ip_end - ip_start); in ftp_state_use_port()
1019 if(ip_end != NULL) { in ftp_state_use_port()
[all …]