Searched refs:indexgroup (Results 1 – 6 of 6) sorted by relevance
275 GstIndexGroup *indexgroup = g_slice_new (GstIndexGroup); in gst_index_group_new() local277 indexgroup->groupnum = groupnum; in gst_index_group_new()278 indexgroup->entries = NULL; in gst_index_group_new()279 indexgroup->certainty = GST_INDEX_UNKNOWN; in gst_index_group_new()280 indexgroup->peergroup = -1; in gst_index_group_new()284 return indexgroup; in gst_index_group_new()380 GstIndexGroup *indexgroup;389 indexgroup = (GstIndexGroup *) (list->data);391 if (indexgroup->groupnum == groupnum) {392 index->curgroup = indexgroup;[all …]
286 GstIndexGroup *indexgroup = g_slice_new (GstIndexGroup); in gst_index_group_new() local288 indexgroup->groupnum = groupnum; in gst_index_group_new()289 indexgroup->entries = NULL; in gst_index_group_new()290 indexgroup->certainty = GST_INDEX_UNKNOWN; in gst_index_group_new()291 indexgroup->peergroup = -1; in gst_index_group_new()295 return indexgroup; in gst_index_group_new()393 GstIndexGroup *indexgroup;402 indexgroup = (GstIndexGroup *) (list->data);404 if (indexgroup->groupnum == groupnum) {405 index->curgroup = indexgroup;[all …]
31 PyObject* indexgroup; /* tuple */ member
570 Py_VISIT(self->indexgroup); in pattern_traverse()579 Py_CLEAR(self->indexgroup); in pattern_clear()1407 PyObject *indexgroup) in _sre_compile_impl() argument1424 self->indexgroup = NULL; in _sre_compile_impl()1472 if (PyTuple_GET_SIZE(indexgroup) > 0) { in _sre_compile_impl()1473 Py_INCREF(indexgroup); in _sre_compile_impl()1474 self->indexgroup = indexgroup; in _sre_compile_impl()2377 if (self->pattern->indexgroup && in match_lastgroup_get()2379 self->lastindex < PyTuple_GET_SIZE(self->pattern->indexgroup)) in match_lastgroup_get()2381 PyObject *result = PyTuple_GET_ITEM(self->pattern->indexgroup, in match_lastgroup_get()
557 PyObject *indexgroup);571 PyObject *indexgroup; in _sre_compile() local608 indexgroup = args[5]; in _sre_compile()609 return_value = _sre_compile_impl(module, pattern, flags, code, groups, groupindex, indexgroup); in _sre_compile()
776 indexgroup = [None] * p.state.groups778 indexgroup[i] = k783 groupindex, tuple(indexgroup)