Lines Matching refs:AECHAR
210 int std_wstrlen(const AECHAR* s) in std_wstrlen()
212 const AECHAR *sEnd = s; in std_wstrlen()
225 int std_wstrlcpy(AECHAR* pwcDst, const AECHAR* cpwszSrc, int nDestSize) in std_wstrlcpy()
234 (void)std_memsmove(pwcDst, nDestSize*sizeof(AECHAR), in std_wstrlcpy()
235 cpwszSrc, ((size_t)n)*sizeof(AECHAR)); in std_wstrlcpy()
243 int std_wstrlcat(AECHAR* pwcDst, const AECHAR* cpwszSrc, int nDestSize) in std_wstrlcat()
514 int std_wstrncmp(const AECHAR* s1, const AECHAR* s2, int nLen) in std_wstrncmp()
523 AECHAR c1 = s1[i]; in std_wstrncmp()
524 AECHAR c2 = s2[i]; in std_wstrncmp()
540 int std_wstrcmp(const AECHAR* s1, const AECHAR* s2) in std_wstrcmp()
545 AECHAR* std_wstrchr(const AECHAR* cpwszText, AECHAR ch) in std_wstrchr()
548 AECHAR chn = *cpwszText; in std_wstrchr()
551 return (AECHAR *)cpwszText; in std_wstrchr()
553 else if ( chn == (AECHAR)0 ) { in std_wstrchr()
559 AECHAR* std_wstrrchr(const AECHAR* cpwszText, AECHAR ch) in std_wstrrchr()
561 const AECHAR* p = 0; in std_wstrrchr()
567 } while (*cpwszText++ != (AECHAR)0); in std_wstrrchr()
569 return (AECHAR*)p; in std_wstrrchr()