Home
last modified time | relevance | path

Searched refs:s1cp (Results 1 – 5 of 5) sorted by relevance

/picolibc-latest/newlib/libc/string/
Dstrncat_s.c83 char *s1cp = s1; in strncat_s() local
86 s1cp++; in strncat_s()
102 if (s2 <= s1cp) { in strncat_s()
117 if (s1cp == overlap_point) { in strncat_s()
130 *s1cp = c; in strncat_s()
131 s1cp++; in strncat_s()
141 if ((check_s1_for_overlap == true) && (s1cp == overlap_point)) { in strncat_s()
146 *s1cp = '\0'; in strncat_s()
Dstrncpy_s.c77 char *s1cp = s1; in strncpy_s() local
95 if (s1cp == overlap_point) { in strncpy_s()
108 *s1cp = c; in strncpy_s()
109 s1cp++; in strncpy_s()
119 if ((check_s1_for_overlap == true) && (s1cp == overlap_point)) { in strncpy_s()
124 *s1cp = '\0'; in strncpy_s()
Dstrcat_s.c83 char *s1cp = s1 + s1_len; in strcat_s() local
91 if (s2 <= s1cp) { in strcat_s()
107 if (s1cp == overlap_point) { in strcat_s()
117 *s1cp++ = c; in strcat_s()
Dmemcpy_s.c70 const char *s1cp = (const char *)s1; in memcpy_s() local
72 const char *s1cp_limit = &s1cp[n]; in memcpy_s()
75 if (((s1cp_limit <= s2cp) || (s2cp_limit <= s1cp)) == false) { in memcpy_s()
Dstrcpy_s.c74 char *s1cp = s1; in strcpy_s() local
90 if (s1cp == overlap_point) { in strcpy_s()
100 *s1cp++ = c; in strcpy_s()