Searched refs:hep (Results 1 - 7 of 7) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/lib/ds/
H A Dplhash.c190 PLHashEntry *he, **hep, **hep0; local
198 hep = hep0 = &ht->buckets[h];
199 while ((he = *hep) != 0) {
202 if (hep != hep0) {
203 *hep = he->next;
209 hep = &he->next;
214 return hep;
224 PLHashEntry *he, **hep; local
232 hep = &ht->buckets[h];
233 while ((he = *hep) !
246 PL_HashTableRawAdd(PLHashTable *ht, PLHashEntry **hep, PLHashNumber keyHash, const void *key, void *value) argument
307 PLHashEntry *he, **hep; local
326 PL_HashTableRawRemove(PLHashTable *ht, PLHashEntry **hep, PLHashEntry *he) argument
372 PLHashEntry *he, **hep; local
388 PLHashEntry *he, **hep; local
405 PLHashEntry *he, **hep; local
423 PLHashEntry *he, **hep; local
[all...]
H A Dplhash.h171 PL_HashTableRawAdd(PLHashTable *ht, PLHashEntry **hep, PLHashNumber keyHash,
175 PL_HashTableRawRemove(PLHashTable *ht, PLHashEntry **hep, PLHashEntry *he);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/
H A Dctf_hash.c101 ctf_helem_t *hep = &hp->h_chains[hp->h_free]; local
119 hep->h_name = name;
120 hep->h_type = type;
122 hep->h_next = hp->h_buckets[h];
137 ctf_helem_t *hep = ctf_hash_lookup(hp, fp, str, strlen(str)); local
139 if (hep == NULL)
142 hep->h_type = type;
149 ctf_helem_t *hep; local
156 for (i = hp->h_buckets[h]; i != 0; i = hep->h_next) {
157 hep
[all...]
H A Dctf_create.c725 ctf_helem_t *hep = NULL; local
730 hep = ctf_hash_lookup(hp, fp, name, strlen(name));
732 if (hep != NULL && ctf_type_kind(fp, hep->h_type) == CTF_K_FORWARD)
733 dtd = ctf_dtd_lookup(fp, type = hep->h_type);
747 ctf_helem_t *hep = NULL; local
752 hep = ctf_hash_lookup(hp, fp, name, strlen(name));
754 if (hep != NULL && ctf_type_kind(fp, hep->h_type) == CTF_K_FORWARD)
755 dtd = ctf_dtd_lookup(fp, type = hep
769 ctf_helem_t *hep = NULL; local
791 ctf_helem_t *hep; local
1107 ctf_helem_t *hep; local
[all...]
H A Dctf_open.c364 ctf_helem_t *hep; local
378 if ((hep = ctf_hash_lookup(&fp->ctf_names, fp,
384 } else if (ctf_type_encoding(fp, hep->h_type,
390 hep->h_type = CTF_INDEX_TO_TYPE(id, child);
/vbox/src/libs/xpcom18a4/xpcom/base/
H A DnsTraceRefcntImpl.cpp590 PLHashEntry** hep = PL_HashTableRawLookup(gSerialNumbers, PLHashNumber(NS_PTR_TO_INT32(aPtr)), aPtr); local
591 if (hep && *hep) {
592 return PRInt32((NS_REINTERPRET_CAST(serialNumberRecord*,(*hep)->value))->serialNumber);
599 PL_HashTableRawAdd(gSerialNumbers, hep, PLHashNumber(NS_PTR_TO_INT32(aPtr)), aPtr, NS_REINTERPRET_CAST(void*,record));
613 PLHashEntry** hep = PL_HashTableRawLookup(gSerialNumbers, PLHashNumber(NS_PTR_TO_INT32(aPtr)), aPtr); local
614 if (hep && *hep) {
615 return &((NS_REINTERPRET_CAST(serialNumberRecord*,(*hep)->value))->refCount);
627 PLHashEntry** hep local
[all...]
/vbox/src/libs/xpcom18a4/xpcom/threads/
H A DnsAutoLock.cpp184 PLHashEntry** hep = PL_HashTableRawLookup(table, hash, key); local
185 PLHashEntry* he = *hep;
190 PL_HashTableRawAdd(table, hep, hash, key, vec);

Completed in 180 milliseconds