• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-i386/

Lines Matching defs:to

17  * very easy to understand. Everything is done entirely within the register
22 * consider these trivial functions to be PD.
25 /* AK: in fact I bet it would be better to move this stuff all out of line.
203 static __always_inline void * __memcpy(void * to, const void * from, size_t n)
214 : "0" (n/4), "g" (n), "1" ((long) to), "2" ((long) from)
216 return (to);
223 static __always_inline void * __constant_memcpy(void * to, const void * from, size_t n)
226 if (!n) return to;
228 case 1: *(char*)to = *(char*)from; return to;
229 case 2: *(short*)to = *(short*)from; return to;
230 case 4: *(int*)to = *(int*)from; return to;
231 case 3: *(short*)to = *(short*)from;
232 *((char*)to+2) = *((char*)from+2); return to;
233 case 5: *(int*)to = *(int*)from;
234 *((char*)to+4) = *((char*)from+4); return to;
235 case 6: *(int*)to = *(int*)from;
236 *((short*)to+2) = *((short*)from+2); return to;
237 case 8: *(int*)to = *(int*)from;
238 *((int*)to+1) = *((int*)from+1); return to;
241 edi = (long) to;
264 case 0: return to;
267 return to;
270 return to;
273 return to;
287 static inline void * __constant_memcpy3d(void * to, const void * from, size_t len)
290 return __constant_memcpy(to, from, len);
291 return _mmx_memcpy(to, from, len);
294 static __inline__ void *__memcpy3d(void *to, const void *from, size_t len)
297 return __memcpy(to, from, len);
298 return _mmx_memcpy(to, from, len);
355 /* we might want to write optimized versions of these later */
359 * memset(x,0,y) is a reasonably common thing to do, so we want to fill
381 /* Added by Gertjan van Wingerde to make minix and sysv module work */