Home
last modified time | relevance | path

Searched refs:cpsz (Results 1 – 7 of 7) sorted by relevance

/external/fastrpc/src/
Dstd.c254 char* std_strchrend(const char* cpsz, char c) in std_strchrend() argument
256 while (*cpsz && *cpsz != c) { in std_strchrend()
257 ++cpsz; in std_strchrend()
259 return (char*)cpsz; in std_strchrend()
343 char* std_strrchr(const char* cpsz, int c) in std_strrchr() argument
345 return std_memrchr(cpsz, c, std_strlen(cpsz) + 1); in std_strrchr()
439 char* std_striends(const char* cpsz, const char* cpszSuffix) in std_striends() argument
441 int nOffset = std_strlen(cpsz) - std_strlen(cpszSuffix); in std_striends()
444 (0 == std_stricmp(cpsz+nOffset, cpszSuffix))) { in std_striends()
446 return (char*)(cpsz+nOffset); in std_striends()
[all …]
Dstd_path.c75 const char* cpsz = cpszPath; in std_splitpath() local
80 if (*cpszDir != *cpsz) { in std_splitpath()
84 ++cpsz; in std_splitpath()
90 if ('/' == *cpsz) { in std_splitpath()
91 cpsz++; in std_splitpath()
93 else if ('\0' != *cpsz) { in std_splitpath()
94 cpsz = 0; in std_splitpath()
97 return (char*)cpsz; in std_splitpath()
158 const char* cpsz; in std_basename() local
160 if ((char*)0 != (cpsz = std_strrchr(cpszFile,'/'))) { in std_basename()
[all …]
DBufBound.c178 void BufBound_Puts(BufBound *me, const char* cpsz) in BufBound_Puts() argument
180 BufBound_Write(me, cpsz, std_strlen(cpsz)); in BufBound_Puts()
/external/fastrpc/inc/
DAEEstd.h115 extern char * std_strends(const char* cpsz, const char* cpszSuffix);
116 extern char * std_striends(const char* cpsz, const char* cpszSuffix);
117 extern char * std_strbegins(const char* cpsz, const char* cpszPrefix);
118 extern char * std_stribegins(const char* cpsz, const char* cpszPrefix);
DAEEBufBound.h66 extern void BufBound_Puts(BufBound *me, const char* cpsz);
/external/jemalloc/src/
Dstats.c566 size_t sv, bsz, usz, ssz, sssz, cpsz; in stats_general_print() local
572 cpsz = sizeof(const char *); in stats_general_print()
707 if (je_mallctl("opt."#n, (void *)&cpv, &cpsz, NULL, 0) == 0) { \ in stats_general_print()
/external/jemalloc_new/src/
Dstats.c833 size_t sv, bsz, usz, ssz, sssz, cpsz; in stats_general_print() local
839 cpsz = sizeof(const char *); in stats_general_print()
901 OPT_WRITE(name, cpv, cpsz, emitter_type_string) in stats_general_print()