Home
last modified time | relevance | path

Searched refs:sub_array (Results 1 - 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-vector.hh166 hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const in sub_array() function
167 { return as_array ().sub_array (start_offset, count); } in sub_array()
168 hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) const in sub_array() function
169 { return as_array ().sub_array (start_offset, count); } in sub_array()
170 hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int count) in sub_array() function
171 { return as_array ().sub_array (start_offset, count); } in sub_array()
172 hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) in sub_array() function
173 { return as_array ().sub_array (start_offset, count); } in sub_array()
H A Dhb-array.hh231 hb_array_t sub_array (unsigned int start_offset = 0, unsigned int *seg_count = nullptr /* IN/OUT */) const in sub_array() function
245 hb_array_t sub_array (unsigned int start_offset, unsigned int seg_count) const in sub_array() function
246 { return sub_array (start_offset, &seg_count); } in sub_array()
248 hb_array_t truncate (unsigned length) const { return sub_array (0, length); } in truncate()
336 hb_sorted_array_t sub_array (unsigned int start_offset, unsigned int *seg_count /* IN/OUT */) const in sub_array() function
337 { return hb_sorted_array_t (((const hb_array_t<Type> *) (this))->sub_array (start_offset, seg_count)); } in sub_array()
338 hb_sorted_array_t sub_array (unsigned int start_offset, unsigned int seg_count) const in sub_array() function
339 { return sub_array (start_offset, &seg_count); } in sub_array()
341 hb_sorted_array_t truncate (unsigned length) const { return sub_array (0, length); } in truncate()
H A Dhb-open-type.hh637 hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const in sub_array() function
638 { return as_array ().sub_array (start_offset, count); } in sub_array()
639 hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) const in sub_array() function
640 { return as_array ().sub_array (start_offset, count); } in sub_array()
641 hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int count) in sub_array() function
642 { return as_array ().sub_array (start_offset, count); } in sub_array()
643 hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) in sub_array() function
644 { return as_array ().sub_array (start_offset, count); } in sub_array()
925 hb_sorted_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const in sub_array() function
926 { return as_array ().sub_array (start_offse in sub_array()
927 hb_sorted_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) const sub_array() function
929 hb_sorted_array_t<Type> sub_array (unsigned int start_offset, unsigned int count) sub_array() function
931 hb_sorted_array_t<Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) sub_array() function
[all...]
H A Dhb-ot-var-fvar-table.hh187 hb_array_t<const AxisRecord> arr = get_axes ().sub_array (start_offset, axes_count); in get_axes_deprecated()
201 hb_array_t<const AxisRecord> arr = get_axes ().sub_array (start_offset, axes_count); in get_axis_infos()
266 .sub_array (0, *coords_length); in get_instance_coords()
H A Dhb-aat-layout-feat-table.hh119 + settings_table.sub_array (start_offset, selectors_count) in get_selector_infos()
172 + namesZ.as_array (featureNameCount).sub_array (start_offset, count) in get_feature_types()
H A Dhb-ot-var-gvar-table.hh104 peak_tuple = shared_tuples.sub_array (coord_count * index, coord_count); in calculate_scalar()
162 { return get_all_tuples (axis_count).sub_array (0, axis_count); } in get_peak_tuple()
164 { return get_all_tuples (axis_count).sub_array (has_peak () * axis_count, axis_count); } in get_start_tuple()
166 { return get_all_tuples (axis_count).sub_array (has_peak () * axis_count + axis_count, axis_count); } in get_end_tuple()
486 hb_bytes_t var_data = blob->as_bytes ().sub_array (((unsigned) dataZ) + start_offset, length); in get_glyph_var_data_bytes()
H A Dhb-ot-color-cpal-table.hh180 hb_array_t<const BGRAColor> palette_colors = all_colors.sub_array (start_index, in get_palette_colors()
184 + palette_colors.sub_array (start_offset, color_count) in get_palette_colors()
H A Dhb-ot-meta-table.hh87 + table->dataMaps.sub_array (start_offset, count) in get_entries()
H A Dhb-ot-glyf-table.hh568 return Glyph (bytes.sub_array (0, bytes.length + coord_bytes - (glyph_end - glyph))); in trim_padding()
582 dest_start = bytes.sub_array (0, glyph_length - instructions_len); in drop_hints_bytes()
583 dest_end = bytes.sub_array (glyph_length, bytes.length - glyph_length); in drop_hints_bytes()
709 { dest_start = bytes.sub_array (0, bytes.length - instructions_length (bytes)); } in drop_hints_bytes()
792 hb_array_t<contour_point_t> phantoms = points.sub_array (points.length - PHANTOM_COUNT, PHANTOM_COUNT); in get_points()
851 all_points.extend (comp_points.sub_array (0, comp_points.length - PHANTOM_COUNT)); in get_points()
H A Dhb-ot-math-table.hh710 for (auto _ : hb_zip (partRecords.sub_array (start_offset, parts_count), in get_parts()
779 for (auto _ : hb_zip (mathGlyphVariantRecord.sub_array (start_offset, variants_count), in get_variants()
815 const auto vert_offsets = glyph_construction_offsets.sub_array (0, vertGlyphCount); in closure_glyphs()
826 const auto hori_offsets = glyph_construction_offsets.sub_array (vertGlyphCount, horizGlyphCount); in closure_glyphs()
H A Dhb-cff-interp-common.hh301 { return byte_str_t (hb_ubytes_t::sub_array (offset, len_)); } in sub_str()
517 { return S::elements.sub_array (start); } in get_subarray()
H A Dhb-ot-layout-gsub-table.hh457 .serialize_serialize (c, substitute_glyphs_list.sub_array (0, substitute_len)))) in serialize()
587 + alternates.sub_array (start_offset, alternate_count) in get_alternates()
700 .serialize_serialize (c, alternate_glyphs_list.sub_array (0, alternate_len)))) in serialize()
966 component_list.sub_array (0, component_count)))) in serialize()
1083 ligatures_list.sub_array (0, ligature_count),
1084 component_count_list.sub_array (0, ligature_count),
H A Dhb-ot-layout-gdef-table.hh76 + points.sub_array (start_offset, point_count) in get_attach_points()
306 + carets.sub_array (start_offset, caret_count) in get_lig_carets()
H A Dhb-ot-color-colr-table.hh1260 hb_array_t<const LayerRecord> glyph_layers = all_layers.sub_array (record.firstLayerIdx, in get_glyph_layers()
1264 + glyph_layers.sub_array (start_offset, count) in get_glyph_layers()
1306 auto glyph_layers = (this+layersZ).as_array (numLayers).sub_array (record->firstLayerIdx, in closure_glyphs()
1322 hb_array_t<const LayerRecord> glyph_layers = all_layers.sub_array (record.firstLayerIdx, in closure_V0palette_indices()
1468 auto layers = (this+layersZ).as_array (numLayers).sub_array (old_record->firstLayerIdx, in subset()
H A Dhb-ot-name-table.hh351 return string_pool.sub_array (record.offset, record.length); in get_name()
H A Dhb-iter.hh763 { return array.sub_array (0, count); } in operator ()()
767 { return array.sub_array (0, count); } in operator ()()
H A Dhb-ot-layout-gpos-table.hh891 valueFormat.collect_variation_indices (c, this, values_array.sub_array (i * sub_length, sub_length)); in collect_variation_indices()
962 values_array.sub_array (_.second * sub_length, in subset()
1125 valueFormats[0].collect_variation_indices (c, base, values_array.sub_array (0, record1_len)); in collect_variation_indices()
1128 valueFormats[1].collect_variation_indices (c, base, values_array.sub_array (record1_len, record2_len)); in collect_variation_indices()
1527 valueFormat1.collect_variation_indices (c, this, values_array.sub_array (start_offset, len1)); in collect_variation_indices()
1530 valueFormat2.collect_variation_indices (c, this, values_array.sub_array (start_offset+len1, len2)); in collect_variation_indices()
H A Dhb-open-file.hh93 + tables.sub_array (start_offset, table_count) in get_table_tags()
H A Dhb-ot-layout-common.hh446 + this->sub_array (start_offset, record_count) in get_tags()
588 + this->sub_array (start_offset, _count) in get_indexes()
1005 + characters.sub_array (start_offset, char_count) in get_characters()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-subtyping.cc58 const ArrayType* sub_array = sub_module->types[subtype_index].array_type; in ValidArraySubtypeDefinition() local
61 bool sub_mut = sub_array->mutability(); in ValidArraySubtypeDefinition()
65 EquivalentTypes(sub_array->element_type(), in ValidArraySubtypeDefinition()
69 IsSubtypeOf(sub_array->element_type(), super_array->element_type(), in ValidArraySubtypeDefinition()

Completed in 39 milliseconds