Speaking from a computer-science theoretical point of view, searching for AKL* would not always require materially more CPU cycles than AKL, but even if it does, the difference isn't likely to be huge.
That's because search algorithms have gotten more sophisticated as computer science develops.
To illustrate this, consider a search algorithm which takes the approach that until it finds the first letter of the search string, it doesn't look for the rest. Using an algorithm like that, an AKL and AKL* search would take virtually the same number of CPU cycles.
Such an algorithm may even be optimal on those CPUs which have a hardware instruction that does a very rapid one character comparison.
Algorithm design for search can actually get pretty interesting if you are into that sort of thing!