Home
last modified time | relevance | path

Searched refs:head (Results 676 - 700 of 5942) sorted by relevance

1...<<21222324252627282930>>...238

/kernel/linux/linux-5.10/drivers/block/zram/zram_group/
H A Dzlist.c116 struct zlist_node *head = idx2node(hid, tab); in zlist_add_nolock() local
117 u32 nid = head->next; in zlist_add_nolock()
120 zlist_before_add_check(tab, head, node, next); in zlist_add_nolock()
127 head->next = idx; in zlist_add_nolock()
133 zlist_after_add_check(tab, head, node, next); in zlist_add_nolock()
139 struct zlist_node *head = idx2node(hid, tab); in zlist_add_tail_nolock() local
140 u32 tid = head->prev; in zlist_add_tail_nolock()
143 zlist_before_add_check(tab, tail, node, head); in zlist_add_tail_nolock()
150 head->prev = idx; in zlist_add_tail_nolock()
156 zlist_after_add_check(tab, tail, node, head); in zlist_add_tail_nolock()
[all...]
/kernel/linux/linux-5.10/drivers/infiniband/sw/rdmavt/
H A Dsrq.c179 u32 sz, size, n, head, tail; in rvt_modify_srq() local
211 * validate head and tail pointer values and compute in rvt_modify_srq()
216 head = RDMA_READ_UAPI_ATOMIC(owq->head); in rvt_modify_srq()
220 head = okwq->head; in rvt_modify_srq()
223 if (head >= srq->rq.size || tail >= srq->rq.size) { in rvt_modify_srq()
227 n = head; in rvt_modify_srq()
238 while (tail != head) { in rvt_modify_srq()
255 RDMA_WRITE_UAPI_ATOMIC(tmp_rq.wq->head, in rvt_modify_srq()
[all...]
/kernel/linux/linux-5.10/drivers/input/serio/
H A Dsa1111ps2.c51 unsigned int head; member
97 if (ps2if->head == ps2if->tail) { in ps2_txint()
117 unsigned int head; in ps2_write() local
127 if (ps2if->head == ps2if->tail) in ps2_write()
129 head = (ps2if->head + 1) & (sizeof(ps2if->buf) - 1); in ps2_write()
130 if (head != ps2if->tail) { in ps2_write()
131 ps2if->buf[ps2if->head] = val; in ps2_write()
132 ps2if->head = head; in ps2_write()
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/
H A Duar.c209 struct list_head *head; in alloc_bfreg() local
217 head = &bfregs->wc_head.list; in alloc_bfreg()
220 head = &bfregs->reg_head.list; in alloc_bfreg()
224 if (list_empty(head)) { in alloc_bfreg()
230 list_add(&up->list, head); in alloc_bfreg()
232 up = list_entry(head->next, struct mlx5_uars_page, list); in alloc_bfreg()
298 struct list_head *head; in mlx5_free_bfreg() local
302 head = &bfregs->wc_head.list; in mlx5_free_bfreg()
305 head = &bfregs->reg_head.list; in mlx5_free_bfreg()
322 list_add_tail(&up->list, head); in mlx5_free_bfreg()
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/
H A Duar.c209 struct list_head *head; in alloc_bfreg() local
217 head = &bfregs->wc_head.list; in alloc_bfreg()
220 head = &bfregs->reg_head.list; in alloc_bfreg()
224 if (list_empty(head)) { in alloc_bfreg()
230 list_add(&up->list, head); in alloc_bfreg()
232 up = list_entry(head->next, struct mlx5_uars_page, list); in alloc_bfreg()
298 struct list_head *head; in mlx5_free_bfreg() local
302 head = &bfregs->wc_head.list; in mlx5_free_bfreg()
305 head = &bfregs->reg_head.list; in mlx5_free_bfreg()
322 list_add_tail(&up->list, head); in mlx5_free_bfreg()
[all...]
/kernel/linux/linux-6.6/drivers/block/zram/zram_group/
H A Dzlist.c116 struct zlist_node *head = idx2node(hid, tab); in zlist_add_nolock() local
117 u32 nid = head->next; in zlist_add_nolock()
120 zlist_before_add_check(tab, head, node, next); in zlist_add_nolock()
127 head->next = idx; in zlist_add_nolock()
133 zlist_after_add_check(tab, head, node, next); in zlist_add_nolock()
139 struct zlist_node *head = idx2node(hid, tab); in zlist_add_tail_nolock() local
140 u32 tid = head->prev; in zlist_add_tail_nolock()
143 zlist_before_add_check(tab, tail, node, head); in zlist_add_tail_nolock()
150 head->prev = idx; in zlist_add_tail_nolock()
156 zlist_after_add_check(tab, tail, node, head); in zlist_add_tail_nolock()
[all...]
/kernel/linux/linux-6.6/drivers/input/serio/
H A Dsa1111ps2.c51 unsigned int head; member
97 if (ps2if->head == ps2if->tail) { in ps2_txint()
117 unsigned int head; in ps2_write() local
127 if (ps2if->head == ps2if->tail) in ps2_write()
129 head = (ps2if->head + 1) & (sizeof(ps2if->buf) - 1); in ps2_write()
130 if (head != ps2if->tail) { in ps2_write()
131 ps2if->buf[ps2if->head] = val; in ps2_write()
132 ps2if->head = head; in ps2_write()
[all...]
/kernel/linux/linux-6.6/drivers/infiniband/sw/rdmavt/
H A Dsrq.c137 u32 sz, size, n, head, tail; in rvt_modify_srq() local
169 * validate head and tail pointer values and compute in rvt_modify_srq()
174 head = RDMA_READ_UAPI_ATOMIC(owq->head); in rvt_modify_srq()
178 head = okwq->head; in rvt_modify_srq()
181 if (head >= srq->rq.size || tail >= srq->rq.size) { in rvt_modify_srq()
185 n = head; in rvt_modify_srq()
196 while (tail != head) { in rvt_modify_srq()
213 RDMA_WRITE_UAPI_ATOMIC(tmp_rq.wq->head, in rvt_modify_srq()
[all...]
/kernel/linux/linux-6.6/lib/
H A Dref_tracker.c16 struct list_head head; /* anchor into dir->list or dir->quarantine */ member
44 list_for_each_entry(tracker, &dir->list, head) { in ref_tracker_get_stats()
165 list_for_each_entry_safe(tracker, n, &dir->quarantine, head) { in ref_tracker_dir_exit()
166 list_del(&tracker->head); in ref_tracker_dir_exit()
173 list_for_each_entry_safe(tracker, n, &dir->list, head) { in ref_tracker_dir_exit()
174 list_del(&tracker->head); in ref_tracker_dir_exit()
213 list_add(&tracker->head, &dir->list); in ref_tracker_alloc()
262 list_move_tail(&tracker->head, &dir->quarantine); in ref_tracker_free()
264 tracker = list_first_entry(&dir->quarantine, struct ref_tracker, head); in ref_tracker_free()
265 list_del(&tracker->head); in ref_tracker_free()
[all...]
/third_party/musl/src/regex/
H A Dglob.c180 static void freelist(struct match *head) in freelist() argument
183 for (match=head->next; match; match=next) { in freelist()
229 struct match head = { .next = NULL }, *tail = &head; in glob() local
257 freelist(&head); in glob()
261 for (cnt=0, tail=head.next; tail; tail=tail->next, cnt++); in glob()
264 tail = &head; in glob()
275 freelist(&head); in glob()
283 freelist(&head); in glob()
289 for (i=0, tail=head in glob()
[all...]
/third_party/node/deps/openssl/openssl/crypto/evp/
H A De_rc4_hmac_md5.c33 MD5_CTX head, tail, md; member
56 MD5_Init(&key->head); /* handy when benchmarking */ in rc4_hmac_md5_init_key()
57 key->tail = key->head; in rc4_hmac_md5_init_key()
58 key->md = key->head; in rc4_hmac_md5_init_key()
200 MD5_Init(&key->head); in rc4_hmac_md5_ctrl()
201 MD5_Update(&key->head, ptr, arg); in rc4_hmac_md5_ctrl()
202 MD5_Final(hmac_key, &key->head); in rc4_hmac_md5_ctrl()
209 MD5_Init(&key->head); in rc4_hmac_md5_ctrl()
210 MD5_Update(&key->head, hmac_key, sizeof(hmac_key)); in rc4_hmac_md5_ctrl()
239 key->md = key->head; in rc4_hmac_md5_ctrl()
[all...]
/third_party/openssl/crypto/evp/
H A De_rc4_hmac_md5.c33 MD5_CTX head, tail, md; member
56 MD5_Init(&key->head); /* handy when benchmarking */ in rc4_hmac_md5_init_key()
57 key->tail = key->head; in rc4_hmac_md5_init_key()
58 key->md = key->head; in rc4_hmac_md5_init_key()
200 MD5_Init(&key->head); in rc4_hmac_md5_ctrl()
201 MD5_Update(&key->head, ptr, arg); in rc4_hmac_md5_ctrl()
202 MD5_Final(hmac_key, &key->head); in rc4_hmac_md5_ctrl()
209 MD5_Init(&key->head); in rc4_hmac_md5_ctrl()
210 MD5_Update(&key->head, hmac_key, sizeof(hmac_key)); in rc4_hmac_md5_ctrl()
239 key->md = key->head; in rc4_hmac_md5_ctrl()
[all...]
/third_party/rust/crates/regex/regex-syntax/src/ast/
H A Dvisitor.rs148 head: &'a Ast,
156 head: &'a Ast,
169 head: &'a ast::ClassSetItem,
270 Some(Frame::Concat { head: &x.asts[0], tail: &x.asts[1..] }) in induct()
274 head: &x.asts[0], in induct()
291 Some(Frame::Concat { head: &tail[0], tail: &tail[1..] }) in pop()
299 head: &tail[0], in pop()
388 Some(ClassFrame::Union { head: item, tail: &[] }) in induct_class()
400 head: &x.items[0], in induct_class()
421 head in pop_class()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/
H A Dintel_panel.c59 struct drm_display_mode, head); in intel_panel_preferred_fixed_mode()
101 list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) { in intel_panel_fixed_mode()
142 list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) { in intel_panel_downclock_mode()
162 list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) { in intel_panel_highest_mode()
175 list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) { in intel_panel_get_modes()
192 list_for_each_entry(mode1, &connector->panel.fixed_modes, head) { in has_drrs_modes()
195 list_for_each_entry_continue(mode2, &connector->panel.fixed_modes, head) { in has_drrs_modes()
266 list_for_each_entry_safe(mode, next, &connector->base.probed_modes, head) { in intel_panel_add_edid_alt_fixed_modes()
275 list_move_tail(&mode->head, &connector->panel.fixed_modes); in intel_panel_add_edid_alt_fixed_modes()
288 list_for_each_entry(scan, &connector->base.probed_modes, head) { in intel_panel_add_edid_preferred_mode()
[all...]
/third_party/curl/lib/
H A Dhttp_aws_sigv4.c81 static void trim_headers(struct curl_slist *head) in trim_headers() argument
84 for(l = head; l; l = l->next) { in trim_headers()
144 struct curl_slist *head = NULL; in make_headers() local
162 head = NULL; in make_headers()
187 head = curl_slist_append(NULL, full_host); in make_headers()
188 if(!head) in make_headers()
194 tmp_head = curl_slist_append(head, content_sha256_header); in make_headers()
197 head = tmp_head; in make_headers()
230 tmp_head = Curl_slist_append_nodup(head, dupdata); in make_headers()
235 head in make_headers()
[all...]
/kernel/linux/linux-5.10/drivers/video/fbdev/core/
H A Dmodedb.c945 * @head: pointer to struct list_head of modelist
960 struct list_head *head) in fb_find_best_mode()
967 list_for_each(pos, head) { in fb_find_best_mode()
991 * @head: pointer to modelist
998 struct list_head *head) in fb_find_nearest_mode()
1005 list_for_each(pos, head) { in fb_find_nearest_mode()
1032 * @head: pointer to struct list_head of modelist
1038 struct list_head *head) in fb_match_mode()
1045 list_for_each(pos, head) { in fb_match_mode()
1057 * @head
959 fb_find_best_mode(const struct fb_var_screeninfo *var, struct list_head *head) fb_find_best_mode() argument
997 fb_find_nearest_mode(const struct fb_videomode *mode, struct list_head *head) fb_find_nearest_mode() argument
1037 fb_match_mode(const struct fb_var_screeninfo *var, struct list_head *head) fb_match_mode() argument
1062 fb_add_videomode(const struct fb_videomode *mode, struct list_head *head) fb_add_videomode() argument
1097 fb_delete_videomode(const struct fb_videomode *mode, struct list_head *head) fb_delete_videomode() argument
1118 fb_destroy_modelist(struct list_head *head) fb_destroy_modelist() argument
1135 fb_videomode_to_modelist(const struct fb_videomode *modedb, int num, struct list_head *head) fb_videomode_to_modelist() argument
1148 fb_find_best_display(const struct fb_monspecs *specs, struct list_head *head) fb_find_best_display() argument
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/core/
H A Dmodedb.c949 * @head: pointer to struct list_head of modelist
964 struct list_head *head) in fb_find_best_mode()
970 list_for_each_entry(modelist, head, list) { in fb_find_best_mode()
992 * @head: pointer to modelist
999 struct list_head *head) in fb_find_nearest_mode()
1005 list_for_each_entry(modelist, head, list) { in fb_find_nearest_mode()
1030 * @head: pointer to struct list_head of modelist
1036 struct list_head *head) in fb_match_mode()
1042 list_for_each_entry(modelist, head, list) { in fb_match_mode()
1053 * @head
963 fb_find_best_mode(const struct fb_var_screeninfo *var, struct list_head *head) fb_find_best_mode() argument
998 fb_find_nearest_mode(const struct fb_videomode *mode, struct list_head *head) fb_find_nearest_mode() argument
1035 fb_match_mode(const struct fb_var_screeninfo *var, struct list_head *head) fb_match_mode() argument
1058 fb_add_videomode(const struct fb_videomode *mode, struct list_head *head) fb_add_videomode() argument
1091 fb_delete_videomode(const struct fb_videomode *mode, struct list_head *head) fb_delete_videomode() argument
1112 fb_destroy_modelist(struct list_head *head) fb_destroy_modelist() argument
1129 fb_videomode_to_modelist(const struct fb_videomode *modedb, int num, struct list_head *head) fb_videomode_to_modelist() argument
1142 fb_find_best_display(const struct fb_monspecs *specs, struct list_head *head) fb_find_best_display() argument
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_pullup.c124 static void free_field_queue(PullupField *head) in free_field_queue() argument
126 PullupField *f = head; in free_field_queue()
138 } while (f != head); in free_field_queue()
143 PullupField *head, *f; in make_field_queue() local
145 f = head = av_mallocz(sizeof(*head)); in make_field_queue()
157 free_field_queue(head); in make_field_queue()
164 free_field_queue(head); in make_field_queue()
169 f->next = head; in make_field_queue()
170 head in make_field_queue()
[all...]
/kernel/linux/linux-6.6/drivers/perf/
H A Darm_spe_pmu.c396 u64 head = PERF_IDX2OFF(handle->head, buf); in arm_spe_pmu_pad_buf() local
398 memset(buf->base + head, ARM_SPE_BUF_PAD_BYTE, len); in arm_spe_pmu_pad_buf()
407 u64 head = PERF_IDX2OFF(handle->head, buf); in arm_spe_pmu_next_snapshot_off() local
416 if (head < limit >> 1) in arm_spe_pmu_next_snapshot_off()
421 * pad, move the head index and recompute the limit. in arm_spe_pmu_next_snapshot_off()
423 if (limit - head < spe_pmu->max_record_sz) { in arm_spe_pmu_next_snapshot_off()
424 arm_spe_pmu_pad_buf(handle, limit - head); in arm_spe_pmu_next_snapshot_off()
425 handle->head in arm_spe_pmu_next_snapshot_off()
438 u64 head, tail, wakeup; __arm_spe_pmu_next_off() local
507 u64 head = PERF_IDX2OFF(handle->head, buf); arm_spe_pmu_next_off() local
[all...]
/third_party/node/deps/v8/src/execution/
H A Dfutex-emulation.cc55 static void DeleteNodesForIsolate(Isolate* isolate, FutexWaitListNode** head, in DeleteNodesForIsolate() argument
57 // For updating head & tail once we've iterated all nodes. in DeleteNodesForIsolate()
60 auto node = *head; in DeleteNodesForIsolate()
73 *head = new_head; in DeleteNodesForIsolate()
80 // list, it must be |head|, and if it's the last node, it must be |tail|.
81 void VerifyNode(FutexWaitListNode* node, FutexWaitListNode* head,
83 // Returns true if |node| is on the linked list starting with |head|.
84 static bool NodeIsOnList(FutexWaitListNode* node, FutexWaitListNode* head);
90 FutexWaitListNode* head; member
218 DCHECK(NodeIsOnList(node, it->second.head)); in RemoveNode()
887 FutexWaitListNode*& head = it->second.head; IsolateDeinit() local
988 VerifyNode(FutexWaitListNode* node, FutexWaitListNode* head, FutexWaitListNode* tail) VerifyNode() argument
1033 NodeIsOnList(FutexWaitListNode* node, FutexWaitListNode* head) NodeIsOnList() argument
[all...]
/third_party/node/deps/openssl/openssl/ssl/
H A Dssl_ciph.c643 static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr, in ll_append_tail() argument
648 if (curr == *head) in ll_append_tail()
649 *head = curr->next; in ll_append_tail()
660 static void ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr, in ll_append_head() argument
663 if (curr == *head) in ll_append_head()
671 (*head)->prev = curr; in ll_append_head()
672 curr->next = *head; in ll_append_head()
674 *head = curr; in ll_append_head()
753 CIPHER_ORDER *head) in ssl_cipher_collect_aliases()
766 ciph_curr = head; in ssl_cipher_collect_aliases()
747 ssl_cipher_collect_aliases(const SSL_CIPHER **ca_list, int num_of_group_aliases, uint32_t disabled_mkey, uint32_t disabled_auth, uint32_t disabled_enc, uint32_t disabled_mac, CIPHER_ORDER *head) ssl_cipher_collect_aliases() argument
816 CIPHER_ORDER *head, *tail, *curr, *next, *last; ssl_cipher_apply_rule() local
1453 CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr; STACK_OF() local
[all...]
/third_party/openssl/ssl/
H A Dssl_ciph.c642 static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr, in ll_append_tail() argument
647 if (curr == *head) in ll_append_tail()
648 *head = curr->next; in ll_append_tail()
659 static void ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr, in ll_append_head() argument
662 if (curr == *head) in ll_append_head()
670 (*head)->prev = curr; in ll_append_head()
671 curr->next = *head; in ll_append_head()
673 *head = curr; in ll_append_head()
752 CIPHER_ORDER *head) in ssl_cipher_collect_aliases()
765 ciph_curr = head; in ssl_cipher_collect_aliases()
746 ssl_cipher_collect_aliases(const SSL_CIPHER **ca_list, int num_of_group_aliases, uint32_t disabled_mkey, uint32_t disabled_auth, uint32_t disabled_enc, uint32_t disabled_mac, CIPHER_ORDER *head) ssl_cipher_collect_aliases() argument
815 CIPHER_ORDER *head, *tail, *curr, *next, *last; ssl_cipher_apply_rule() local
1452 CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr; STACK_OF() local
[all...]
/kernel/linux/linux-5.10/fs/btrfs/
H A Dextent-tree.c107 * the head node for delayed ref is used to store the sum of all the
108 * reference count modifications queued up in the rbtree. the head
117 struct btrfs_delayed_ref_head *head; in btrfs_lookup_extent_info() local
201 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); in btrfs_lookup_extent_info()
202 if (head) { in btrfs_lookup_extent_info()
203 if (!mutex_trylock(&head->mutex)) { in btrfs_lookup_extent_info()
204 refcount_inc(&head->refs); in btrfs_lookup_extent_info()
213 mutex_lock(&head->mutex); in btrfs_lookup_extent_info()
214 mutex_unlock(&head->mutex); in btrfs_lookup_extent_info()
215 btrfs_put_delayed_ref_head(head); in btrfs_lookup_extent_info()
1542 run_delayed_extent_op(struct btrfs_trans_handle *trans, struct btrfs_delayed_ref_head *head, struct btrfs_delayed_extent_op *extent_op) run_delayed_extent_op() argument
1702 select_delayed_ref(struct btrfs_delayed_ref_head *head) select_delayed_ref() argument
1725 unselect_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs, struct btrfs_delayed_ref_head *head) unselect_delayed_ref_head() argument
1735 cleanup_extent_op( struct btrfs_delayed_ref_head *head) cleanup_extent_op() argument
1751 run_and_cleanup_extent_op(struct btrfs_trans_handle *trans, struct btrfs_delayed_ref_head *head) run_and_cleanup_extent_op() argument
1767 btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info, struct btrfs_delayed_ref_root *delayed_refs, struct btrfs_delayed_ref_head *head) btrfs_cleanup_ref_head_accounting() argument
1800 cleanup_ref_head(struct btrfs_trans_handle *trans, struct btrfs_delayed_ref_head *head) cleanup_ref_head() argument
1856 struct btrfs_delayed_ref_head *head = NULL; btrfs_obtain_ref_head() local
2136 struct btrfs_delayed_ref_head *head; btrfs_run_delayed_refs() local
2214 struct btrfs_delayed_ref_head *head; check_delayed_ref() local
3273 struct btrfs_delayed_ref_head *head; check_ref_cleanup() local
[all...]
/kernel/linux/linux-5.10/fs/
H A Daio.c60 unsigned head; /* Written to by userland or under ring_lock member
183 struct wait_queue_head *head; member
408 * to the ring's head, and prevents page migration from mucking in in aio_migratepage()
474 /* Compensate for the ring buffer's head/tail overlap entry */ in aio_setup_ring()
551 ring->head = ring->tail = 0; in aio_setup_ring()
972 static void refill_reqs_available(struct kioctx *ctx, unsigned head, in refill_reqs_available() argument
977 /* Clamp head since userland can write to it. */ in refill_reqs_available()
978 head %= ctx->nr_events; in refill_reqs_available()
979 if (head <= tail) in refill_reqs_available()
980 events_in_ring = tail - head; in refill_reqs_available()
1006 unsigned head; user_refill_reqs_available() local
1109 unsigned tail, pos, head; aio_complete() local
1193 unsigned head, tail, pos; aio_read_events_ring() local
1650 wait_queue_head_t *head; poll_iocb_lock_wq() local
1838 aio_poll_queue_proc(struct file *file, struct wait_queue_head *head, struct poll_table_struct *p) aio_poll_queue_proc() argument
[all...]
/kernel/linux/linux-6.6/fs/
H A Daio.c59 unsigned head; /* Written to by userland or under ring_lock member
182 struct wait_queue_head *head; member
434 * to the ring's head, and prevents page migration from mucking in in aio_migrate_folio()
500 /* Compensate for the ring buffer's head/tail overlap entry */ in aio_setup_ring()
577 ring->head = ring->tail = 0; in aio_setup_ring()
988 static void refill_reqs_available(struct kioctx *ctx, unsigned head, in refill_reqs_available() argument
993 /* Clamp head since userland can write to it. */ in refill_reqs_available()
994 head %= ctx->nr_events; in refill_reqs_available()
995 if (head <= tail) in refill_reqs_available()
996 events_in_ring = tail - head; in refill_reqs_available()
1022 unsigned head; user_refill_reqs_available() local
1124 unsigned tail, pos, head; aio_complete() local
1206 unsigned head, tail, pos; aio_read_events_ring() local
1644 wait_queue_head_t *head; poll_iocb_lock_wq() local
1832 aio_poll_queue_proc(struct file *file, struct wait_queue_head *head, struct poll_table_struct *p) aio_poll_queue_proc() argument
[all...]

Completed in 28 milliseconds

1...<<21222324252627282930>>...238