https://github.com/JuliaLang/julia
Raw File
Tip revision: 54c18a7d984fd83700e243f27ef49eb345e987de authored by Jeff Bezanson on 19 December 2018, 23:27:29 UTC
wip latency hacks
Tip revision: 54c18a7
ptrhash.c
// This file is a part of Julia. License is MIT: https://julialang.org/license

/*
  pointer hash table
  optimized for storing info about particular values
*/

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <limits.h>

#include "dtypes.h"
#include "hashing.h"
#include "ptrhash.h"

#define OP_EQ(x,y) ((x)==(y))

#include "htable.inc"

#ifdef __cplusplus
extern "C" {
#endif

HTIMPL(ptrhash, inthash, OP_EQ)

#ifdef __cplusplus
}
#endif
back to top