Home
last modified time | relevance | path

Searched refs:record_size (Results 1 – 11 of 11) sorted by relevance

/third_party/ltp/utils/benchmark/ebizzy-0.3/
Debizzy.c80 static unsigned int record_size = sizeof(record_t); variable
127 chunk_size = record_size * 64 * 1024; in read_options()
222 if (chunk_size < record_size) { in read_options()
224 chunk_size, record_size); in read_options()
319 for (j = 0; j < chunk_size / record_size; j++) in write_pattern()
332 record_t *end = base + (size / record_size); in linear_search()
386 copy_size = (rand_num(chunk_size / record_size, &state) in search_mem()
387 + 1) * record_size; in search_mem()
399 key = rand_num(copy_size / record_size, &state); in search_mem()
408 bsearch(&key, copy, copy_size / record_size, in search_mem()
[all …]
/third_party/skia/third_party/externals/freetype/src/truetype/
Dttpload.c527 FT_ULong table_size, record_size; in tt_face_load_hdmx() local
548 record_size = FT_NEXT_ULONG( p ); in tt_face_load_hdmx()
561 if ( record_size >= 0xFFFF0000UL ) in tt_face_load_hdmx()
562 record_size &= 0xFFFFU; in tt_face_load_hdmx()
567 ( record_size > 0x10004UL || in tt_face_load_hdmx()
568 record_size < 4 ) ) ) in tt_face_load_hdmx()
579 if ( p + record_size > limit ) in tt_face_load_hdmx()
583 p += record_size; in tt_face_load_hdmx()
588 face->hdmx_record_size = record_size; in tt_face_load_hdmx()
624 FT_ULong record_size = face->hdmx_record_size; in tt_face_get_device_metrics() local
[all …]
/third_party/pcre2/pcre2/maint/
DGenerateUcd.py450 def write_records(records, record_size): argument
452 '/* %d bytes, record size %d */\n' % (len(records) * record_size, record_size))
722 record_size, record_struct = get_record_size_struct(list(records.keys())) variable
728 size = len(records) * record_size
906 write_records(records, record_size)
/third_party/ffmpeg/libavformat/
Danm.c172 int tmp, record_size; in read_packet() local
204 record_size = avio_rl16(pb); in read_packet()
208 pkt->size = av_get_packet(s->pb, pkt, record_size); in read_packet()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-layout-gpos-table.hh1165 unsigned int record_size = HBUINT16::static_size * (1 + len1 + len2); in intersects() local
1173 record = &StructAtOffset<const PairValueRecord> (record, record_size); in intersects()
1183 unsigned int record_size = HBUINT16::static_size * (1 + len1 + len2); in collect_glyphs() local
1186 c->input->add_array (&record->secondGlyph, len, record_size); in collect_glyphs()
1194 unsigned record_size = HBUINT16::static_size * (1 + len1 + len2); in collect_variation_indices() local
1203 record = &StructAtOffset<const PairValueRecord> (record, record_size); in collect_variation_indices()
1215 unsigned int record_size = HBUINT16::static_size * (1 + len1 + len2); in apply() local
1220 record_size); in apply()
1251 unsigned record_size = HBUINT16::static_size + Value::static_size * (len1 + len2); in subset() local
1269 record = &StructAtOffset<const PairValueRecord> (record, record_size); in subset()
[all …]
/third_party/ntfs-3g/libntfs-3g/
Dvolume.c949 u32 record_size; in ntfs_device_mount() local
1040 record_size = ntfs_mft_record_get_data_size(mrec); in ntfs_device_mount()
1041 if ((record_size <= sizeof(MFT_RECORD)) in ntfs_device_mount()
1042 || (record_size > vol->mft_record_size) in ntfs_device_mount()
1043 || memcmp(mrec, mrec2, record_size)) { in ntfs_device_mount()
Dinode.c1327 int record_size; in ntfs_inode_free_space() local
1345 record_size = le32_to_cpu(ctx->attr->length); in ntfs_inode_free_space()
1351 freed += record_size; in ntfs_inode_free_space()
/third_party/mesa3d/src/amd/common/
Dac_rgp.c649 uint32_t record_size; member
668 chunk->record_size = sizeof(struct sqtt_code_object_loader_events_record); in ac_sqtt_fill_loader_events()
681 uint32_t record_size; member
699 chunk->record_size = sizeof(struct sqtt_pso_correlation_record); in ac_sqtt_fill_pso_correlation()
/third_party/libbpf/src/
Dbtf.c2922 __u32 info_left, record_size; local
2952 record_size = *(__u32 *)info;
2953 if (record_size < ext_sec->min_rec_size ||
2954 record_size & 0x03) {
2956 ext_sec->desc, record_size);
2987 total_record_size = sec_hdrlen + (__u64)num_records * record_size;
3001 ext_info->rec_size = record_size;
/third_party/skia/third_party/externals/freetype/docs/oldlogs/
DChangeLog.25727 `record_size'.
DChangeLog.237325 * src/truetype/ttpload.c (tt_face_load_hdmx): Handle `record_size'