HomeSort by: relevance | last modified time | path
    Searched defs:ecp (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/netinet6/
in6_print.c 48 char *cp, *ecp; local in function:in6_print
61 if (cp >= ecp) {\
74 ecp = buf + len;
112 if (ecp > buf) {
113 if (cp < ecp)
116 *--ecp = '\0';
  /src/sys/ufs/ext2fs/
ext2fs_extents.c 143 struct ext4_extent_cache *ecp; local in function:ext4_ext_in_cache
146 ecp = &ip->inode_ext.e2fs.i_ext_cache;
149 if (ecp->ec_type == EXT4_EXT_CACHE_NO)
152 if (lbn >= ecp->ec_blk && lbn < ecp->ec_blk + ecp->ec_len) {
153 ep->e_blk = ecp->ec_blk;
154 ep->e_start_lo = ecp->ec_start & 0xffffffff;
155 ep->e_start_hi = ecp->ec_start >> 32 & 0xffff;
156 ep->e_len = ecp->ec_len
168 struct ext4_extent_cache *ecp; local in function:ext4_ext_put_cache
    [all...]
  /src/sys/arch/alpha/alpha/
autoconf.c 125 char *ecp = &buf[sizeof(buf) - 1]; local in function:qemu_find_rootdev
133 while (ecp != cp) {
134 if (*ecp >= '0' && *ecp <= '9') {
137 *ecp-- = '\0';
  /src/sys/kern/
tty_subr.c 300 u_char *scp, *ecp; local in function:clrbits
307 ecp = cp + end / NBBY - 1;
309 if (scp >= ecp) {
317 *ecp &= ~mask;
319 while (scp < ecp)
  /src/sys/dev/cardbus/
if_ex_cardbus.c 189 const struct ex_cardbus_product *ecp; local in function:ex_cardbus_lookup
194 for (ecp = ex_cardbus_products; ecp->ecp_name != NULL; ecp++)
195 if (PCI_PRODUCT(ca->ca_id) == ecp->ecp_prodid)
196 return (ecp);
218 const struct ex_cardbus_product *ecp; local in function:ex_cardbus_attach
227 ecp = ex_cardbus_lookup(ca);
228 if (ecp == NULL) {
233 aprint_normal(": 3Com %s\n", ecp->ecp_name)
    [all...]
  /src/usr.sbin/lpr/common_source/
displayq.c 98 char *cp, *ecp; local in function:displayq
153 ecp = cp + sizeof(current) - 1;
155 if (cp < ecp)
172 ecp = cp + sizeof(current) - 1;
174 if (cp < ecp)
222 ecp = line + sizeof(line);
227 (void)snprintf(cp, ecp - cp, " %d", requ[i]);
237 (void)strlcpy(cp, user[i], ecp - cp);
  /src/bin/csh/
dir.c 80 const char *ecp; local in function:dinit
84 ecp = getcwd(path, MAXPATHLEN);
85 if (ecp == NULL || *ecp == '\0') {
88 ecp = short2str(hp);
89 if (chdir(ecp) == -1)
113 stat(ecp, &swd) != -1 && stat(short2str(hp), &shp) != -1 &&
125 ecp = cwd;
127 cp = dcanon(SAVE(ecp), STRNULL);
csh.c 206 const char *ecp; local in function:main
321 if ((ecp = getenv("HOME")) != NULL)
322 cp = quote(SAVE(ecp));
336 if ((ecp = getenv("LOGNAME")) != NULL ||
337 (ecp = getenv("USER")) != NULL)
338 set(STRuser, quote(SAVE(ecp)));
339 if ((ecp = getenv("TERM")) != NULL)
340 set(STRterm, quote(SAVE(ecp)));
345 if ((ecp = getenv("PATH")) == NULL) {
352 importpath(str2short(ecp));
    [all...]
  /src/sys/dev/isa/
if_iy.c 1298 struct ethercom *ecp; local in function:iy_mc_setup
1308 ecp = &sc->sc_ethercom;
1309 ifp = &ecp->ec_if;
1314 ETHER_LOCK(ecp);
1315 len = 6 * ecp->ec_multicnt;
1323 ecp->ec_multicnt, len + I595_XMT_HDRLEN, avail);
1340 ETHER_FIRST_MULTI(step, ecp, enm);
1350 ETHER_UNLOCK(ecp);
1388 struct ethercom *ecp; local in function:iy_mc_reset
1394 ecp = &sc->sc_ethercom
    [all...]
  /src/sys/dev/ic/
isp_target.c 286 in_fcentry_e_t *ecp = (in_fcentry_e_t *)local; local in function:isp_target_notify
287 isp_get_notify_fc_e(isp, inote_fcp, ecp);
288 iid = ecp->in_iid;
289 status = ecp->in_status;
290 seqid = ecp->in_seqid;
  /src/sys/dev/usb/
xhci.c 1222 xhci_id_protocols(struct xhci_softc *sc, bus_size_t ecp)
1228 const uint32_t w0 = xhci_read_4(sc, ecp);
1229 const uint32_t w4 = xhci_read_4(sc, ecp + 4);
1230 const uint32_t w8 = xhci_read_4(sc, ecp + 8);
1231 const uint32_t wc = xhci_read_4(sc, ecp + 0xc);
1294 bus_size_t ecp = XHCI_HCC_XECP(sc->sc_hcc) * 4; local in function:xhci_ecp
1295 while (ecp != 0) {
1296 uint32_t ecr = xhci_read_4(sc, ecp);
1300 xhci_id_protocols(sc, ecp);
1307 bios_sem = xhci_read_1(sc, ecp + XHCI_XECP_BIOS_SEM)
    [all...]

Completed in 182 milliseconds