Lines Matching refs:s
197 void *LZ4_malloc(size_t s);
198 void *LZ4_calloc(size_t n, size_t s);
200 #define ALLOC(s) LZ4_malloc(s) argument
201 #define ALLOC_AND_ZERO(s) LZ4_calloc(1, s) argument
205 #define ALLOC(s) kmalloc(s, 0) argument
206 #define ALLOC_AND_ZERO(s) kzalloc(s, 0) argument
211 #define MEM_INIT(p, v, s) memset((p), (v), (s)) argument
437 const BYTE *s = (const BYTE *)srcPtr; in LZ4_wildCopy8() local
442 LZ4_memcpy(d, s, 8); in LZ4_wildCopy8()
444 s += 8; in LZ4_wildCopy8()
499 const BYTE *s = (const BYTE *)srcPtr; in LZ4_wildCopy32() local
504 LZ4_memcpy(d, s, 16); in LZ4_wildCopy32()
505 LZ4_memcpy(d + 16, s + 16, 16); in LZ4_wildCopy32()
507 s += 32; in LZ4_wildCopy32()
1795 void *const s = LZ4_initStream(state, sizeof(*state)); in LZ4_compress_destSize_extState() local
1796 assert(s != NULL); in LZ4_compress_destSize_extState()
1797 (void)s; in LZ4_compress_destSize_extState()
2189 U32 s; in read_variable_length() local
2197 s = **ip; in read_variable_length()
2199 length += s; in read_variable_length()
2205 } while (s == 255); in read_variable_length()