/third_party/skia/third_party/externals/freetype/src/cff/ |
D | cffload.c | 264 FT_Byte offsize; in cff_index_init() local 270 if ( FT_READ_BYTE( offsize ) ) in cff_index_init() 273 if ( offsize < 1 || offsize > 4 ) in cff_index_init() 280 idx->off_size = offsize; in cff_index_init() 281 size = (FT_ULong)( count + 1 ) * offsize; in cff_index_init() 285 if ( FT_STREAM_SKIP( size - offsize ) ) in cff_index_init() 350 FT_Byte offsize = idx->off_size; in cff_index_load_offsets() local 357 data_size = (FT_ULong)( idx->count + 1 ) * offsize; in cff_index_load_offsets() 368 switch ( offsize ) in cff_index_load_offsets()
|
/third_party/freetype/src/cff/ |
D | cffload.c | 264 FT_Byte offsize; in cff_index_init() local 270 if ( FT_READ_BYTE( offsize ) ) in cff_index_init() 273 if ( offsize < 1 || offsize > 4 ) in cff_index_init() 280 idx->off_size = offsize; in cff_index_init() 281 size = (FT_ULong)( count + 1 ) * offsize; in cff_index_init() 285 if ( FT_STREAM_SKIP( size - offsize ) ) in cff_index_init() 350 FT_Byte offsize = idx->off_size; in cff_index_load_offsets() local 357 data_size = (FT_ULong)( idx->count + 1 ) * offsize; in cff_index_load_offsets() 368 switch ( offsize ) in cff_index_load_offsets()
|
/third_party/flutter/skia/third_party/externals/freetype/src/cff/ |
D | cffload.c | 265 FT_Byte offsize; in cff_index_init() local 271 if ( FT_READ_BYTE( offsize ) ) in cff_index_init() 274 if ( offsize < 1 || offsize > 4 ) in cff_index_init() 281 idx->off_size = offsize; in cff_index_init() 282 size = (FT_ULong)( count + 1 ) * offsize; in cff_index_init() 286 if ( FT_STREAM_SKIP( size - offsize ) ) in cff_index_init() 351 FT_Byte offsize = idx->off_size; in cff_index_load_offsets() local 358 data_size = (FT_ULong)( idx->count + 1 ) * offsize; in cff_index_load_offsets() 369 switch ( offsize ) in cff_index_load_offsets()
|
/third_party/skia/third_party/externals/freetype/src/cid/ |
D | cidload.h | 40 FT_UInt offsize );
|
D | cidload.c | 44 FT_UInt offsize ) in cid_get_offset() argument 50 for ( result = 0; offsize > 0; offsize-- ) in cid_get_offset()
|
/third_party/freetype/src/cid/ |
D | cidload.h | 40 FT_UInt offsize );
|
D | cidload.c | 44 FT_UInt offsize ) in cid_get_offset() argument 50 for ( result = 0; offsize > 0; offsize-- ) in cid_get_offset()
|
/third_party/flutter/skia/third_party/externals/freetype/src/cid/ |
D | cidload.h | 41 FT_Byte offsize );
|
D | cidload.c | 44 FT_Byte offsize ) in cid_get_offset() argument 50 for ( result = 0; offsize > 0; offsize-- ) in cid_get_offset()
|
/third_party/elfutils/tests/ |
D | elfstrmerge.c | 644 const size_t offsize = gelf_fsize (elf, ELF_T_OFF, 1, EV_CURRENT); in main() local 645 newehdr.e_shoff = ((last_offset + offsize - 1) in main() 646 & ~((GElf_Off) (offsize - 1))); in main()
|
/third_party/elfutils/src/ |
D | elfcompress.c | 1241 const size_t offsize = gelf_fsize (elfnew, ELF_T_OFF, 1, EV_CURRENT); in process_file() local 1242 newehdr.e_shoff = ((last_offset + offsize - 1) in process_file() 1243 & ~((GElf_Off) (offsize - 1))); in process_file()
|
D | strip.c | 2537 const size_t offsize = gelf_fsize (elf, ELF_T_OFF, 1, EV_CURRENT); in handle_elf() local 2538 newehdr->e_shoff = ((lastsec_offset + lastsec_size + offsize - 1) in handle_elf() 2539 & ~((GElf_Off) (offsize - 1))); in handle_elf()
|
D | readelf.c | 7916 uint8_t offsize; in print_debug_units() local 7956 dwarf_cu_die (cu, &result, NULL, &abbroffset, &addrsize, &offsize, in print_debug_units() 7976 (uint64_t) offset, version, abbroffset, addrsize, offsize, in print_debug_units() 7986 (uint64_t) offset, version, abbroffset, addrsize, offsize); in print_debug_units() 8029 .offset_size = offsize in print_debug_units() 8139 &addrsize, &offsize, &unit_id, &subdie_off); in print_debug_units() 8151 addrsize, offsize); in print_debug_units()
|
/third_party/skia/third_party/externals/imgui/ |
D | imstb_truetype.h | 1175 int count, start, offsize; in stbtt__cff_get_index() local 1179 offsize = stbtt__buf_get8(b); in stbtt__cff_get_index() 1180 STBTT_assert(offsize >= 1 && offsize <= 4); in stbtt__cff_get_index() 1181 stbtt__buf_skip(b, offsize * count); in stbtt__cff_get_index() 1182 stbtt__buf_skip(b, stbtt__buf_get(b, offsize) - 1); in stbtt__cff_get_index() 1245 int count, offsize, start, end; in stbtt__cff_index_get() local 1248 offsize = stbtt__buf_get8(&b); in stbtt__cff_index_get() 1250 STBTT_assert(offsize >= 1 && offsize <= 4); in stbtt__cff_index_get() 1251 stbtt__buf_skip(&b, i*offsize); in stbtt__cff_index_get() 1252 start = stbtt__buf_get(&b, offsize); in stbtt__cff_index_get() [all …]
|
/third_party/mesa3d/src/imgui/ |
D | imstb_truetype.h | 1175 int count, start, offsize; in stbtt__cff_get_index() local 1179 offsize = stbtt__buf_get8(b); in stbtt__cff_get_index() 1180 STBTT_assert(offsize >= 1 && offsize <= 4); in stbtt__cff_get_index() 1181 stbtt__buf_skip(b, offsize * count); in stbtt__cff_get_index() 1182 stbtt__buf_skip(b, stbtt__buf_get(b, offsize) - 1); in stbtt__cff_get_index() 1245 int count, offsize, start, end; in stbtt__cff_index_get() local 1248 offsize = stbtt__buf_get8(&b); in stbtt__cff_index_get() 1250 STBTT_assert(offsize >= 1 && offsize <= 4); in stbtt__cff_index_get() 1251 stbtt__buf_skip(&b, i*offsize); in stbtt__cff_index_get() 1252 start = stbtt__buf_get(&b, offsize); in stbtt__cff_index_get() [all …]
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imstb_truetype.h | 1159 int count, start, offsize; in stbtt__cff_get_index() local 1163 offsize = stbtt__buf_get8(b); in stbtt__cff_get_index() 1164 STBTT_assert(offsize >= 1 && offsize <= 4); in stbtt__cff_get_index() 1165 stbtt__buf_skip(b, offsize * count); in stbtt__cff_get_index() 1166 stbtt__buf_skip(b, stbtt__buf_get(b, offsize) - 1); in stbtt__cff_get_index() 1229 int count, offsize, start, end; in stbtt__cff_index_get() local 1232 offsize = stbtt__buf_get8(&b); in stbtt__cff_index_get() 1234 STBTT_assert(offsize >= 1 && offsize <= 4); in stbtt__cff_index_get() 1235 stbtt__buf_skip(&b, i*offsize); in stbtt__cff_index_get() 1236 start = stbtt__buf_get(&b, offsize); in stbtt__cff_index_get() [all …]
|