Searched refs:pch (Results 1 - 25 of 62) sorted by relevance

123

/freebsd-10.0-release/usr.bin/patch/
H A DMakefile6 SRCS= backupfile.c inp.c mkpath.c patch.c pch.c util.c
/freebsd-10.0-release/contrib/apr/network_io/unix/
H A Dinet_pton.c116 const char *pch; local
118 if ((pch = strchr(digits, ch)) != NULL) {
119 unsigned int new = *tp * 10 + (unsigned int)(pch - digits);
179 const char *pch; local
181 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
182 pch = strchr((xdigits = xdigits_u), ch);
183 if (pch != NULL) {
185 val |= (pch - xdigits);
/freebsd-10.0-release/contrib/ldns/compat/
H A Dinet_pton.c106 const char *pch; local
108 if ((pch = strchr(digits, ch)) != NULL) {
109 uint32_t new = *tp * 10 + (pch - digits);
170 const char *pch; local
172 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
173 pch = strchr((xdigits = xdigits_u), ch);
174 if (pch != NULL) {
176 val |= (pch - xdigits);
/freebsd-10.0-release/contrib/ntp/libisc/
H A Dinet_pton.c87 const char *pch; local
89 if ((pch = strchr(digits, ch)) != NULL) {
90 unsigned int new = *tp * 10 + (pch - digits);
149 const char *pch; local
151 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
152 pch = strchr((xdigits = xdigits_u), ch);
153 if (pch != NULL) {
155 val |= (pch - xdigits);
/freebsd-10.0-release/contrib/unbound/compat/
H A Dinet_pton.c106 const char *pch; local
108 if ((pch = strchr(digits, ch)) != NULL) {
109 uint32_t new = *tp * 10 + (pch - digits);
170 const char *pch; local
172 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
173 pch = strchr((xdigits = xdigits_u), ch);
174 if (pch != NULL) {
176 val |= (pch - xdigits);
/freebsd-10.0-release/sys/libkern/
H A Dinet_pton.c89 const char *pch; local
91 if ((pch = strchr(digits, ch)) != NULL) {
92 u_int new = *tp * 10 + (pch - digits);
154 const char *pch; local
156 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
157 pch = strchr((xdigits = xdigits_u), ch);
158 if (pch != NULL) {
160 val |= (pch - xdigits);
/freebsd-10.0-release/lib/libc/inet/
H A Dinet_net_pton.c201 const char *pch; local
203 pch = strchr(digits, ch);
204 if (pch != NULL) {
208 val += (pch - digits);
232 const char *pch; local
234 pch = strchr(digits, ch);
235 if (pch != NULL) {
239 val += (pch - digits);
292 const char *pch; local
294 if ((pch
[all...]
H A Dinet_pton.c90 const char *pch; local
92 if ((pch = strchr(digits, ch)) != NULL) {
93 u_int new = *tp * 10 + (pch - digits);
153 const char *pch; local
155 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
156 pch = strchr((xdigits = xdigits_u), ch);
157 if (pch != NULL) {
159 val |= (pch - xdigits);
H A Dinet_cidr_pton.c175 const char *pch; local
177 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
178 pch = strchr((xdigits = xdigits_u), ch);
179 if (pch != NULL) {
181 val |= (pch - xdigits);
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-helper-ilk.c97 static cvmx_ilk_pipe_chan_t *pch = NULL, *tmp; local
133 if (pch == NULL)
135 pch = (cvmx_ilk_pipe_chan_t *)
142 if (pch == NULL)
146 memset (pch, 0, CVMX_MAX_ILK_CHANS * sizeof(cvmx_ilk_pipe_chan_t));
147 tmp = pch;
154 res = cvmx_ilk_tx_set_channel (interface, pch, cvmx_ilk_chans[interface]);
243 tmp = pch;
281 kfree (pch);
H A Dcvmx-ilk.h157 extern int cvmx_ilk_tx_set_channel (int interface, cvmx_ilk_pipe_chan_t *pch,
/freebsd-10.0-release/usr.bin/from/
H A Dfrom.c148 char ch, pch, first; local
160 if (!(pch = *p++))
164 if (ch != pch)
/freebsd-10.0-release/sys/dev/sound/isa/
H A Dsb16.c95 struct sb_chinfo pch, rch; member in struct:sb_info
534 if (sb->pch.fmt & AFMT_8BIT)
540 if (sb->pch.fmt & AFMT_16BIT)
547 if (sb->pch.dch == 1)
553 if (sb->pch.dch == 2)
562 if ((reason & 1) && (sb->pch.run))
563 chn_intr(sb->pch.channel);
578 sndbuf_dma(sb->pch.buffer, PCMTRIG_STOP);
587 pprio = sb->pch.run? 1 : 0;
588 sndbuf_dmasetup(sb->pch
[all...]
/freebsd-10.0-release/gnu/usr.bin/cc/libcpp/
H A DMakefile16 pch.c symtab.c traditional.c
/freebsd-10.0-release/usr.sbin/bootparamd/bootparamd/
H A Dbootparamd.c200 int ch, pch, fid_len, res = 0; local
244 pch = ch = getc(bpf);
245 while ( ! ( ch == '\n' && pch != '\\') && ch != EOF) {
246 pch = ch; ch = getc(bpf);
294 int ch, pch; local
351 pch = ch = getc(bpf);
352 while ( ! ( ch == '\n' && pch != '\\') && ch != EOF) {
353 pch = ch; ch = getc(bpf);
/freebsd-10.0-release/usr.sbin/pmcstat/
H A Dpmcpl_callgraph.c407 struct pmcstat_cgnode_hash *pch; local
425 LIST_FOREACH(pch, &pmcstat_cgnode_hash[n], pch_next)
426 if (pch->pch_pmcid == pmcid) {
427 nsamples += pch->pch_cgnode->pcg_count;
428 *cgn++ = pch->pch_cgnode;
582 struct pmcstat_cgnode_hash *pch; local
605 LIST_FOREACH(pch, &pmcstat_cgnode_hash[n], pch_next)
606 if (pmcr == NULL || pch->pch_pmcid == pmcr->pr_pmcid) {
607 nsamples += pch->pch_cgnode->pcg_count;
608 *cgn++ = pch
668 struct pmcstat_cgnode_hash *pch, *pchtmp; local
[all...]
H A Dpmcpl_calltree.c351 struct pmcpl_ct_node_hash *pch; local
354 STAILQ_FOREACH(pch, &pmcpl_ct_node_hash[i], pch_next)
355 pch->pch_ctnode->pct_color = PMCPL_PCT_WHITE;
980 struct pmcpl_ct_node_hash *pch, *pchc; local
985 if ((pch = malloc(sizeof(*pch))) == NULL)
987 pch->pch_ctnode = ct;
988 STAILQ_INSERT_TAIL(&q, pch, pch_next);
992 pch = STAILQ_FIRST(&q);
994 pmcpl_ct_printnode(pch
1083 struct pmcpl_ct_node_hash *pch; local
1173 struct pmcpl_ct_node_hash *pch, *pchtmp; local
[all...]
H A Dpmcpl_gprof.c280 struct pmcstat_cgnode_hash *pch; local
283 LIST_FOREACH(pch, &pmcstat_cgnode_hash[n], pch_next)
284 if (pch->pch_pmcid == pmcid &&
285 pch->pch_cgnode->pcg_nchildren > 1)
286 pmcstat_cgnode_do_gmon_arcs(pch->pch_cgnode,
/freebsd-10.0-release/lib/libc/resolv/
H A Dres_comp.c160 int pch = PERIOD, ch = *dn++; local
167 } else if (periodchar(pch)) {
177 pch = ch, ch = nch;
/freebsd-10.0-release/lib/libutil/
H A Dlogin_class.c139 substvar(const char * var, const struct passwd * pwd, int hlen, int pch, int nlen) argument
157 - dollas + (tildes * (pch+hlen))
174 int v = pch && *(p+1) != '/'; /* Avoid double // */
201 char pch = 0; local
204 ++pch;
210 char * np = substvar(var, pwd, hlen, pch, nlen);
236 if ((np = substvar(p, pwd, hlen, pch, nlen)) != NULL) {
/freebsd-10.0-release/sys/dev/sound/pci/
H A Datiixp.c122 struct atiixp_chinfo pch; member in struct:atiixp_info
445 ch = &sc->pch;
684 #define atiixp_chan_active(sc) (((sc)->pch.flags | (sc)->rch.flags) & \
702 trigger |= (atiixp_poll_channel(&sc->pch) != 0) ? 1 : 0;
712 chn_intr(sc->pch.channel);
779 if (sc->pch.flags & ATI_IXP_CHN_RUNNING)
780 ch = &sc->pch;
888 (sc->pch.flags & ATI_IXP_CHN_RUNNING))
922 chn_intr(sc->pch.channel);
1342 if (sc->pch
[all...]
H A Dcs4281.c97 struct sc_chinfo pch; member in struct:sc_info
323 struct sc_chinfo *ch = (dir == PCMDIR_PLAY) ? &sc->pch : &sc->rch;
522 chn_intr(sc->pch.channel);
923 sc->pch.dma_active = adcdac_go(&sc->pch, 0);
958 cs4281chan_setspeed(NULL, &sc->pch, sc->pch.spd);
959 cs4281chan_setblocksize(NULL, &sc->pch, sc->pch.blksz);
960 cs4281chan_setformat(NULL, &sc->pch, s
[all...]
H A Dmaestro3.c151 struct sc_pchinfo pch[M3_PCHANS]; member in struct:sc_info
427 ch = &sc->pch[idx];
626 ret += sc->pch[i].active;
1106 struct sc_pchinfo *pch; local
1161 pch = &sc->pch[i];
1162 if (pch->active) {
1163 pch->ptr = m3_pchan_getptr_internal(pch);
1164 delta = pch
[all...]
H A Dcmi.c123 struct sc_chinfo pch, rch; member in struct:sc_info
350 struct sc_chinfo *ch = (dir == PCMDIR_PLAY) ? &sc->pch : &sc->rch;
563 chn_intr(sc->pch.channel);
1056 sc->pch.dma_was_active = cmi_ch0_stop(sc, &sc->pch);
1082 if (sc->pch.dma_was_active) {
1083 cmichan_setspeed(NULL, &sc->pch, sc->pch.spd);
1084 cmichan_setformat(NULL, &sc->pch, sc->pch
[all...]
/freebsd-10.0-release/usr.bin/gprof/
H A Dgprof.c453 * There are three cases as to where pcl and pch can be
471 * pcl pch pcl pch pcl pch
488 unsigned long pcl, pch; local
502 pch = lowpc + (unsigned long)(scale * (i + 1));
506 printf( "[asgnsamples] pcl 0x%lx pch 0x%lx ccnt %.0f\n" ,
507 pcl , pch , ccnt );
518 if (pch < svalue0)
526 overlap = min(pch, svalue
[all...]

Completed in 398 milliseconds

123