Home
last modified time | relevance | path

Searched refs:cpsz (Results 1 – 8 of 8) 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_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()
/external/usrsctp/usrsctplib/netinet/
Dsctp_usrreq.c2903 size_t cpsz, left; local
2922 cpsz = sizeof(struct sockaddr_in6);
2924 cpsz = sizeof(struct sockaddr_in);
2927 cpsz = sizeof(struct sockaddr_in);
2933 cpsz = sizeof(struct sockaddr_in6);
2938 cpsz = sizeof(struct sockaddr_conn);
2942 cpsz = 0;
2945 if (cpsz == 0) {
2948 if (left < cpsz) {
2959 memcpy(sas, &net->ro._l_addr, cpsz);
[all …]
Dsctp_output.c13303 int cpsz = 0;
13328 cpsz += willcpy;
13349 sp->length = cpsz;