Searched refs:hc (Results 1 - 25 of 49) sorted by relevance

12

/macosx-10.9.5/CF-855.17/
H A DCFBag.c370 CFIndex CFBagGetCount(CFHashRef hc) { argument
371 if (CFDictionary) CF_OBJC_FUNCDISPATCHV(__kCFBagTypeID, CFIndex, (NSDictionary *)hc, count);
372 if (CFSet) CF_OBJC_FUNCDISPATCHV(__kCFBagTypeID, CFIndex, (NSSet *)hc, count);
373 __CFGenericValidateType(hc, __kCFBagTypeID);
374 return CFBasicHashGetCount((CFBasicHashRef)hc);
378 CFIndex CFBagGetCountOfKey(CFHashRef hc, const_any_pointer_t key) { argument
381 CFIndex CFBagGetCountOfValue(CFHashRef hc, const_any_pointer_t key) { argument
383 if (CFDictionary) CF_OBJC_FUNCDISPATCHV(__kCFBagTypeID, CFIndex, (NSDictionary *)hc, countForKey:(id)key);
384 if (CFSet) CF_OBJC_FUNCDISPATCHV(__kCFBagTypeID, CFIndex, (NSSet *)hc, countForObject:(id)key);
385 __CFGenericValidateType(hc, __kCFBagTypeI
390 CFBagContainsKey(CFHashRef hc, const_any_pointer_t key) argument
393 CFBagContainsValue(CFHashRef hc, const_any_pointer_t key) argument
401 CFBagGetValue(CFHashRef hc, const_any_pointer_t key) argument
409 CFBagGetValueIfPresent(CFHashRef hc, const_any_pointer_t key, const_any_pointer_t *value) argument
428 CFDictionaryGetCountOfValue(CFHashRef hc, const_any_pointer_t value) argument
434 CFDictionaryContainsValue(CFHashRef hc, const_any_pointer_t value) argument
440 CFDictionaryGetKeyIfPresent(CFHashRef hc, const_any_pointer_t key, const_any_pointer_t *actualkey) argument
458 CFBagGetKeysAndValues(CFHashRef hc, const_any_pointer_t *keybuf, const_any_pointer_t *valuebuf) argument
461 CFBagGetValues(CFHashRef hc, const_any_pointer_t *keybuf) argument
485 CFBagApplyFunction(CFHashRef hc, CFBagApplierFunction applier, any_pointer_t context) argument
507 _CFBagFastEnumeration(CFHashRef hc, struct __objcFastEnumerationStateEquivalent *state, void *stackbuffer, unsigned long count) argument
514 _CFBagIsMutable(CFHashRef hc) argument
521 _CFBagSetCapacity(CFMutableHashRef hc, CFIndex cap) argument
524 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
529 __CFBagGetKVOBit(CFHashRef hc) argument
533 __CFBagSetKVOBit(CFHashRef hc, CFIndex bit) argument
538 _CFBagGetKVOBit(CFHashRef hc) argument
543 _CFBagSetKVOBit(CFHashRef hc, CFIndex bit) argument
556 CFBagAddValue(CFMutableHashRef hc, const_any_pointer_t key, const_any_pointer_t value) argument
559 CFBagAddValue(CFMutableHashRef hc, const_any_pointer_t key) argument
565 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
575 CFBagReplaceValue(CFMutableHashRef hc, const_any_pointer_t key, const_any_pointer_t value) argument
578 CFBagReplaceValue(CFMutableHashRef hc, const_any_pointer_t key) argument
584 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
594 CFBagSetValue(CFMutableHashRef hc, const_any_pointer_t key, const_any_pointer_t value) argument
597 CFBagSetValue(CFMutableHashRef hc, const_any_pointer_t key) argument
603 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
613 CFBagRemoveValue(CFMutableHashRef hc, const_any_pointer_t key) argument
617 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
626 CFBagRemoveAllValues(CFMutableHashRef hc) argument
630 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
[all...]
H A DCFDictionary.c370 CFIndex CFDictionaryGetCount(CFHashRef hc) { argument
371 if (CFDictionary) CF_OBJC_FUNCDISPATCHV(__kCFDictionaryTypeID, CFIndex, (NSDictionary *)hc, count);
372 if (CFSet) CF_OBJC_FUNCDISPATCHV(__kCFDictionaryTypeID, CFIndex, (NSSet *)hc, count);
373 __CFGenericValidateType(hc, __kCFDictionaryTypeID);
374 return CFBasicHashGetCount((CFBasicHashRef)hc);
378 CFIndex CFDictionaryGetCountOfKey(CFHashRef hc, const_any_pointer_t key) { argument
381 CFIndex CFDictionaryGetCountOfValue(CFHashRef hc, const_any_pointer_t key) { argument
383 if (CFDictionary) CF_OBJC_FUNCDISPATCHV(__kCFDictionaryTypeID, CFIndex, (NSDictionary *)hc, countForKey:(id)key);
384 if (CFSet) CF_OBJC_FUNCDISPATCHV(__kCFDictionaryTypeID, CFIndex, (NSSet *)hc, countForObject:(id)key);
385 __CFGenericValidateType(hc, __kCFDictionaryTypeI
390 CFDictionaryContainsKey(CFHashRef hc, const_any_pointer_t key) argument
393 CFDictionaryContainsValue(CFHashRef hc, const_any_pointer_t key) argument
401 CFDictionaryGetValue(CFHashRef hc, const_any_pointer_t key) argument
409 CFDictionaryGetValueIfPresent(CFHashRef hc, const_any_pointer_t key, const_any_pointer_t *value) argument
428 CFDictionaryGetCountOfValue(CFHashRef hc, const_any_pointer_t value) argument
434 CFDictionaryContainsValue(CFHashRef hc, const_any_pointer_t value) argument
440 CFDictionaryGetKeyIfPresent(CFHashRef hc, const_any_pointer_t key, const_any_pointer_t *actualkey) argument
458 CFDictionaryGetKeysAndValues(CFHashRef hc, const_any_pointer_t *keybuf, const_any_pointer_t *valuebuf) argument
461 CFDictionaryGetValues(CFHashRef hc, const_any_pointer_t *keybuf) argument
485 CFDictionaryApplyFunction(CFHashRef hc, CFDictionaryApplierFunction applier, any_pointer_t context) argument
507 _CFDictionaryFastEnumeration(CFHashRef hc, struct __objcFastEnumerationStateEquivalent *state, void *stackbuffer, unsigned long count) argument
514 _CFDictionaryIsMutable(CFHashRef hc) argument
521 _CFDictionarySetCapacity(CFMutableHashRef hc, CFIndex cap) argument
524 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
529 __CFDictionaryGetKVOBit(CFHashRef hc) argument
533 __CFDictionarySetKVOBit(CFHashRef hc, CFIndex bit) argument
538 _CFDictionaryGetKVOBit(CFHashRef hc) argument
543 _CFDictionarySetKVOBit(CFHashRef hc, CFIndex bit) argument
556 CFDictionaryAddValue(CFMutableHashRef hc, const_any_pointer_t key, const_any_pointer_t value) argument
559 CFDictionaryAddValue(CFMutableHashRef hc, const_any_pointer_t key) argument
565 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
575 CFDictionaryReplaceValue(CFMutableHashRef hc, const_any_pointer_t key, const_any_pointer_t value) argument
578 CFDictionaryReplaceValue(CFMutableHashRef hc, const_any_pointer_t key) argument
584 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
594 CFDictionarySetValue(CFMutableHashRef hc, const_any_pointer_t key, const_any_pointer_t value) argument
597 CFDictionarySetValue(CFMutableHashRef hc, const_any_pointer_t key) argument
603 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
613 CFDictionaryRemoveValue(CFMutableHashRef hc, const_any_pointer_t key) argument
617 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
626 CFDictionaryRemoveAllValues(CFMutableHashRef hc) argument
630 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
[all...]
H A DCFSet.c370 CFIndex CFSetGetCount(CFHashRef hc) { argument
371 if (CFDictionary) CF_OBJC_FUNCDISPATCHV(__kCFSetTypeID, CFIndex, (NSDictionary *)hc, count);
372 if (CFSet) CF_OBJC_FUNCDISPATCHV(__kCFSetTypeID, CFIndex, (NSSet *)hc, count);
373 __CFGenericValidateType(hc, __kCFSetTypeID);
374 return CFBasicHashGetCount((CFBasicHashRef)hc);
378 CFIndex CFSetGetCountOfKey(CFHashRef hc, const_any_pointer_t key) { argument
381 CFIndex CFSetGetCountOfValue(CFHashRef hc, const_any_pointer_t key) { argument
383 if (CFDictionary) CF_OBJC_FUNCDISPATCHV(__kCFSetTypeID, CFIndex, (NSDictionary *)hc, countForKey:(id)key);
384 if (CFSet) CF_OBJC_FUNCDISPATCHV(__kCFSetTypeID, CFIndex, (NSSet *)hc, countForObject:(id)key);
385 __CFGenericValidateType(hc, __kCFSetTypeI
390 CFSetContainsKey(CFHashRef hc, const_any_pointer_t key) argument
393 CFSetContainsValue(CFHashRef hc, const_any_pointer_t key) argument
401 CFSetGetValue(CFHashRef hc, const_any_pointer_t key) argument
409 CFSetGetValueIfPresent(CFHashRef hc, const_any_pointer_t key, const_any_pointer_t *value) argument
428 CFDictionaryGetCountOfValue(CFHashRef hc, const_any_pointer_t value) argument
434 CFDictionaryContainsValue(CFHashRef hc, const_any_pointer_t value) argument
440 CFDictionaryGetKeyIfPresent(CFHashRef hc, const_any_pointer_t key, const_any_pointer_t *actualkey) argument
458 CFSetGetKeysAndValues(CFHashRef hc, const_any_pointer_t *keybuf, const_any_pointer_t *valuebuf) argument
461 CFSetGetValues(CFHashRef hc, const_any_pointer_t *keybuf) argument
485 CFSetApplyFunction(CFHashRef hc, CFSetApplierFunction applier, any_pointer_t context) argument
507 _CFSetFastEnumeration(CFHashRef hc, struct __objcFastEnumerationStateEquivalent *state, void *stackbuffer, unsigned long count) argument
514 _CFSetIsMutable(CFHashRef hc) argument
521 _CFSetSetCapacity(CFMutableHashRef hc, CFIndex cap) argument
524 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
529 __CFSetGetKVOBit(CFHashRef hc) argument
533 __CFSetSetKVOBit(CFHashRef hc, CFIndex bit) argument
538 _CFSetGetKVOBit(CFHashRef hc) argument
543 _CFSetSetKVOBit(CFHashRef hc, CFIndex bit) argument
556 CFSetAddValue(CFMutableHashRef hc, const_any_pointer_t key, const_any_pointer_t value) argument
559 CFSetAddValue(CFMutableHashRef hc, const_any_pointer_t key) argument
565 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
575 CFSetReplaceValue(CFMutableHashRef hc, const_any_pointer_t key, const_any_pointer_t value) argument
578 CFSetReplaceValue(CFMutableHashRef hc, const_any_pointer_t key) argument
584 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
594 CFSetSetValue(CFMutableHashRef hc, const_any_pointer_t key, const_any_pointer_t value) argument
597 CFSetSetValue(CFMutableHashRef hc, const_any_pointer_t key) argument
603 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
613 CFSetRemoveValue(CFMutableHashRef hc, const_any_pointer_t key) argument
617 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
626 CFSetRemoveAllValues(CFMutableHashRef hc) argument
630 CFAssert2(CFBasicHashIsMutable((CFBasicHashRef)hc), __kCFLogAssertion, "%s(): immutable collection %p passed to mutating operation", __PRETTY_FUNCTION__, hc); local
[all...]
/macosx-10.9.5/groff-38/groff/src/libs/libgroff/
H A Dsymbol.cpp56 unsigned int hc = 0, g; local
58 hc = *p++;
60 hc <<= 7;
61 hc += *p++;
63 hc <<= 4;
64 hc += *p;
65 if ((g = (hc & 0xf0000000)) == 0) {
66 hc ^= g >> 24;
67 hc ^= g;
72 return hc;
95 unsigned int hc = hash_string(p); local
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dumac.c546 static void nh_transform(nh_ctx *hc, UINT8 *buf, UINT32 nbytes) argument
548 * as argument "hc" the current hash context and a buffer which must be a
555 key = hc->nh_key + hc->bytes_hashed;
556 nh_aux(key, buf, hc->state, nbytes);
591 static void nh_reset(nh_ctx *hc) argument
594 hc->bytes_hashed = 0;
595 hc->next_data_empty = 0;
596 hc->state[0] = 0;
598 hc
611 nh_init(nh_ctx *hc, aes_int_key prf_key) argument
621 nh_update(nh_ctx *hc, UINT8 *buf, UINT32 nbytes) argument
676 nh_final(nh_ctx *hc, UINT8 *result) argument
716 nh(nh_ctx *hc, UINT8 *buf, UINT32 padded_len, UINT32 unpadded_len, UINT8 *result) argument
841 poly_hash(uhash_ctx_t hc, UINT32 data_in[]) argument
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/edit/
H A Dhexpand.c151 hc[3], /* default histchars */
164 hc[0] = '!';
165 hc[1] = '^';
166 hc[2] = 0;
171 hc[0] = cp[0];
174 hc[1] = cp[1];
176 hc[2] = cp[2];
190 if((*cp != hc[0] && *cp != hc[1] && *cp != hc[
[all...]
/macosx-10.9.5/BootCache-106/
H A Dlibrary.c54 void BC_free_history(struct BC_history *hc) { argument
55 if (hc) {
56 if (hc->h_mounts)
57 free(hc->h_mounts);
58 if (hc->h_entries)
59 free(hc->h_entries);
60 free(hc);
554 BC_convert_history(const struct BC_history *hc, struct BC_playlist **ppc) argument
565 if (hc == NULL) {
576 if ((pc->p_mounts = malloc(sizeof(*pc->p_mounts) * hc
709 struct BC_history *hc; local
1280 BC_print_history(char *fname, struct BC_history *hc) argument
[all...]
H A DBootCache.h313 #define HC_FREE_ZERO(hc) do { if (hc) { BC_free_history(hc); (hc) = NULL; } } while (0)
H A Dcontrol.c947 struct BC_history *hc; local
959 if ((error = BC_stop(&hc)) != 0)
965 print_history(hc);
970 BC_print_history(BC_BOOT_HISTFILE, hc);
983 HC_FREE_ZERO(hc);
990 if ((error = BC_convert_history(hc, &pc)) != 0) {
992 BC_print_history(BC_BOOT_HISTFILE, hc);
994 HC_FREE_ZERO(hc);
1172 print_history(struct BC_history *hc) argument
1175 for (i = 0; i < hc
[all...]
/macosx-10.9.5/ruby-104/ruby/test/csv/
H A Dtest_features.rb174 hc = :header_converters
175 assert_equal([:downcase], CSV.new("abc,def", hc => [:downcase]).send(hc))
178 assert_equal([:downcase], CSV.new("abc,def", hc => :downcase).send(hc))
181 csv = CSV.new("abc,def", hc => [:symbol, lambda { }])
182 assert_equal(2, csv.send(hc).size)
183 assert_equal(:symbol, csv.send(hc).first)
184 assert_instance_of(Proc, csv.send(hc).last)
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/win32/
H A Dcondition.c64 HANDLE hc; local
76 hc = CreateEvent(NULL, FALSE, FALSE, NULL);
77 if (hc == NULL) {
86 newthread->handle[LBROADCAST] = hc;
/macosx-10.9.5/ntp-88/lib/isc/win32/
H A Dcondition.c64 HANDLE hc; local
76 hc = CreateEvent(NULL, FALSE, FALSE, NULL);
77 if (hc == NULL) {
86 newthread->handle[LBROADCAST] = hc;
/macosx-10.9.5/apache-786.1/httpd/server/mpm/winnt/
H A DWin9xConHook.c114 static int HookProc(int hc, HWND *hwnd, UINT *msg,
587 int HookProc(int hc, HWND *hwnd, UINT *msg, WPARAM *wParam, LPARAM *lParam) argument
629 LRESULT __declspec(dllexport) CALLBACK GetMsgProc(INT hc, WPARAM wParam,
637 int rv = HookProc(hc, &pmsg->hwnd, &pmsg->message,
645 return CallNextHookEx(NULL, hc, wParam, lParam);
652 LRESULT __declspec(dllexport) CALLBACK CallWndProc(INT hc, WPARAM wParam,
658 int rv = HookProc(hc, &pcwps->hwnd, &pcwps->message,
666 return CallNextHookEx(NULL, hc, wParam, lParam);
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/tile/themes/kroc/
H A Dkroc.tcl78 {active selected} $Images(check-hc) \
87 {active selected} $Images(radio-hc) \
103 {active selected} $Images(check-hc) \
112 {active selected} $Images(radio-hc) \
/macosx-10.9.5/smb-697.95.1/kernel/netsmb/
H A Dsmb_crypt.c400 cchmac_di_decl(di, hc);
401 cchmac_init(di, hc, vcp->vc_mackeylen, vcp->vc_mackey);
404 cchmac_update(di, hc, mbuf_len(mb), mbuf_data(mb));
405 cchmac_final(di, hc, mac);
531 cchmac_di_decl(di, hc);
532 cchmac_init(di, hc, vcp->vc_mackeylen, vcp->vc_mackey);
543 cchmac_update(di, hc, SMB2SIGOFF, (uint8_t *)mbuf_data(mb) + mb_off);
564 cchmac_update(di, hc, SMB2SIGLEN, zero_buf);
589 cchmac_update(di, hc, sign_len, (uint8_t *)mbuf_data(mb) + mb_off);
596 cchmac_final(di, hc, ma
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DType.java743 int hc = 13 * sort;
746 hc = 17 * (hc + buf[i]);
749 return hc;
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/tile/themes/plastik/
H A Dplastik.tcl84 {active selected} $Images(check-hc) \
92 {active selected} $Images(radio-hc) \
/macosx-10.9.5/MITKerberosShim-62.1/
H A Dcache.c125 krb5_principal hc = NULL; local
130 hc = p->heim;
132 ret = heim_krb5_cc_get_config(HC(context), (krb5_ccache)id, hc, key, &hdata);
/macosx-10.9.5/Heimdal-323.92.1/kdc/
H A Ddigest-service.c454 CCHmacContext hc; local
456 CCHmacInit(&hc, kCCHmacAlgMD5, usk, sizeof(usk));
457 CCHmacUpdate(&hc, ntq->lmchallenge.data, 8);
458 CCHmacUpdate(&hc, ntq->lmChallengeResponse.data, 8);
459 CCHmacFinal(&hc, sessionkey);
460 memset(&hc, 0, sizeof(hc));
969 CCHmacContext hc; local
971 CCHmacInit(&hc, kCCHmacAlgMD5, usk, sizeof(usk));
972 CCHmacUpdate(&hc, nt
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/src/
H A Dviewx.cpp62 const c4_Sequence *hc = HandlerContext(colNum); local
63 int i = RemapIndex(index_, hc);
95 const c4_Sequence *hc = newElem_._seq->HandlerContext(i); local
96 int ri = newElem_._seq->RemapIndex(newElem_._index, hc);
170 const c4_Sequence *hc = newElem_._seq->HandlerContext(i); local
171 int ri = newElem_._seq->RemapIndex(newElem_._index, hc);
H A Dderived.cpp200 const c4_Sequence *hc = seq_.HandlerContext(n);
201 int i = seq_.RemapIndex(index_, hc);
218 const c4_Sequence *hc = seq_.HandlerContext(n);
219 int i = seq_.RemapIndex(index_, hc);
632 const c4_Sequence *hc = HandlerContext(colNum);
637 int f = h.Compare(RemapIndex(index_, hc), data);
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dhostip.c230 hostcache_timestamp_remove(void *datap, void *hc) argument
234 struct Curl_dns_entry *c = (struct Curl_dns_entry *) hc;
727 static int hostcache_inuse(void *data, void *hc) argument
729 struct Curl_dns_entry *c = (struct Curl_dns_entry *) hc;
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/tile/themes/blue/
H A Dblue.tcl54 {!disabled active selected} $I(check-hc) \
60 {!disabled active selected} $I(radio-hc) \
/macosx-10.9.5/lsof-52/lsof/
H A Dprint.c371 static struct hostcache *hc = (struct hostcache *)NULL; local
388 if (af != hc[i].af)
391 if (ia[j] != hc[i].a[j])
395 return(hc[i].name);
446 if (!hc)
447 hc = (struct hostcache *)malloc(len);
449 hc = (struct hostcache *)realloc((MALLOC_P *)hc, len);
450 if (!hc) {
455 hc[hc
[all...]
/macosx-10.9.5/groff-38/groff/src/libs/libbib/
H A Dindex.cpp484 unsigned hc = hash(key_buffer, len); local
486 for (int h = hc % common_words_table_size;
496 int li = table[int(hc % header.table_size)];

Completed in 449 milliseconds

12