Home
last modified time | relevance | path

Searched refs:uncompacted (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/intel/compiler/
Dbrw_eu_compact.c676 uint32_t uncompacted = devinfo->gen >= 8 /* 17b/G45; 19b/IVB+ */ in set_control_index() local
689 uncompacted |= brw_inst_bits(src, 90, 89) << 17; /* 2b */ in set_control_index()
692 if (control_index_table[i] == uncompacted) { in set_control_index()
705 uint32_t uncompacted = devinfo->gen >= 8 /* 18b/G45+; 21b/BDW+ */ in set_datatype_index() local
713 if (datatype_table[i] == uncompacted) { in set_datatype_index()
726 uint16_t uncompacted = /* 15b */ in set_subreg_index() local
731 uncompacted |= brw_inst_bits(src, 100, 96) << 10; /* 5b */ in set_subreg_index()
734 if (subreg_table[i] == uncompacted) { in set_subreg_index()
744 get_src_index(uint16_t uncompacted, in get_src_index() argument
748 if (src_index_table[i] == uncompacted) { in get_src_index()
[all …]
Dtest_eu_compact.cpp37 brw_inst uncompacted; in test_compact_instruction() local
39 brw_uncompact_instruction(p->devinfo, &uncompacted, &dst); in test_compact_instruction()
40 if (memcmp(&uncompacted, &src, sizeof(src))) { in test_compact_instruction()
41 brw_debug_compact_uncompact(p->devinfo, &src, &uncompacted); in test_compact_instruction()
Dbrw_eu.c347 brw_inst uncompacted; in brw_disassemble() local
360 brw_uncompact_instruction(devinfo, &uncompacted, compacted); in brw_disassemble()
361 insn = &uncompacted; in brw_disassemble()
Dbrw_eu_validate.c1269 brw_inst uncompacted; in brw_validate_instructions() local
1273 brw_uncompact_instruction(devinfo, &uncompacted, compacted); in brw_validate_instructions()
1274 inst = &uncompacted; in brw_validate_instructions()
Dbrw_eu.h577 brw_inst *orig, brw_inst *uncompacted);
/external/syzkaller/pkg/db/
Ddb.go30 uncompacted int // number of records in the file member
47 db.Version, db.Records, db.uncompacted = deserializeDB(bufio.NewReader(f))
49 if len(db.Records) == 0 || db.uncompacted/10*9 > len(db.Records) {
66 db.uncompacted++
75 db.uncompacted++
79 if db.uncompacted/10*9 > len(db.Records) {
123 db.uncompacted = len(db.Records)
177 func deserializeDB(r *bufio.Reader) (version uint64, records map[string]Record, uncompacted int) {
194 uncompacted++