Karlos be careful, how dare you say its just a guess, its just moving memory. Did you fail maths in school etc etc 
If there's one thing I've learned when doing low level work with real hardware, there's the theoretical speed of which the hardware is capable and the actual speed that is attained in the real world with applications that test it. The interface between software and hardware is often a murky place.
User
|
Application
|
OS Graphics API
|
Driver
|
Hardware
Remember, to use the blitter in an OS friendly manner, you have to wait for it, own it, set it up to do your operation, disown it etc. etc. All of those steps take time, which is more or less independent of how fast the blitter itself can do the operation you've asked.
Will you see a 100x speed up in a real world application? It all depends. If the setup cost is small, maybe you'll experience more than that. OTOH, if there are many small blits going on frequently, then the setup latency may dominate and you'll observe a lot less.