HomeSort by relevance Sort by last modified time
    Searched refs:wmemchr (Results 1 - 12 of 12) sorted by null

  /bionic/libc/upstream-freebsd/lib/libc/string/
wmemchr.c 26 * citrus Id: wmemchr.c,v 1.2 2000/12/20 14:08:31 itojun Exp
32 __RCSID("$NetBSD: wmemchr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
40 wmemchr(const wchar_t *s, wchar_t c, size_t n) function
  /external/libcxx/include/
wchar.h 88 const wchar_t* wmemchr(const wchar_t* s, wchar_t c, size_t n);
89 wchar_t* wmemchr( wchar_t* s, wchar_t c, size_t n);
165 wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return (wchar_t*)wmemchr(__s, __c, __n);}
167 const wchar_t* wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, __n);} function
169 wchar_t* wmemchr( wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, __n);} function
  /external/libcxx/test/std/strings/c.strings/
cwchar.pass.cpp 95 ASSERT_SAME_TYPE(wchar_t*, decltype(std::wmemchr((wchar_t*)0, L' ', s)));
111 // set for wcschr, wcspbrk, wcsrchr, wcsstr, and wmemchr, unless the compiler is
118 ASSERT_SAME_TYPE(const wchar_t*, decltype(std::wmemchr((const wchar_t*)0, L' ', s)));
  /device/linaro/bootloader/edk2/StdLib/LibC/Wchar/
Searching.c 260 /** The wmemchr function locates the first occurrence of c in the initial n
263 @return The wmemchr function returns a pointer to the located wide
267 wchar_t *wmemchr(const wchar_t *s, wchar_t c, size_t n) function
  /external/libcxx/test/std/depr/depr.c.headers/
wchar_h.pass.cpp 93 static_assert((std::is_same<decltype(wmemchr((wchar_t*)0, L' ', s)), wchar_t*>::value), "");
109 // set for wcschr, wcspbrk, wcsrchr, wcsstr, and wmemchr, unless the compiler is
116 static_assert((std::is_same<decltype(wmemchr((const wchar_t*)0, L' ', s)), const wchar_t*>::value), "");
  /bionic/tests/headers/posix/
wchar_h.c 115 FUNCTION(wmemchr, wchar_t* (*f)(const wchar_t*, wchar_t, size_t));
  /device/linaro/bootloader/edk2/StdLib/Include/
wchar.h 116 wchar_t *wmemchr (const wchar_t *S, wchar_t c, size_t n);
    [all...]
  /external/pdfium/core/fxcrt/
fx_system.h 149 return wmemchr(ptr, ch, len);
widestring.cpp 744 wmemchr(m_pData->m_String + start, ch, m_pData->m_nDataLength - start);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfwscanf.c 119 (cclcompl ? (wmemchr(ccls, (_c), (size_t)(ccle - ccls)) == NULL) : \
120 (wmemchr(ccls, (_c), (size_t)(ccle - ccls)) != NULL))
vfwprintf.c 79 #define MEMCHR(a, b, c) wmemchr(a, b, c)
    [all...]
  /bionic/libc/include/
wchar.h 113 wchar_t* wmemchr(const wchar_t* __src, wchar_t __wc, size_t __n);

Completed in 469 milliseconds