Home
last modified time | relevance | path

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

/external/u-boot/lib/lzo/
Dlzo1x_decompress.c20 #define HAVE_IP(x, ip_end, ip) ((size_t)(ip_end - ip) < (x)) argument
144 const unsigned char * const ip_end = in + in_len; in lzo1x_decompress_safe() local
158 if (HAVE_IP(t + 1, ip_end, ip)) in lzo1x_decompress_safe()
166 while ((ip < ip_end)) { in lzo1x_decompress_safe()
171 if (HAVE_IP(1, ip_end, ip)) in lzo1x_decompress_safe()
176 if (HAVE_IP(1, ip_end, ip)) in lzo1x_decompress_safe()
183 if (HAVE_IP(t + 4, ip_end, ip)) in lzo1x_decompress_safe()
243 if (HAVE_IP(1, ip_end, ip)) in lzo1x_decompress_safe()
248 if (HAVE_IP(1, ip_end, ip)) in lzo1x_decompress_safe()
262 if (HAVE_IP(1, ip_end, ip)) in lzo1x_decompress_safe()
[all …]
/external/u-boot/fs/jffs2/
Dcompr_lzo.c97 #define TEST_IP (ip < ip_end)
101 if ((lzo_uint)(ip_end - ip) < (lzo_uint)(x)) goto input_overrun
159 const lzo_byte *const ip_end = in + in_len; in lzo1x_decompress() local
379 return (ip == ip_end ? LZO_E_OK : in lzo1x_decompress()
381 ip_end ? LZO_E_INPUT_NOT_CONSUMED : LZO_E_INPUT_OVERRUN)); in lzo1x_decompress()
/external/brotli/c/enc/
Dcompress_fragment.c431 const uint8_t* ip_end; in BrotliCompressFragmentFastImpl() local
492 ip_end = input + block_size; in BrotliCompressFragmentFastImpl()
564 candidate + 5, ip + 5, (size_t)(ip_end - ip) - 5); in BrotliCompressFragmentFastImpl()
624 candidate + 5, ip + 5, (size_t)(ip_end - ip) - 5); in BrotliCompressFragmentFastImpl()
661 BROTLI_DCHECK(next_emit <= ip_end); in BrotliCompressFragmentFastImpl()
681 if (next_emit < ip_end) { in BrotliCompressFragmentFastImpl()
682 const size_t insert = (size_t)(ip_end - next_emit); in BrotliCompressFragmentFastImpl()
689 EmitUncompressedMetaBlock(metablock_start, ip_end, mlen_storage_ix - 3, in BrotliCompressFragmentFastImpl()
698 next_emit = ip_end; in BrotliCompressFragmentFastImpl()
Dcompress_fragment_two_pass.c246 const uint8_t* ip_end = input + block_size; in CreateCommands() local
327 (size_t)(ip_end - ip) - min_match); in CreateCommands()
392 (size_t)(ip_end - ip) - min_match); in CreateCommands()
445 BROTLI_DCHECK(next_emit <= ip_end); in CreateCommands()
447 if (next_emit < ip_end) { in CreateCommands()
448 const uint32_t insert = (uint32_t)(ip_end - next_emit); in CreateCommands()
/external/libunwind_llvm/src/
Dlibunwind_ext.h27 unw_word_t ip_end,
DUnwindCursor.hpp85 static void add(pint_t mh, pint_t ip_start, pint_t ip_end, pint_t fde);
88 unw_word_t ip_end,
96 pint_t ip_end; member
142 if ((p->ip_start <= pc) && (pc < p->ip_end)) { in findFDE()
153 void DwarfFDECache<A>::add(pint_t mh, pint_t ip_start, pint_t ip_end, in add() argument
171 _bufferUsed->ip_end = ip_end; in add()
208 unw_word_t ip_start, unw_word_t ip_end, unw_word_t fde, unw_word_t mh)) { in iterateCacheEntries() argument
211 (*func)(p->ip_start, p->ip_end, p->fde, p->mh); in iterateCacheEntries()
Dlibunwind.cpp245 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/curl/lib/
Dftp.c971 char *ip_end = NULL; in ftp_state_use_port() local
983 ip_end = strchr(string_ftpport, ']'); in ftp_state_use_port()
984 if(ip_end) in ftp_state_use_port()
985 strncpy(addr, ip_start, ip_end - ip_start); in ftp_state_use_port()
991 ip_end = string_ftpport; in ftp_state_use_port()
994 ip_end = strchr(string_ftpport, ':'); in ftp_state_use_port()
995 if(ip_end) { in ftp_state_use_port()
1002 ip_end = NULL; /* this got no port ! */ in ftp_state_use_port()
1007 strncpy(addr, string_ftpport, ip_end - ip_start); in ftp_state_use_port()
1015 if(ip_end != NULL) { in ftp_state_use_port()
[all …]