Home
last modified time | relevance | path

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

/third_party/python/Python/
Dhamt.c2320 new_o->h_count = added_leaf ? o->h_count + 1 : o->h_count; in _PyHamt_Assoc()
2358 new_o->h_count = o->h_count - 1; in _PyHamt_Without()
2359 assert(new_o->h_count >= 0); in _PyHamt_Without()
2370 if (o->h_count == 0) { in hamt_find()
2407 if (v->h_count != w->h_count) { in _PyHamt_Eq()
2450 return o->h_count; in _PyHamt_Len()
2461 o->h_count = 0; in hamt_alloc()
2489 o->h_count = 0; in _PyHamt_New()
2507 if (_hamt_dump_format(&writer, "HAMT(len=%zd):\n", self->h_count)) { in hamt_dump()
2574 return it->hi_obj->h_count; in hamt_baseiter_tp_len()
/third_party/ffmpeg/libavcodec/
Dmjpegdec.c301 int h_count[MAX_COMPONENTS] = { 0 }; in ff_mjpeg_decode_sof() local
372 h_count[i] = get_bits(&s->gb, 4); in ff_mjpeg_decode_sof()
375 if (h_count[i] > s->h_max) in ff_mjpeg_decode_sof()
376 s->h_max = h_count[i]; in ff_mjpeg_decode_sof()
384 if (!h_count[i] || !v_count[i]) { in ff_mjpeg_decode_sof()
387 i, h_count[i], v_count[i]); in ff_mjpeg_decode_sof()
392 i, h_count[i], v_count[i], in ff_mjpeg_decode_sof()
422 memcmp(s->h_count, h_count, sizeof(h_count)) || in ff_mjpeg_decode_sof()
429 memcpy(s->h_count, h_count, sizeof(h_count)); in ff_mjpeg_decode_sof()
477 pix_fmt_id = ((unsigned)s->h_count[0] << 28) | (s->v_count[0] << 24) | in ff_mjpeg_decode_sof()
[all …]
Dmjpegdec.h96 int h_count[MAX_COMPONENTS]; /* horizontal and vertical count for each component */ member
Dvaapi_mjpeg.c46 pp.components[i].h_sampling_factor = s->h_count[i]; in vaapi_mjpeg_start_frame()
/third_party/python/Include/internal/
Dpycore_hamt.h25 Py_ssize_t h_count; member