Home
last modified time | relevance | path

Searched refs:psz2 (Results 1 – 25 of 104) sorted by relevance

12345

/dports/multimedia/bitstream/bitstream-1.5/dvb/si/
H A Dstrings.h202 char *psz_output, *psz2; in dvb_string_xml_escape() local
230 memcpy(psz2, "<", strlen("<")); in dvb_string_xml_escape()
231 psz2 += strlen("<"); in dvb_string_xml_escape()
234 memcpy(psz2, ">", strlen(">")); in dvb_string_xml_escape()
235 psz2 += strlen(">"); in dvb_string_xml_escape()
238 memcpy(psz2, "&", strlen("&")); in dvb_string_xml_escape()
239 psz2 += strlen("&"); in dvb_string_xml_escape()
243 psz2 += strlen("""); in dvb_string_xml_escape()
247 psz2 += strlen("'"); in dvb_string_xml_escape()
250 *psz2++ = *psz1; in dvb_string_xml_escape()
[all …]
/dports/devel/kBuild/kBuild-0.1.9998/src/lib/kStuff/kHlp/CRT/
H A DkHlpCRTString.cpp103 char *kHlpStrCat(char *psz1, const char *psz2) in kHlpStrCat() argument
105 return strcat(psz1, psz2); in kHlpStrCat()
111 char *kHlpStrNCat(char *psz1, const char *psz2, KSIZE cb) in kHlpStrNCat() argument
113 return strncat(psz1, psz2, cb); in kHlpStrNCat()
135 int kHlpStrComp(const char *psz1, const char *psz2) in kHlpStrComp() argument
137 return strcmp(psz1, psz2); in kHlpStrComp()
143 int kHlpStrNComp(const char *psz1, const char *psz2, KSIZE cch) in kHlpStrNComp() argument
145 return strncmp(psz1, psz2, cch); in kHlpStrNComp()
151 char *kHlpStrCopy(char *psz1, const char *psz2) in kHlpStrCopy() argument
153 return strcpy(psz1, psz2); in kHlpStrCopy()
/dports/net/samba412/samba-4.12.15/lib/util/
H A Dutil_str_common.c29 _PUBLIC_ int strwicmp(const char *psz1, const char *psz2) in strwicmp() argument
33 if (psz1 == psz2) in strwicmp()
37 else if (psz2 == NULL) in strwicmp()
44 while (isspace((int)*psz2)) in strwicmp()
45 psz2++; in strwicmp()
52 if (toupper_m((unsigned char)*psz1) != toupper_m((unsigned char)*psz2) in strwicmp()
54 || *psz2 == '\0') in strwicmp()
57 psz2++; in strwicmp()
59 return (*psz1 - *psz2); in strwicmp()
/dports/devel/kBuild/kBuild-0.1.9998/src/lib/kStuff/include/k/
H A DkHlpString.h107 KHLP_DECL(char *) kHlpStrCat(char *psz1, const char *psz2);
110 KHLP_DECL(char *) kHlpStrPCat(char *psz1, const char *psz2);
113 KHLP_DECL(char *) kHlpStrNCat(char *psz1, const char *psz2, KSIZE cb);
116 KHLP_DECL(char *) kHlpStrNPCat(char *psz1, const char *psz2, KSIZE cb);
125 KHLP_DECL(int) kHlpStrComp(const char *psz1, const char *psz2);
127 KHLP_DECL(char *) kHlpStrPComp(const char *psz1, const char *psz2);
129 KHLP_DECL(int) kHlpStrNComp(const char *psz1, const char *psz2, KSIZE cch);
131 KHLP_DECL(char *) kHlpStrNPComp(const char *psz1, const char *psz2, KSIZE cch);
137 KHLP_DECL(char *) kHlpStrCopy(char *psz1, const char *psz2);
140 KHLP_DECL(char *) kHlpStrPCopy(char *psz1, const char *psz2);
/dports/devel/kBuild/kBuild-0.1.9998/src/kmk/kmkbuiltin/
H A Dsleep.c49 const char *psz2 = strrchr(pszName, '\\'); in name() local
50 if (!psz2) in name()
51 psz2 = strrchr(pszName, ':'); in name()
52 if (psz2 && (!psz || psz2 > psz)) in name()
53 psz = psz2; in name()
/dports/sysutils/rsyslog8/rsyslog-8.2112.0/runtime/
H A Dunicode-helper.h32 #define ustrncpy(psz1, psz2, len) strncpy((char*)(psz1), (char*)(psz2), (len)) argument
34 #define ustrcmp(psz1, psz2) (strcmp((const char*) (psz1), (const char*) (psz2))) argument
/dports/devel/kBuild/kBuild-0.1.9998/src/lib/kStuff/kHlp/Generic/
H A DkHlpStrComp.c37 KHLP_DECL(int) kHlpStrComp(const char *psz1, const char *psz2) in kHlpStrComp() argument
42 char ch2 = *psz2; in kHlpStrComp()
48 psz2++; in kHlpStrComp()
H A DkHlpStrPComp.c37 KHLP_DECL(char *) kHlpStrPComp(const char *psz1, const char *psz2) in kHlpStrPComp() argument
42 char ch2 = *psz2; in kHlpStrPComp()
48 psz2++; in kHlpStrPComp()
H A DkHlpStrNComp.c37 KHLP_DECL(int) kHlpStrNComp(const char *psz1, const char *psz2, KSIZE cb) in kHlpStrNComp() argument
42 char ch2 = *psz2; in kHlpStrNComp()
48 psz2++; in kHlpStrNComp()
H A DkHlpStrNPComp.c37 KHLP_DECL(char *) kHlpStrNPComp(const char *psz1, const char *psz2, KSIZE cb) in kHlpStrNPComp() argument
42 char ch2 = *psz2; in kHlpStrNPComp()
48 psz2++; in kHlpStrNPComp()
H A DkHlpStrICompAscii.c37 KHLP_DECL(int) kHlpStrICompAscii(const char *psz1, const char *psz2) in kHlpStrICompAscii() argument
42 char ch2 = *psz2; in kHlpStrICompAscii()
55 psz2++; in kHlpStrICompAscii()
H A DkHlpStrIPCompAscii.c37 KHLP_DECL(char *) kHlpStrIPCompAscii(const char *psz1, const char *psz2) in kHlpStrIPCompAscii() argument
42 char ch2 = *psz2; in kHlpStrIPCompAscii()
55 psz2++; in kHlpStrIPCompAscii()
H A DkHlpStrNICompAscii.c37 KHLP_DECL(int) kHlpStrNICompAscii(const char *psz1, const char *psz2, KSIZE cb) in kHlpStrNICompAscii() argument
42 char ch2 = *psz2; in kHlpStrNICompAscii()
55 psz2++; in kHlpStrNICompAscii()
H A DkHlpStrNIPCompAscii.c37 KHLP_DECL(char *) kHlpStrNIPCompAscii(const char *psz1, const char *psz2, KSIZE cb) in kHlpStrNIPCompAscii() argument
42 char ch2 = *psz2; in kHlpStrNIPCompAscii()
55 psz2++; in kHlpStrNIPCompAscii()
H A DkHlpStrPCat.c37 KHLP_DECL(char *) kHlpStrPCat(char *pszDst, const char *psz2) in kHlpStrPCat() argument
45 ch = *psz2++; in kHlpStrPCat()
H A DkHlpStrCat.c37 KHLP_DECL(char *) kHlpStrCat(char *psz1, const char *psz2) in kHlpStrCat() argument
46 ch = *psz2++; in kHlpStrCat()
H A DkHlpStrNCat.c37 KHLP_DECL(char *) kHlpStrNCat(char *psz1, const char *psz2, KSIZE cb) in kHlpStrNCat() argument
46 ch = *psz2++; in kHlpStrNCat()
/dports/multimedia/vlc/vlc-3.0.16/include/
H A Dvlc_strings.h57 static inline int vlc_ascii_strcasecmp( const char *psz1, const char *psz2 ) in vlc_ascii_strcasecmp() argument
60 const char *s2 = psz2; in vlc_ascii_strcasecmp()
72 static inline int vlc_ascii_strncasecmp( const char *psz1, const char *psz2, size_t n ) in vlc_ascii_strncasecmp() argument
75 const char *s2 = psz2; in vlc_ascii_strncasecmp()
/dports/net/rsync/rsync-3.2.3/
H A Dloadparm.c282 static int strwiEQ(char *psz1, char *psz2) in strwiEQ() argument
285 if (psz1 == psz2) in strwiEQ()
287 if (psz1 == NULL || psz2 == NULL) in strwiEQ()
294 while (isSpace(psz2)) in strwiEQ()
295 psz2++; in strwiEQ()
296 if (*psz1 == '\0' || *psz2 == '\0') in strwiEQ()
298 if (toUpper(psz1) != toUpper(psz2)) in strwiEQ()
301 psz2++; in strwiEQ()
303 return *psz1 == *psz2; in strwiEQ()
/dports/devel/kBuild/kBuild-0.1.9998/src/lib/kStuff/kHlp/Bare/
H A DkHlpBare-gcc.c175 int strcmp(const char *psz1, const char *psz2) in strcmp() argument
180 const char ch2 = *psz2++; in strcmp()
189 int strncmp(const char *psz1, const char *psz2, KSIZE cch) in strncmp() argument
194 const char ch2 = *psz2++; in strncmp()
/dports/devel/kBuild/kBuild-0.1.9998/src/misc/
H A Dkmk_time.c169 const char *psz2 = strrchr(pszName, '\\'); in name() local
170 if (!psz2) in name()
171 psz2 = strrchr(pszName, ':'); in name()
172 if (psz2 && (!psz || psz2 > psz)) in name()
173 psz = psz2; in name()
/dports/textproc/xerces-c3/xerces-c-3.2.3/src/xercesc/util/
H A DXMLString.cpp1063 const XMLCh* psz2 = str2; in compareIStringASCII() local
1070 else if (psz2 == 0) { in compareIStringASCII()
1083 if (*psz2 >= chLatin_A && *psz2 <= chLatin_Z) in compareIStringASCII()
1086 ch2 = *psz2; in compareIStringASCII()
1098 psz2++; in compareIStringASCII()
1108 const XMLCh* psz2 = str2; in compareNString() local
1114 if (*psz1 != *psz2) in compareNString()
1123 psz2++; in compareNString()
1155 else if (psz2 == 0) { in compareString()
1163 if (*psz1 != *psz2) in compareString()
[all …]
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_dependencies/xerces-c/src/xercesc/util/
H A DXMLString.cpp1057 const XMLCh* psz2 = str2; in compareIStringASCII() local
1064 else if (psz2 == 0) { in compareIStringASCII()
1077 if (*psz2 >= chLatin_A && *psz2 <= chLatin_Z) in compareIStringASCII()
1080 ch2 = *psz2; in compareIStringASCII()
1092 psz2++; in compareIStringASCII()
1102 const XMLCh* psz2 = str2; in compareNString() local
1108 if (*psz1 != *psz2) in compareNString()
1117 psz2++; in compareNString()
1149 else if (psz2 == 0) { in compareString()
1157 if (*psz1 != *psz2) in compareString()
[all …]
/dports/net-mgmt/wmi-client/wmi-1.3.16/Samba/source/lib/util/
H A Dutil_str.c746 _PUBLIC_ int strwicmp(const char *psz1, const char *psz2) in strwicmp() argument
750 if (psz1 == psz2) in strwicmp()
754 else if (psz2 == NULL) in strwicmp()
761 while (isspace((int)*psz2)) in strwicmp()
762 psz2++; in strwicmp()
763 if (toupper((unsigned char)*psz1) != toupper((unsigned char)*psz2) in strwicmp()
765 || *psz2 == '\0') in strwicmp()
768 psz2++; in strwicmp()
770 return (*psz1 - *psz2); in strwicmp()
/dports/graphics/tgif/tgif-QPL-4.2.5/
H A Drm_intrf.c97 char *psz=NULL, *psz2=NULL; local
114 psz2 = strchr(buf, '.');
115 if (psz2 == NULL) return FALSE;
116 *psz2 = '\0';
118 *psz2 = '.';
121 *psz2++ = '.';
123 sizeof(pivi->sz_other_version_info), psz2);

12345