Home
last modified time | relevance | path

Searched refs:table_pos (Results 1 – 8 of 8) sorted by relevance

/third_party/flutter/skia/third_party/externals/freetype/src/sfnt/
Dttmtx.c238 FT_ULong table_pos, table_size, table_end; in tt_face_get_metrics() local
253 table_pos = face->vert_metrics_offset; in tt_face_get_metrics()
259 table_pos = face->horz_metrics_offset; in tt_face_get_metrics()
263 table_end = table_pos + table_size; in tt_face_get_metrics()
271 table_pos += 4 * gindex; in tt_face_get_metrics()
272 if ( table_pos + 4 > table_end ) in tt_face_get_metrics()
275 if ( FT_STREAM_SEEK( table_pos ) || in tt_face_get_metrics()
282 table_pos += 4 * ( k - 1 ); in tt_face_get_metrics()
283 if ( table_pos + 2 > table_end ) in tt_face_get_metrics()
286 if ( FT_STREAM_SEEK( table_pos ) || in tt_face_get_metrics()
[all …]
Dttload.c829 FT_ULong table_pos, table_len; in tt_face_load_name() local
879 table_pos = FT_STREAM_POS(); in tt_face_load_name()
891 storage_start = table_pos + 6 + 12 * table->numNameRecords; in tt_face_load_name()
892 storage_limit = table_pos + table_len; in tt_face_load_name()
927 entry->stringOffset += table_pos + table->storageOffset; in tt_face_load_name()
939 (void)FT_STREAM_SEEK( table_pos + 6 ); in tt_face_load_name()
963 entry->stringOffset += table_pos + table->storageOffset; in tt_face_load_name()
/third_party/skia/third_party/externals/freetype/src/sfnt/
Dttmtx.c237 FT_ULong table_pos, table_size, table_end; in tt_face_get_metrics() local
252 table_pos = face->vert_metrics_offset; in tt_face_get_metrics()
258 table_pos = face->horz_metrics_offset; in tt_face_get_metrics()
262 table_end = table_pos + table_size; in tt_face_get_metrics()
270 table_pos += 4 * gindex; in tt_face_get_metrics()
271 if ( table_pos + 4 > table_end ) in tt_face_get_metrics()
274 if ( FT_STREAM_SEEK( table_pos ) || in tt_face_get_metrics()
281 table_pos += 4 * ( k - 1 ); in tt_face_get_metrics()
282 if ( table_pos + 2 > table_end ) in tt_face_get_metrics()
285 if ( FT_STREAM_SEEK( table_pos ) || in tt_face_get_metrics()
[all …]
Dttload.c837 FT_ULong table_pos, table_len; in tt_face_load_name() local
889 table_pos = FT_STREAM_POS(); in tt_face_load_name()
901 storage_start = table_pos + 6 + 12 * table->numNameRecords; in tt_face_load_name()
902 storage_limit = table_pos + table_len; in tt_face_load_name()
937 entry->stringOffset += table_pos + table->storageOffset; in tt_face_load_name()
955 (void)FT_STREAM_SEEK( table_pos + 6 ); in tt_face_load_name()
980 entry->stringOffset += table_pos + table->storageOffset; in tt_face_load_name()
/third_party/freetype/src/sfnt/
Dttmtx.c237 FT_ULong table_pos, table_size, table_end; in tt_face_get_metrics() local
252 table_pos = face->vert_metrics_offset; in tt_face_get_metrics()
258 table_pos = face->horz_metrics_offset; in tt_face_get_metrics()
262 table_end = table_pos + table_size; in tt_face_get_metrics()
270 table_pos += 4 * gindex; in tt_face_get_metrics()
271 if ( table_pos + 4 > table_end ) in tt_face_get_metrics()
274 if ( FT_STREAM_SEEK( table_pos ) || in tt_face_get_metrics()
281 table_pos += 4 * ( k - 1 ); in tt_face_get_metrics()
282 if ( table_pos + 2 > table_end ) in tt_face_get_metrics()
285 if ( FT_STREAM_SEEK( table_pos ) || in tt_face_get_metrics()
[all …]
Dttload.c836 FT_ULong table_pos, table_len; in tt_face_load_name() local
886 table_pos = FT_STREAM_POS(); in tt_face_load_name()
898 storage_start = table_pos + 6 + 12 * table->numNameRecords; in tt_face_load_name()
899 storage_limit = table_pos + table_len; in tt_face_load_name()
934 entry->stringOffset += table_pos + table->storageOffset; in tt_face_load_name()
946 (void)FT_STREAM_SEEK( table_pos + 6 ); in tt_face_load_name()
970 entry->stringOffset += table_pos + table->storageOffset; in tt_face_load_name()
/third_party/ffmpeg/libavcodec/
Dvima.c97 unsigned int dest_pos, table_pos; in decode_init() local
99 for (table_pos = 0, dest_pos = start_pos; in decode_init()
100 table_pos < FF_ARRAY_ELEMS(ff_adpcm_step_table); in decode_init()
101 table_pos++, dest_pos += 64) { in decode_init()
104 table_value = ff_adpcm_step_table[table_pos]; in decode_init()
/third_party/flatbuffers/rust/flatbuffers/src/
Dverifier.rs321 table_pos: usize, in visit_table()
323 let vtable_pos = self.deref_soffset(table_pos)?; in visit_table()
337 pos: table_pos, in visit_table()