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

12

/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/BootCache-106/
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...]
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...]
/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/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/Heimdal-323.92.1/tests/apple/
H A Dprincipal.GUPTA4.APPLE.COM658 �E�@\[� P�w�C���=Tf������5-4�=�������� .�5�s$�IM��H�.�����R()��Rb�N��2zZv8hW.����t��WL�>c�i�������hc�Z&��Kw�Q��5j�4X)�> � Kt��1��%X��+��L��.�������Zful���3:�|}^�l�rx�#�3^ne�����|kusers0101@GUPTA4.APPLE.COM&����: kusers0101@GUPTA4.APPLE.COM4\ �3Mroot/admin@GUPTA4.APPLE.COM�3M6�����#{��8m6�������>��HZ�5�[/Z '�~���(�?�v�/.�#(�,Y��8���=���|�����s~���5����m���>J�"U�.Ob86��^5�����p�"_�������:uk��@�U� �-\���> �xC{��7��s�~+���j��^�,5��I$Vf�+�)}������^�^�m���B#���c�]X���|kusers0100@GUPTA4.APPLE.COM&����: kusers0100@GUPTA4.APPLE.COM4\ �3Mroot/admin@GUPTA4.APPLE.COM�3M6���Q�������"yF��?H��o
664 � �K��j^�2D����{hc�cW����^�����m�������D�O��B����\�  p �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������|kusers0109@GUPTA4.APPLE.COM&����: kusers0109@GUPTA4.APPLE.COM4\ �3Mroot/admin@GUPTA4.APPLE.COM�3M6 �����{=C��h��a����\��kF�P�`~�^Tj�]5(R����EL����.��E�x��n#s5z#�� �d=�����>-��9�~�f�q8�����.���2�F6�����s�����������*D�������J~��
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dsmpdtfmt.cpp1329 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
1330 if (hc->isLeapYear(hc->get(UCAL_YEAR,status)) && value == 6 && count >= 3 )
1332 if (!hc->isLeapYear(hc->get(UCAL_YEAR,status)) && value >= 6 && count < 3 )
2711 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
2712 if (!hc->isLeapYear(value) && saveHebrewMonth >= 6) {
2759 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
2762 if (!hc->isLeapYear(hc
3150 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dcaltest.cpp2222 HebrewCalendar hc(loc,status);
2232 hc.set(year,month,day);
2233 int32_t dayHC = hc.get(UCAL_DATE,status);
2234 int32_t monthHC = hc.get(UCAL_MONTH,status);
2235 int32_t yearHC = hc.get(UCAL_YEAR,status);
/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/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/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/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/curl-78.94.1/curl/lib/
H A DMakefile.Watcom54 CFLAGS = -3r -mf -hc -zff -zgf -zq -zm -zc -s -fr=con -w2 -fpi -oilrtfm &
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/curl-78.94.1/curl/src/
H A DMakefile.Watcom54 CFLAGS = -3r -mf -hc -zff -zgf -zq -zm -s -fr=con -w2 -fpi -oilrtfm &
/macosx-10.9.5/emacs-92/emacs/etc/
H A Dtermcap.src282 :bs:hc:os:\
12380 :hc:os:\
12829 :hc:os:xo:\
12833 :bs:hc:os:xo:\
12855 :am:bs:hc:os:xo:\
14792 :bs:hc:os:\
14796 :bs:hc:os:\
14816 :bs:hc:os:\
14823 :am:bs:hc:os:\
14830 :hc
[all...]
/macosx-10.9.5/emacs-92/emacs/leim/quail/
H A Dhangul3.el680 ("hc" ?$(C3W(B)
/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)];
/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/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/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/ncurses-42/ncurses/include/
H A DCaps219 hard_copy hc bool hc - - YBCG- hardcopy terminal

Completed in 488 milliseconds

12