Home
last modified time | relevance | path

Searched refs:tables (Results 1 – 25 of 1184) sorted by relevance

12345678910>>...48

/third_party/python/Tools/unicode/
Dmkstringprep.py53 tables = [] variable
70 tables.append((curname, table))
126 name, table = tables[0]
127 del tables[0]
149 name, table = tables[0]
150 del tables[0]
165 name, table_b2 = tables[0]
166 del tables[0]
169 name, table_b3 = tables[0]
170 del tables[0]
[all …]
/third_party/pcre2/pcre2/src/
Dpcre2_serialize.c81 const uint8_t *tables; in pcre2_serialize_encode() local
94 tables = NULL; in pcre2_serialize_encode()
101 if (tables == NULL) in pcre2_serialize_encode()
102 tables = re->tables; in pcre2_serialize_encode()
103 else if (tables != re->tables) in pcre2_serialize_encode()
124 memcpy(dst_bytes, tables, TABLES_LENGTH); in pcre2_serialize_encode()
144 (void)memset(dst_bytes + offsetof(pcre2_real_code, tables), 0, in pcre2_serialize_encode()
172 uint8_t *tables; in pcre2_serialize_decode() local
192 tables = memctl->malloc(TABLES_LENGTH + sizeof(PCRE2_SIZE), memctl->memory_data); in pcre2_serialize_decode()
193 if (tables == NULL) return PCRE2_ERROR_NOMEMORY; in pcre2_serialize_decode()
[all …]
Dpcre2_dftables.c101 const unsigned char *tables; in main() local
145 tables = maketables(); in main()
146 base_of_tables = tables; in main()
160 size_t len = fwrite(tables, 1, TABLES_LENGTH, f); in main()
230 fprintf(f, "%3d", *tables++); in main()
241 fprintf(f, "%3d", *tables++); in main()
261 (void)fprintf(f, "0x%02x", *tables++); in main()
287 (void)fprintf(f, "0x%02x", *tables++); in main()
/third_party/mesa3d/src/mesa/main/
Dget_hash_generator.py95 def print_tables(tables): argument
96 for table in tables:
100 for table in tables:
114 def merge_tables(tables): argument
116 for api, indices in sorted(tables.items()):
141 tables = defaultdict(lambda:{})
169 add_to_hash_table(tables[api], hash_val, len(params))
172 add_to_hash_table(tables["GLES3"], hash_val, len(params))
173 add_to_hash_table(tables["GLES31"], hash_val, len(params))
174 add_to_hash_table(tables["GLES32"], hash_val, len(params))
[all …]
/third_party/skia/third_party/externals/freetype/src/pcf/
Dpcfread.c99 PCF_Table tables; in pcf_read_TOC() local
130 if ( FT_QNEW_ARRAY( face->toc.tables, toc->count ) ) in pcf_read_TOC()
133 tables = face->toc.tables; in pcf_read_TOC()
136 if ( FT_STREAM_READ_FIELDS( pcf_table_header, tables ) ) in pcf_read_TOC()
138 tables++; in pcf_read_TOC()
144 tables = face->toc.tables; in pcf_read_TOC()
158 if ( tables[i].offset > tables[i + 1].offset ) in pcf_read_TOC()
160 tmp = tables[i]; in pcf_read_TOC()
161 tables[i] = tables[i + 1]; in pcf_read_TOC()
162 tables[i + 1] = tmp; in pcf_read_TOC()
[all …]
/third_party/freetype/src/pcf/
Dpcfread.c99 PCF_Table tables; in pcf_read_TOC() local
130 if ( FT_NEW_ARRAY( face->toc.tables, toc->count ) ) in pcf_read_TOC()
133 tables = face->toc.tables; in pcf_read_TOC()
136 if ( FT_STREAM_READ_FIELDS( pcf_table_header, tables ) ) in pcf_read_TOC()
138 tables++; in pcf_read_TOC()
144 tables = face->toc.tables; in pcf_read_TOC()
158 if ( tables[i].offset > tables[i + 1].offset ) in pcf_read_TOC()
160 tmp = tables[i]; in pcf_read_TOC()
161 tables[i] = tables[i + 1]; in pcf_read_TOC()
162 tables[i + 1] = tmp; in pcf_read_TOC()
[all …]
/third_party/flutter/skia/third_party/externals/freetype/src/pcf/
Dpcfread.c100 PCF_Table tables; in pcf_read_TOC() local
131 if ( FT_NEW_ARRAY( face->toc.tables, toc->count ) ) in pcf_read_TOC()
134 tables = face->toc.tables; in pcf_read_TOC()
137 if ( FT_STREAM_READ_FIELDS( pcf_table_header, tables ) ) in pcf_read_TOC()
139 tables++; in pcf_read_TOC()
145 tables = face->toc.tables; in pcf_read_TOC()
159 if ( tables[i].offset > tables[i + 1].offset ) in pcf_read_TOC()
161 tmp = tables[i]; in pcf_read_TOC()
162 tables[i] = tables[i + 1]; in pcf_read_TOC()
163 tables[i + 1] = tmp; in pcf_read_TOC()
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/script/
Dprint-crc32-magic-numbers.go37 tables := [16]crc32.Table{}
38 tables[0] = *crc32.MakeTable(crc32.IEEE)
43 crc := tables[0][i]
45 crc = tables[0][crc&0xFF] ^ (crc >> 8)
46 tables[j][i] = crc
50 for i, t := range tables {
/third_party/harfbuzz/src/
Dhb-face.cc639 hb_vector_t<table_entry_t> tables; member
649 data->tables.init (); in _hb_face_builder_data_create()
659 for (unsigned int i = 0; i < data->tables.length; i++) in _hb_face_builder_data_destroy()
660 hb_blob_destroy (data->tables[i].blob); in _hb_face_builder_data_destroy()
662 data->tables.fini (); in _hb_face_builder_data_destroy()
671 unsigned int table_count = data->tables.length; in _hb_face_builder_data_reference_blob()
675 face_length += hb_ceil_to_4 (hb_blob_get_length (data->tables[i].blob)); in _hb_face_builder_data_reference_blob()
682 c.propagate_error (data->tables); in _hb_face_builder_data_reference_blob()
685 …bool is_cff = data->tables.lsearch (HB_TAG ('C','F','F',' ')) || data->tables.lsearch (HB_TAG ('C'… in _hb_face_builder_data_reference_blob()
688 bool ret = f->serialize_single (&c, sfnt_tag, data->tables.as_array ()); in _hb_face_builder_data_reference_blob()
[all …]
Dhb-open-file.hh85 unsigned int get_table_count () const { return tables.len; } in get_table_count()
87 { return tables[i]; } in get_table()
94 + tables.sub_array (start_offset, table_count) in get_table_tags()
99 return tables.len; in get_table_tags()
105 return tables.bfind (t, table_index, HB_BFIND_NOT_FOUND_STORE, Index::NOT_FOUND_INDEX); in find_table_index()
128 if (unlikely (!tables.serialize (c, items.length))) return_trace (false); in serialize()
134 for (unsigned int i = 0; i < tables.len; i++) in serialize()
136 TableRecord &rec = tables.arrayZ[i]; in serialize()
164 tables.qsort (); in serialize()
175 TableRecord &rec = tables.arrayZ[i]; in serialize()
[all …]
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-open-file.hh85 unsigned int get_table_count () const { return tables.len; } in get_table_count()
87 { return tables[i]; } in get_table()
94 if (start_offset >= tables.len) in get_table_tags()
97 *table_count = hb_min (*table_count, tables.len - start_offset); in get_table_tags()
99 const TableRecord *sub_tables = tables.arrayZ + start_offset; in get_table_tags()
104 return tables.len; in get_table_tags()
110 return tables.bfind (t, table_index, HB_BFIND_NOT_FOUND_STORE, Index::NOT_FOUND_INDEX); in find_table_index()
133 if (unlikely (!tables.serialize (c, items.length))) return_trace (false); in serialize()
139 for (unsigned int i = 0; i < tables.len; i++) in serialize()
141 TableRecord &rec = tables.arrayZ[i]; in serialize()
[all …]
Dhb-face.cc602 hb_vector_t<table_entry_t> tables; member
612 data->tables.init (); in _hb_face_builder_data_create()
622 for (unsigned int i = 0; i < data->tables.length; i++) in _hb_face_builder_data_destroy()
623 hb_blob_destroy (data->tables[i].blob); in _hb_face_builder_data_destroy()
625 data->tables.fini (); in _hb_face_builder_data_destroy()
634 unsigned int table_count = data->tables.length; in _hb_face_builder_data_reference_blob()
638 face_length += hb_ceil_to_4 (hb_blob_get_length (data->tables[i].blob)); in _hb_face_builder_data_reference_blob()
645 c.propagate_error (data->tables); in _hb_face_builder_data_reference_blob()
648 …bool is_cff = data->tables.lsearch (HB_TAG ('C','F','F',' ')) || data->tables.lsearch (HB_TAG ('C'… in _hb_face_builder_data_reference_blob()
651 bool ret = f->serialize_single (&c, sfnt_tag, data->tables.as_array ()); in _hb_face_builder_data_reference_blob()
[all …]
/third_party/ffmpeg/libavcodec/x86/
Dcabac.h55 #define TABLES_ARG , "r"(tables)
80 …tatep, low, lowword, range, rangeq, tmp, tmpbyte, byte, end, norm_off, lps_off, mlps_off, tables) \ argument
85 "movzbl "lps_off"("tables", %%rcx), "range" \n\t"\
90 "movzbl "norm_off"("tables", "rangeq"), %%ecx \n\t"\
92 "movzbl "mlps_off"+128("tables", "retq"), "tmp" \n\t"\
107 "movzbl "norm_off"("tables", %%rcx), %%ecx \n\t"\
144 …tatep, low, lowword, range, rangeq, tmp, tmpbyte, byte, end, norm_off, lps_off, mlps_off, tables) \ argument
185 void *tables; in get_cabac_inline_x86() local
189 : "=&r"(tables) in get_cabac_inline_x86()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-open-file.hh84 unsigned int get_table_count () const { return tables.len; } in get_table_count()
86 { return tables[i]; } in get_table()
93 + tables.sub_array (start_offset, table_count) in get_table_tags()
98 return tables.len; in get_table_tags()
107 if (tables.len < 16) in find_table_index()
108 return tables.lfind (t, table_index, HB_NOT_FOUND_STORE, Index::NOT_FOUND_INDEX); in find_table_index()
110 return tables.bfind (t, table_index, HB_NOT_FOUND_STORE, Index::NOT_FOUND_INDEX); in find_table_index()
135 if (unlikely (!tables.serialize (c, num_items))) return_trace (false); in serialize()
151 TableRecord &rec = tables.arrayZ[i]; in serialize()
179 tables.qsort (); in serialize()
[all …]
Dhb-face.cc627 hb_hashmap_t<hb_tag_t, hb_blob_t *> tables; member
650 data->tables.init (); in _hb_face_builder_data_create()
660 for (hb_blob_t* b : data->tables.values()) in _hb_face_builder_data_destroy()
663 data->tables.fini (); in _hb_face_builder_data_destroy()
672 unsigned int table_count = data->tables.get_population (); in _hb_face_builder_data_reference_blob()
675 for (hb_blob_t* b : data->tables.values()) in _hb_face_builder_data_reference_blob()
683 c.propagate_error (data->tables); in _hb_face_builder_data_reference_blob()
686 bool is_cff = (data->tables.has (HB_TAG ('C','F','F',' ')) in _hb_face_builder_data_reference_blob()
687 || data->tables.has (HB_TAG ('C','F','F','2'))); in _hb_face_builder_data_reference_blob()
692 data->tables.iter () | hb_sink (sorted_entries); in _hb_face_builder_data_reference_blob()
[all …]
/third_party/skia/third_party/externals/freetype/src/gxvalid/
Dgxvbsln.c150 gxv_bsln_parts_fmt0_validate( FT_Bytes tables, in gxv_bsln_parts_fmt0_validate() argument
154 FT_Bytes p = tables; in gxv_bsln_parts_fmt0_validate()
169 gxv_bsln_parts_fmt1_validate( FT_Bytes tables, in gxv_bsln_parts_fmt1_validate() argument
173 FT_Bytes p = tables; in gxv_bsln_parts_fmt1_validate()
194 gxv_bsln_parts_fmt2_validate( FT_Bytes tables, in gxv_bsln_parts_fmt2_validate() argument
198 FT_Bytes p = tables; in gxv_bsln_parts_fmt2_validate()
238 gxv_bsln_parts_fmt3_validate( FT_Bytes tables, in gxv_bsln_parts_fmt3_validate() argument
242 FT_Bytes p = tables; in gxv_bsln_parts_fmt3_validate()
/third_party/freetype/src/gxvalid/
Dgxvbsln.c150 gxv_bsln_parts_fmt0_validate( FT_Bytes tables, in gxv_bsln_parts_fmt0_validate() argument
154 FT_Bytes p = tables; in gxv_bsln_parts_fmt0_validate()
169 gxv_bsln_parts_fmt1_validate( FT_Bytes tables, in gxv_bsln_parts_fmt1_validate() argument
173 FT_Bytes p = tables; in gxv_bsln_parts_fmt1_validate()
194 gxv_bsln_parts_fmt2_validate( FT_Bytes tables, in gxv_bsln_parts_fmt2_validate() argument
198 FT_Bytes p = tables; in gxv_bsln_parts_fmt2_validate()
238 gxv_bsln_parts_fmt3_validate( FT_Bytes tables, in gxv_bsln_parts_fmt3_validate() argument
242 FT_Bytes p = tables; in gxv_bsln_parts_fmt3_validate()
/third_party/flutter/skia/third_party/externals/freetype/src/gxvalid/
Dgxvbsln.c150 gxv_bsln_parts_fmt0_validate( FT_Bytes tables, in gxv_bsln_parts_fmt0_validate() argument
154 FT_Bytes p = tables; in gxv_bsln_parts_fmt0_validate()
169 gxv_bsln_parts_fmt1_validate( FT_Bytes tables, in gxv_bsln_parts_fmt1_validate() argument
173 FT_Bytes p = tables; in gxv_bsln_parts_fmt1_validate()
194 gxv_bsln_parts_fmt2_validate( FT_Bytes tables, in gxv_bsln_parts_fmt2_validate() argument
198 FT_Bytes p = tables; in gxv_bsln_parts_fmt2_validate()
238 gxv_bsln_parts_fmt3_validate( FT_Bytes tables, in gxv_bsln_parts_fmt3_validate() argument
242 FT_Bytes p = tables; in gxv_bsln_parts_fmt3_validate()
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
DMtxFontBuilder.java34 private Map<Integer, ReadableFontData> tables; field in MtxFontBuilder
38 tables = new HashMap<Integer, ReadableFontData>(); in MtxFontBuilder()
53 tables.put(tag, data); in addTable()
86 TreeSet<Integer> tags = new TreeSet<Integer>(tables.keySet()); in build()
87 int nTables = tables.size(); in build()
89 for (Map.Entry<Integer, ReadableFontData> entry : tables.entrySet()) { in build()
110 ReadableFontData data = tables.get(tag); in build()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
DMtxFontBuilder.java34 private Map<Integer, ReadableFontData> tables; field in MtxFontBuilder
38 tables = new HashMap<Integer, ReadableFontData>(); in MtxFontBuilder()
53 tables.put(tag, data); in addTable()
86 TreeSet<Integer> tags = new TreeSet<Integer>(tables.keySet()); in build()
87 int nTables = tables.size(); in build()
89 for (Map.Entry<Integer, ReadableFontData> entry : tables.entrySet()) { in build()
110 ReadableFontData data = tables.get(tag); in build()
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sample/subtly/
Dstats.cc44 const TableMap* tables = font->GetTableMap(); in PrintComparison() local
45 for (TableMap::const_iterator it = tables->begin(), in PrintComparison()
46 e = tables->end(); it != e; ++it) { in PrintComparison()
72 const TableMap* tables = font->GetTableMap(); in PrintStats() local
73 for (TableMap::const_iterator it = tables->begin(), in PrintStats()
74 e = tables->end(); it != e; ++it) { in PrintStats()
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/
Dstats.cc44 const TableMap* tables = font->GetTableMap(); in PrintComparison() local
45 for (TableMap::const_iterator it = tables->begin(), in PrintComparison()
46 e = tables->end(); it != e; ++it) { in PrintComparison()
72 const TableMap* tables = font->GetTableMap(); in PrintStats() local
73 for (TableMap::const_iterator it = tables->begin(), in PrintStats()
74 e = tables->end(); it != e; ++it) { in PrintStats()
/third_party/ffmpeg/libavcodec/
Daptx.c401 ConstTables *tables) in aptx_invert_quantization() argument
406 qr = tables->quantize_intervals[idx] / 2; in aptx_invert_quantization()
410 …qr = rshift64_clip24((qr * (1LL<<32)) + MUL64(dither, tables->invert_quantize_dither_factors[idx])… in aptx_invert_quantization()
415 …factor_select = rshift32(factor_select + (tables->quantize_factor_select_offset[idx] * (1 << 15)),… in aptx_invert_quantization()
416 invert_quantize->factor_select = av_clip(factor_select, 0, tables->factor_max); in aptx_invert_quantization()
420 shift = (tables->factor_max - invert_quantize->factor_select) >> 8; in aptx_invert_quantization()
466 ConstTables *tables) in aptx_process_subband() argument
470 aptx_invert_quantization(invert_quantize, quantized_sample, dither, tables); in aptx_process_subband()
493 tables->prediction_order); in aptx_process_subband()
/third_party/glib/glib/pcre/
Dpcre_byte_order.c98 pcre_extra *extra_data, const unsigned char *tables) in pcre_pattern_to_host_byte_order() argument
101 pcre16_extra *extra_data, const unsigned char *tables) in pcre_pattern_to_host_byte_order()
119 re->tables = tables; in pcre_pattern_to_host_byte_order()
138 re->tables = tables; in pcre_pattern_to_host_byte_order()
/third_party/ffmpeg/libavformat/
Drtpenc_jpeg.c68 int tables, j; in ff_rtp_send_jpeg() local
74 tables = AV_RB16(&buf[i + 2]) / 65; in ff_rtp_send_jpeg()
75 if (i + 5 + tables * 65 > size) { in ff_rtp_send_jpeg()
79 if (nb_qtables + tables > 4) { in ff_rtp_send_jpeg()
84 for (j = 0; j < tables; j++) in ff_rtp_send_jpeg()
86 nb_qtables += tables; in ff_rtp_send_jpeg()

12345678910>>...48