suffix           1657 Zend/zend_ast.c ZEND_API zend_string *zend_ast_export(const char *prefix, zend_ast *ast, const char *suffix)
suffix           1663 Zend/zend_ast.c 	smart_str_appends(&str, suffix);
suffix            207 Zend/zend_ast.h ZEND_API zend_string *zend_ast_export(const char *prefix, zend_ast *ast, const char *suffix);
suffix            983 ext/spl/spl_directory.c 	char *fname, *suffix = 0;
suffix            987 ext/spl/spl_directory.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s", &suffix, &slen) == FAILURE) {
suffix           1001 ext/spl/spl_directory.c 	RETURN_STR(php_basename(fname, flen, suffix, slen));
suffix           1010 ext/spl/spl_directory.c 	char *suffix = 0;
suffix           1014 ext/spl/spl_directory.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s", &suffix, &slen) == FAILURE) {
suffix           1018 ext/spl/spl_directory.c 	fname = php_basename(intern->u.dir.entry.d_name, strlen(intern->u.dir.entry.d_name), suffix, slen);
suffix           1898 ext/spl/spl_directory.c 	ZEND_ARG_INFO(0, suffix)
suffix           2214 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, suffix)
suffix            130 ext/standard/php_string.h PHPAPI zend_string *php_basename(const char *s, size_t len, char *suffix, size_t sufflen);
suffix           1555 ext/standard/string.c PHPAPI zend_string *php_basename(const char *s, size_t len, char *suffix, size_t sufflen)
suffix           1621 ext/standard/string.c 	if (suffix != NULL && sufflen < (size_t)(cend - comp) &&
suffix           1622 ext/standard/string.c 			memcmp(cend - sufflen, suffix, sufflen) == 0) {
suffix           1637 ext/standard/string.c 	char *string, *suffix = NULL;
suffix           1640 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|s", &string, &string_len, &suffix, &suffix_len) == FAILURE) {
suffix           1644 ext/standard/string.c 	RETURN_STR(php_basename(string, string_len, suffix, suffix_len));
suffix            288 sapi/fpm/fpm/fpm_conf.c 	char suffix;
suffix            294 sapi/fpm/fpm/fpm_conf.c 	suffix = val[len-1];
suffix            295 sapi/fpm/fpm/fpm_conf.c 	switch (suffix) {
suffix            310 sapi/fpm/fpm/fpm_conf.c 			suffix = '0';
suffix            312 sapi/fpm/fpm/fpm_conf.c 			if (suffix < '0' || suffix > '9') {