Home
last modified time | relevance | path

Searched refs:old_item (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Objects/
Denumobject.c109 PyObject *old_item; in enum_next_long() local
130 old_item = PyTuple_GET_ITEM(result, 1); in enum_next_long()
134 Py_DECREF(old_item); in enum_next_long()
161 PyObject *old_item; in enum_next() local
180 old_item = PyTuple_GET_ITEM(result, 1); in enum_next()
184 Py_DECREF(old_item); in enum_next()
/third_party/boost/libs/contract/example/cline90/
Dvstack.cpp116 boost::contract::old_ptr<T> old_item = BOOST_CONTRACT_OLDOF(v, item()); in pop() local
123 BOOST_CONTRACT_ASSERT(*result == *old_item); in pop()
/third_party/cJSON/
DcJSON_Utils.c890 cJSON *old_item = detach_path(object, (unsigned char*)path->valuestring, case_sensitive); in apply_patch() local
891 if (old_item == NULL) in apply_patch()
896 cJSON_Delete(old_item); in apply_patch()
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/
Dgstrtpjitterbuffer.c3230 RTPJitterBufferItem *old_item; in gst_rtp_jitter_buffer_chain() local
3232 old_item = rtp_jitter_buffer_peek (priv->jbuf); in gst_rtp_jitter_buffer_chain()
3234 if (IS_DROPABLE (old_item)) { in gst_rtp_jitter_buffer_chain()
3235 old_item = rtp_jitter_buffer_pop (priv->jbuf, &percent); in gst_rtp_jitter_buffer_chain()
3237 old_item); in gst_rtp_jitter_buffer_chain()
3238 priv->next_seqnum = (old_item->seqnum + old_item->count) & 0xffff; in gst_rtp_jitter_buffer_chain()
3241 new_drop_message (jitterbuffer, old_item->seqnum, old_item->pts, in gst_rtp_jitter_buffer_chain()
3244 rtp_jitter_buffer_free_item (old_item); in gst_rtp_jitter_buffer_chain()
/third_party/python/Modules/
D_pickle.c1541 PyObject *old_item; in _Unpickler_MemoPut() local
1549 old_item = self->memo[idx]; in _Unpickler_MemoPut()
1551 if (old_item != NULL) { in _Unpickler_MemoPut()
1552 Py_DECREF(old_item); in _Unpickler_MemoPut()