Lines Matching refs:dd
36 uint32_t *dd = d; in word_copy() local
40 *(dd++) = *(ss++); in word_copy()
51 uint32_t *dd = d; in u64_to_le32_copy() local
60 *(dd++) = ss[1]; in u64_to_le32_copy()
61 *(dd++) = ss[0]; in u64_to_le32_copy()
64 *(dd++) = *(ss++); in u64_to_le32_copy()
65 *(dd++) = *(ss++); in u64_to_le32_copy()
73 uint32_t *dd = (uint32_t *)d; in u64_from_le32_copy() local
77 dd[1] = *(ss++); in u64_from_le32_copy()
78 dd[0] = *(ss++); in u64_from_le32_copy()
79 dd += 2; in u64_from_le32_copy()
81 *(dd++) = *(ss++); in u64_from_le32_copy()
82 *(dd++) = *(ss++); in u64_from_le32_copy()