/* An exact match. */
return cache[1];
}
- else if (cache[0] < uoffset) {
+
+ if (cache[0] < uoffset) {
/* The cache already knows part of the way. */
if (cache[0] > uoffset0) {
/* The cache knows more than the passed in pair */
+ S_sv_pos_u2b_forwards(aTHX_ start + boffset0,
send, uoffset - uoffset0);
}
- found = TRUE;
+ } else {
+ boffset = boffset0
+ + S_sv_pos_u2b_midway(aTHX_ start + boffset0,
+ start + cache[1],
+ uoffset - uoffset0,
+ cache[0] - uoffset0);
}
+ found = TRUE;
}
else if ((*mgp)->mg_len != -1) {
/* If we can take advantage of a passed in offset, do so. */
if (cache[1] == byte) {
/* An exact match. */
*offsetp = cache[0];
-
return;
}
- else if (cache[1] < byte) {
+
+ if (cache[1] < byte) {
/* We already know part of the way. */
if (mg->mg_len != -1) {
/* Actually, we know the end too. */