Lines Matching defs:source
138 byte *source;
157 source = draw_chars + (row<<10) + (col<<3);
162 source -= 128*y;
175 if (source[0])
176 dest[0] = source[0];
177 if (source[1])
178 dest[1] = source[1];
179 if (source[2])
180 dest[2] = source[2];
181 if (source[3])
182 dest[3] = source[3];
183 if (source[4])
184 dest[4] = source[4];
185 if (source[5])
186 dest[5] = source[5];
187 if (source[6])
188 dest[6] = source[6];
189 if (source[7])
190 dest[7] = source[7];
191 source += 128;
203 if (source[0])
204 pusdest[0] = d_8to16table[source[0]];
205 if (source[1])
206 pusdest[1] = d_8to16table[source[1]];
207 if (source[2])
208 pusdest[2] = d_8to16table[source[2]];
209 if (source[3])
210 pusdest[3] = d_8to16table[source[3]];
211 if (source[4])
212 pusdest[4] = d_8to16table[source[4]];
213 if (source[5])
214 pusdest[5] = d_8to16table[source[5]];
215 if (source[6])
216 pusdest[6] = d_8to16table[source[6]];
217 if (source[7])
218 pusdest[7] = d_8to16table[source[7]];
220 source += 128;
253 byte *source;
265 source = draw_chars + (row<<10) + (col<<3);
271 dest[0] = source[0];
272 dest[1] = source[1];
273 dest[2] = source[2];
274 dest[3] = source[3];
275 dest[4] = source[4];
276 dest[5] = source[5];
277 dest[6] = source[6];
278 dest[7] = source[7];
279 source += 128;
291 byte *dest, *source;
303 source = pic->data;
311 Q_memcpy (dest, source, pic->width);
313 source += pic->width;
325 pusdest[u] = d_8to16table[source[u]];
329 source += pic->width;
342 byte *dest, *source, tbyte;
352 source = pic->data;
363 if ( (tbyte=source[u]) != TRANSPARENT_COLOR)
367 source += pic->width;
376 if ( (tbyte=source[u]) != TRANSPARENT_COLOR)
378 if ( (tbyte=source[u+1]) != TRANSPARENT_COLOR)
380 if ( (tbyte=source[u+2]) != TRANSPARENT_COLOR)
382 if ( (tbyte=source[u+3]) != TRANSPARENT_COLOR)
384 if ( (tbyte=source[u+4]) != TRANSPARENT_COLOR)
386 if ( (tbyte=source[u+5]) != TRANSPARENT_COLOR)
388 if ( (tbyte=source[u+6]) != TRANSPARENT_COLOR)
390 if ( (tbyte=source[u+7]) != TRANSPARENT_COLOR)
394 source += pic->width;
407 tbyte = source[u];
416 source += pic->width;
429 byte *dest, *source, tbyte;
439 source = pic->data;
450 if ( (tbyte=source[u]) != TRANSPARENT_COLOR)
454 source += pic->width;
463 if ( (tbyte=source[u]) != TRANSPARENT_COLOR)
465 if ( (tbyte=source[u+1]) != TRANSPARENT_COLOR)
467 if ( (tbyte=source[u+2]) != TRANSPARENT_COLOR)
469 if ( (tbyte=source[u+3]) != TRANSPARENT_COLOR)
471 if ( (tbyte=source[u+4]) != TRANSPARENT_COLOR)
473 if ( (tbyte=source[u+5]) != TRANSPARENT_COLOR)
475 if ( (tbyte=source[u+6]) != TRANSPARENT_COLOR)
477 if ( (tbyte=source[u+7]) != TRANSPARENT_COLOR)
481 source += pic->width;
494 tbyte = source[u];
503 source += pic->width;
512 byte *source;
518 source = draw_chars + (row<<10) + (col<<3);
525 if (source[x])
526 dest[x] = 0x60 + source[x];
527 source += 128;