Home
last modified time | relevance | path

Searched refs:memchr (Results 1 – 25 of 230) sorted by relevance

12345678910

/openbsd/sys/lib/libkern/arch/amd64/
H A Dmemchr.S9 ENTRY(memchr)
10 RETGUARD_SETUP(memchr, r11)
21 2: RETGUARD_CHECK(memchr, r11)
24 END(memchr)
/openbsd/lib/libc/arch/amd64/string/
H A Dmemchr.S9 ENTRY(memchr)
10 RETGUARD_SETUP(memchr, r11)
22 L2: RETGUARD_CHECK(memchr, r11)
24 END_STRONG(memchr)
H A DMakefile.inc5 bcmp.S bzero.S ffs.S memchr.S \
/openbsd/gnu/lib/libstdc++/libstdc++/include/c_std/
H A Dstd_cstring.h65 #undef memchr
97 using ::memchr;
100 memchr(void* __p, int __c, size_t __n) in memchr() function
101 { return memchr(const_cast<const void*>(__p), __c, __n); } in memchr()
/openbsd/gnu/gcc/libstdc++-v3/include/c_std/
H A Dstd_cstring.h66 #undef memchr
98 using ::memchr;
101 memchr(void* __p, int __c, size_t __n) in memchr() function
102 { return memchr(const_cast<const void*>(__p), __c, __n); } in memchr()
/openbsd/usr.sbin/ypserv/mkalias/
H A Dmkalias.c51 if (memchr(address, '@', len)) { in split_address()
89 if ((dflag && memchr(address, '@', len)) || in check_host()
90 (uflag && memchr(address, '!', len))) in check_host()
251 if (memchr(val.dptr, ',', val.dsize)) in main()
253 if (memchr(val.dptr, '|', val.dsize)) in main()
256 if (!(memchr(val.dptr, '@', val.dsize) || in main()
257 memchr(val.dptr, '!', val.dsize))) in main()
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/21_strings/
H A Dc_strings.cc63 cv = std::memchr(cv, 'a', 3); in test01()
64 v = std::memchr(v, 'a', 3); in test01()
78 memchr(cv, '/', 3); in test02()
/openbsd/lib/libc/string/
H A Dmemchr.c37 memchr(const void *s, int c, size_t n) in memchr() function
49 DEF_STRONG(memchr);
/openbsd/gnu/usr.bin/gcc/gcc/fixinc/tests/base/ansi/
H A Dstring.h15 inline void *memchr(void *__1, int __2, size_t __3) in memchr() function
16 { return (void *)memchr((const void *)__1, __2, __3); } in memchr()
/openbsd/lib/libc/arch/i386/string/
H A Dmemchr.S9 ENTRY(memchr)
27 END_STRONG(memchr)
H A DMakefile.inc5 bcmp.S bzero.S ffs.S memchr.S memcmp.S swab.c \
/openbsd/gnu/llvm/libcxx/include/
H A Dstring.h95 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const void* memchr(const void* __s, int __c… in memchr() function
98 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD void* memchr(void* __s, int __c, size_t __n… in memchr() function
H A Dcstring38 const void* memchr(const void* s, int c, size_t n);
39 void* memchr( void* s, int c, size_t n);
91 using ::memchr _LIBCPP_USING_IF_EXISTS;
140 return static_cast<const char*>(std::memchr(__str, __char, __count));
/openbsd/lib/libc/stdio/
H A Dfgetln.c79 if ((p = memchr(fp->_p, '\n', fp->_r)) != NULL) { in fgetln()
122 if ((p = memchr(fp->_p, '\n', fp->_r)) == NULL) in fgetln()
/openbsd/usr.bin/mandoc/
H A Dpreconv.c120 if (NULL == (eoln = memchr(ln, '\n', sz))) in preconv_cue()
144 if (NULL == (eoph = memchr(ln, ';', sz))) in preconv_cue()
/openbsd/usr.sbin/rpki-client/
H A Dgeofeed.c119 while ((nl = memchr(buf, '\n', len)) != NULL) { in geofeed_parse()
190 delim = memchr(line, '#', linelen); in geofeed_parse()
204 delim = memchr(line, ',', linelen); in geofeed_parse()
/openbsd/lib/libevent/
H A Dbuffer.c259 end_of_eol = memchr(data, '\n', len); in evbuffer_readln()
270 while ((cp = memchr(cp, '\r', len-(cp-data)))) { in evbuffer_readln()
285 start_of_eol = memchr(data, '\n', len); in evbuffer_readln()
492 (p = memchr(search, *what, end - search)) != NULL) { in evbuffer_find()
/openbsd/sys/lib/libkern/
H A Dmemchr.c39 memchr(const void *s, int c, size_t n) in memchr() function
/openbsd/gnu/lib/libiberty/src/
H A Dmemchr.c21 memchr (register const PTR src_void, int c, size_t length) in memchr() function
/openbsd/sys/lib/libkern/arch/i386/
H A Dmemchr.S10 ENTRY(memchr)
/openbsd/usr.bin/make/
H A Ddirexpand.c117 slash = memchr(word, '/', eword - word); in DirExpandWildi()
284 cp = memchr(word, '{', eword - word); in Dir_Expandi()
/openbsd/lib/libc/arch/hppa/string/
H A DMakefile.inc5 bcmp.c bzero.c ffs.c memchr.c memcmp.c \
/openbsd/lib/libc/arch/powerpc/string/
H A DMakefile.inc5 bcmp.c bzero.c ffs.S memchr.c memcmp.c memset.c strcat.c \
/openbsd/lib/libc/arch/powerpc64/string/
H A DMakefile.inc5 bcmp.c bzero.c ffs.S memchr.c memcmp.c memset.c strcat.c \
/openbsd/lib/libc/arch/sparc64/string/
H A DMakefile.inc6 bcmp.c bzero.c memchr.c memcmp.c \

12345678910