Home
last modified time | relevance | path

Searched refs:sub_array (Results 1 – 16 of 16) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-vector.hh97 hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const in sub_array() function
98 { return as_array ().sub_array (start_offset, count);} in sub_array()
99 …hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/O… in sub_array() function
100 { return as_array ().sub_array (start_offset, count);} in sub_array()
101 hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int count) in sub_array() function
102 { return as_array ().sub_array (start_offset, count);} in sub_array()
103 hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) in sub_array() function
104 { return as_array ().sub_array (start_offset, count);} in sub_array()
Dhb-array.hh153 …hb_array_t<Type> sub_array (unsigned int start_offset = 0, unsigned int *seg_count = nullptr /* IN… in sub_array() function
167 hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int seg_count) const in sub_array() function
168 { return sub_array (start_offset, &seg_count); } in sub_array()
205 …hb_sorted_array_t<Type> sub_array (unsigned int start_offset, unsigned int *seg_count /* IN/OUT */… in sub_array() function
206 …{ return hb_sorted_array_t<Type> (((const hb_array_t<Type> *) (this))->sub_array (start_offset, se… in sub_array()
207 hb_sorted_array_t<Type> sub_array (unsigned int start_offset, unsigned int seg_count) const in sub_array() function
208 { return sub_array (start_offset, &seg_count); } in sub_array()
Dhb-open-type.hh539 hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const in sub_array() function
540 { return as_array ().sub_array (start_offset, count);} in sub_array()
541 …hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/O… in sub_array() function
542 { return as_array ().sub_array (start_offset, count);} in sub_array()
543 hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int count) in sub_array() function
544 { return as_array ().sub_array (start_offset, count);} in sub_array()
545 hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) in sub_array() function
546 { return as_array ().sub_array (start_offset, count);} in sub_array()
804 hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const in sub_array() function
805 { return as_array ().sub_array (start_offset, count);} in sub_array()
[all …]
Dhb-ot-color-colr-table.hh102 hb_array_t<const LayerRecord> glyph_layers = all_layers.sub_array (record.firstLayerIdx, in get_glyph_layers()
106 hb_array_t<const LayerRecord> segment_layers = glyph_layers.sub_array (start_offset, *count); in get_glyph_layers()
Dhb-ot-color-cpal-table.hh141 hb_array_t<const BGRAColor> palette_colors = all_colors.sub_array (start_index, in get_palette_colors()
145 …hb_array_t<const BGRAColor> segment_colors = palette_colors.sub_array (start_offset, *color_count); in get_palette_colors()
Dhb-aat-layout-lcar-table.hh57 hb_array_t<const HBINT16> arr = array.sub_array (start_offset, caret_count); in get_lig_carets()
Dhb-ot-layout-gdef-table.hh66 hb_array_t<const HBUINT16> array = points.sub_array (start_offset, point_count); in get_attach_points()
223 hb_array_t <const OffsetTo<CaretValue> > array = carets.sub_array (start_offset, caret_count); in get_lig_carets()
Dhb-aat-layout-feat-table.hh120 hb_array_t<const SettingName> arr = settings_table.sub_array (start_offset, selectors_count); in get_selector_infos()
Dhb-ot-math-table.hh512 hb_array_t<const MathGlyphPartRecord> arr = partRecords.sub_array (start_offset, parts_count); in get_parts()
557 …hb_array_t<const MathGlyphVariantRecord> arr = mathGlyphVariantRecord.sub_array (start_offset, var… in get_variants()
Dhb-ot-layout-gsub-table.hh422 .serialize (c, substitute_glyphs_list.sub_array (0, substitute_len)))) in serialize()
612 .serialize (c, alternate_glyphs_list.sub_array (0, alternate_len)))) in serialize()
855 component_list.sub_array (0, component_count)))) in serialize()
956 ligatures_list.sub_array (0, ligature_count), in serialize()
957 component_count_list.sub_array (0, ligature_count), in serialize()
Dhb-ot-name-table.hh252 return string_pool.sub_array (record.offset, record.length); in get_name()
Dhb-ot-var-fvar-table.hh270 .sub_array (0, *coords_length); in get_instance_coords()
Dhb-cff-interp-common.hh561 return S::elements.sub_array (start); in get_subarray()
Dhb-ot-layout-common.hh120 const Record<Type> *arr = this->sub_array (start_offset, record_count); in get_tags()
192 const HBUINT16 *arr = this->sub_array (start_offset, _count); in get_indexes()
/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dlstm_utils.cc72 int tensor_stride, const Array& sub_array, in CopyArrayToSubArray() argument
75 bool is_bias = sub_array.shape().dims().size() == 1; in CopyArrayToSubArray()
76 int dim1_copy_size = sub_array.shape().dims()[0]; in CopyArrayToSubArray()
77 int dim2_copy_size = is_bias ? 1 : sub_array.shape().dims(1); in CopyArrayToSubArray()
78 auto& sub_buffer = sub_array.GetBuffer<ArrayDataType::kFloat>(); in CopyArrayToSubArray()
Dlstm_utils.h102 int tensor_stride, const Array& sub_array,