Searched refs:next_elem (Results 1 – 4 of 4) sorted by relevance
/third_party/grpc/src/core/lib/channel/ |
D | channel_stack.cc | 225 grpc_call_element* next_elem = elem + 1; in grpc_call_next_op() local 226 GRPC_CALL_LOG_OP(GPR_INFO, next_elem, op); in grpc_call_next_op() 227 next_elem->filter->start_transport_stream_op_batch(next_elem, op); in grpc_call_next_op() 232 grpc_channel_element* next_elem = elem + 1; in grpc_channel_next_get_info() local 233 next_elem->filter->get_channel_info(next_elem, channel_info); in grpc_channel_next_get_info() 237 grpc_channel_element* next_elem = elem + 1; in grpc_channel_next_op() local 238 next_elem->filter->start_transport_op(next_elem, op); in grpc_channel_next_op()
|
/third_party/ffmpeg/libavutil/ |
D | tree.c | 71 void *next_elem[2]; in av_tree_insert() local 72 av_tree_find(t->child[i], key, cmp, next_elem); in av_tree_insert() 73 key = t->elem = next_elem[i]; in av_tree_insert()
|
/third_party/gstreamer/gstreamer/gst/ |
D | gsturi.c | 1300 gchar **next_elem; in _gst_uri_string_to_list() local 1301 for (next_elem = split_str; *next_elem; next_elem += 1) { in _gst_uri_string_to_list() 1302 gchar *elem = *next_elem; in _gst_uri_string_to_list() 1316 *next_elem = g_uri_unescape_string (elem, NULL); in _gst_uri_string_to_list() 1318 elem = *next_elem; in _gst_uri_string_to_list()
|
/third_party/sqlite/src/ |
D | sqlite3.c | 33538 HashElem *next_elem = elem->next; 33540 elem = next_elem; 33601 HashElem *elem, *next_elem; /* For looping over existing elements */ 33627 for(elem=pH->first, pH->first=0; elem; elem = next_elem){ 33629 next_elem = elem->next; 179797 Fts3HashElem *next_elem = elem->next; 179802 elem = next_elem; 179911 Fts3HashElem *elem, *next_elem; /* For looping over existing elements */ 179921 for(elem=pH->first, pH->first=0; elem; elem = next_elem){ 179923 next_elem = elem->next;
|