Searched refs:hash_id (Results 1 – 4 of 4) sorted by relevance
/php-src/ext/dom/lexbor/lexbor/core/ |
H A D | hash.c | 351 hash_id ^= (hash_id >> 6); in lexbor_hash_make_id() 354 hash_id += (hash_id << 3); in lexbor_hash_make_id() 355 hash_id ^= (hash_id >> 11); in lexbor_hash_make_id() 356 hash_id += (hash_id << 15); in lexbor_hash_make_id() 370 hash_id ^= (hash_id >> 6); in lexbor_hash_make_id_lower() 373 hash_id += (hash_id << 3); in lexbor_hash_make_id_lower() 374 hash_id ^= (hash_id >> 11); in lexbor_hash_make_id_lower() 375 hash_id += (hash_id << 15); in lexbor_hash_make_id_lower() 392 hash_id += (hash_id << 3); in lexbor_hash_make_id_upper() 393 hash_id ^= (hash_id >> 11); in lexbor_hash_make_id_upper() [all …]
|
H A D | bst_map.c | 88 size_t hash_id = lexbor_utils_hash_hash(key, key_len); in lexbor_bst_map_search() local 90 bst_entry = lexbor_bst_search(bst_map->bst, scope, hash_id); in lexbor_bst_map_search() 136 size_t hash_id = lexbor_utils_hash_hash(key, key_len); in lexbor_bst_map_insert_not_exists() local 138 bst_entry = lexbor_bst_insert_not_exists(bst_map->bst, scope, hash_id); in lexbor_bst_map_insert_not_exists() 157 bst_entry->next = lexbor_bst_entry_make(bst_map->bst, hash_id); in lexbor_bst_map_insert_not_exists() 201 size_t hash_id = lexbor_utils_hash_hash(key, key_len); in lexbor_bst_map_remove() local 203 bst_entry = lexbor_bst_search(bst_map->bst, *scope, hash_id); in lexbor_bst_map_remove()
|
H A D | hash.h | 119 lexbor_hash_remove_by_hash_id(lexbor_hash_t *hash, uint32_t hash_id, 124 lexbor_hash_search_by_hash_id(lexbor_hash_t *hash, uint32_t hash_id,
|
/php-src/ext/dom/lexbor/patches/ |
H A D | 0003-Patch-utilities-and-data-structure-to-be-able-to-gen.patch | 65 self.buffer.append([self.hash_id(int(key_id, 0)), value])
|
Completed in 11 milliseconds