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               114 ext/standard/url_scanner_ex.c 	const char *sep = "?";
sep               168 ext/standard/url_scanner_ex.c 	{ sep = separator; goto scan; }
sep               195 ext/standard/url_scanner_ex.c 	smart_str_appends(dest, sep);
sep               447 ext/xml/compat.c XML_ParserCreateNS(const XML_Char *encoding, const XML_Char sep)
sep               450 ext/xml/compat.c 	tmp[0] = sep;
sep               456 ext/xml/compat.c XML_ParserCreate_MM(const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite, const XML_Char *sep)
sep               482 ext/xml/compat.c 	if (sep != NULL) {
sep               485 ext/xml/compat.c 		parser->_ns_separator = xmlStrdup(sep);
sep               109 ext/xml/xml.c  	ZEND_ARG_INFO(0, sep)
sep               113 ext/zip/lib/zip_error.c _zip_error_get(const zip_error_t *err, int *zep, int *sep)
sep               117 ext/zip/lib/zip_error.c     if (sep) {
sep               119 ext/zip/lib/zip_error.c 	    *sep = err->sys_err;
sep               121 ext/zip/lib/zip_error.c 	    *sep = 0;
sep                40 ext/zip/lib/zip_error_get.c zip_error_get(zip_t *za, int *zep, int *sep)
sep                42 ext/zip/lib/zip_error_get.c     _zip_error_get(&za->error, zep, sep);
sep                39 ext/zip/lib/zip_file_error_get.c zip_file_error_get(zip_file_t *zf, int *zep, int *sep)
sep                41 ext/zip/lib/zip_file_error_get.c     _zip_error_get(&zf->error, zep, sep);
sep               627 main/streams/memory.c 	char *comma, *semi, *sep, *key;
sep               657 main/streams/memory.c 		sep = memchr(path, '/', mlen);
sep               659 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, sep + 1, vlen);
sep               117 sapi/phpdbg/phpdbg_utils.c 	char *sep = NULL;
sep               125 sapi/phpdbg/phpdbg_utils.c 	sep = strstr(str, "::");
sep               127 sapi/phpdbg/phpdbg_utils.c 	if (!sep || sep == str || sep+2 == str+len-1) {
sep               138 sapi/phpdbg/phpdbg_utils.c 		*class = estrndup(str, sep - str);
sep               139 sapi/phpdbg/phpdbg_utils.c 		(*class)[sep - str] = 0;
sep               143 sapi/phpdbg/phpdbg_utils.c 		*method = estrndup(sep+2, str + len - (sep + 2));