/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/core/ |
H A D | mm.c | 54 struct nvkm_mm_node *next = node(this, next); in nvkm_mm_free() local 62 if (next && next->type == NVKM_MM_TYPE_NONE) { in nvkm_mm_free() 63 next->offset = this->offset; in nvkm_mm_free() 64 next->length += this->length; in nvkm_mm_free() 114 struct nvkm_mm_node *prev, *this, *next; in nvkm_mm_head() local 133 next = node(this, next); in nvkm_mm_head() 134 if (next in nvkm_mm_head() 189 struct nvkm_mm_node *prev, *this, *next; nvkm_mm_tail() local 243 u32 next; nvkm_mm_init() local [all...] |
/third_party/skia/third_party/externals/libwebp/src/utils/ |
H A D | huffman_utils.c | 63 // Returns the table width of the next 2nd level table. count is the histogram 64 // of bit lengths for the remaining symbols, len is the code length of the next 83 HuffmanCode* table = root_table; // next available space in table in BuildHuffmanTable() 230 struct HuffmanTablesSegment* next = in VP8LBuildHuffmanTable() local 231 (HuffmanTablesSegment*)WebPSafeMalloc(1, sizeof(*next)); in VP8LBuildHuffmanTable() 232 if (next == NULL) return 0; in VP8LBuildHuffmanTable() 237 next->size = total_size > segment_size ? total_size : segment_size; in VP8LBuildHuffmanTable() 238 next->start = in VP8LBuildHuffmanTable() 239 (HuffmanCode*)WebPSafeMalloc(next->size, sizeof(*next in VP8LBuildHuffmanTable() 280 HuffmanTablesSegment *current, *next; VP8LHuffmanTablesDeallocate() local [all...] |
/third_party/python/Lib/test/ |
H A D | test_pulldom.py | 47 evt, node = next(items) 51 evt, node = next(items) 57 evt, node = next(items) 59 evt, node = next(items) 64 evt, node = next(items) 67 evt, node = next(items) 70 evt, node = next(items) 74 evt, node = next(items) 76 evt, node = next(items) 79 evt, node = next(item [all...] |
/kernel/linux/linux-5.10/fs/erofs/ |
H A D | zpvec.h | 31 struct page *curr, *next; member 56 if (ctor->next) in z_erofs_pagevec_ctor_next_page() 57 return ctor->next; in z_erofs_pagevec_ctor_next_page() 74 struct page *next = z_erofs_pagevec_ctor_next_page(ctor, ctor->nr); in z_erofs_pagevec_ctor_pagedown() local 78 ctor->curr = next; in z_erofs_pagevec_ctor_pagedown() 79 ctor->next = NULL; in z_erofs_pagevec_ctor_pagedown() 93 ctor->curr = ctor->next = NULL; in z_erofs_pagevec_ctor_init() 104 ctor->next = z_erofs_pagevec_ctor_next_page(ctor, i); in z_erofs_pagevec_ctor_init() 113 if (!ctor->next) { in z_erofs_pagevec_enqueue() 130 /* should remind that collector->next neve in z_erofs_pagevec_enqueue() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | pnm_parser.c | 41 int next = END_NOT_FOUND; in pnm_parse() local 57 next = skip; in pnm_parse() 104 next = bs - pnmctx.bytestream_start + skip - 1; in pnm_parse() 109 if (next == END_NOT_FOUND) in pnm_parse() 113 next = pnmctx.bytestream - pnmctx.bytestream_start + skip; in pnm_parse() 116 if (ret >= 0 && next + (uint64_t)ret <= INT_MAX) in pnm_parse() 117 next += ret; in pnm_parse() 119 if (next != END_NOT_FOUND && pnmctx.bytestream_start != buf + skip) in pnm_parse() 120 next -= pc->index; in pnm_parse() 121 if (next > buf_siz in pnm_parse() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | fifo.c | 35 struct Buf *next; member 63 for (buf = s->root.next; buf; buf = tmp) { in uninit() 64 tmp = buf->next; in uninit() 76 s->last->next = av_mallocz(sizeof(Buf)); in add_to_queue() 77 if (!s->last->next) { in add_to_queue() 82 s->last = s->last->next; in add_to_queue() 90 Buf *tmp = s->root.next->next; in queue_pop() 91 if (s->last == s->root.next) in queue_pop() 93 av_freep(&s->root.next); in queue_pop() [all...] |
/third_party/openssl/test/ |
H A D | x509aux.c | 53 goto next; in test_certs() 60 goto next; in test_certs() 69 goto next; in test_certs() 74 goto next; in test_certs() 81 goto next; in test_certs() 87 goto next; in test_certs() 92 goto next; in test_certs() 99 goto next; in test_certs() 105 goto next; in test_certs() 116 goto next; in test_certs() [all...] |
/third_party/node/deps/openssl/openssl/crypto/err/ |
H A D | err_prn.c | 76 const char *curr = txt, *next = txt; in ERR_add_error_txt() local 97 const size_t len_next = strlen(next); in ERR_add_error_txt() 100 next += len_next; in ERR_add_error_txt() 103 next += available_len; in ERR_add_error_txt() 104 curr = next; /* will split at this point */ in ERR_add_error_txt() 107 while (*next != '\0' && (size_t)(next - txt) <= available_len) { in ERR_add_error_txt() 108 curr = next; in ERR_add_error_txt() 109 next = strstr(curr, separator); in ERR_add_error_txt() 110 if (next ! in ERR_add_error_txt() [all...] |
/third_party/openssl/crypto/err/ |
H A D | err_prn.c | 76 const char *curr = txt, *next = txt; in ERR_add_error_txt() local 97 const size_t len_next = strlen(next); in ERR_add_error_txt() 100 next += len_next; in ERR_add_error_txt() 103 next += available_len; in ERR_add_error_txt() 104 curr = next; /* will split at this point */ in ERR_add_error_txt() 107 while (*next != '\0' && (size_t)(next - txt) <= available_len) { in ERR_add_error_txt() 108 curr = next; in ERR_add_error_txt() 109 next = strstr(curr, separator); in ERR_add_error_txt() 110 if (next ! in ERR_add_error_txt() [all...] |
/kernel/linux/linux-5.10/arch/ia64/include/asm/ |
H A D | switch_to.h | 37 #define __switch_to(prev,next,last) do { \ 40 if (IA64_HAS_EXTRA_STATE(next)) \ 41 ia64_load_extra(next); \ 42 ia64_psr(task_pt_regs(next))->dfh = !ia64_is_local_fpu_owner(next); \ 43 (last) = ia64_switch_to((next)); \ 53 # define switch_to(prev,next,last) do { \ 59 __switch_to(prev, next, last); \ 60 /* "next" in old context is "current" in new context */ \ 68 # define switch_to(prev,next,las [all...] |
/kernel/linux/linux-6.6/arch/ia64/include/asm/ |
H A D | switch_to.h | 37 #define __switch_to(prev,next,last) do { \ 40 if (IA64_HAS_EXTRA_STATE(next)) \ 41 ia64_load_extra(next); \ 42 ia64_psr(task_pt_regs(next))->dfh = !ia64_is_local_fpu_owner(next); \ 43 (last) = ia64_switch_to((next)); \ 53 # define switch_to(prev,next,last) do { \ 59 __switch_to(prev, next, last); \ 60 /* "next" in old context is "current" in new context */ \ 68 # define switch_to(prev,next,las [all...] |
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | generator-throw.js | 38 check_result(f.next(), undefined, true) 41 check_result(f.next(), "x", false) 43 check_result(f.next(), undefined, true) 46 check_result(f.next(), "b", false) 47 check_result(f.next(), "a: undefined", true) 48 check_result(f.next(), undefined, true) 64 check_result(f.next(), undefined, true) 67 check_result(f.next(), "x", false) 69 check_throw("f.next()", "throw") 70 check_result(f.next(), undefine [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-pool.hh | 37 hb_pool_t () : next (nullptr) {} in hb_pool_t() 42 next = nullptr; in fini() 51 if (unlikely (!next)) in alloc() 57 next = chunk->thread (); in alloc() 60 T* obj = next; in alloc() 61 next = * ((T**) next); in alloc() 70 * (T**) obj = next; in release() 71 next = obj; in release() 95 T* next; member [all...] |
/kernel/linux/linux-5.10/lib/lzo/ |
H A D | lzo1x_decompress_safe.c | 44 size_t t, next; in lzo1x_decompress_safe() local 68 next = t; in lzo1x_decompress_safe() 121 next = t & 3; in lzo1x_decompress_safe() 132 next = t & 3; in lzo1x_decompress_safe() 139 next = t & 3; in lzo1x_decompress_safe() 163 next = get_unaligned_le16(ip); in lzo1x_decompress_safe() 165 m_pos -= next >> 2; in lzo1x_decompress_safe() 166 next &= 3; in lzo1x_decompress_safe() 169 next = get_unaligned_le16(ip); in lzo1x_decompress_safe() 170 if (((next in lzo1x_decompress_safe() [all...] |
/kernel/linux/linux-6.6/lib/lzo/ |
H A D | lzo1x_decompress_safe.c | 44 size_t t, next; in lzo1x_decompress_safe() local 68 next = t; in lzo1x_decompress_safe() 121 next = t & 3; in lzo1x_decompress_safe() 132 next = t & 3; in lzo1x_decompress_safe() 139 next = t & 3; in lzo1x_decompress_safe() 163 next = get_unaligned_le16(ip); in lzo1x_decompress_safe() 165 m_pos -= next >> 2; in lzo1x_decompress_safe() 166 next &= 3; in lzo1x_decompress_safe() 169 next = get_unaligned_le16(ip); in lzo1x_decompress_safe() 170 if (((next in lzo1x_decompress_safe() [all...] |
/third_party/eudev/src/udev/ |
H A D | udev-builtin-keyboard.c | 102 char *next; in parse_token() local 108 val = strtol(current, &next, 0); in parse_token() 109 if (*next && *next != ':') in parse_token() 112 if (next != current) in parse_token() 115 if (*next) in parse_token() 116 next++; in parse_token() 118 return next; in parse_token() 125 char *next; in override_abs() local 133 next in override_abs() [all...] |
/third_party/mesa3d/src/util/tests/vma/ |
H A D | vma_random_test.cpp | 11 * The above copyright notice and this permission notice (including the next 166 auto next = heap_holes.upper_bound(a); in dealloc() local 167 if (next != end(heap_holes)) { in dealloc() 168 if (next->start_page == allocation_end_page(a)) { in dealloc() 169 allocation x {a.start_page, a.num_pages + next->num_pages}; in dealloc() 170 next = heap_holes.erase(next); in dealloc() 171 next = heap_holes.insert(next, x); in dealloc() 173 if (next ! in dealloc() [all...] |
/third_party/selinux/libsepol/cil/src/ |
H A D | cil_list.c | 67 struct cil_list_item *next = item->next; in cil_list_destroy() local 74 item = next; in cil_list_destroy() 83 new_item->next = NULL; in cil_list_item_init() 117 list->tail->next = item; in cil_list_append() 139 item->next = list->head; in cil_list_prepend() 165 item->next = curr->next; in cil_list_insert() 167 curr->next = item; in cil_list_insert() 184 while (last->next ! in cil_list_append_item() [all...] |
/third_party/node/deps/npm/node_modules/yallist/ |
H A D | yallist.js | 35 var next = node.next 38 if (next) { 39 next.prev = prev 43 prev.next = next 47 this.head = next 54 node.next = null 58 return next 72 node.next [all...] |
/kernel/linux/linux-6.6/mm/ |
H A D | pagewalk.c | 119 unsigned long next; in walk_pmd_range() local 127 next = pmd_addr_end(addr, end); in walk_pmd_range() 130 err = ops->pte_hole(addr, next, depth, walk); in walk_pmd_range() 143 err = ops->pmd_entry(pmd, addr, next, walk); in walk_pmd_range() 163 err = walk_hugepd_range((hugepd_t *)pmd, addr, next, walk, PMD_SHIFT); in walk_pmd_range() 165 err = walk_pte_range(pmd, addr, next, walk); in walk_pmd_range() 172 } while (pmd++, addr = next, addr != end); in walk_pmd_range() 181 unsigned long next; in walk_pud_range() local 189 next = pud_addr_end(addr, end); in walk_pud_range() 192 err = ops->pte_hole(addr, next, dept in walk_pud_range() 233 unsigned long next; walk_p4d_range() local 268 unsigned long next; walk_pgd_range() local 314 unsigned long next; walk_hugetlb_range() local 475 unsigned long next; walk_page_range() local [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_ir.cpp | 11 * The above copyright notice and this permission notice (including the next 60 p = static_cast<alu_node*>(p->next); in init_args() 83 sp->next = n; in insert_node_before() 85 n->next = s; in insert_node_before() 88 n->next = s; in insert_node_before() 96 if (s->next) { in insert_node_after() 97 node *sn = s->next; in insert_node_after() 99 n->next = sn; in insert_node_after() 101 s->next = n; in insert_node_after() 104 s->next in insert_node_after() [all...] |
/third_party/libfuse/lib/modules/ |
H A D | subdir.c | 22 struct fuse_fs *next; member 60 err = fuse_fs_getattr(d->next, newpath, stbuf, fi); in subdir_getattr() 72 err = fuse_fs_access(d->next, newpath, mask); in subdir_access() 148 err = fuse_fs_readlink(d->next, newpath, buf, size); in subdir_readlink() 162 err = fuse_fs_opendir(d->next, newpath, fi); in subdir_opendir() 177 err = fuse_fs_readdir(d->next, newpath, buf, filler, offset, in subdir_readdir() 190 err = fuse_fs_releasedir(d->next, newpath, fi); in subdir_releasedir() 202 err = fuse_fs_mknod(d->next, newpath, mode, rdev); in subdir_mknod() 214 err = fuse_fs_mkdir(d->next, newpath, mode); in subdir_mkdir() 226 err = fuse_fs_unlink(d->next, newpat in subdir_unlink() 642 subdir_new(struct fuse_args *args, struct fuse_fs *next[]) subdir_new() argument [all...] |
/third_party/node/deps/cares/src/lib/ |
H A D | ares__slist.c | 12 * The above copyright notice and this permission notice (including the next 52 ares__slist_node_t **next; member 163 while (left->next[i] != NULL && in ares__slist_node_push() 164 list->cmp(node->data, left->next[i]->data) > 0) { in ares__slist_node_push() 165 left = left->next[i]; in ares__slist_node_push() 176 node->next[i] = list->head[i]; in ares__slist_node_push() 181 node->next[i] = left->next[i]; in ares__slist_node_push() 183 left->next[i] = node; in ares__slist_node_push() 186 if (node->next[ in ares__slist_node_push() [all...] |
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/ |
H A D | pb_cache.c | 16 * next paragraph) shall be included in all copies or substantial portions 60 struct list_head *curr, *next; in release_expired_buffers_locked() local 63 curr = cache->next; in release_expired_buffers_locked() 64 next = curr->next; in release_expired_buffers_locked() 73 curr = next; in release_expired_buffers_locked() 74 next = curr->next; in release_expired_buffers_locked() 153 struct list_head *cur, *next; in pb_cache_reclaim_buffer() local 163 cur = cache->next; in pb_cache_reclaim_buffer() 229 struct list_head *curr, *next; pb_cache_release_all_buffers() local [all...] |
/kernel/linux/linux-5.10/kernel/locking/ |
H A D | mcs_spinlock.h | 19 struct mcs_spinlock *next; member 71 node->next = NULL; in mcs_spin_lock() 91 WRITE_ONCE(prev->next, node); in mcs_spin_lock() 104 struct mcs_spinlock *next = READ_ONCE(node->next); in mcs_spin_unlock() local 106 if (likely(!next)) { in mcs_spin_unlock() 112 /* Wait until the next pointer is set */ in mcs_spin_unlock() 113 while (!(next = READ_ONCE(node->next))) in mcs_spin_unlock() 117 /* Pass lock to next waite in mcs_spin_unlock() [all...] |