Lines Matching refs:source
85 uint32_t* source = reinterpret_cast<uint32_t*>(imageBuffer);
93 while ((source < sourceEnd) && (dest < destEnd)) {
94 if (*source != BITMAP_ZIP_FLAG) {
95 *dest++ = *source++;
97 source++;
98 uint32_t value = *source++;
99 uint32_t count = *source++;
125 uint8_t* source = reinterpret_cast<uint8_t*>(imageBuffer);
129 while ((source < sourceEnd) && (dest < destEnd)) {
131 uint32_t value = ((*source)) + (*(source + BITMAP_MID_BIT) << MOVE_LOW)
132 + (*(source + BITMAP_LOW_BIT) << MOVE_HIGH);
133 source = source + BITMAP_ZIP_LEN;
138 value = ((*source)) + (*(source + BITMAP_MID_BIT) << MOVE_LOW) + (*(source + BITMAP_LOW_BIT) << MOVE_HIGH);
139 source = source + BITMAP_ZIP_LEN;
141 uint32_t count = ((*source)) + (*(source + BITMAP_MID_BIT) << MOVE_LOW)
142 + (*(source + BITMAP_LOW_BIT) << MOVE_HIGH);
143 source = source + BITMAP_ZIP_LEN;