/third_party/ffmpeg/libavformat/ |
H A D | avisynth.c | 104 struct AviSynthContext *next; member 201 avs->next = avs_ctx_list; in avisynth_context_create() 214 avs_ctx_list = avs->next; in avisynth_context_destroy() 217 while (prev->next != avs) in avisynth_context_destroy() 218 prev = prev->next; in avisynth_context_destroy() 219 prev->next = avs->next; in avisynth_context_destroy() 237 AviSynthContext *next = avs->next; in avisynth_atexit_handler() local 239 avs = next; in avisynth_atexit_handler() [all...] |
H A D | flvenc.c | 76 struct FLVFileposition *next; member 564 position->next = NULL; in flv_append_keyframe_info() 566 flv->filepositions->next = position; in flv_append_keyframe_info() 567 position->next = NULL; in flv_append_keyframe_info() 568 flv->filepositions = flv->filepositions->next; in flv_append_keyframe_info() 761 for (newflv_posinfo = flv->head_filepositions; newflv_posinfo; newflv_posinfo = newflv_posinfo->next) { in flv_write_trailer() 767 for (newflv_posinfo = flv->head_filepositions; newflv_posinfo; newflv_posinfo = newflv_posinfo->next) { in flv_write_trailer() 1043 FLVFileposition *next = filepos->next; in flv_deinit() local 1045 filepos = next; in flv_deinit() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | LiveInterval.cpp | 164 iterator MergeTo = std::next(I); in extendSegmentEndTo() 180 segments().erase(std::next(I), MergeTo); in extendSegmentEndTo() 215 segments().erase(std::next(MergeTo), std::next(I)); in extendSegmentStartTo() 241 // Otherwise, if this segment ends in the middle of, or right next in addSegment() 507 // Get next segment and abort if it was not adjacent. 627 segments.insert(std::next(I), Segment(End, OldEnd, ValNo)); 667 for (iterator I = std::next(OutIt), E = end(); I != E; ++I) { 677 // Didn't merge. Move OutIt to the next segment, 832 // Go to the next segmen [all...] |
H A D | LiveIntervals.cpp | 810 LiveRange::const_iterator N = std::next(RI); in addKillFlags() 1080 LiveRange::iterator Next = std::next(OldIdxIn); in handleMoveDown() 1151 LiveRange::iterator INext = std::next(OldIdxOut); in handleMoveDown() 1167 std::copy(std::next(OldIdxOut), E, OldIdxOut); in handleMoveDown() 1181 std::copy(std::next(OldIdxOut), std::next(AfterNewIdx), OldIdxOut); in handleMoveDown() 1217 std::copy(std::next(OldIdxOut), AfterNewIdx, OldIdxOut); in handleMoveDown() 1256 OldIdxOut = std::next(OldIdxIn); in handleMoveUp() 1302 SlotIndex NewDefEndPoint = std::next(NewIdxIn)->end; in handleMoveUp() 1313 std::next(NewIdxOu in handleMoveUp() [all...] |
/third_party/skia/src/core/ |
H A D | SkRegion.cpp | 74 * Return the beginning of the next scanline (i.e. the next Y-value) 230 iter.next(); in toString() 244 iter.next(); in toString() 701 void next() { in next() function 789 rec.next(); in operate_on_span() 842 // skip X values and slots for the next Y+intervalCount in addSpan() 1405 void SkRegion::Iterator::next() { in next() function in SkRegion::Iterator 1457 fIter.next(); in Cliperator() 1461 void SkRegion::Cliperator::next() { in next() function in SkRegion::Cliperator 1528 bool SkRegion::Spanerator::next(int* left, int* right) { next() function in SkRegion::Spanerator [all...] |
/third_party/rust/crates/regex/src/ |
H A D | compile.rs | 493 let next = self.insts.len(); in c_class_bytes() 499 prev_hole = self.fill_split(split, Some(next), None); in c_class_bytes() 501 let next = self.insts.len(); in c_class_bytes() 507 self.fill(prev_hole, next); in c_class_bytes() 522 match exprs.next() { in c_concat() 558 let next = self.insts.len(); in c_alternate() 559 self.fill_split(prev_hole.0, None, Some(next)); in c_alternate() 767 let next = self.insts.len(); in fill_to_next() 768 self.fill(hole, next); in fill_to_next() 996 let utf8_seq = match it.next() { in compile() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | eloop.c | 346 int next; in eloop_sock_table_add_sock() local 385 next = new_max_sock + 16; in eloop_sock_table_add_sock() 386 temp_table = os_realloc_array(eloop.fd_table, next, in eloop_sock_table_add_sock() 391 eloop.max_fd = next; in eloop_sock_table_add_sock() 398 next = eloop.epoll_max_event_num == 0 ? 8 : in eloop_sock_table_add_sock() 400 temp_events = os_realloc_array(eloop.epoll_events, next, in eloop_sock_table_add_sock() 408 eloop.epoll_max_event_num = next; in eloop_sock_table_add_sock() 414 next = eloop.kqueue_nevents == 0 ? 8 : eloop.kqueue_nevents * 2; in eloop_sock_table_add_sock() 415 temp_events = os_malloc(next * sizeof(*temp_events)); in eloop_sock_table_add_sock() 425 eloop.kqueue_nevents = next; in eloop_sock_table_add_sock() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | eloop.c | 348 size_t next; in eloop_sock_table_add_sock() local 388 next = new_max_sock + 16; in eloop_sock_table_add_sock() 389 temp_table = os_realloc_array(eloop.fd_table, next, in eloop_sock_table_add_sock() 394 eloop.max_fd = next; in eloop_sock_table_add_sock() 401 next = eloop.epoll_max_event_num == 0 ? 8 : in eloop_sock_table_add_sock() 403 temp_events = os_realloc_array(eloop.epoll_events, next, in eloop_sock_table_add_sock() 411 eloop.epoll_max_event_num = next; in eloop_sock_table_add_sock() 417 next = eloop.kqueue_nevents == 0 ? 8 : eloop.kqueue_nevents * 2; in eloop_sock_table_add_sock() 418 temp_events = os_malloc(next * sizeof(*temp_events)); in eloop_sock_table_add_sock() 428 eloop.kqueue_nevents = next; in eloop_sock_table_add_sock() [all...] |
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_ladspa.c | 88 struct snd_pcm_ladspa_instance *next; member 184 snd_pcm_ladspa_plugin_t *plugin = list_entry(plugins->next, snd_pcm_ladspa_plugin_t, list); in snd_pcm_ladspa_free_plugins() 780 /* next loop deallocates the last output LADSPA areas and connects */ in snd_pcm_ladspa_allocate_memory() 1255 snd_config_iterator_t i, next; in snd_pcm_ladspa_parse_controls() local 1263 snd_config_for_each(i, next, controls) { in snd_pcm_ladspa_parse_controls() 1303 snd_config_iterator_t i, next; in snd_pcm_ladspa_parse_bindings() local 1310 snd_config_for_each(i, next, bindings) { in snd_pcm_ladspa_parse_bindings() 1335 snd_config_for_each(i, next, bindings) { in snd_pcm_ladspa_parse_bindings() 1375 snd_config_iterator_t i, next; in snd_pcm_ladspa_parse_ioconfig() local 1394 snd_config_for_each(i, next, con in snd_pcm_ladspa_parse_ioconfig() 1431 snd_config_iterator_t i, next; snd_pcm_ladspa_add_plugin() local 1533 snd_config_iterator_t i, next; snd_pcm_ladspa_build_plugins() local 1737 snd_config_iterator_t i, next; _snd_pcm_ladspa_open() local [all...] |
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_descriptor_set.c | 11 * The above copyright notice and this permission notice (including the next 943 pool->next = 0; in anv_CreateDescriptorPool() 1015 pool->next = 0; in anv_ResetDescriptorPool() 1032 uint32_t next; member 1041 if (size <= pool->size - pool->next) { in anv_descriptor_pool_alloc_set() 1042 *set = (struct anv_descriptor_set *) (pool->data + pool->next); in anv_descriptor_pool_alloc_set() 1044 pool->next += size; in anv_descriptor_pool_alloc_set() 1049 for (uint32_t f = pool->free_list; f != EMPTY; f = entry->next) { in anv_descriptor_pool_alloc_set() 1052 *link = entry->next; in anv_descriptor_pool_alloc_set() 1057 link = &entry->next; in anv_descriptor_pool_alloc_set() 1085 void *next; global() member [all...] |
/third_party/python/Python/ |
H A D | sysmodule.c | 215 for (; e; e = e->next) { in sys_audit_tstate() 354 n = e->next; in _PySys_ClearAuditHooks() 392 while (e->next) { in PySys_AddAuditHook() 393 e = e->next; in PySys_AddAuditHook() 395 e = e->next = (_Py_AuditHookEntry*)PyMem_RawMalloc( in PySys_AddAuditHook() 406 e->next = NULL; in PySys_AddAuditHook() 2116 struct _preinit_entry *next; member 2163 while (last_entry->next != NULL) { in _append_preinit_entry() 2164 last_entry = last_entry->next; in _append_preinit_entry() 2166 last_entry->next in _append_preinit_entry() 2180 _Py_PreInitEntry next = current->next; _clear_preinit_entries() local [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/config/chunkindex/ |
H A D | lunr.js | 485 * The output of functions in the pipeline will be passed to the next function 1378 * Keeps track of the next, auto increment, identifier to assign 1594 var next = new lunr.TokenSet 1595 next.final = final 1597 node.edges[char] = next 1598 node = next 1729 next = undefined 1735 next = frame.output.edges[nEdge] 1736 next.final = next [all...] |
/third_party/node/deps/openssl/openssl/apps/ |
H A D | s_server.c | 314 BIO *next = BIO_next(b); in ebcdic_read() local 318 if (next == NULL) in ebcdic_read() 321 ret = BIO_read(next, out, outl); in ebcdic_read() 330 BIO *next = BIO_next(b); in ebcdic_write() local 336 if (next == NULL) in ebcdic_write() 356 ret = BIO_write(next, wbuf->buff, inl); in ebcdic_write() 364 BIO *next = BIO_next(b); in ebcdic_ctrl() local 366 if (next == NULL) in ebcdic_ctrl() 373 ret = BIO_ctrl(next, cmd, num, ptr); in ebcdic_ctrl() 382 BIO *next in ebcdic_gets() local 3692 struct simple_ssl_session_st *next; global() member [all...] |
/third_party/openssl/apps/ |
H A D | s_server.c | 314 BIO *next = BIO_next(b); in ebcdic_read() local 318 if (next == NULL) in ebcdic_read() 321 ret = BIO_read(next, out, outl); in ebcdic_read() 330 BIO *next = BIO_next(b); in ebcdic_write() local 336 if (next == NULL) in ebcdic_write() 356 ret = BIO_write(next, wbuf->buff, inl); in ebcdic_write() 364 BIO *next = BIO_next(b); in ebcdic_ctrl() local 366 if (next == NULL) in ebcdic_ctrl() 373 ret = BIO_ctrl(next, cmd, num, ptr); in ebcdic_ctrl() 382 BIO *next in ebcdic_gets() local 3687 struct simple_ssl_session_st *next; global() member [all...] |
/foundation/filemanagement/storage_service/services/storage_daemon/mtpfs/src/ |
H A D | mtpfs_libmtp.cpp | 30 f = f->next; in LIBMTPFreeFilesAndFolders()
|
/third_party/curl/src/ |
H A D | var.h | 31 struct var *next; member
|
/third_party/libcoap/examples/ |
H A D | coap_list.h | 36 struct coap_list_t *next; member
|
/third_party/musl/src/process/ |
H A D | fdop.h | 8 struct fdop *next, *prev; member
|
/third_party/musl/src/stdio/ |
H A D | ofl_add.c | 9 f->next = *head; in __ofl_add()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/ |
H A D | nouveau_heap.h | 42 * just free the "next" node, until there is no next node. This should assure 48 struct nouveau_heap *next; member
|
/third_party/libdrm/ |
H A D | xf86drmHash.h | 12 * The above copyright notice and this permission notice (including the next 35 struct HashBucket *next; member
|
/third_party/mesa3d/src/gallium/frontends/wgl/ |
H A D | stw_tls.h | 15 * next paragraph) shall be included in all copies or substantial portions 39 struct stw_tls_data *next; member
|
/third_party/node/deps/openssl/openssl/crypto/lhash/ |
H A D | lhash_local.h | 15 struct lhash_node_st *next; member
|
/third_party/libcoap/include/coap3/ |
H A D | coap_async_internal.h | 36 struct coap_async_t *next; /**< internally used for linking */ member 46 * Otherewise return the time remaining for the next Async to be triggered 52 * @return The tick time before the next Async needs to go, else 0 if
|
/third_party/openssl/crypto/lhash/ |
H A D | lhash_local.h | 15 struct lhash_node_st *next; member
|