MCPcopy Create free account
hub / github.com/boostorg/build / ps_map_init

Function ps_map_init

v2/engine/modules/property-set.c:64–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

62}
63
64static void ps_map_init( struct ps_map * map )
65{
66 size_t i;
67 map->table_size = 2;
68 map->num_elems = 0;
69 map->table = BJAM_MALLOC( map->table_size * sizeof( struct ps_map_entry * ) );
70 for ( i = 0; i < map->table_size; ++i )
71 {
72 map->table[ i ] = NULL;
73 }
74}
75
76static void ps_map_destroy( struct ps_map * map )
77{

Callers 1

init_property_setFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected