Home
last modified time | relevance | path

Searched refs:kh_put (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/libucl/src/
H A Ducl_hash.c317 k = kh_put(ucl_hash_caseless_node, h, obj, &ret); in ucl_hash_insert()
332 k = kh_put(ucl_hash_node, h, obj, &ret); in ucl_hash_insert()
363 k = kh_put(ucl_hash_caseless_node, h, old, &ret); in ucl_hash_replace()
367 k = kh_put(ucl_hash_caseless_node, h, new, &ret); in ucl_hash_replace()
378 k = kh_put(ucl_hash_node, h, old, &ret); in ucl_hash_replace()
382 k = kh_put(ucl_hash_node, h, new, &ret); in ucl_hash_replace()
/freebsd/contrib/libucl/klib/
H A Dkhash.h474 #define kh_put(name, h, k, r) kh_put_##name(h, k, r) macro