| /src/external/mpl/bind/dist/lib/isc/ |
| ht.c | 39 #define TRY_NEXTTABLE(idx, ht) (idx == ht->hindex && rehashing_in_progress(ht)) 61 uint8_t hindex; member in struct:isc_ht 68 uint8_t hindex; member in struct:isc_ht_iter 117 return ht->table[HT_NEXTTABLE(ht->hindex)] != NULL; 122 return ht->count >= (ht->size[ht->hindex] * HT_OVERCOMMIT); 127 uint32_t newbits = ht->hashbits[ht->hindex]; 141 uint8_t oldindex = ht->hindex; 157 ht->hindex = newindex; 164 isc_ht_node_t **newtable = ht->table[ht->hindex]; 165 uint32_t oldsize = ht->size[HT_NEXTTABLE(ht->hindex)]; 417 uint8_t hindex; local [all...] |
| hashmap.c | 87 uint8_t hindex; member in struct:isc_hashmap 99 uint8_t hindex; member in struct:isc_hashmap_iter 126 return hashmap->tables[hashmap_nexttable(hashmap->hindex)].table != 132 return idx == hashmap->hindex && rehashing_in_progress(hashmap); 300 uint8_t idx = hashmap->hindex; 352 uint8_t oldidx = hashmap_nexttable(hashmap->hindex); 368 hashmap_free_table(hashmap, hashmap_nexttable(hashmap->hindex), 381 node.value, NULL, hashmap->hindex); 392 uint32_t newbits = hashmap->tables[hashmap->hindex].hashbits + 1; 408 uint32_t newbits = hashmap->tables[hashmap->hindex].hashbits - 1 [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/keymgmt/ |
| dh_kmgmt.c | 72 int hindex; member in struct:dh_gen_ctx 475 gctx->hindex = 0; 617 if (p != NULL && !OSSL_PARAM_get_int(p, &gctx->hindex)) 755 } else if (gctx->hindex != 0) { 756 ossl_ffc_params_set_h(ffc, gctx->hindex);
|
| dsa_kmgmt.c | 68 int hindex; member in struct:dsa_gen_ctx 427 gctx->hindex = 0; 504 && !OSSL_PARAM_get_int(p, &gctx->hindex)) 653 } else if (gctx->hindex != 0) { 654 ossl_ffc_params_set_h(ffc, gctx->hindex);
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/ |
| dh_kmgmt.c | 69 int hindex; member in struct:dh_gen_ctx 473 gctx->hindex = 0; 614 if (p != NULL && !OSSL_PARAM_get_int(p, &gctx->hindex)) 738 } else if (gctx->hindex != 0) { 739 ossl_ffc_params_set_h(ffc, gctx->hindex);
|
| dsa_kmgmt.c | 65 int hindex; member in struct:dsa_gen_ctx 426 gctx->hindex = 0; 490 && !OSSL_PARAM_get_int(p, &gctx->hindex)) 590 } else if (gctx->hindex != 0) { 591 ossl_ffc_params_set_h(ffc, gctx->hindex);
|
| /src/external/gpl3/gdb/dist/readline/readline/ |
| rlprivate.h | 83 int hindex; member in struct:__rl_search_context
|
| /src/external/gpl3/gdb.old/dist/readline/readline/ |
| rlprivate.h | 83 int hindex; member in struct:__rl_search_context
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/ |
| ht.c | 38 #define TRY_NEXTTABLE(idx, ht) (idx == ht->hindex && rehashing_in_progress(ht)) 60 uint8_t hindex; member in struct:isc_ht 67 uint8_t hindex; member in struct:isc_ht_iter 157 return (ht->table[HT_NEXTTABLE(ht->hindex)] != NULL); 162 return (ht->count >= (ht->size[ht->hindex] * HT_OVERCOMMIT)); 167 uint32_t newbits = ht->hashbits[ht->hindex]; 181 uint8_t oldindex = ht->hindex; 197 ht->hindex = newindex; 204 isc_ht_node_t **newtable = ht->table[ht->hindex]; 205 uint32_t oldsize = ht->size[HT_NEXTTABLE(ht->hindex)]; 462 uint8_t hindex; local [all...] |
| /src/crypto/external/bsd/openssl/dist/test/ |
| evp_pkey_provided_test.c | 507 int gindex = 0, pcounter = 0, hindex = 0; local 648 &hindex)) 649 || !TEST_int_eq(hindex, 0) 721 int gindex = 0, pcounter = 0, hindex = 0; local 832 &hindex)) 833 || !TEST_int_eq(hindex, 0)
|
| /src/external/bsd/less/dist/ |
| line.c | 143 int hindex; /* Index into hyperlink prefix */ member in struct:ansi_state 613 pansi->hindex = 0; 635 if (pansi->hindex >= 0) 638 if (ch == hlink_prefix[pansi->hindex] || 639 (pansi->hindex == 0 && IS_CSI_START(ch))) 641 pansi->hindex++; 642 if (hlink_prefix[pansi->hindex] == '\0') 646 pansi->hindex = -1; /* not a hyperlink */
|
| /src/external/mpl/bind/dist/lib/dns/ |
| rbt.c | 57 #define RBT_HASH_NEXTTABLE(hindex) ((hindex == 0) ? 1 : 0) 68 uint8_t hindex; member in struct:dns_rbt 201 #define TRY_NEXTTABLE(hindex, rbt) \ 202 (hindex == rbt->hindex && rehashing_in_progress(rbt)) 709 uint8_t hindex; local 815 hindex = rbt->hindex; 839 hash = isc_hash_bits32(hashval, rbt->hashbits[hindex]); 1599 uint8_t hindex = rbt->hindex; local [all...] |
| /src/sys/external/bsd/drm2/dist/include/uapi/drm/ |
| vc4_drm.h | 68 __u32 hindex; /* Handle index, or ~0 if not present. */ member in struct:drm_vc4_submit_rcl_surface
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| evp_pkey_provided_test.c | 887 int gindex = 0, pcounter = 0, hindex = 0; local 1054 &hindex)) 1055 || !TEST_int_eq(hindex, 0) 1127 int gindex = 0, pcounter = 0, hindex = 0; local 1263 &hindex)) 1264 || !TEST_int_eq(hindex, 0)
|
| /src/external/bsd/jemalloc/dist/src/ |
| arena.c | 292 szind_t index, hindex; local 300 hindex = (index >= SC_NBINS) ? index - SC_NBINS : 0; 303 &arena->stats.lstats[hindex].nmalloc, 1); 308 szind_t index, hindex; local 316 hindex = (index >= SC_NBINS) ? index - SC_NBINS : 0; 319 &arena->stats.lstats[hindex].ndalloc, 1);
|
| /src/external/bsd/jemalloc.old/dist/src/ |
| arena.c | 290 szind_t index, hindex; local 298 hindex = (index >= NBINS) ? index - NBINS : 0; 301 &arena->stats.lstats[hindex].nmalloc, 1); 306 szind_t index, hindex; local 314 hindex = (index >= NBINS) ? index - NBINS : 0; 317 &arena->stats.lstats[hindex].ndalloc, 1);
|