Lines Matching refs:p
23 ulong *p; in get_arg() local
30 p = map_sysmem(addr, sizeof(uchar)); in get_arg()
31 val = (ulong)*(uchar *)p; in get_arg()
32 unmap_sysmem(p); in get_arg()
35 p = map_sysmem(addr, sizeof(ushort)); in get_arg()
36 val = (ulong)*(ushort *)p; in get_arg()
37 unmap_sysmem(p); in get_arg()
41 p = map_sysmem(addr, sizeof(ulong)); in get_arg()
42 val = *p; in get_arg()
43 unmap_sysmem(p); in get_arg()
88 char *p = memstr(string, *slen, old, olen); in substitute() local
90 if (p == NULL) in substitute()
94 (long)(p - string), olen, nlen); in substitute()
108 tail = ssize - (p + len - string); in substitute()
112 memmove(p + nlen, p + olen, tail); in substitute()
116 memcpy(p, new, nlen); in substitute()
120 return p + nlen; in substitute()
254 char *p = memstr(np, nlen, backref, 2); in regex_sub() local
256 if (p == NULL) in regex_sub()