Searched refs:chain (Results 101 - 125 of 148) sorted by relevance

123456

/freebsd-9.3-release/crypto/heimdal/lib/hx509/data/
H A Dgen-req.sh97 cat pkinit-proxy.crt pkinit.crt > pkinit-proxy-chain.crt
/freebsd-9.3-release/share/examples/
H A DMakefile121 netgraph/virtual.chain \
/freebsd-9.3-release/sys/dev/esp/
H A Dncr53c9xvar.h119 TAILQ_ENTRY(ncr53c9x_ecb) chain; member in struct:ncr53c9x_ecb
H A Dncr53c9x.c1125 TAILQ_INSERT_TAIL(&sc->ready_list, ecb, chain);
1264 TAILQ_FOREACH(ecb, &sc->ready_list, chain) {
1319 TAILQ_REMOVE(&sc->ready_list, ecb, chain);
1326 TAILQ_REMOVE(&sc->ready_list, ecb, chain);
1375 TAILQ_INSERT_HEAD(&sc->ready_list, ecb, chain);
1527 TAILQ_REMOVE(&sc->ready_list, ecb, chain);
2673 TAILQ_INSERT_HEAD(&sc->ready_list, ecb, chain);
/freebsd-9.3-release/sys/dev/hatm/
H A Dif_hatm_ioctl.c152 vcc->chain = vcc->last = NULL;
H A Dif_hatmvar.h173 struct mbuf *mbuf; /* the buf chain */
343 struct mbuf * chain; /* partial received PDU */ member in struct:hevcc
344 struct mbuf * last; /* last mbuf in chain */
/freebsd-9.3-release/sys/dev/patm/
H A Dif_patmvar.h200 struct mbuf *chain; /* currently received chain */ member in struct:patm_vcc
201 struct mbuf *last; /* end of chain */
H A Dif_patm_ioctl.c159 vcc->chain = NULL;
/freebsd-9.3-release/contrib/gcc/
H A Dtree.c672 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1588 /* Return nonzero if ELEM is part of the chain CHAIN. */
1591 chain_member (tree elem, tree chain)
1593 while (chain)
1595 if (elem == chain)
1597 chain = TREE_CHAIN (chain);
1603 /* Return the length of a chain of nodes chained through TREE_CHAIN.
1604 We expect a null pointer to mark the end of the chain.
1646 by modifying the last node in chain
1585 chain_member(tree elem, tree chain) argument
1671 tree_last(tree chain) argument
3206 build_block(tree vars, tree subblocks, tree supercontext, tree chain) argument
[all...]
H A Dstor-layout.c85 tree chain = pending_sizes;
88 return chain;
104 /* Put a chain of objects into the pending sizes list, which must be
108 put_pending_sizes (tree chain)
111 pending_sizes = chain;
1552 Record TYPE on the chain of permanent or temporary types
84 tree chain = pending_sizes; local
107 put_pending_sizes(tree chain) argument
H A Dc-opts.c98 /* If the quote chain has been split by -I-. */
1398 add_prefixed_path (const char *suffix, size_t chain) argument
1413 add_path (path, chain, 0, false);
H A Dtree-cfg.c747 /* Add it to the chain of CASE_LABEL_EXPRs referencing E. */
754 a chain of CASE_LABEL_EXPRs from T which reference E.
944 /* label_to_block possibly inserted undefined label into the chain. */
3578 /* Verify the GIMPLE statement chain. */
4012 /* Ensure that the PHI node chain is in the same order. */
4316 /* Keep the chain of PHI nodes in the same order so that they can be
5035 tree chain; local
5101 chain = DECL_SAVED_TREE (fn);
5103 if (chain && TREE_CODE (chain)
[all...]
H A Dglobal.c1831 reg_dies (int regno, enum machine_mode mode, struct insn_chain *chain)
1840 SET_REGNO_REG_SET (&chain->dead_or_set, regno);
1848 SET_REGNO_REG_SET (&chain->dead_or_set, regno);
1818 reg_dies(int regno, enum machine_mode mode, struct insn_chain *chain) argument
/freebsd-9.3-release/sys/dev/mpt/
H A Dmpt_cam.c1449 * Tell the IOC where to find the first chain element.
1456 * Make up the rest of the data segments out of a chain element
1459 * with *another* chain element (if there's more).
1463 * Point to the chain descriptor. Note that the chain
1465 * chain or simple).
1481 * Set our SGE element pointer to the beginning of the chain
1482 * list and update our next chain list offset.
1489 * Now initialize the chain descriptor.
1494 * Get the physical address of the chain lis
[all...]
H A Dmpt.c849 mpt_complete_request_chain(struct mpt_softc *mpt, struct req_queue *chain, argument
858 while((req = TAILQ_FIRST(chain)) != NULL) {
871 TAILQ_REMOVE(chain, req, links);
1206 if ((nxt = req->chain) != NULL) {
1207 req->chain = NULL;
1274 req->chain = NULL;
2668 * many chain segments we can fit into it).
2670 * + The actual chain depth the card will allow.
2681 /* converted to the number of chain areas possible */
2684 /* limited by the number of chain area
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgdbtypes.c562 struct type *chain; local
567 type on the variant chain. */
568 chain = ntype;
570 /* Assert that this element of the chain has no address-class bits
576 gdb_assert (TYPE_ADDRESS_CLASS_ALL (chain) == 0);
579 chain = TYPE_CHAIN (chain);
580 } while (ntype != chain);
2035 /* Get rid of constructed chain */
H A Dgdbtypes.h483 /* Variant chain. This points to a type that differs from this one only
488 struct type *chain; member in struct:type
745 struct vbase *next; /* next in chain */
775 #define TYPE_CHAIN(thistype) (thistype)->chain
H A Dgdbarch.h1713 typedef int (gdbarch_deprecated_frame_chain_valid_ftype) (CORE_ADDR chain, struct frame_info *thisframe);
1714 extern int gdbarch_deprecated_frame_chain_valid (struct gdbarch *gdbarch, CORE_ADDR chain, struct frame_info *thisframe);
1720 #define DEPRECATED_FRAME_CHAIN_VALID(chain, thisframe) (gdbarch_deprecated_frame_chain_valid (current_gdbarch, chain, thisframe))
/freebsd-9.3-release/contrib/wpa/src/tls/
H A Dx509v3.c69 * x509_certificate_free - Free an X.509 certificate chain
70 * @cert: Pointer to the first certificate in the chain
1828 * x509_certificate_chain_validate - Validate X.509 certificate chain
1830 * @chain: Certificate chain to be validated (first chain must be issued by
1831 * signed by the second certificate in the chain and so on)
1833 * Returns: 0 if chain is valid, -1 if not
1836 struct x509_certificate *chain,
1847 wpa_printf(MSG_DEBUG, "X509: Validate certificate chain");
1835 x509_certificate_chain_validate(struct x509_certificate *trusted, struct x509_certificate *chain, int *reason) argument
1964 x509_certificate_get_subject(struct x509_certificate *chain, struct x509_name *name) argument
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/cms/
H A Dcms.h253 int CMS_SignerInfo_verify_content(CMS_SignerInfo *si, BIO *chain);
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dserver.c7656 dns_rbtnodechain_t chain; local
7668 dns_rbtnodechain_init(&chain, ring->mctx);
7669 result = dns_rbtnodechain_first(&chain, ring->keys, &foundname,
7672 dns_rbtnodechain_invalidate(&chain);
7676 dns_rbtnodechain_invalidate(&chain);
7682 dns_rbtnodechain_current(&chain, &foundname, origin, &node);
7692 dns_rbtnodechain_invalidate(&chain);
7701 result = dns_rbtnodechain_next(&chain, &foundname, origin);
7705 dns_rbtnodechain_invalidate(&chain);
7764 dns_rbtnodechain_t chain; local
8598 isc_boolean_t chain = ISC_FALSE; local
[all...]
/freebsd-9.3-release/contrib/gcc/config/i386/
H A Dsol2-c1.asm51 ! address of the initial frame, and mark the end of the stack frame chain
H A Dsol2-gc1.asm54 ! address of the initial frame, and mark the end of the stack frame chain
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dx509v3.h792 int v3_asid_validate_resource_set(STACK_OF(X509) *chain,
794 int v3_addr_validate_resource_set(STACK_OF(X509) *chain,
/freebsd-9.3-release/sys/dev/ata/chipsets/
H A Data-promise.c119 TAILQ_ENTRY(host_packet) chain;
1257 TAILQ_INSERT_TAIL(&hpktp->queue, hp, chain);
1274 TAILQ_REMOVE(&hpktp->queue, hp, chain);

Completed in 389 milliseconds

123456