Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 5 of 5) sorted by relevance

/xv6-public/
H A Dstring.c5 memset(void *dst, int c, uint n) in memset() argument
7 if ((int)dst%4 == 0 && n%4 == 0){ in memset()
9 stosl(dst, (c<<24)|(c<<16)|(c<<8)|c, n/4); in memset()
11 stosb(dst, c, n); in memset()
12 return dst; in memset()
32 memmove(void *dst, const void *src, uint n) in memmove() argument
38 d = dst; in memmove()
48 return dst; in memmove()
53 memcpy(void *dst, const void *src, uint n) in memcpy() argument
55 return memmove(dst, src, n); in memcpy()
H A Dulib.c37 memset(void *dst, int c, uint n) in memset() argument
39 stosb(dst, c, n); in memset()
40 return dst; in memset()
98 char *dst; in memmove() local
101 dst = vdst; in memmove()
104 *dst++ = *src++; in memmove()
H A Dbootmain.c60 readsect(void *dst, uint offset) in readsect() argument
73 insl(0x1F0, dst, SECTSIZE/4); in readsect()
H A Dconsole.c236 consoleread(struct inode *ip, char *dst, int n) in consoleread() argument
262 *dst++ = c; in consoleread()
H A Dfs.c453 readi(struct inode *ip, char *dst, uint off, uint n) in readi() argument
461 return devsw[ip->major].read(ip, dst, n); in readi()
469 for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ in readi()
472 memmove(dst, bp->data + off%BSIZE, m); in readi()