Searched refs:head (Results 101 - 125 of 907) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/openzfs/include/os/freebsd/linux/
H A Dtypes.h73 typedef void (*rcu_callback_t)(struct rcu_head *head);
74 typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
/freebsd-current/tools/test/stress2/tools/
H A Dleaks.sh78 netstat -m | head -10 | sed 's#/# #g;s/k / /;s/K / /' | awk '
H A Duleak.sh35 ps -l | head -1
/freebsd-current/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha.h55 SHA_CTX head, tail, md; member in struct:prov_aes_hmac_sha1_ctx_st
60 SHA256_CTX head, tail, md; member in struct:prov_aes_hmac_sha256_ctx_st
/freebsd-current/sys/dev/netmap/
H A Dnetmap_mbq.h53 struct mbuf *head; member in struct:mbq
71 return q->head;
/freebsd-current/sys/net80211/
H A Dieee80211_ageq.c156 * deltas (in seconds) relative to the head so we can check
157 * and/or adjust only the head of the list. If a frame's age
164 struct mbuf *head, **phead; local
167 phead = &head;
184 return head;
197 struct mbuf *head, **phead; local
202 phead = &head;
233 if (head == ohead && aq->aq_head != NULL) /* correct age */
234 M_AGE_SET(aq->aq_head, M_AGE_GET(head));
238 return head;
[all...]
/freebsd-current/sys/arm64/linux/
H A Dlinux_sigframe.h40 struct _l_aarch64_ctx head; member in struct:l_fpsimd_context
47 struct _l_aarch64_ctx head; member in struct:l_esr_context
/freebsd-current/sbin/fsck_msdosfs/
H A Ddir.c256 rootDir->head = boot->bpbRootClust;
398 if (dir->head == CLUST_FREE) {
401 if (!fat_is_valid_cl(fat, dir->head) || !fat_is_cl_head(fat, dir->head)) {
403 fullpath(dir), dir->size, dir->head);
410 dir->head = CLUST_FREE;
416 ret = checkchain(fat, dir->head, &chainsize);
454 for (cl = dir->head, len = sz = 0;
487 cl = dir->head;
566 cl = dir->head;
1086 reconnect(struct fat_descriptor *fat, cl_t head, size_t length) argument
[all...]
/freebsd-current/lib/libiconv_modules/UES/
H A Dcitrus_ues.c193 int ch, head, num, tail; local
208 head = tail;
209 if (psenc->chlen == head) {
214 ch = (unsigned char)psenc->ch[head++];
216 if (psenc->chlen == head) {
221 switch (psenc->ch[head]) {
234 ++head;
236 for (; head < tail; ++head) {
237 if (psenc->chlen == head) {
[all...]
/freebsd-current/sys/netinet/
H A Dip_encap.c153 struct srcaddrtab_head *head; local
162 head = &ipv4_srcaddrtab;
167 head = &ipv6_srcaddrtab;
176 CK_LIST_FOREACH(p, head, chain) {
184 encap_register_srcaddr(struct srcaddrtab_head *head, encap_srcaddr_t func, argument
198 CK_LIST_FOREACH(tmp, head, chain) {
203 CK_LIST_INSERT_HEAD(head, p, chain);
214 encap_unregister_srcaddr(struct srcaddrtab_head *head, argument
220 CK_LIST_FOREACH(p, head, chain) {
234 encap_attach(struct encaptab_head *head, cons argument
271 encap_detach(struct encaptab_head *head, const struct encaptab *cookie) argument
290 encap_input(struct encaptab_head *head, struct mbuf *m, int off, int proto) argument
[all...]
/freebsd-current/sys/contrib/ck/include/spinlock/
H A Dclh.h59 struct ck_spinlock_clh *head; local
62 head = ck_pr_load_ptr(queue);
63 r = ck_pr_load_uint(&head->wait);
/freebsd-current/tools/test/stress2/misc/
H A Dmachipc2.sh79 mach_msg_header_t head;
87 mach_msg_header_t head;
178 message.head.msgh_bits = MACH_MSGH_BITS(MACH_MSG_TYPE_COPY_SEND, MACH_MSG_TYPE_MAKE_SEND);
179 message.head.msgh_size = sizeof( struct integer_message );
180 message.head.msgh_local_port = MACH_PORT_NULL;
181 message.head.msgh_remote_port = port;
182 message.head.msgh_id = 0; /* Message id */
183 message.head.msgh_size = sizeof(message); /* Message size */
197 kerr = mach_msg(&message.head, /* The header */
215 rmessage.head
[all...]
/freebsd-current/sys/netpfil/ipfw/test/
H A Dmylist.h8 /* not just a head, also the link field for a list entry */
26 list_add_tail(struct list_head *o, struct list_head *head) argument
28 __list_add(o, head->prev, head);
/freebsd-current/lib/libc/rpc/
H A Dpmap_getmaps.c70 struct pmaplist *head = NULL; local
85 (xdrproc_t)xdr_pmaplist, &head, minutetimeout) !=
92 return (head);
/freebsd-current/sys/net/route/
H A Dnhop_utils.h39 _cht_get_resize_size(const struct _cht_head *head) argument
43 if ((head->items_count * 2 > head->hash_size) && (head->hash_size < 65536))
44 new_size = head->hash_size * 2;
45 else if ((head->items_count * 4 < head->hash_size) && head->hash_size > 16)
46 new_size = head->hash_size / 2;
52 _cht_need_resize(const struct _cht_head *head) argument
[all...]
/freebsd-current/usr.bin/tail/
H A Dreverse.c193 TAILQ_HEAD(bfhead, bfelem) head;
195 TAILQ_INIT(&head);
206 first = TAILQ_FIRST(&head);
207 if (TAILQ_EMPTY(&head))
210 TAILQ_REMOVE(&head, first, entries);
213 TAILQ_INSERT_TAIL(&head, tl, entries);
242 tl = TAILQ_LAST(&head, bfhead);
243 first = TAILQ_FIRST(&head);
264 TAILQ_FOREACH_FROM_SAFE(tr, &head,
268 TAILQ_REMOVE(&head, t
[all...]
/freebsd-current/crypto/openssl/util/
H A Dcheck-format.pl452 my ($head, $tail) = (substr($str, 0, $i).$1, $3);
463 $hanging_offset -= INDENT_LEVEL if $hanging_offset > 0 && $head =~ m/[^\s\@]/;
484 # $head =~ m/^([\s@]*)(case\W.*$|\w+$)/ || # this matching would not work for
598 my ($head, $any_symbol, $cmt_text) = m/^(\s*)(.?)(.*)$/;
608 if ((my ($head, $tail) = m|^(.*?)\*/(.*)$|) && $1 ne '/') { # ending comment: '*/'
609 report("missing space or '*' before '*/'") if $head =~ m/[^*\s]$/;
611 if (!($head =~ m|/\*|)) { # not begin of comment '/*', which is is handled below
614 $_ = "$head@@".$tail; # blind the "*/"
616 report("text before '*/' in multi-line comment") if ($head =~ m/[^*\s]/); # non-SPC before '*/'
620 $head
[all...]
/freebsd-current/contrib/ntp/sntp/
H A Dnetworking.c74 u_int32 *head, /* head of extension chain */
80 while ((tail - head) > 6) {
81 nlen = ntohl(*head) & 0xffff;
82 ++head;
84 if (nlen > (u_int)(tail - head) || nlen < 4)
86 head += nlen;
88 return head;
73 skip_efields( u_int32 *head, u_int32 *tail ) argument
/freebsd-current/sys/dev/drm2/
H A Ddrm_hashtab.c67 LIST_FOREACH(entry, h_list, head)
80 LIST_FOREACH(entry, h_list, head) {
100 LIST_FOREACH(entry, h_list, head) {
108 LIST_INSERT_AFTER(parent, item, head);
110 LIST_INSERT_HEAD(h_list, item, head);
165 LIST_REMOVE(entry, head);
173 LIST_REMOVE(item, head);
/freebsd-current/usr.bin/mail/
H A Dcmd3.c201 struct header head; local
234 head.h_to = np;
235 if ((head.h_subject = hfield("subject", mp)) == NULL)
236 head.h_subject = hfield("subj", mp);
237 head.h_subject = reedit(head.h_subject);
244 head.h_cc = np;
246 head.h_cc = NULL;
247 head.h_bcc = NULL;
248 head
587 struct header head; local
[all...]
H A Dsend.c244 struct header head; local
246 head.h_to = to;
247 head.h_subject = subject;
248 head.h_cc = cc;
249 head.h_bcc = bcc;
250 head.h_smopts = smopts;
251 head.h_replyto = replyto;
252 head.h_inreplyto = NULL;
253 mail1(&head, 0);
265 struct header head; local
[all...]
/freebsd-current/stand/i386/libi386/
H A Dbiossmap.c57 STAILQ_HEAD(smap_head, smap_buf) head =
58 STAILQ_HEAD_INITIALIZER(head);
62 STAILQ_INIT(&head);
87 STAILQ_INSERT_TAIL(&head, next, bufs);
96 STAILQ_FOREACH(cur, &head, bufs)
103 STAILQ_FOREACH(cur, &head, bufs)
109 cur = STAILQ_FIRST(&head);
/freebsd-current/sys/security/mac_do/
H A Dmac_do.c58 TAILQ_HEAD(rulehead, rule) head;
64 toast_rules(struct rulehead *head) argument
68 while ((r = TAILQ_FIRST(head)) != NULL) {
69 TAILQ_REMOVE(head, r, r_entries);
133 parse_rules(char *string, struct rulehead *head) argument
145 TAILQ_INSERT_TAIL(head, new, r_entries);
149 toast_rules(head);
179 struct rulehead head, saved_head; local
200 TAILQ_INIT(&head);
201 error = parse_rules(copy_string, &head);
273 struct rulehead head, saved_head; local
[all...]
/freebsd-current/lib/libc/db/mpool/
H A Dmpool.c111 struct _hqh *head; local
123 * it to the head of the hash chain, the tail of the lru chain,
136 head = &mp->hqh[HASHKEY(bp->pgno)];
137 TAILQ_INSERT_HEAD(head, bp, hq);
145 struct _hqh *head; local
159 head = &mp->hqh[HASHKEY(bp->pgno)];
160 TAILQ_REMOVE(head, bp, hq);
177 struct _hqh *head; local
196 * Move the page to the head of the hash chain and the tail
199 head
337 struct _hqh *head; local
426 struct _hqh *head; local
[all...]
/freebsd-current/crypto/openssl/crypto/evp/
H A De_rc4_hmac_md5.c33 MD5_CTX head, tail, md; member in struct:__anon3953
56 MD5_Init(&key->head); /* handy when benchmarking */
57 key->tail = key->head;
58 key->md = key->head;
200 MD5_Init(&key->head);
201 MD5_Update(&key->head, ptr, arg);
202 MD5_Final(hmac_key, &key->head);
209 MD5_Init(&key->head);
210 MD5_Update(&key->head, hmac_key, sizeof(hmac_key));
239 key->md = key->head;
[all...]

Completed in 395 milliseconds

1234567891011>>