Home
last modified time | relevance | path

Searched refs:bufp (Results 1 – 13 of 13) sorted by relevance

/glibc-2.36/posix/
Dregex.c49 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \ argument
50 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
51 # define re_match(bufp, string, size, pos, regs) \ argument
52 __re_match (bufp, string, size, pos, regs)
53 # define re_search(bufp, string, size, startpos, range, regs) \ argument
54 __re_search (bufp, string, size, startpos, range, regs)
55 # define re_compile_pattern(pattern, length, bufp) \ argument
56 __re_compile_pattern (pattern, length, bufp)
58 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \ argument
59 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
[all …]
Dregexec.c39 static regoff_t re_search_2_stub (struct re_pattern_buffer *bufp,
45 static regoff_t re_search_stub (struct re_pattern_buffer *bufp,
277 re_match (struct re_pattern_buffer *bufp, const char *string, Idx length, in re_match() argument
280 return re_search_stub (bufp, string, length, start, 0, length, regs, true); in re_match()
287 re_search (struct re_pattern_buffer *bufp, const char *string, Idx length, in weak_alias()
290 return re_search_stub (bufp, string, length, start, range, length, regs, in weak_alias()
298 re_match_2 (struct re_pattern_buffer *bufp, const char *string1, Idx length1, in weak_alias()
302 return re_search_2_stub (bufp, string1, length1, string2, length2, in weak_alias()
310 re_search_2 (struct re_pattern_buffer *bufp, const char *string1, Idx length1, in weak_alias()
314 return re_search_2_stub (bufp, string1, length1, string2, length2, in weak_alias()
[all …]
Dregcomp.c26 static void re_compile_fastmap_iter (regex_t *bufp,
218 struct re_pattern_buffer *bufp) in re_compile_pattern() argument
225 bufp->no_sub = !!(re_syntax_options & RE_NO_SUB); in re_compile_pattern()
228 bufp->newline_anchor = 1; in re_compile_pattern()
230 ret = re_compile_internal (bufp, pattern, length, re_syntax_options); in re_compile_pattern()
264 re_compile_fastmap (struct re_pattern_buffer *bufp) in weak_alias()
266 re_dfa_t *dfa = bufp->buffer; in weak_alias()
267 char *fastmap = bufp->fastmap; in weak_alias()
270 re_compile_fastmap_iter (bufp, dfa->init_state, fastmap); in weak_alias()
272 re_compile_fastmap_iter (bufp, dfa->init_state_word, fastmap); in weak_alias()
[all …]
Dglob.c63 # define getpwnam_r(name, bufp, buf, len, res) \ argument
64 __getpwnam_r (name, bufp, buf, len, res)
/glibc-2.36/sysdeps/mach/hurd/
Drecv.c34 char *bufp = buf; in __recv() local
44 flags, &bufp, &nread, in __recv()
60 if (bufp != buf) in __recv()
62 memcpy (buf, bufp, nread); in __recv()
63 __vm_deallocate (__mach_task_self (), (vm_address_t) bufp, nread); in __recv()
Drecvfrom.c36 char *bufp = buf; in __recvfrom() local
47 flags, &bufp, &nread, in __recvfrom()
102 if (bufp != buf) in __recvfrom()
104 memcpy (buf, bufp, nread); in __recvfrom()
105 __vm_deallocate (__mach_task_self (), (vm_address_t) bufp, nread); in __recvfrom()
Ddl-sysdep.c416 char buf[total], *bufp = buf; in __writev() local
421 bufp = (memcpy (bufp, iov[i].iov_base, iov[i].iov_len) in __writev()
/glibc-2.36/hurd/
Dfopenport.c30 char *bufp = buf; in readio() local
33 if (err = __io_read ((io_t) cookie, &bufp, &nread, -1, n)) in readio()
36 if (bufp != buf) in readio()
38 memcpy (buf, bufp, nread); in readio()
40 (vm_address_t) bufp, (vm_size_t) nread); in readio()
Dxattr.c177 char *bufp = buffer; in _hurd_xattr_list() local
181 if (bufp != NULL && total <= *size) in _hurd_xattr_list()
182 bufp = __mempcpy (bufp, name, len); in _hurd_xattr_list()
/glibc-2.36/time/
Dstrftime_l.c568 CHAR_T *bufp; in libc_hidden_def() local
986 bufp = buf + sizeof (buf) / sizeof (buf[0]); in libc_hidden_def()
993 *--bufp = u % 10 + L_('0'); in libc_hidden_def()
999 *--bufp = L_('-'); in libc_hidden_def()
1004 - bufp); in libc_hidden_def()
1025 ++bufp; in libc_hidden_def()
1040 cpy (buf + sizeof (buf) / sizeof (buf[0]) - bufp, bufp); in libc_hidden_def()
1149 bufp = buf + sizeof (buf) / sizeof (buf[0]); in libc_hidden_def()
1169 *--bufp = d + L_('0'); in libc_hidden_def()
/glibc-2.36/ChangeLog.old/
DChangeLog.22298 Remove code that reset bufp if put_limit==buffer. We want to let
2314 that bufp > buffer and get_limit == buffer. Check against
2318 or bufp > buffer and get_limit <= linebuf-corrected put_limit.
2382 the bufp hits the put_limit.
DChangeLog.4594 pushback_bufp instead of bufp.
DChangeLog.510064 * stdio/fseek.c: Do move bufp by O when that puts it exactly at