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