This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; All nearest smaller values, Barbay, Fischer & Navarro (2012) | |
| ; https://arxiv.org/abs/1009.5863 | |
| ; We assume an artificial overall minimum at [rsi] | |
| ; EAX: [0,N) | |
| mov eax,1 | |
| @0: lea edx,[rax-1] | |
| add eax,1 | |
| jmp @1 | |
| @2: mov edx,[rdi+rdx*4] | |
| @1: mov ecx,[rsi+rax*4-4] |
NewerOlder