Searched refs:next (Results 51 - 75 of 2578) sorted by relevance

1234567891011>>

/freebsd-13-stable/sys/libkern/x86/
H A Dcrc32_sse42.c155 * bits), in even -- next square puts operator for two zero bytes in
225 const unsigned char *next, *end; local
232 next = buf;
236 while (len && ((uintptr_t)next & (align - 1)) != 0) {
237 crc0 = _mm_crc32_u8(crc0, *next);
238 next++;
254 end = next + LONG;
257 crc0 = _mm_crc32_u64(crc0, *(const uint64_t *)next);
259 *(const uint64_t *)(next + LONG));
261 *(const uint64_t *)(next
[all...]
/freebsd-13-stable/crypto/heimdal/lib/hx509/
H A Denv.c68 n->next = NULL;
84 while (e->next)
85 e = e->next;
86 e->next = n;
119 n->next = NULL;
130 while (e->next)
131 e = e->next;
132 e->next = n;
161 env = env->next;
184 env = env->next;
218 hx509_env next = b->next; local
[all...]
/freebsd-13-stable/contrib/xz/src/liblzma/common/
H A Dfilter_buffer_encoder.c28 lzma_next_coder next = LZMA_NEXT_CODER_INIT;
29 return_if_error(lzma_raw_encoder_init(&next, allocator, filters));
37 lzma_ret ret = next.code(next.coder, allocator, in, &in_pos, in_size,
39 lzma_next_end(&next, allocator);
H A Dfilter_buffer_decoder.c28 lzma_next_coder next = LZMA_NEXT_CODER_INIT;
29 return_if_error(lzma_raw_decoder_init(&next, allocator, filters));
37 lzma_ret ret = next.code(next.coder, allocator, in, in_pos, in_size,
69 (void)next.code(next.coder, allocator,
85 lzma_next_end(&next, allocator);
H A Dcommon.c116 lzma_next_filter_init(lzma_next_coder *next, const lzma_allocator *allocator, argument
119 lzma_next_coder_init(filters[0].init, next, allocator);
120 next->id = filters[0].id;
122 ? LZMA_OK : filters[0].init(next, allocator, filters);
127 lzma_next_filter_update(lzma_next_coder *next, const lzma_allocator *allocator, argument
132 // reversed_filters[0].id and next->id.
133 if (reversed_filters[0].id != next->id)
139 assert(next->update != NULL);
140 return next->update(next
145 lzma_next_end(lzma_next_coder *next, const lzma_allocator *allocator) argument
[all...]
H A Dalone_encoder.c21 lzma_next_coder next; member in struct:__anon6604
55 return coder->next.code(coder->next.coder,
72 lzma_next_end(&coder->next, allocator);
80 alone_encoder_init(lzma_next_coder *next, const lzma_allocator *allocator, argument
83 lzma_next_coder_init(&alone_encoder_init, next, allocator);
85 lzma_alone_coder *coder = next->coder;
92 next->coder = coder;
93 next->code = &alone_encode;
94 next
[all...]
H A Dblock_encoder.h44 extern lzma_ret lzma_block_encoder_init(lzma_next_coder *next,
/freebsd-13-stable/crypto/openssl/crypto/async/
H A Dasync_wait.c23 struct fd_lookup_st *next; local
36 next = curr->next;
38 curr = next;
60 fdlookup->next = ctx->fds;
75 curr = curr->next;
83 curr = curr->next;
98 curr = curr->next;
106 curr = curr->next;
134 curr = curr->next;
[all...]
/freebsd-13-stable/lib/libc/include/isc/
H A Dlist.h35 #define LINK(type) struct { type *prev, *next; }
39 (elt)->link.next = (type *)(-1); \
44 (void *)((elt)->link.next) != (void *)(-1))
58 (elt)->link.next = (list).head; \
66 (list).tail->link.next = (elt); \
70 (elt)->link.next = NULL; \
77 if ((elt)->link.next != NULL) \
78 (elt)->link.next->link.prev = (elt)->link.prev; \
84 (elt)->link.prev->link.next = (elt)->link.next; \
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_wc/
H A Dtree_conflicts.c95 && skel->children->next->is_atom
96 && skel->children->next->next->is_atom
97 && skel->children->next->next->next->is_atom
98 && skel->children->next->next->next->next
[all...]
/freebsd-13-stable/contrib/expat/tests/
H A Dmemcheck.c43 struct allocation_entry *next; member in struct:allocation_entry
69 entry->next = NULL;
77 alloc_tail->next = entry;
88 for (entry = alloc_head; entry != NULL; entry = entry->next) {
110 entry->prev->next = entry->next;
112 alloc_head = entry->next;
113 if (entry->next != NULL)
114 entry->next->prev = entry->prev;
116 alloc_tail = entry->next;
[all...]
/freebsd-13-stable/crypto/openssl/crypto/evp/
H A Dbio_md.c82 BIO *next; local
88 next = BIO_next(b);
90 if ((ctx == NULL) || (next == NULL))
93 ret = BIO_read(next, out, outl);
110 BIO *next; local
116 next = BIO_next(b);
117 if ((ctx != NULL) && (next != NULL))
118 ret = BIO_write(next, in, inl);
129 if (next != NULL) {
142 BIO *dbio, *next; local
204 BIO *next; local
[all...]
/freebsd-13-stable/libexec/talkd/
H A Dtable.c72 TABLE_ENTRY *next; member in struct:table_entry
87 TABLE_ENTRY *ptr, *next; local
94 for (ptr = table; ptr != NIL; ptr = next) {
95 next = ptr->next;
121 TABLE_ENTRY *ptr, *next; local
132 for (ptr = table; ptr != NIL; ptr = next) {
133 next = ptr->next;
174 ptr->next
[all...]
/freebsd-13-stable/contrib/xz/src/liblzma/delta/
H A Ddelta_common.c21 lzma_next_end(&coder->next, allocator);
28 lzma_delta_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, argument
32 lzma_delta_coder *coder = next->coder;
38 next->coder = coder;
41 next->end = &delta_coder_end;
42 coder->next = LZMA_NEXT_CODER_INIT;
57 // Initialize the next decoder in the chain, if any.
58 return lzma_next_filter_init(&coder->next, allocator, filters + 1);
H A Ddelta_decoder.h18 extern lzma_ret lzma_delta_decoder_init(lzma_next_coder *next,
H A Ddelta_encoder.h18 extern lzma_ret lzma_delta_encoder_init(lzma_next_coder *next,
/freebsd-13-stable/sys/dev/isci/scil/
H A Dsci_base_subject.c96 this_observer = this_observer->next;
107 observer->next = this_subject->observer_list;
129 current_observer = current_observer->next;
138 previous_observer->next = observer->next;
143 this_subject->observer_list = observer->next;
147 observer->next = NULL;
/freebsd-13-stable/contrib/ntp/lib/isc/include/isc/
H A Dqueue.h37 #define ISC_QLINK(type) struct { void *next; isc_boolean_t linked; }
40 (elt)->link.next = (void *)(-1); \
72 (elt)->link.next = (void *)(-1); \
74 (queue).tail->link.next = elt; \
83 ret = (queue).head->link.next; \
88 (queue).head->link.next = ret->link.next; \
89 if (ret->link.next == (void *)(-1)) { \
95 ret->link.next = (void *)(-1); \
/freebsd-13-stable/sys/contrib/vchiq/interface/compat/
H A Dlist.h61 struct list_head *next; member in struct:list_head
64 #define LIST_HEAD_INIT(name) { .prev = &(name), .next = &(name) }
70 head->next = head;
76 return head->next;
88 return node->next;
100 return (head->next == head);
109 if (head->next != head->prev)
116 struct list_head *next)
118 prev->next = node;
120 node->next
115 __list_add_between(struct list_head *prev, struct list_head *node, struct list_head *next) argument
144 __list_splice_between(struct list_head *prev, const struct list_head *list, struct list_head *next) argument
[all...]
/freebsd-13-stable/tools/tools/drm/radeon/mkregtable/
H A Dmkregtable.c39 * sometimes we already know the next/prev entries and we can
45 struct list_head *next, *prev; member in struct:list_head
55 list->next = list;
63 * the prev/next entries already!
67 struct list_head *prev, struct list_head *next)
69 next->prev = new;
70 new->next = next;
72 prev->next = new;
76 struct list_head *prev, struct list_head *next);
66 __list_add(struct list_head *new, struct list_head *prev, struct list_head *next) argument
112 __list_del(struct list_head *prev, struct list_head *next) argument
225 struct list_head *next = head->next; local
279 __list_splice(const struct list_head *list, struct list_head *prev, struct list_head *next) argument
[all...]
/freebsd-13-stable/sys/kern/
H A Dsubr_module.c60 int next; local
74 /* skip to next field */
75 next = sizeof(uint32_t) * 2 + hdr[1];
76 next = roundup(next, sizeof(u_long));
77 curp += next;
91 int next; local
110 /* skip to next field */
111 next = sizeof(uint32_t) * 2 + hdr[1];
112 next
127 int next; local
169 int next; local
215 int next; local
286 int next; local
[all...]
/freebsd-13-stable/sys/dev/ocs_fc/
H A Docs_list.h78 ocs_list_t *next; /*<< pointer to head of list (or next if link) */ member in struct:ocs_list_s
107 list->next = list;
126 return list->next == list;
149 * @param b Pointer to next link
159 ocs_list_assert(a->next);
163 ocs_list_assert(b->next);
167 ocs_list_assert(!c->next);
173 c->next = a->next;
369 ocs_list_t *next; local
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_base/
H A Dkey-gen.h58 #define NEXT_KEY_KEY "next-key"
61 /* Generate the next key after a given alphanumeric key.
79 void svn_fs_base__next_key(const char *this, apr_size_t *len, char *next);
/freebsd-13-stable/bin/date/
H A Dvary.h31 struct vary *next; member in struct:vary
/freebsd-13-stable/sys/contrib/openzfs/lib/libshare/
H A Dsmb.h44 struct smb_share_s *next; member in struct:smb_share_s

Completed in 147 milliseconds

1234567891011>>