Skip to content

Instantly share code, notes, and snippets.

@zeptometer
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save zeptometer/453a2982acff42550c8c to your computer and use it in GitHub Desktop.

Select an option

Save zeptometer/453a2982acff42550c8c to your computer and use it in GitHub Desktop.
uint23_t inner(size_t n, uint32_t *a, uint32_t *b) {
// n:$16 a:$17 b:$18
uint32_t r = 0; // $0
while (n != 0) {
n--;
r += (*a)*(*b);
a++;
b++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment