Home
last modified time | relevance | path

Searched refs:next (Results 6551 - 6575 of 12994) sorted by relevance

1...<<261262263264265266267268269270>>...520

/kernel/linux/linux-6.6/net/dccp/
H A Dfeat.c543 struct dccp_feat_entry *entry, *next; in dccp_feat_list_purge() local
545 list_for_each_entry_safe(entry, next, fn_list, node) in dccp_feat_list_purge()
629 * @skb: next sk_buff to be sent to the peer
637 struct dccp_feat_entry *pos, *next; in dccp_feat_insert_opts() local
642 list_for_each_entry_safe_reverse(pos, next, fn, node) { in dccp_feat_insert_opts()
1513 struct dccp_feat_entry *cur, *next; in dccp_feat_activate_values() local
1557 list_for_each_entry_safe(cur, next, fn_list, node) in dccp_feat_activate_values()
/kernel/linux/linux-6.6/net/mac802154/
H A Dllsec.c926 struct mac802154_llsec_device_key *next; in llsec_update_devkey_record() local
928 next = kzalloc(sizeof(*devkey), GFP_ATOMIC); in llsec_update_devkey_record()
929 if (!next) in llsec_update_devkey_record()
932 next->devkey.key_id = *in_key; in llsec_update_devkey_record()
938 list_add_rcu(&next->devkey.list, &dev->dev.keys); in llsec_update_devkey_record()
940 kfree_sensitive(next); in llsec_update_devkey_record()
/kernel/linux/linux-6.6/net/ipv6/
H A Dip6_vti.c75 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
157 rcu_assign_pointer(t->next, rtnl_dereference(*tp)); in vti6_tnl_link()
169 tp = &iter->next) { in vti6_tnl_unlink()
171 rcu_assign_pointer(*tp, t->next); in vti6_tnl_unlink()
266 tp = &t->next) { in vti6_locate()
1129 t = rtnl_dereference(t->next); in vti6_destroy_tunnels()
/third_party/ffmpeg/libavcodec/
H A Dratecontrol.c576 char *next; in ff_rate_control_init() local
578 next = strchr(p, ';'); in ff_rate_control_init()
579 if (next) { in ff_rate_control_init()
580 (*next) = 0; // sscanf is unbelievably slow on looong strings // FIXME copy / do not write in ff_rate_control_init()
581 next++; in ff_rate_control_init()
602 p = next; in ff_rate_control_init()
/third_party/ffmpeg/libswresample/x86/
H A Daudio_convert.asm54 .next:
87 jl .next
112 .next:
159 jl .next
179 .next:
196 jl .next
/third_party/backends/backend/
H A Dniash.c166 int next; in _ConvertGammaTable() local
169 next = ((i + 1) * HW_GAMMA_SIZE) / SANE_GAMMA_SIZE; in _ConvertGammaTable()
175 for (j = current + 1; j < HW_GAMMA_SIZE && j < next; ++j) in _ConvertGammaTable()
178 (saneGamma[i] * (next - j) + in _ConvertGammaTable()
179 saneGamma[i + 1] * (j - current)) / (next - current); in _ConvertGammaTable()
181 current = next; in _ConvertGammaTable()
435 "_WaitForLamp: Values seem stable, skipping next calibration cycle\n"); in _WaitForLamp()
517 for the next time */ in _WaitForLamp()
1412 /* time to read the next line? */ in sane_read()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DStringSearch.java65 * calling a {@link #reset} followed by a {@link #next} or {@link #previous}.
83 * requires swapping with the next character. E.g certain Thai and
498 // in next() in handleNext()
500 // next match will not preceed the current offset in handleNext()
722 while ((ce = coleiter.next()) != CollationElementIterator.NULLORDER) { in initializePatternCETable()
898 * Find the next break boundary after startIndex. If the UStringSearch object
1035 // 2. An int64_t CE weight is determined for each resulting unit (high 16 bits are primary strength, next in search()
1036 // 16 bits are secondary, next 16 (the high 16 bits of the low 32-bit half) are tertiary. Any of these in search()
1069 // redo with same patCE, next targCE in search()
1073 // redo with same targCE, next patC in search()
[all...]
/third_party/icu/tools/release/java/src/main/java/com/ibm/icu/dev/tools/docs/
H A DStableAPI.java900 JoinedFunction fun = iter.next(); in setToNode()
939 Function f1 = iter1.next(); in fullJoin()
941 Function f2 = iter2.next(); in fullJoin()
954 Function f = iter.next(); in fullJoin()
959 Function f = iter.next(); in fullJoin()
964 Function f = iter.next(); in fullJoin()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DStringSearch.java66 * calling a {@link #reset} followed by a {@link #next} or {@link #previous}.
84 * requires swapping with the next character. E.g certain Thai and
482 // in next() in handleNext()
484 // next match will not preceed the current offset in handleNext()
705 while ((ce = coleiter.next()) != CollationElementIterator.NULLORDER) { in initializePatternCETable()
882 * Find the next break boundary after startIndex. If the UStringSearch object
1019 // 2. An int64_t CE weight is determined for each resulting unit (high 16 bits are primary strength, next in search()
1020 // 16 bits are secondary, next 16 (the high 16 bits of the low 32-bit half) are tertiary. Any of these in search()
1053 // redo with same patCE, next targCE in search()
1057 // redo with same targCE, next patC in search()
[all...]
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_debug.c15 * The above copyright notice and this permission notice (including the next
268 char *next; in si_add_split_disasm() local
270 while ((next = strchr(disasm, '\n'))) { in si_add_split_disasm()
272 unsigned len = next - disasm; in si_add_split_disasm()
276 disasm = next + 1; in si_add_split_disasm()
288 inst->size = next - semicolon > 16 ? 8 : 4; in si_add_split_disasm()
296 disasm = next + 1; in si_add_split_disasm()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_fs_reg_allocate.cpp11 * The above copyright notice and this permission notice (including the next
192 for (block = block->next(); in count_to_loop_end()
194 block = block->next()) { in count_to_loop_end()
1007 /* Add this spill node to the list for next time */ in alloc_spill_reg()
1087 exec_node *after = inst->next; in spill_reg()
1172 emit_spill(ubld.at(block, inst->next), &fs->shader_stats, spill_src, in spill_reg()
1176 for (fs_inst *inst = (fs_inst *)before->next; in spill_reg()
1177 inst != after; inst = (fs_inst *)inst->next) in spill_reg()
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_depth_test.c16 * next paragraph) shall be included in all copies or substantial portions
936 qs->next->run(qs->next, quads, nr); in depth_test_quads_fallback()
979 qs->next->run(qs->next, quads, nr); in depth_noop()
1066 /* next quad/fragment stage */ in choose_depth_test()
1076 qs->next->begin(qs->next); in depth_test_begin()
/third_party/icu/icu4c/source/test/intltest/
H A Dcitrtest.cpp77 virtual UChar next() override {return DONE;}
415 c = iter.next(); in TestIteration()
419 c=iter.next(); in TestIteration()
421 errln("next() didn't return DONE at the end"); in TestIteration()
519 c = iter.next(); in TestIteration()
793 c=iter->next(iter); in TestUCharIterator()
1054 virtual UChar next() override {
/third_party/node/deps/v8/src/compiler/
H A Dgraph-visualizer.cc724 child = child->next()) { in PrintLiveRangeChain()
776 interval != nullptr; interval = interval->next()) { in PrintLiveRange()
786 current_pos = current_pos->next(); in PrintLiveRange()
988 interval != nullptr; interval = interval->next()) { in operator <<()
1001 current_pos = current_pos->next()) { in operator <<()
1021 child != nullptr; child = child->next()) { in operator <<()
/third_party/mesa3d/src/gallium/drivers/r300/
H A Dr300_state_derived.c12 * The above copyright notice and this permission notice (including the next
1083 if (vs->first->next && vs->first->next->wpos == wpos) { in r300_pick_vertex_shader()
1084 ptr = vs->first->next; in r300_pick_vertex_shader()
1085 vs->first->next = NULL; in r300_pick_vertex_shader()
1086 ptr->next = vs->first; in r300_pick_vertex_shader()
1090 ptr->next = vs->first; in r300_pick_vertex_shader()
/third_party/node/deps/openssl/openssl/apps/
H A Dcms.c60 cms_key_param *next; member
656 nparam->next = NULL; in cms_main()
660 key_param->next = nparam; in cms_main()
967 for (kparam = key_first; kparam; kparam = kparam->next) { in cms_main()
1083 for (kparam = key_first; kparam; kparam = kparam->next) { in cms_main()
1256 tparam = key_param->next; in cms_main()
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativeX86_32.c1209 sljit_s32 i, next, reg_idx, offset; in sljit_emit_mem() local
1223 next = SSIZE_OF(sw); in sljit_emit_mem()
1231 next = -SSIZE_OF(sw); in sljit_emit_mem()
1235 next = -SSIZE_OF(sw); in sljit_emit_mem()
1243 reg_idx = next > 0 ? i : (i ^ 0x1); in sljit_emit_mem()
1273 memw += next; in sljit_emit_mem()
H A DsljitNativeX86_64.c946 sljit_s32 i, next, reg_idx; in sljit_emit_mem() local
974 next = SSIZE_OF(sw); in sljit_emit_mem()
982 next = -SSIZE_OF(sw); in sljit_emit_mem()
986 next = -SSIZE_OF(sw); in sljit_emit_mem()
994 reg_idx = next > 0 ? i : (i ^ 0x1); in sljit_emit_mem()
1015 memw += next; in sljit_emit_mem()
/third_party/openssl/apps/
H A Dcms.c60 cms_key_param *next; member
655 nparam->next = NULL; in cms_main()
659 key_param->next = nparam; in cms_main()
968 for (kparam = key_first; kparam; kparam = kparam->next) { in cms_main()
1084 for (kparam = key_first; kparam; kparam = kparam->next) { in cms_main()
1257 tparam = key_param->next; in cms_main()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiBufferMemoryRequirementsTests.cpp228 i = bits.empty() ? flags.erase(i) : std::next(i); in updateBufferCreateFlags()
246 for (auto j = std::next(i); j != flags.end();) in updateBufferCreateFlags()
247 j = (*i == *j) ? flags.erase(j) : std::next(j); in updateBufferCreateFlags()
553 i = notSupported ? usageFlags.erase(i) : std::next(i); in checkSupport()
559 for (auto j = std::next(i); j != usageFlags.end();) in checkSupport()
560 j = (*i == *j) ? usageFlags.erase(j) : std::next(j); in checkSupport()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiBufferMemoryRequirementsTests.cpp228 i = bits.empty() ? flags.erase(i) : std::next(i); in updateBufferCreateFlags()
246 for (auto j = std::next(i); j != flags.end();) in updateBufferCreateFlags()
247 j = (*i == *j) ? flags.erase(j) : std::next(j); in updateBufferCreateFlags()
551 i = notSupported ? usageFlags.erase(i) : std::next(i); in checkSupport()
557 for (auto j = std::next(i); j != usageFlags.end();) in checkSupport()
558 j = (*i == *j) ? usageFlags.erase(j) : std::next(j); in checkSupport()
/third_party/skia/third_party/externals/libpng/contrib/libtests/
H A Dmakepng.c173 struct chunk_insert *next; member
466 * Then the difference is 2 on the next row, giving: in generate_row()
937 insert = insert->next; in write_png()
1475 cip->next = NULL; in make_insert()
1753 insert_ptr = &new_insert->next; in main()
1921 insert_ptr = &new_insert->next; in main()
1928 insert_ptr = &new_insert->next; in main()
/third_party/skia/tests/
H A DClipStackTest.cpp135 while (iter.next()) { in assert_count()
167 for (i = 0, element = iter.next(); element; ++i, element = iter.next()) { in test_iterators()
771 while (const SkClipStack::Element *element = iter.next()) { in set_region_to_stack()
870 const SkClipStack::Element* element = iter.next(); in DEF_TEST()
880 REPORTER_ASSERT(reporter, !iter.next()); in DEF_TEST()
/third_party/skia/third_party/externals/expat/expat/xmlwf/
H A Dxmlwf.c76 struct NotationList *next; member
336 NotationList *next = notationListHead->next; in freeNotations() local
341 notationListHead = next; in freeNotations()
387 for (p = data->notationListHead; p != NULL; p = p->next) in endDoctypeDecl()
403 for (p = data->notationListHead, i = 0; i < notationCount; p = p->next, i++) { in endDoctypeDecl()
487 entry->next = data->notationListHead; in notationDecl()
/third_party/toybox/toys/pending/
H A Ddiff.c74 struct candidate *prev, *next; member
139 c = c->next; in free_candidates()
166 if (r && K[r]) c->next = K[r]; in do_merge()
298 hash = 5831; //next line in create_j_vector()
645 if (((toys.optflags & FLAG_L) && !llist->next) || !(toys.optflags & FLAG_L)) in do_diff()
648 while (llist->next) llist = llist->next; in do_diff()

Completed in 45 milliseconds

1...<<261262263264265266267268269270>>...520