Lines Matching refs:spill
105 unsigned int spill = SPILL(dst, _type); \
108 if (spill && spill == SPILL(src, _type) && \
109 sizeof(_type) - spill <= size) { \
110 spill = sizeof(_type) - spill; \
111 diff_offs = vmw_find_first_diff_u8(dst, src, spill); \
112 if (diff_offs < spill) \
115 dst += spill; \
116 src += spill; \
117 size -= spill; \
118 offset += spill; \
119 spill = 0; \
121 if (!spill && !SPILL(src, _type)) { \
178 unsigned int spill = SPILL(dst, _type); \
182 if (spill && spill <= size && spill == SPILL(src, _type)) { \
183 diff_offs = vmw_find_last_diff_u8(dst, src, spill); \
185 location = size - spill + diff_offs - 1; \
189 dst -= spill; \
190 src -= spill; \
191 size -= spill; \
192 spill = 0; \
194 if (!spill && !SPILL(src, _type)) { \