Searched refs:from_end (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_stack_store.cpp | 210 static u8 *CompressDelta(const uptr *from, const uptr *from_end, u8 *to, in CompressDelta() 213 for (; from != from_end; ++from, ++encoder) *encoder = *from; in UncompressDelta() 217 static uptr *UncompressDelta(const u8 *from, const u8 *from_end, uptr *to, in UncompressDelta() 219 SLeb128Decoder decoder(from, from_end); in UncompressDelta() 220 SLeb128Decoder end(from_end, from_end); 226 static u8 *CompressLzw(const uptr *from, const uptr *from_end, u8 *to, in CompressLzw() 229 encoder = LzwEncode<uptr>(from, from_end, encoder); in UncompressLzw() 233 static uptr *UncompressLzw(const u8 *from, const u8 *from_end, uptr *to, in UncompressLzw() 235 SLeb128Decoder decoder(from, from_end); in UncompressLzw() 205 CompressDelta(const uptr * from,const uptr * from_end,u8 * to,u8 * to_end) CompressDelta() argument 212 UncompressDelta(const u8 * from,const u8 * from_end,uptr * to,uptr * to_end) UncompressDelta() argument 221 CompressLzw(const uptr * from,const uptr * from_end,u8 * to,u8 * to_end) CompressLzw() argument 228 UncompressLzw(const u8 * from,const u8 * from_end,uptr * to,uptr * to_end) UncompressLzw() argument [all...] |
/freebsd/contrib/ncurses/ncurses/tinfo/ |
H A D | comp_scan.c | 139 last_char(int from_end) in last_char() argument 146 if (from_end <= (int) len) in last_char() 147 result = bufptr[(int) len - from_end]; in last_char()
|