Home | History | Annotate | Download | only in vmwgfx

Lines Matching defs:SPILL

97 #define SPILL(_var, _type) ((unsigned long) _var & (sizeof(_type) - 1))
109 unsigned int spill = SPILL(dst, _type); \
112 if (spill && spill == SPILL(src, _type) && \
113 sizeof(_type) - spill <= size) { \
114 spill = sizeof(_type) - spill; \
115 diff_offs = vmw_find_first_diff_u8(dst, src, spill); \
116 if (diff_offs < spill) \
119 dst += spill; \
120 src += spill; \
121 size -= spill; \
122 offset += spill; \
123 spill = 0; \
125 if (!spill && !SPILL(src, _type)) { \
182 unsigned int spill = SPILL(dst, _type); \
186 if (spill && spill <= size && spill == SPILL(src, _type)) { \
187 diff_offs = vmw_find_last_diff_u8(dst, src, spill); \
189 location = size - spill + diff_offs - 1; \
193 dst -= spill; \
194 src -= spill; \
195 size -= spill; \
196 spill = 0; \
198 if (!spill && !SPILL(src, _type)) { \