#include <stdio.h>#include <stdlib.h>#include <string.h>#include <iostream>#include <cassert>#include "mempool.h"#include "htable.h"Go to the source code of this file.
Defines | |
| #define | rot_right(a, k) (((a) >> k ) | ((a) << (32-(k)))) |
| #define | rot_left(a, k) (((a) << k ) | ((a) >> (32-(k)))) |
Definition at line 34 of file htable.cpp.
Definition at line 33 of file htable.cpp.
1.5.9