sep               249 ext/ereg/regex/engine.c 	register unsigned char *sep;	/* end of string matched by subsubRE */
sep               335 ext/ereg/regex/engine.c 				sep = slow(m, ssp, rest, ssub, esub);
sep               336 ext/ereg/regex/engine.c 				if (sep == NULL || sep == ssp)
sep               339 ext/ereg/regex/engine.c 				ssp = sep;
sep               341 ext/ereg/regex/engine.c 			if (sep == NULL) {
sep               343 ext/ereg/regex/engine.c 				sep = ssp;
sep               346 ext/ereg/regex/engine.c 			assert(sep == rest);	/* must exhaust substring */
sep               347 ext/ereg/regex/engine.c 			assert(slow(m, ssp, sep, ssub, esub) == rest);
sep               348 ext/ereg/regex/engine.c 			dp = dissect(m, ssp, sep, ssub, esub);
sep               349 ext/ereg/regex/engine.c 			assert(dp == sep);
sep                 9 ext/ereg/regex/split.c split(string, fields, nfields, sep)
sep                13 ext/ereg/regex/split.c char *sep;			/* "" white, "c" single char, "ab" [ab]+ */
sep                17 ext/ereg/regex/split.c 	register char sepc = sep[0];
sep                30 ext/ereg/regex/split.c 		sep = " \t";	/* note, code below knows this is 2 long */
sep                34 ext/ereg/regex/split.c 	sepc2 = sep[1];		/* now we can safely pick this up */
sep                65 ext/ereg/regex/split.c 	if (sep[2] == '\0') {
sep               118 ext/ereg/regex/split.c 			sepp = sep;
sep               128 ext/ereg/regex/split.c 			sepp = sep;
sep                15 ext/gd/libgd/gdhelpers.c gd_strtok_r (char *s, char *sep, char **state)
sep                21 ext/gd/libgd/gdhelpers.c   while (*sep)
sep                23 ext/gd/libgd/gdhelpers.c       separators[*((unsigned char *) sep)] = 1;
sep                24 ext/gd/libgd/gdhelpers.c       sep++;
sep                 9 ext/gd/libgd/gdhelpers.h extern char *gd_strtok_r(char *s, char *sep, char **state);
sep               109 ext/standard/url_scanner_ex.c 	const char *sep = "?";
sep               163 ext/standard/url_scanner_ex.c 	{ sep = separator; goto scan; }
sep               190 ext/standard/url_scanner_ex.c 	smart_str_appends(dest, sep);
sep               456 ext/xml/compat.c XML_ParserCreateNS(const XML_Char *encoding, const XML_Char sep)
sep               459 ext/xml/compat.c 	tmp[0] = sep;
sep               465 ext/xml/compat.c XML_ParserCreate_MM(const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite, const XML_Char *sep)
sep               491 ext/xml/compat.c 	if (sep != NULL) {
sep               494 ext/xml/compat.c 		parser->_ns_separator = xmlStrdup(sep);
sep               106 ext/xml/xml.c  	ZEND_ARG_INFO(0, sep)
sep                73 ext/zip/lib/zip_error.c _zip_error_get(const struct zip_error *err, int *zep, int *sep)
sep                77 ext/zip/lib/zip_error.c     if (sep) {
sep                79 ext/zip/lib/zip_error.c 	    *sep = err->sys_err;
sep                81 ext/zip/lib/zip_error.c 	    *sep = 0;
sep                41 ext/zip/lib/zip_error_get.c zip_error_get(struct zip *za, int *zep, int *sep)
sep                43 ext/zip/lib/zip_error_get.c     _zip_error_get(&za->error, zep, sep);
sep                41 ext/zip/lib/zip_file_error_get.c zip_file_error_get(struct zip_file *zf, int *zep, int *sep)
sep                43 ext/zip/lib/zip_file_error_get.c     _zip_error_get(&zf->error, zep, sep);
sep               628 main/streams/memory.c 	char *comma, *semi, *sep, *key;
sep               656 main/streams/memory.c 		sep = memchr(path, '/', mlen);
sep               658 main/streams/memory.c 		if (!semi && !sep) {
sep               668 main/streams/memory.c 		} else if (sep && sep < semi) { /* there is a mime type */
sep               682 main/streams/memory.c 			sep = memchr(path, '=', mlen);
sep               684 main/streams/memory.c 			if (!sep || (semi && semi < sep)) { /* must be ';base64' or failure */
sep               697 main/streams/memory.c 			plen = sep - path;
sep               698 main/streams/memory.c 			vlen = (semi ? semi - sep : mlen - plen) - 1 /* '=' */;
sep               701 main/streams/memory.c 				add_assoc_stringl_ex(meta, key, plen + 1, sep + 1, vlen, 1);
sep               116 sapi/phpdbg/phpdbg_utils.c 	char *sep = NULL;
sep               124 sapi/phpdbg/phpdbg_utils.c 	sep = strstr(str, "::");
sep               126 sapi/phpdbg/phpdbg_utils.c 	if (!sep || sep == str || sep+2 == str+len-1) {
sep               137 sapi/phpdbg/phpdbg_utils.c 		*class = estrndup(str, sep - str);
sep               138 sapi/phpdbg/phpdbg_utils.c 		(*class)[sep - str] = 0;
sep               142 sapi/phpdbg/phpdbg_utils.c 		*method = estrndup(sep+2, str + len - (sep + 2));