Home
last modified time | relevance | path

Searched refs:next (Results 1626 - 1650 of 12627) sorted by relevance

1...<<61626364656667686970>>...506

/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_instr_fetch.cpp14 * The above copyright notice and this permission notice (including the next
294 string next; in from_string_impl() local
295 is >> next; in from_string_impl() local
299 if (next == "+") { in from_string_impl()
305 res_id_str = next; in from_string_impl()
575 string next; in from_string() local
576 is >> next; in from_string() local
580 if (next == "+") { in from_string()
586 res_id_str = next; in from_string()
591 next in from_string()
592 is >> next; from_string() local
603 is >> next; from_string() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/
H A Dmem_sec.c304 struct sh_list_st *next; member
382 temp->next = *(SH_LIST **)list; in sh_add_to_list()
383 OPENSSL_assert(temp->next == NULL || WITHIN_ARENA(temp->next)); in sh_add_to_list()
386 if (temp->next != NULL) { in sh_add_to_list()
387 OPENSSL_assert((char **)temp->next->p_next == list); in sh_add_to_list()
388 temp->next->p_next = &(temp->next); in sh_add_to_list()
399 if (temp->next != NULL) in sh_remove_from_list()
400 temp->next in sh_remove_from_list()
[all...]
/third_party/openssl/crypto/
H A Dmem_sec.c298 struct sh_list_st *next; member
376 temp->next = *(SH_LIST **)list; in sh_add_to_list()
377 OPENSSL_assert(temp->next == NULL || WITHIN_ARENA(temp->next)); in sh_add_to_list()
380 if (temp->next != NULL) { in sh_add_to_list()
381 OPENSSL_assert((char **)temp->next->p_next == list); in sh_add_to_list()
382 temp->next->p_next = &(temp->next); in sh_add_to_list()
393 if (temp->next != NULL) in sh_remove_from_list()
394 temp->next in sh_remove_from_list()
[all...]
/third_party/selinux/libsepol/src/
H A Davtab.c125 newnode->next = prev->next; in avtab_insert_node()
126 prev->next = newnode; in avtab_insert_node()
128 newnode->next = h->htable[hvalue]; in avtab_insert_node()
148 cur; prev = cur, cur = cur->next) { in avtab_insert()
192 cur; prev = cur, cur = cur->next) { in avtab_insert_nonunique()
224 for (cur = h->htable[hvalue]; cur; cur = cur->next) { in avtab_search()
259 for (cur = h->htable[hvalue]; cur; cur = cur->next) { in avtab_search_node()
287 for (cur = node->next; cur; cur = cur->next) { in avtab_search_node_next()
[all...]
H A Dpolicydb_validate.c210 for (; block != NULL; block = block->next) { in validate_scopes()
211 for (decl = block->branch_list; decl; decl = decl->next) { in validate_scopes()
232 for (; cons; cons = cons->next) { in validate_constraint_nodes()
243 for (cexp = cons->expr; cexp; cexp = cexp->next) { in validate_constraint_nodes()
543 for (; cat; cat = cat->next) { in validate_mls_semantic_cat()
860 for (; cond_av; cond_av = cond_av->next) { in validate_cond_av_list()
861 for (avtab_ptr = cond_av->node; avtab_ptr; avtab_ptr = avtab_ptr->next) { in validate_cond_av_list()
876 for (; avrule; avrule = avrule->next) { in validate_avrules()
903 for (classperm = avrule->perms; classperm; classperm = classperm->next) { in validate_avrules()
965 for (; expr; expr = expr->next) { in validate_cond_expr()
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dcollationdatabuilder.cpp57 next(-1) {} in ConditionalCE32()
61 next(-1) {} in ConditionalCE32()
100 * Index of the next ConditionalCE32.
103 int32_t next; member
711 int32_t next = cond->next; in addCE32() local
712 if(next < 0) { in addCE32()
716 cond->next = index; in addCE32()
719 ConditionalCE32 *nextCond = getConditionalCE32(next); in addCE32()
725 cond->next in addCE32()
[all...]
/third_party/mbedtls/library/
H A Dx509_crt.c362 a = a->next; in x509_name_cmp()
363 b = b->next; in x509_name_cmp()
800 /* Allocate and assign next pointer */ in x509_get_certificate_policies()
802 if (cur->next != NULL) { in x509_get_certificate_policies()
806 cur->next = mbedtls_calloc(1, sizeof(mbedtls_asn1_sequence)); in x509_get_certificate_policies()
808 if (cur->next == NULL) { in x509_get_certificate_policies()
813 cur = cur->next; in x509_get_certificate_policies()
845 /* Set final sequence entry's next pointer to NULL */ in x509_get_certificate_policies()
846 cur->next = NULL; in x509_get_certificate_policies()
1328 while (crt->version != 0 && crt->next ! in mbedtls_x509_crt_parse_der_internal()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationdatabuilder.cpp57 next(-1) {} in ConditionalCE32()
61 next(-1) {} in ConditionalCE32()
100 * Index of the next ConditionalCE32.
103 int32_t next; member
711 int32_t next = cond->next; in addCE32() local
712 if(next < 0) { in addCE32()
716 cond->next = index; in addCE32()
719 ConditionalCE32 *nextCond = getConditionalCE32(next); in addCE32()
725 cond->next in addCE32()
[all...]
/third_party/node/deps/openssl/openssl/ssl/
H A Dssl_ciph.c162 struct cipher_order_st *next, *prev; member
649 *head = curr->next; in ll_append_tail()
651 curr->prev->next = curr->next; in ll_append_tail()
652 if (curr->next != NULL) in ll_append_tail()
653 curr->next->prev = curr->prev; in ll_append_tail()
654 (*tail)->next = curr; in ll_append_tail()
656 curr->next = NULL; in ll_append_tail()
667 if (curr->next != NULL) in ll_append_head()
668 curr->next in ll_append_head()
816 CIPHER_ORDER *head, *tail, *curr, *next, *last; ssl_cipher_apply_rule() local
[all...]
/third_party/openssl/ssl/
H A Dssl_ciph.c162 struct cipher_order_st *next, *prev; member
648 *head = curr->next; in ll_append_tail()
650 curr->prev->next = curr->next; in ll_append_tail()
651 if (curr->next != NULL) in ll_append_tail()
652 curr->next->prev = curr->prev; in ll_append_tail()
653 (*tail)->next = curr; in ll_append_tail()
655 curr->next = NULL; in ll_append_tail()
666 if (curr->next != NULL) in ll_append_head()
667 curr->next in ll_append_head()
815 CIPHER_ORDER *head, *tail, *curr, *next, *last; ssl_cipher_apply_rule() local
[all...]
/third_party/cJSON/
H A DcJSON.c267 cJSON *next = NULL; in cJSON_Delete() local
270 next = item->next; in cJSON_Delete()
285 if (next == item) in cJSON_Delete()
290 item = next; in cJSON_Delete()
885 /* shift left to make place for the next nibble */ in parse_hex4()
1721 /* allocate next item */ in parse_array()
1728 /* attach next item to list */ in parse_array()
1737 current_item->next = new_item; in parse_array()
1742 /* parse next valu in parse_array()
3021 cJSON *next = NULL; cJSON_Duplicate() local
[all...]
/kernel/linux/linux-5.10/drivers/tty/
H A Dn_r3964.c240 pHeader->next = NULL; in add_tx_queue()
245 pInfo->tx_last->next = pHeader; in add_tx_queue()
271 for (pDump = pHeader; pDump; pDump = pDump->next) in remove_from_tx_queue()
289 pInfo->tx_first = pHeader->next; in remove_from_tx_queue()
310 pHeader->next = NULL; in add_rx_queue()
315 pInfo->rx_last->next = pHeader; in add_rx_queue()
345 pInfo->rx_first = pHeader->next; in remove_from_rx_queue()
353 for (pFind = pInfo->rx_first; pFind; pFind = pFind->next) { in remove_from_rx_queue()
354 if (pFind->next == pHeader) { in remove_from_rx_queue()
356 pFind->next in remove_from_rx_queue()
[all...]
/kernel/linux/linux-6.6/drivers/usb/cdns3/
H A Dcdnsp-mem.c25 * initializes the segment to zero, and sets the private next pointer to NULL.
60 seg->next = NULL; in cdnsp_segment_alloc()
86 seg = first->next; in cdnsp_free_segments_for_ring()
89 struct cdnsp_segment *next = seg->next; in cdnsp_free_segments_for_ring() local
92 seg = next; in cdnsp_free_segments_for_ring()
99 * Make the prev segment point to the next segment.
102 * DMA address of the next segment. The caller needs to set any Link TRB
107 struct cdnsp_segment *next, in cdnsp_link_segments()
113 if (!prev || !next) in cdnsp_link_segments()
105 cdnsp_link_segments(struct cdnsp_device *pdev, struct cdnsp_segment *prev, struct cdnsp_segment *next, enum cdnsp_ring_type type) cdnsp_link_segments() argument
142 struct cdnsp_segment *next; cdnsp_link_rings() local
343 struct cdnsp_segment *next; cdnsp_alloc_segments_for_ring() local
[all...]
/third_party/skia/third_party/externals/microhttpd/src/microspdy/
H A Dsession.c310 stream = stream->next; in spdyf_handler_read_rst_stream()
659 if(NULL != response_queue->next) in SPDYF_handler_write_data()
663 session->response_queue_head = response_queue->next; in SPDYF_handler_write_data()
665 session->response_queue_tail->next = response_queue; in SPDYF_handler_write_data()
667 response_queue->next = NULL; in SPDYF_handler_write_data()
699 new_response_queue->next = response_queue->next; in SPDYF_handler_write_data()
700 if(NULL == response_queue->next) in SPDYF_handler_write_data()
706 response_queue->next->prev = new_response_queue; in SPDYF_handler_write_data()
708 response_queue->next in SPDYF_handler_write_data()
[all...]
/third_party/python/Modules/
H A D_functoolsmodule.c743 2). The prev/next link fields use borrowed references.
763 struct lru_list_elem *prev, *next; /* borrowed links */ member
935 lru_list_elem *link_next = link->next; in lru_cache_extract_link()
936 link_prev->next = link->next; in lru_cache_extract_link()
945 last->next = root->prev = link; in lru_cache_append_link()
947 link->next = root; in lru_cache_append_link()
954 lru_list_elem *first = root->next; in lru_cache_prepend_link()
955 first->prev = root->next = link; in lru_cache_prepend_link()
957 link->next in lru_cache_prepend_link()
1251 lru_list_elem *next = link->next; lru_cache_clear_list() local
1351 lru_list_elem *next = link->next; lru_cache_tp_traverse() local
[all...]
/third_party/rust/crates/rust-openssl/openssl/src/x509/
H A Dtests.rs97 let cn = subject.entries_by_nid(Nid::COMMONNAME).next().unwrap(); in test_subject_read_cn()
107 let cn = subject.entries_by_nid(Nid::COMMONNAME).next().unwrap(); in test_nid_values()
112 .next() in test_nid_values()
116 let friendly = subject.entries_by_nid(Nid::FRIENDLYNAME).next().unwrap(); in test_nid_values()
127 let email = all_entries.next().unwrap(); in test_nameref_iterator()
134 let cn = all_entries.next().unwrap(); in test_nameref_iterator()
138 let friendly = all_entries.next().unwrap(); in test_nameref_iterator()
142 if all_entries.next().is_some() { in test_nameref_iterator()
153 let cn = subject.entries_by_nid(Nid::USERID).next().unwrap(); in test_nid_uid_value()
226 let o = o.next() in test_authority_issuer_and_serial()
[all...]
/third_party/rust/crates/syn/tests/common/
H A Deq.rs324 !$next:tt
331 ![$next];
340 $next:tt
346 [$next this other]
384 $next:ident [$([$($named:tt)*])* $(![$ignore:tt])*] (!$i:tt $($field:tt)*)
390 $next [$([$($named)*])* $(![$ignore])* ![$i]] ($($field)*)
398 $next:ident [$([$($named:tt)*])* $(![$ignore:tt])*] ($i:tt $($field:tt)*)
404 $next [$([$($named)*])* [$i this other] $(![$ignore])*] ($($field)*)
412 $next:ident [$($named:tt)*] ()
418 [$($name)::+::$next;
[all...]
/kernel/linux/linux-5.10/drivers/vfio/
H A Dvfio_iommu_type1.c82 struct list_head next; member
110 struct list_head next; member
859 struct vfio_regions *entry, *next; in vfio_sync_unpin() local
863 list_for_each_entry_safe(entry, next, regions, list) { in vfio_sync_unpin()
969 struct vfio_domain, next); in vfio_unmap_unpin()
971 list_for_each_entry_continue(d, &iommu->domain_list, next) { in vfio_unmap_unpin()
979 phys_addr_t phys, next; in vfio_unmap_unpin() local
994 next = iommu_iova_to_phys(domain->domain, iova + len); in vfio_unmap_unpin()
995 if (next != phys + len) in vfio_unmap_unpin()
1047 list_for_each_entry(domain, &iommu->domain_list, next) in vfio_update_pgsize_bitmap()
1923 struct vfio_iova *node, *next; vfio_iommu_aper_resize() local
1985 struct vfio_iova *n, *next; vfio_iommu_resv_exclude() local
2031 struct iommu_resv_region *n, *next; vfio_iommu_resv_free() local
2041 struct vfio_iova *n, *next; vfio_iommu_iova_free() local
[all...]
/kernel/linux/linux-5.10/mm/
H A Dvmalloc.c89 unsigned long next; in vunmap_pmd_range() local
94 next = pmd_addr_end(addr, end); in vunmap_pmd_range()
104 vunmap_pte_range(pmd, addr, next, mask); in vunmap_pmd_range()
107 } while (pmd++, addr = next, addr != end); in vunmap_pmd_range()
114 unsigned long next; in vunmap_pud_range() local
119 next = pud_addr_end(addr, end); in vunmap_pud_range()
129 vunmap_pmd_range(pud, addr, next, mask); in vunmap_pud_range()
130 } while (pud++, addr = next, addr != end); in vunmap_pud_range()
137 unsigned long next; in vunmap_p4d_range() local
142 next in vunmap_p4d_range()
172 unsigned long next; unmap_kernel_range_noflush() local
225 unsigned long next; vmap_pmd_range() local
243 unsigned long next; vmap_pud_range() local
261 unsigned long next; vmap_p4d_range() local
297 unsigned long next; map_kernel_range_noflush() local
747 struct list_head *next; merge_or_add_vmap_area() local
[all...]
/kernel/linux/linux-5.10/arch/mips/kernel/
H A Dmodule.c26 struct mips_hi16 *next; member
100 n->next = me->arch.r_mips_hi16_list; in apply_r_mips_hi16()
108 struct mips_hi16 *next; in free_relocation_chain() local
111 next = l->next; in free_relocation_chain()
113 l = next; in free_relocation_chain()
135 struct mips_hi16 *next; in apply_r_mips_lo16() local
163 next = l->next; in apply_r_mips_lo16()
165 l = next; in apply_r_mips_lo16()
[all...]
/kernel/linux/linux-6.6/arch/mips/kernel/
H A Dmodule.c27 struct mips_hi16 *next; member
92 n->next = me->arch.r_mips_hi16_list; in apply_r_mips_hi16()
100 struct mips_hi16 *next; in free_relocation_chain() local
103 next = l->next; in free_relocation_chain()
105 l = next; in free_relocation_chain()
127 struct mips_hi16 *next; in apply_r_mips_lo16() local
155 next = l->next; in apply_r_mips_lo16()
157 l = next; in apply_r_mips_lo16()
[all...]
/kernel/linux/linux-5.10/drivers/leds/trigger/
H A Dledtrig-pattern.c28 struct led_pattern *next; member
41 data->curr = data->next; in pattern_trig_update_patterns()
45 if (data->next == data->patterns + data->npatterns - 1) in pattern_trig_update_patterns()
46 data->next = data->patterns; in pattern_trig_update_patterns()
48 data->next++; in pattern_trig_update_patterns()
65 step_brightness = abs(data->next->brightness - data->curr->brightness); in pattern_trig_compute_brightness()
68 if (data->next->brightness > data->curr->brightness) in pattern_trig_compute_brightness()
82 if (data->curr->brightness == data->next->brightness) { in pattern_trig_timer_function()
88 if (!data->next->delta_t) { in pattern_trig_timer_function()
92 /* Select next tupl in pattern_trig_timer_function()
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dflowring.c52 search = search->next; in brcmf_flowring_is_tdls_mac()
400 search = search->next; in brcmf_flowring_detach()
453 search = search->next; in brcmf_flowring_delete_peer()
470 prev->next = search->next; in brcmf_flowring_delete_peer()
472 flow->tdls_entry = search->next; in brcmf_flowring_delete_peer()
491 tdls_entry->next = NULL; in brcmf_flowring_add_tdls_peer()
498 while (search->next) { in brcmf_flowring_add_tdls_peer()
499 search = search->next; in brcmf_flowring_add_tdls_peer()
503 search->next in brcmf_flowring_add_tdls_peer()
[all...]
/kernel/linux/linux-5.10/fs/ceph/
H A Dquota.c213 struct ceph_snap_realm *realm, *next; in get_quota_realm() local
253 next = realm->parent; in get_quota_realm()
254 if (has_quota || !next) in get_quota_realm()
257 ceph_get_snap_realm(mdsc, next); in get_quota_realm()
259 realm = next; in get_quota_realm()
318 struct ceph_snap_realm *realm, *next; in check_quota_exceeded() local
389 next = realm->parent; in check_quota_exceeded()
390 if (exceeded || !next) in check_quota_exceeded()
392 ceph_get_snap_realm(mdsc, next); in check_quota_exceeded()
394 realm = next; in check_quota_exceeded()
[all...]
/kernel/linux/linux-5.10/net/netfilter/ipset/
H A Dip_set_hash_ipportip.c76 hash_ipportip4_data_next(struct hash_ipportip4_elem *next, in hash_ipportip4_data_next() argument
79 next->ip = d->ip; in hash_ipportip4_data_next()
80 next->port = d->port; in hash_ipportip4_data_next()
183 ip = ntohl(h->next.ip); in hash_ipportip4_uadt()
185 p = retried && ip == ntohl(h->next.ip) ? ntohs(h->next.port) in hash_ipportip4_uadt()
191 hash_ipportip4_data_next(&h->next, &e); in hash_ipportip4_uadt()
244 hash_ipportip6_data_next(struct hash_ipportip6_elem *next, in hash_ipportip6_data_next() argument
247 next->port = d->port; in hash_ipportip6_data_next()
342 port = ntohs(h->next in hash_ipportip6_uadt()
[all...]

Completed in 33 milliseconds

1...<<61626364656667686970>>...506