Home
last modified time | relevance | path

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

/external/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 + 4 > 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()
/external/libxcam/cl_kernel/
Dkernel_geo_map.cl25 __read_only image2d_t geo_table, float2 table_pos, float step_x,
34 (min (table_pos.x, table_pos.y) < 0.0f) ||
35 (max (table_pos.x, table_pos.y) > 1.0f);
36 input_pos[i] = read_imagef (geo_table, sampler, table_pos).xy;
43 table_pos.x += step_x;
/external/v8/src/asmjs/
Dasm-parser.cc1310 int table_pos = 0; in SwitchStatement() local
1315 current_function_builder_->EmitWithI32V(kExprBrIf, table_pos++); in SwitchStatement()
1317 current_function_builder_->EmitWithI32V(kExprBr, table_pos++); in SwitchStatement()