Home
last modified time | relevance | path

Searched refs:max_offset (Results 1 – 25 of 30) sorted by relevance

12

/third_party/boost/libs/intrusive/test/
Dbounded_pointer.hpp48 static const unsigned char max_offset = (unsigned char)-1; member in bounded_pointer
50 bounded_pointer() : m_offset(max_offset) {} in bounded_pointer()
90 return m_offset != max_offset? &bounded_pointer::unspecified_bool_type_func : 0; in operator unspecified_bool_type()
147 static const unsigned char max_offset = pointer::max_offset; member in bounded_reference
151 : m_offset(max_offset) in bounded_reference()
159 { assert(m_offset != max_offset); return *(bounded_pointer< T >::base() + m_offset); } in raw()
162 { assert(m_offset != max_offset); return raw(); } in operator T&()
165 … { assert(m_offset != max_offset); bounded_pointer< T > res; res.m_offset = m_offset; return res; } in operator &()
168 { assert(m_offset != max_offset); raw() = rhs; return *this; } in operator =()
171 { assert(m_offset != max_offset); raw() = rhs.raw(); return *this; } in operator =()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/
Dgsttagmux.c68 gint64 max_offset; member
280 mux->priv->max_offset = in gst_tag_mux_render_start_tag()
281 MAX (mux->priv->max_offset, mux->priv->current_offset); in gst_tag_mux_render_start_tag()
324 segment.start = mux->priv->max_offset; in gst_tag_mux_render_end_tag()
327 GST_BUFFER_OFFSET (buffer) = mux->priv->max_offset; in gst_tag_mux_render_end_tag()
396 mux->priv->max_offset = in gst_tag_mux_chain()
397 MAX (mux->priv->max_offset, mux->priv->current_offset); in gst_tag_mux_chain()
419 mux->priv->max_offset = in gst_tag_mux_chain()
420 MAX (mux->priv->max_offset, mux->priv->current_offset); in gst_tag_mux_chain()
493 mux->priv->max_offset = in gst_tag_mux_sink_event()
[all …]
/third_party/mesa3d/src/mesa/main/
Darrayobj.c419 GLuint max_offset = 0; in compute_vbo_offset_range() local
429 max_offset = MAX2(off, max_offset); in compute_vbo_offset_range()
433 *max = binding->Offset + (GLsizeiptr)max_offset; in compute_vbo_offset_range()
618 GLsizeiptr min_offset, max_offset; in _mesa_update_vao_derived_arrays() local
619 compute_vbo_offset_range(vao, binding, &min_offset, &max_offset); in _mesa_update_vao_derived_arrays()
620 assert(max_offset <= min_offset + MaxRelativeOffset); in _mesa_update_vao_derived_arrays()
653 if (min_offset2 + MaxRelativeOffset < max_offset) in _mesa_update_vao_derived_arrays()
658 max_offset = MAX2(max_offset, max_offset2); in _mesa_update_vao_derived_arrays()
659 assert(max_offset <= min_offset + MaxRelativeOffset); in _mesa_update_vao_derived_arrays()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Dgstaudiometa.c411 gsize max_offset = 0; in gst_buffer_add_audio_meta() local
424 max_offset = MAX (max_offset, offsets[i]); in gst_buffer_add_audio_meta()
443 max_offset = meta->offsets[info->channels - 1]; in gst_buffer_add_audio_meta()
448 if (max_offset + plane_size > gst_buffer_get_size (buffer)) { in gst_buffer_add_audio_meta()
452 G_GSIZE_FORMAT, max_offset, samples, info->finfo->width / 8, in gst_buffer_add_audio_meta()
Dgstaudioaggregator.c2489 gint64 max_offset = 0; in gst_audio_aggregator_aggregate() local
2500 max_offset = MAX ((gint64) max_offset, (gint64) pad->priv->output_offset); in gst_audio_aggregator_aggregate()
2505 if (aagg->priv->offset == max_offset) { in gst_audio_aggregator_aggregate()
2511 if (max_offset <= next_offset) { in gst_audio_aggregator_aggregate()
2514 G_GINT64_FORMAT, max_offset, next_offset); in gst_audio_aggregator_aggregate()
2515 next_offset = max_offset; in gst_audio_aggregator_aggregate()
/third_party/ffmpeg/tests/checkasm/
Dhevc_sao.c54 uint32_t max_offset = OFFSET_THRESH; \
58 uint8_t r = rnd() % max_offset; \
63 uint16_t r = rnd() % max_offset; \
/third_party/mesa3d/src/compiler/nir/
Dnir_gather_xfb_info.c277 unsigned max_offset[NIR_MAX_XFB_BUFFERS] = {0}; in nir_gather_xfb_info_with_varyings() local
279 assert(xfb->outputs[i].offset >= max_offset[xfb->outputs[i].buffer]); in nir_gather_xfb_info_with_varyings()
282 max_offset[xfb->outputs[i].buffer] = xfb->outputs[i].offset + slots * 4; in nir_gather_xfb_info_with_varyings()
Dnir_inline_uniforms.c380 uint32_t max_offset = offset + num_components; in nir_inline_uniforms() local
389 if (uni_offset >= offset && uni_offset < max_offset) { in nir_inline_uniforms()
/third_party/mesa3d/src/mapi/glapi/gen/
Dgl_XML.py967 max_offset = -1
969 if func.offset > max_offset:
970 max_offset = func.offset
973 temp = [None for i in range(0, max_offset + 1)]
980 for i in range(0, max_offset + 1):
/third_party/gstreamer/gstplugins_bad/gst/dvdspu/
Dgstspu-vobsub.h92 guint16 max_offset; member
Dgstspu-vobsub-render.c138 if (G_UNLIKELY (*rle_offset >= state->vobsub.max_offset)) in gstspu_vobsub_get_nibble()
463 state->vobsub.max_offset = state->vobsub.pix_buf_map.size * 2; in gstspu_vobsub_render()
/third_party/ffmpeg/libavformat/
Ddv.c427 int64_t max_offset = ((size - 1) / frame_size) * frame_size; in dv_frame_offset() local
431 if (size >= 0 && offset > max_offset) in dv_frame_offset()
432 offset = max_offset; in dv_frame_offset()
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-ot-glyf-table.hh88 unsigned max_offset = + padded_offsets | hb_reduce(hb_add, 0); in _add_loca_and_head() local
90 bool use_short_loca = max_offset < 0x1FFFF; in _add_loca_and_head()
96 …ize %d num_offsets %d max_offset %d size %d", entry_size, num_offsets, max_offset, entry_size * nu… in _add_loca_and_head()
Dhb-ot-cff-common.hh91 c->check_array ((const HBUINT8*)data_base (), 1, max_offset () - 1)))); in sanitize()
236 unsigned int max_offset () const in max_offset() function
/third_party/skia/modules/skottie/src/text/
DSkottieShaper.cpp234 const auto max_offset = fBox.height() + this->ascent(); // NB: ascent is negative in shapeLine() local
235 if (fOffset.y() > max_offset) { in shapeLine()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-cff-common.hh292 c->check_array ((const HBUINT8*) data_base (), 1, max_offset () - 1)))); in sanitize()
296 unsigned int max_offset () const in max_offset() function
Dhb-ot-glyf-table.hh98 unsigned max_offset = in _add_loca_and_head() local
103 bool use_short_loca = max_offset < 0x1FFFF; in _add_loca_and_head()
111 entry_size, num_offsets, max_offset, entry_size * num_offsets); in _add_loca_and_head()
/third_party/harfbuzz/src/
Dhb-ot-cff-common.hh292 c->check_array ((const HBUINT8*) data_base (), 1, max_offset () - 1)))); in sanitize()
296 unsigned int max_offset () const in max_offset() function
Dhb-ot-glyf-table.hh94 unsigned max_offset = in _add_loca_and_head() local
99 bool use_short_loca = max_offset < 0x1FFFF; in _add_loca_and_head()
107 entry_size, num_offsets, max_offset, entry_size * num_offsets); in _add_loca_and_head()
/third_party/freetype/src/truetype/
Dttgxvar.c1568 FT_ULong max_offset = 0; in ft_var_load_gvar() local
1575 if ( max_offset <= blend->glyphoffsets[i] ) in ft_var_load_gvar()
1576 max_offset = blend->glyphoffsets[i]; in ft_var_load_gvar()
1582 blend->glyphoffsets[i] = max_offset; in ft_var_load_gvar()
1598 FT_ULong max_offset = 0; in ft_var_load_gvar() local
1605 if ( max_offset <= blend->glyphoffsets[i] ) in ft_var_load_gvar()
1606 max_offset = blend->glyphoffsets[i]; in ft_var_load_gvar()
1612 blend->glyphoffsets[i] = max_offset; in ft_var_load_gvar()
/third_party/skia/third_party/externals/freetype/src/truetype/
Dttgxvar.c1650 FT_ULong max_offset = 0; in ft_var_load_gvar() local
1657 if ( max_offset <= blend->glyphoffsets[i] ) in ft_var_load_gvar()
1658 max_offset = blend->glyphoffsets[i]; in ft_var_load_gvar()
1664 blend->glyphoffsets[i] = max_offset; in ft_var_load_gvar()
1680 FT_ULong max_offset = 0; in ft_var_load_gvar() local
1687 if ( max_offset <= blend->glyphoffsets[i] ) in ft_var_load_gvar()
1688 max_offset = blend->glyphoffsets[i]; in ft_var_load_gvar()
1694 blend->glyphoffsets[i] = max_offset; in ft_var_load_gvar()
/third_party/python/Lib/test/
Dtest_hashlib.py592 digest_size, max_offset): argument
647 constructor(node_offset=max_offset)
649 self.assertRaises(OverflowError, constructor, node_offset=max_offset+1)
/third_party/mesa3d/docs/relnotes/
D8.0.4.rst97 - st/mesa: fix max_offset computation for base vertex
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/image/soft_dvpp/utils/
Dsoft_vpc.cc644 int32_t max_offset = in_height_ - 1; in StartVerticalScaler() local
659 index = TruncatedFunc(index, 0, max_offset); in StartVerticalScaler()
/third_party/mesa3d/src/intel/vulkan/
Danv_nir_apply_pipeline_layout.c1088 unsigned max_offset = b->shader->constant_data_size - load_size; in lower_load_constant() local
1089 offset = nir_umin(b, offset, nir_imm_int(b, max_offset)); in lower_load_constant()

12