Lines Matching refs:ss
37 const uint32_t *ss = s; in word_copy() local
40 *(dd++) = *(ss++); in word_copy()
52 const uint32_t *ss = (const uint32_t *)s; in u64_to_le32_copy() local
60 *(dd++) = ss[1]; in u64_to_le32_copy()
61 *(dd++) = ss[0]; in u64_to_le32_copy()
62 ss += 2; in u64_to_le32_copy()
64 *(dd++) = *(ss++); in u64_to_le32_copy()
65 *(dd++) = *(ss++); in u64_to_le32_copy()
72 const uint32_t *ss = s; in u64_from_le32_copy() local
77 dd[1] = *(ss++); in u64_from_le32_copy()
78 dd[0] = *(ss++); in u64_from_le32_copy()
81 *(dd++) = *(ss++); in u64_from_le32_copy()
82 *(dd++) = *(ss++); in u64_from_le32_copy()