startpos          888 ext/ftp/ftp.c  ftp_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, long startpos TSRMLS_DC)
startpos          907 ext/ftp/ftp.c  	if (startpos > 0) {
startpos          908 ext/ftp/ftp.c  		snprintf(arg, sizeof(arg), "%ld", startpos);
startpos         1831 ext/ftp/ftp.c  ftp_nb_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, long startpos TSRMLS_DC)
startpos         1845 ext/ftp/ftp.c  	if (startpos > 0) {
startpos         1846 ext/ftp/ftp.c  		snprintf(arg, sizeof(arg), "%ld", startpos);
startpos          179 ext/ftp/ftp.h  int		ftp_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, long startpos TSRMLS_DC);
startpos          204 ext/ftp/ftp.h  int		ftp_nb_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, long startpos TSRMLS_DC);
startpos          174 ext/ftp/php_ftp.c 	ZEND_ARG_INFO(0, startpos)
startpos          182 ext/ftp/php_ftp.c 	ZEND_ARG_INFO(0, startpos)
startpos          190 ext/ftp/php_ftp.c 	ZEND_ARG_INFO(0, startpos)
startpos          198 ext/ftp/php_ftp.c 	ZEND_ARG_INFO(0, startpos)
startpos         1030 ext/ftp/php_ftp.c 	long		mode, startpos=0;
startpos         1034 ext/ftp/php_ftp.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rsrl|l", &z_ftp, &remote, &remote_len, &z_file, &mode, &startpos) == FAILURE) {
startpos         1043 ext/ftp/php_ftp.c 	if (!ftp->autoseek && startpos == PHP_FTP_AUTORESUME) {
startpos         1044 ext/ftp/php_ftp.c 		startpos = 0;
startpos         1047 ext/ftp/php_ftp.c 	if (ftp->autoseek && startpos) {
startpos         1049 ext/ftp/php_ftp.c 		if (startpos == PHP_FTP_AUTORESUME) {
startpos         1050 ext/ftp/php_ftp.c 			startpos = ftp_size(ftp, remote);
startpos         1051 ext/ftp/php_ftp.c 			if (startpos < 0) {
startpos         1052 ext/ftp/php_ftp.c 				startpos = 0;
startpos         1055 ext/ftp/php_ftp.c 		if (startpos) {
startpos         1056 ext/ftp/php_ftp.c 			php_stream_seek(stream, startpos, SEEK_SET);
startpos         1060 ext/ftp/php_ftp.c 	if (!ftp_put(ftp, remote, stream, xtype, startpos TSRMLS_CC)) {
startpos         1077 ext/ftp/php_ftp.c 	long		mode, startpos=0;
startpos         1081 ext/ftp/php_ftp.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rsrl|l", &z_ftp, &remote, &remote_len, &z_file, &mode, &startpos) == FAILURE) {
startpos         1090 ext/ftp/php_ftp.c 	if (!ftp->autoseek && startpos == PHP_FTP_AUTORESUME) {
startpos         1091 ext/ftp/php_ftp.c 		startpos = 0;
startpos         1094 ext/ftp/php_ftp.c 	if (ftp->autoseek && startpos) {
startpos         1096 ext/ftp/php_ftp.c 		if (startpos == PHP_FTP_AUTORESUME) {
startpos         1097 ext/ftp/php_ftp.c 			startpos = ftp_size(ftp, remote);
startpos         1098 ext/ftp/php_ftp.c 			if (startpos < 0) {
startpos         1099 ext/ftp/php_ftp.c 				startpos = 0;
startpos         1102 ext/ftp/php_ftp.c 		if (startpos) {
startpos         1103 ext/ftp/php_ftp.c 			php_stream_seek(stream, startpos, SEEK_SET);
startpos         1111 ext/ftp/php_ftp.c 	if (((ret = ftp_nb_put(ftp, remote, stream, xtype, startpos TSRMLS_CC)) == PHP_FTP_FAILED)) {
startpos         1130 ext/ftp/php_ftp.c 	long		mode, startpos=0;
startpos         1133 ext/ftp/php_ftp.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rppl|l", &z_ftp, &remote, &remote_len, &local, &local_len, &mode, &startpos) == FAILURE) {
startpos         1145 ext/ftp/php_ftp.c 	if (!ftp->autoseek && startpos == PHP_FTP_AUTORESUME) {
startpos         1146 ext/ftp/php_ftp.c 		startpos = 0;
startpos         1149 ext/ftp/php_ftp.c 	if (ftp->autoseek && startpos) {
startpos         1151 ext/ftp/php_ftp.c 		if (startpos == PHP_FTP_AUTORESUME) {
startpos         1152 ext/ftp/php_ftp.c 			startpos = ftp_size(ftp, remote);
startpos         1153 ext/ftp/php_ftp.c 			if (startpos < 0) {
startpos         1154 ext/ftp/php_ftp.c 				startpos = 0;
startpos         1157 ext/ftp/php_ftp.c 		if (startpos) {
startpos         1158 ext/ftp/php_ftp.c 			php_stream_seek(instream, startpos, SEEK_SET);
startpos         1162 ext/ftp/php_ftp.c 	if (!ftp_put(ftp, remote, instream, xtype, startpos TSRMLS_CC)) {
startpos         1183 ext/ftp/php_ftp.c 	long		mode, startpos=0, ret;
startpos         1186 ext/ftp/php_ftp.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rppl|l", &z_ftp, &remote, &remote_len, &local, &local_len, &mode, &startpos) == FAILURE) {
startpos         1198 ext/ftp/php_ftp.c 	if (!ftp->autoseek && startpos == PHP_FTP_AUTORESUME) {
startpos         1199 ext/ftp/php_ftp.c 		startpos = 0;
startpos         1202 ext/ftp/php_ftp.c 	if (ftp->autoseek && startpos) {
startpos         1204 ext/ftp/php_ftp.c 		if (startpos == PHP_FTP_AUTORESUME) {
startpos         1205 ext/ftp/php_ftp.c 			startpos = ftp_size(ftp, remote);
startpos         1206 ext/ftp/php_ftp.c 			if (startpos < 0) {
startpos         1207 ext/ftp/php_ftp.c 				startpos = 0;
startpos         1210 ext/ftp/php_ftp.c 		if (startpos) {
startpos         1211 ext/ftp/php_ftp.c 			php_stream_seek(instream, startpos, SEEK_SET);
startpos         1219 ext/ftp/php_ftp.c 	ret = ftp_nb_put(ftp, remote, instream, xtype, startpos TSRMLS_CC);
startpos           45 ext/mbstring/oniguruma/reggnu.c 		   int startpos, int range)
startpos           47 ext/mbstring/oniguruma/reggnu.c   if (startpos > 0 && ONIGENC_MBC_MAXLEN(reg->enc) != 1 && startpos < size) {
startpos           49 ext/mbstring/oniguruma/reggnu.c     UChar *s = (UChar* )string + startpos;
startpos           60 ext/mbstring/oniguruma/reggnu.c   return startpos;
startpos           72 ext/mbstring/oniguruma/reggnu.c re_search(regex_t* bufp, const char* string, int size, int startpos, int range,
startpos           76 ext/mbstring/oniguruma/reggnu.c 		     (UChar* )(string + startpos),
startpos           77 ext/mbstring/oniguruma/reggnu.c 		     (UChar* )(string + startpos + range),