desiredpos        417 ext/standard/streamsfuncs.c 				desiredpos	= -1L;
desiredpos        420 ext/standard/streamsfuncs.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|ll", &zsrc, &maxlen, &desiredpos) == FAILURE) {
desiredpos        426 ext/standard/streamsfuncs.c 	if (desiredpos >= 0) {
desiredpos        431 ext/standard/streamsfuncs.c 		if (position >= 0 && desiredpos > position) {
desiredpos        433 ext/standard/streamsfuncs.c 			seek_res = php_stream_seek(stream, desiredpos - position, SEEK_CUR);
desiredpos        434 ext/standard/streamsfuncs.c 		} else if (desiredpos < position)  {
desiredpos        436 ext/standard/streamsfuncs.c 			seek_res = php_stream_seek(stream, desiredpos, SEEK_SET);
desiredpos        441 ext/standard/streamsfuncs.c 				"Failed to seek to position %pd in the stream", desiredpos);