Lines Matching refs:s
207 const uint8_t *s = src; in memmove() local
210 if (d < s) { in memmove()
212 d[i] = s[i]; in memmove()
213 } else if (d > s) { in memmove()
216 d[i] = s[i]; in memmove()
258 struct xz_dec *s; in unxz() local
270 s = xz_dec_init(XZ_SINGLE, 0); in unxz()
272 s = xz_dec_init(XZ_DYNALLOC, (uint32_t)-1); in unxz()
274 if (s == NULL) in unxz()
300 ret = xz_dec_run(s, &b); in unxz()
323 ret = xz_dec_run(s, &b); in unxz()
349 xz_dec_end(s); in unxz()
386 xz_dec_end(s); in unxz()