A collection of programs written in ponylang.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
274 B

#ifndef __ARITH512_H
#define __ARITH512_H
#include <stdint.h>
void fnvInit512from64(uint64_t x[8], uint64_t initialValue);
void fnvAdd512(uint64_t x[8], uint64_t y[8]);
void fnvMul512(uint64_t x[8], uint64_t y[8]);
void fnv512xor8(uint64_t x[8], unsigned char c);
#endif