Lines Matching refs:empty
296 * W_EMPTY - the key was found: the node/tree would be empty
555 for size=0 and reuse it whenever we need an empty bitmap node.
835 PyHamtNode *empty = NULL;
845 /* Create an empty bitmap node for the next
847 empty = hamt_node_bitmap_new(0);
848 if (empty == NULL) {
855 empty, shift + 5, hash, key, val, added_leaf);
882 empty, shift + 5,
902 Py_XDECREF(empty);
1461 key we're trying to delete. So a new node will be empty
1698 PyHamtNode_Bitmap *empty = NULL;
1700 /* Get an empty Bitmap node to work with. */
1701 empty = (PyHamtNode_Bitmap *)hamt_node_bitmap_new(0);
1702 if (empty == NULL) {
1706 /* Set key/val to the newly created empty Bitmap, thus
1709 empty,
1711 Py_DECREF(empty);
2482 empty instance. */