Lines Matching refs:spill
104 unsigned int spill = SPILL(dst, _type); \
107 if (spill && spill == SPILL(src, _type) && \
108 sizeof(_type) - spill <= size) { \
109 spill = sizeof(_type) - spill; \
110 diff_offs = vmw_find_first_diff_u8(dst, src, spill); \
111 if (diff_offs < spill) \
114 dst += spill; \
115 src += spill; \
116 size -= spill; \
117 offset += spill; \
118 spill = 0; \
120 if (!spill && !SPILL(src, _type)) { \
177 unsigned int spill = SPILL(dst, _type); \
181 if (spill && spill <= size && spill == SPILL(src, _type)) { \
182 diff_offs = vmw_find_last_diff_u8(dst, src, spill); \
184 location = size - spill + diff_offs - 1; \
188 dst -= spill; \
189 src -= spill; \
190 size -= spill; \
191 spill = 0; \
193 if (!spill && !SPILL(src, _type)) { \