Lines Matching refs:pos
38 char *pos = dest; in memset() local
56 if (((uintptr_t)(pos) & 7) != 0) { /* 7, Processed align */ in memset()
57 int unalignedCnt = 8 - ((uintptr_t)(pos) & 7); /* 7, 8, for calculate addr bits align */ in memset()
65 *pos = (char)c; in memset()
66 pos++; in memset()
72 *(uint64_t *)(pos) = c64; in memset()
73 *(uint64_t *)(pos + 8) = c64; /* 8, size of uint64_t */ in memset()
74 *(uint64_t *)(pos + 16) = c64; /* 16, size of two uint64_t data */ in memset()
75 *(uint64_t *)(pos + 24) = c64; /* 24, size of three uint64_t data */ in memset()
77 pos += 32; /* 32, size of four uint64_t data */ in memset()
85 *(uint64_t *)(pos) = c64; in memset()
86 *(uint64_t *)(pos + 8) = c64; /* 8, size of uint64_t */ in memset()
88 pos += 16; /* 16, size of two uint64_t data */ in memset()
96 *(uint64_t *)(pos) = c64; in memset()
98 pos += 8; /* 8, size of uint64_t */ in memset()
106 *(uint32_t *)(pos) = c32; in memset()
108 pos += 4; /* 4, size of uint32_t */ in memset()
114 *pos++ = c; in memset()