Browse Source

remove set_ui on NEON, which i had missed

master
Mike Hamburg 9 years ago
parent
commit
da7c5427b1
1 changed files with 0 additions and 13 deletions
  1. +0
    -13
      src/p448/arch_neon_experimental/p448.h

+ 0
- 13
src/p448/arch_neon_experimental/p448.h View File

@@ -97,19 +97,6 @@ p448_deserialize (

/* -------------- Inline functions begin here -------------- */

void
p448_set_ui (
p448_t *out,
uint64_t x
) {
int i;
for (i=0; i<16; i++) {
out->limb[i] = 0;
}
out->limb[0] = x & ((1<<28)-1);
out->limb[2] = x>>28;
}

void
p448_add_RAW (
p448_t *out,


Loading…
Cancel
Save