Home
last modified time | relevance | path

Searched refs:hc (Results 1 – 25 of 44) sorted by relevance

12

/freebsd-9-stable/sys/powerpc/ps3/
Dps3-hvcall.S5 #define hc .long 0x44000022 macro
14 hc
30 hc
44 hc
61 hc
80 hc
102 hc
114 hc
126 hc
138 hc
[all …]
/freebsd-9-stable/contrib/groff/src/libs/libgroff/
Dsymbol.cpp56 unsigned int hc = 0, g; in hash_string() local
58 hc = *p++; in hash_string()
60 hc <<= 7; in hash_string()
61 hc += *p++; in hash_string()
63 hc <<= 4; in hash_string()
64 hc += *p; in hash_string()
65 if ((g = (hc & 0xf0000000)) == 0) { in hash_string()
66 hc ^= g >> 24; in hash_string()
67 hc ^= g; in hash_string()
72 return hc; in hash_string()
[all …]
/freebsd-9-stable/crypto/openssh/
Dumac.c544 static void nh_transform(nh_ctx *hc, const UINT8 *buf, UINT32 nbytes) in nh_transform() argument
553 key = hc->nh_key + hc->bytes_hashed; in nh_transform()
554 nh_aux(key, buf, hc->state, nbytes); in nh_transform()
589 static void nh_reset(nh_ctx *hc) in nh_reset() argument
592 hc->bytes_hashed = 0; in nh_reset()
593 hc->next_data_empty = 0; in nh_reset()
594 hc->state[0] = 0; in nh_reset()
596 hc->state[1] = 0; in nh_reset()
599 hc->state[2] = 0; in nh_reset()
602 hc->state[3] = 0; in nh_reset()
[all …]
/freebsd-9-stable/sys/boot/powerpc/ps3/
Dlv1call.S31 #define hc .long 0x44000022 macro
54 hc; \
77 hc
81 hc
90 hc
118 hc
128 hc
152 hc
172 hc
190 hc
[all …]
/freebsd-9-stable/contrib/libc++/src/
Ddebug.cpp129 size_t hc = hash<const void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __insert_ic() local
130 __c_node* c = __cbeg_[hc]; in __insert_ic()
176 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __insert_c() local
177 __c_node* p = __cbeg_[hc]; in __insert_c()
178 __c_node* r = __cbeg_[hc] = in __insert_c()
180 if (__cbeg_[hc] == nullptr) in __insert_c()
233 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __invalidate_all() local
234 __c_node* p = __cbeg_[hc]; in __invalidate_all()
264 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __find_c_and_lock() local
265 __c_node* p = __cbeg_[hc]; in __find_c_and_lock()
[all …]
/freebsd-9-stable/contrib/ntp/lib/isc/win32/
Dcondition.c64 HANDLE hc; in register_thread() local
76 hc = CreateEvent(NULL, FALSE, FALSE, NULL); in register_thread()
77 if (hc == NULL) { in register_thread()
86 newthread->handle[LBROADCAST] = hc; in register_thread()
/freebsd-9-stable/sys/dev/sound/pci/
Dhdspe-pcm.c124 if (scp->hc->play) in hdspemixer_init()
127 if (scp->hc->rec) in hdspemixer_init()
320 ch->lslot = scp->hc->left; in hdspechan_init()
321 ch->rslot = scp->hc->right; in hdspechan_init()
643 snprintf(desc, sizeof(desc), "HDSPe AIO [%s]", scp->hc->descr); in hdspe_pcm_attach()
652 err = pcm_register(dev, scp, scp->hc->play, scp->hc->rec); in hdspe_pcm_attach()
659 for (i = 0; i < scp->hc->play; i++) { in hdspe_pcm_attach()
664 for (i = 0; i < scp->hc->rec; i++) { in hdspe_pcm_attach()
Dhdspe.h134 struct hdspe_channel *hc; member
Dhdspe.c327 scp->hc = &chan_map[i]; in hdspe_attach()
/freebsd-9-stable/sys/dev/mwl/
Dmwlhal.c1075 const struct mwl_hal_channel *hc; in findchannel() local
1088 hc = ((unsigned)i < ci->nchannels) ? &ci->channels[i] : NULL; in findchannel()
1100 hc = (i < ci->nchannels) ? &ci->channels[i] : NULL; in findchannel()
1102 hc = NULL; in findchannel()
1103 return hc; in findchannel()
1111 const struct mwl_hal_channel *hc; in mwl_hal_settxpower() local
1114 hc = findchannel(mh, c); in mwl_hal_settxpower()
1115 if (hc == NULL) { in mwl_hal_settxpower()
1131 pCmd->PowerLevelList[i++] = htole16(hc->targetPowers[0]); in mwl_hal_settxpower()
1133 uint16_t pow = hc->targetPowers[i]; in mwl_hal_settxpower()
[all …]
Dif_mwl.c969 mwl_mapchan(MWL_HAL_CHANNEL *hc, const struct ieee80211_channel *chan) in mwl_mapchan() argument
971 hc->channel = chan->ic_ieee; in mwl_mapchan()
973 *(uint32_t *)&hc->channelFlags = 0; in mwl_mapchan()
975 hc->channelFlags.FreqBand = MWL_FREQ_BAND_2DOT4GHZ; in mwl_mapchan()
977 hc->channelFlags.FreqBand = MWL_FREQ_BAND_5GHZ; in mwl_mapchan()
979 hc->channelFlags.ChnlWidth = MWL_CH_40_MHz_WIDTH; in mwl_mapchan()
981 hc->channelFlags.ExtChnlOffset = MWL_EXT_CH_ABOVE_CTRL_CH; in mwl_mapchan()
983 hc->channelFlags.ExtChnlOffset = MWL_EXT_CH_BELOW_CTRL_CH; in mwl_mapchan()
985 hc->channelFlags.ChnlWidth = MWL_CH_20_MHz_WIDTH; in mwl_mapchan()
4454 const struct mwl_hal_channel *hc = &ci->channels[i]; in findhalchannel() local
[all …]
/freebsd-9-stable/usr.sbin/pmcstat/
Dpmcpl_gprof.c402 HISTCOUNTER *hc; in pmcpl_gmon_process() local
477 hc = (HISTCOUNTER *) ((uintptr_t) pgf->pgf_gmondata + in pmcpl_gmon_process()
481 if (hc[bucket] < 0xFFFFU) /* XXX tie this to sizeof(HISTCOUNTER) */ in pmcpl_gmon_process()
482 hc[bucket]++; in pmcpl_gmon_process()
/freebsd-9-stable/sys/dev/mvs/
Dmvs.h78 #define HC_BASE(hc) ((hc) * HC_SIZE + HC_OFFSET) argument
101 #define PORT_BASE(hc) ((hc) * PORT_SIZE + PORT_OFFSET) argument
Dmvs.c496 uint32_t ecfg, fcfg, hc, ltm, unkn; in mvs_set_edma_mode() local
544 hc = ATA_INL(ch->r_mem, EDMA_HC); in mvs_set_edma_mode()
549 hc &= ~EDMA_IE_EDEVERR; in mvs_set_edma_mode()
552 hc |= EDMA_IE_EDEVERR; in mvs_set_edma_mode()
558 hc |= EDMA_IE_EDEVERR; in mvs_set_edma_mode()
563 ATA_OUTL(ch->r_mem, EDMA_HC, hc); in mvs_set_edma_mode()
/freebsd-9-stable/contrib/groff/src/libs/libbib/
Dindex.cpp484 unsigned hc = hash(key_buffer, len); in search1() local
486 for (int h = hc % common_words_table_size; in search1()
496 int li = table[int(hc % header.table_size)]; in search1()
/freebsd-9-stable/sbin/ifconfig/
Difbridge.c256 u_int8_t ht, fd, ma, hc, pro; in bridge_status() local
273 hc = ifbp.ifbop_holdcount; in bridge_status()
280 ma, hc, stpproto[pro], csize, ctime); in bridge_status()
/freebsd-9-stable/contrib/gdb/gdb/
Dgdb-events.sh143 them against the existing \`\`gdb-events.[hc]''. Any differences
/freebsd-9-stable/sys/dev/malo/
Dif_malo.c1951 malo_mapchan(struct malo_hal_channel *hc, const struct ieee80211_channel *chan) in malo_mapchan() argument
1953 hc->channel = chan->ic_ieee; in malo_mapchan()
1955 *(uint32_t *)&hc->flags = 0; in malo_mapchan()
1957 hc->flags.freqband = MALO_FREQ_BAND_2DOT4GHZ; in malo_mapchan()
/freebsd-9-stable/share/me/
Dsummary.external131 hc M\(sc set hyphenation character
/freebsd-9-stable/share/termcap/
Dtermcap119 :bs:hc:os:pl:co#132:do=^J:kb=^H:up=\E\n:\
124 :kb=^H:le=^H:bs:co#132:hc:hu=\EU:hd=\ED:os:pt:up=\E\n:
155 :kb=^h:le=^H:bs:co#132:hc:hu=\EH:hd=\Eh:os:pt:up=^Z:
157 :le=^H:bs:co#132:hc:hd=\Eh:hu=\EH:os:pt:up=^Z:do=^J:
160 :do=^J:le=^H:bs:hc:hd=\E9:hu=\E8:os:up=\E7:
170 :ct=\E3:st=\E1:do=^J:kb=^h:le=^H:bs:co#132:hc:hu=\E]s\E9\E]W:\
174 :kb=^h:le=^H:bs:co#80:hc:hu=\EH:hd=\Eh:os:pt:up=^Z:
198 :co#132:le=^H:bs:hc:os:pt:do=^J:ct=\E2:st=\E1:
546 :do=^J:co#132:hc:os:
688 :co#120:hc:os:do=^J:
[all …]
/freebsd-9-stable/sys/dev/sym/
Dsym_hipd.c604 int hc = VTOB_HASH_CODE(vaddr); in ___dma_getp() local
607 vbp->next = mp->vtob[hc]; in ___dma_getp()
608 mp->vtob[hc] = vbp; in ___dma_getp()
629 int hc = VTOB_HASH_CODE(m); in ___dma_freep() local
631 vbpp = &mp->vtob[hc]; in ___dma_freep()
734 int hc = VTOB_HASH_CODE(m); in __vtobus() local
741 vp = mp->vtob[hc]; in __vtobus()
/freebsd-9-stable/cddl/contrib/opensolaris/cmd/ztest/
Dztest.c4081 char *hc[2] = { "s.acl.h", ".s.open.h.hyLZlg" }; in ztest_zap() local
4101 VERIFY3U(0, ==, zap_add(os, object, hc[i], sizeof (uint64_t), in ztest_zap()
4105 VERIFY3U(EEXIST, ==, zap_add(os, object, hc[i], in ztest_zap()
4108 zap_length(os, object, hc[i], &zl_intsize, &zl_ints)); in ztest_zap()
4113 VERIFY3U(0, ==, zap_remove(os, object, hc[i], tx)); in ztest_zap()
/freebsd-9-stable/contrib/tcp_wrappers/
DCHANGES240 services. Files: tli_sequent.[hc].
/freebsd-9-stable/contrib/tcsh/
DPorted222 COMPILER: hc, gcc
/freebsd-9-stable/contrib/ncurses/misc/
Demx.src56 hc,

12