ets_hashtable.h

Include dependency graph for ets_hashtable.h:

digraph { graph [bgcolor="#00000000"] node [shape=rectangle style=filled fillcolor="#FFFFFF" font=Helvetica padding=2] edge [color="#1414CE"] "7" [label="stdbool.h" tooltip="stdbool.h"] "24" [label="refc_binary.h" tooltip="refc_binary.h"] "4" [label="atom.h" tooltip="atom.h"] "10" [label="assert.h" tooltip="assert.h"] "22" [label="utils.h" tooltip="utils.h"] "15" [label="synclist.h" tooltip="synclist.h"] "14" [label="list.h" tooltip="list.h"] "3" [label="stdint.h" tooltip="stdint.h"] "5" [label="stdlib.h" tooltip="stdlib.h"] "1" [label="/__w/AtomVM/AtomVM/src/libAtomVM/ets_hashtable.h" tooltip="/__w/AtomVM/AtomVM/src/libAtomVM/ets_hashtable.h" fillcolor="#BFBFBF"] "21" [label="memory.h" tooltip="memory.h"] "25" [label="resources.h" tooltip="resources.h"] "18" [label="term.h" tooltip="term.h"] "23" [label="stddef.h" tooltip="stddef.h"] "8" [label="erl_nif.h" tooltip="erl_nif.h"] "11" [label="limits.h" tooltip="limits.h"] "6" [label="atom_table.h" tooltip="atom_table.h"] "19" [label="sys/types.h" tooltip="sys/types.h"] "20" [label="string.h" tooltip="string.h"] "9" [label="term_typedef.h" tooltip="term_typedef.h"] "2" [label="globalcontext.h" tooltip="globalcontext.h"] "17" [label="smp.h" tooltip="smp.h"] "27" [label="timer_list.h" tooltip="timer_list.h"] "26" [label="mailbox.h" tooltip="mailbox.h"] "16" [label="stdio.h" tooltip="stdio.h"] "13" [label="ets.h" tooltip="ets.h"] "12" [label="inttypes.h" tooltip="inttypes.h"] "24" -> "7" [dir=forward tooltip="include"] "24" -> "5" [dir=forward tooltip="include"] "24" -> "14" [dir=forward tooltip="include"] "24" -> "25" [dir=forward tooltip="include"] "4" -> "3" [dir=forward tooltip="include"] "4" -> "5" [dir=forward tooltip="include"] "22" -> "23" [dir=forward tooltip="include"] "22" -> "16" [dir=forward tooltip="include"] "22" -> "5" [dir=forward tooltip="include"] "15" -> "16" [dir=forward tooltip="include"] "15" -> "14" [dir=forward tooltip="include"] "15" -> "17" [dir=forward tooltip="include"] "14" -> "7" [dir=forward tooltip="include"] "1" -> "2" [dir=forward tooltip="include"] "1" -> "18" [dir=forward tooltip="include"] "1" -> "5" [dir=forward tooltip="include"] "21" -> "3" [dir=forward tooltip="include"] "21" -> "5" [dir=forward tooltip="include"] "21" -> "8" [dir=forward tooltip="include"] "21" -> "9" [dir=forward tooltip="include"] "21" -> "22" [dir=forward tooltip="include"] "25" -> "5" [dir=forward tooltip="include"] "25" -> "8" [dir=forward tooltip="include"] "25" -> "14" [dir=forward tooltip="include"] "25" -> "21" [dir=forward tooltip="include"] "25" -> "15" [dir=forward tooltip="include"] "18" -> "19" [dir=forward tooltip="include"] "18" -> "7" [dir=forward tooltip="include"] "18" -> "3" [dir=forward tooltip="include"] "18" -> "16" [dir=forward tooltip="include"] "18" -> "5" [dir=forward tooltip="include"] "18" -> "20" [dir=forward tooltip="include"] "18" -> "21" [dir=forward tooltip="include"] "18" -> "24" [dir=forward tooltip="include"] "18" -> "22" [dir=forward tooltip="include"] "18" -> "9" [dir=forward tooltip="include"] "8" -> "9" [dir=forward tooltip="include"] "6" -> "7" [dir=forward tooltip="include"] "6" -> "4" [dir=forward tooltip="include"] "9" -> "10" [dir=forward tooltip="include"] "9" -> "11" [dir=forward tooltip="include"] "9" -> "12" [dir=forward tooltip="include"] "9" -> "3" [dir=forward tooltip="include"] "2" -> "3" [dir=forward tooltip="include"] "2" -> "4" [dir=forward tooltip="include"] "2" -> "6" [dir=forward tooltip="include"] "2" -> "8" [dir=forward tooltip="include"] "2" -> "13" [dir=forward tooltip="include"] "2" -> "14" [dir=forward tooltip="include"] "2" -> "26" [dir=forward tooltip="include"] "2" -> "17" [dir=forward tooltip="include"] "2" -> "15" [dir=forward tooltip="include"] "2" -> "18" [dir=forward tooltip="include"] "2" -> "27" [dir=forward tooltip="include"] "17" -> "7" [dir=forward tooltip="include"] "27" -> "7" [dir=forward tooltip="include"] "27" -> "3" [dir=forward tooltip="include"] "27" -> "14" [dir=forward tooltip="include"] "26" -> "7" [dir=forward tooltip="include"] "26" -> "14" [dir=forward tooltip="include"] "26" -> "9" [dir=forward tooltip="include"] "26" -> "22" [dir=forward tooltip="include"] "13" -> "14" [dir=forward tooltip="include"] "13" -> "15" [dir=forward tooltip="include"] "13" -> "18" [dir=forward tooltip="include"] }

This graph shows which files directly or indirectly include ets_hashtable.h:

digraph { graph [bgcolor="#00000000"] node [shape=rectangle style=filled fillcolor="#FFFFFF" font=Helvetica padding=2] edge [color="#1414CE"] "3" [label="/__w/AtomVM/AtomVM/src/libAtomVM/ets_hashtable.c" tooltip="/__w/AtomVM/AtomVM/src/libAtomVM/ets_hashtable.c"] "1" [label="/__w/AtomVM/AtomVM/src/libAtomVM/ets_hashtable.h" tooltip="/__w/AtomVM/AtomVM/src/libAtomVM/ets_hashtable.h" fillcolor="#BFBFBF"] "2" [label="/__w/AtomVM/AtomVM/src/libAtomVM/ets.c" tooltip="/__w/AtomVM/AtomVM/src/libAtomVM/ets.c"] "1" -> "2" [dir=back tooltip="include"] "1" -> "3" [dir=back tooltip="include"] }

Defines

NUM_BUCKETS 16

Typedefs

typedef enum EtsHashtableOptions EtsHashtableOptions
typedef enum EtsHashtableErrorCode EtsHashtableErrorCode

Enums

enum EtsHashtableOptions

Values:

enumerator EtsHashtableAllowOverwrite = 1
enum EtsHashtableErrorCode

Values:

enumerator EtsHashtableOk = 0
enumerator EtsHashtableFailure
enumerator EtsHashtableError

Functions

struct EtsHashTable *ets_hashtable_new()
void ets_hashtable_destroy(struct EtsHashTable *hash_table, GlobalContext *global)
EtsHashtableErrorCode ets_hashtable_insert(struct EtsHashTable *hash_table, struct HNode *new_node, EtsHashtableOptions opts, GlobalContext *global)
term ets_hashtable_lookup(struct EtsHashTable *hash_table, term key, size_t keypos, GlobalContext *global)
bool ets_hashtable_remove(struct EtsHashTable *hash_table, term key, size_t keypos, GlobalContext *global)
struct HNode *ets_hashtable_new_node(term entry, int keypos)
void ets_hashtable_free_node_array(struct HNode **allocated, size_t len, GlobalContext *global)
struct EtsHashTable
#include <ets_hashtable.h>

Collaboration diagram for EtsHashTable:

digraph { graph [bgcolor="#00000000"] node [shape=rectangle style=filled fillcolor="#FFFFFF" font=Helvetica padding=2] edge [color="#1414CE"] "4" [label="HeapFragment" tooltip="HeapFragment"] "1" [label="EtsHashTable" tooltip="EtsHashTable" fillcolor="#BFBFBF"] "3" [label="Heap" tooltip="Heap"] "2" [label="HNode" tooltip="HNode"] "4" -> "4" [dir=forward tooltip="usage"] "1" -> "2" [dir=forward tooltip="usage"] "3" -> "4" [dir=forward tooltip="usage"] "2" -> "2" [dir=forward tooltip="usage"] "2" -> "3" [dir=forward tooltip="usage"] }

Public Members

size_t capacity
struct HNode *buckets[16]