Home | History | Annotate | Download | only in include

Lines Matching defs:xp

107                 const uint8_t * xp = (const uint8_t *)p;
108 uint64_t res = *xp;
110 for (++xp; num_bytes > 1; ++xp, --num_bytes)
111 res = (res << 8) | *xp;
249 const uint8_t * xp = (const uint8_t *)p + (num_bytes - 1);
250 uint64_t res = *xp;
252 for (--xp; num_bytes > 1; --xp, --num_bytes)
253 res = (res << 8) | *xp;