Searched refs:bytemask (Results 1 – 12 of 12) sorted by relevance
/external/mesa3d/src/panfrost/bifrost/ |
D | bi_liveness.c | 36 unsigned bytemask = bi_bytemask_of_read_components(ins, node); in bi_liveness_ins_update() local 38 pan_liveness_gen(live, node, max, bytemask); in bi_liveness_ins_update()
|
D | bir.c | 80 bi_from_bytemask(uint16_t bytemask, unsigned bytes) in bi_from_bytemask() argument 85 bool a = (bytemask & (1 << c)) != 0; in bi_from_bytemask() 88 assert(((bytemask & (1 << q)) != 0) == a); in bi_from_bytemask()
|
D | compiler.h | 656 uint16_t bi_from_bytemask(uint16_t bytemask, unsigned bytes);
|
/external/mesa3d/src/panfrost/midgard/ |
D | midgard_liveness.c | 36 unsigned bytemask = mir_bytemask_of_read_components(ins, node); in mir_liveness_ins_update() local 38 pan_liveness_gen(live, node, max, bytemask); in mir_liveness_ins_update()
|
D | mir.c | 176 mir_from_bytemask(uint16_t bytemask, unsigned bits) in mir_from_bytemask() argument 182 bool a = (bytemask & (1 << c)) != 0; in mir_from_bytemask() 185 assert(((bytemask & (1 << q)) != 0) == a); in mir_from_bytemask() 223 mir_set_bytemask(midgard_instruction *ins, uint16_t bytemask) in mir_set_bytemask() argument 226 ins->mask = mir_from_bytemask(bytemask, type_size); in mir_set_bytemask()
|
D | midgard_schedule.c | 500 unsigned bytemask = mir_bytemask_of_read_components_index(ins, i); in mir_pipeline_count() local 502 unsigned max = util_logbase2(bytemask) + 1; in mir_pipeline_count() 577 unsigned bytemask = mir_bytemask(ins); in mir_live_effect() local 578 bytemask = util_next_power_of_two(bytemask + 1) - 1; in mir_live_effect() 579 free_live += util_bitcount(liveness[ins->dest] & bytemask); in mir_live_effect() 582 liveness[ins->dest] &= ~bytemask; in mir_live_effect() 599 unsigned bytemask = mir_bytemask_of_read_components(ins, S); in mir_live_effect() local 600 bytemask = util_next_power_of_two(bytemask + 1) - 1; in mir_live_effect() 603 new_live += util_bitcount(bytemask & ~(liveness[S])); in mir_live_effect() 606 liveness[S] |= bytemask; in mir_live_effect()
|
D | compiler.h | 508 uint16_t mir_from_bytemask(uint16_t bytemask, unsigned bits); 511 void mir_set_bytemask(midgard_instruction *ins, uint16_t bytemask);
|
D | midgard_compile.c | 1054 unsigned bytemask = pan_to_bytemask(dsize, nir_mask); in mir_set_intr_mask() local 1056 mir_set_bytemask(ins, bytemask); in mir_set_intr_mask()
|
/external/llvm-project/lldb/source/Plugins/Instruction/ARM/ |
D | EmulateInstructionARM.h | 163 void CPSRWriteByInstr(uint32_t value, uint32_t bytemask,
|
D | EmulateInstructionARM.cpp | 14030 void EmulateInstructionARM::CPSRWriteByInstr(uint32_t value, uint32_t bytemask, in CPSRWriteByInstr() argument 14036 if (BitIsSet(bytemask, 3)) { in CPSRWriteByInstr() 14042 if (BitIsSet(bytemask, 2)) { in CPSRWriteByInstr() 14046 if (BitIsSet(bytemask, 1)) { in CPSRWriteByInstr() 14054 if (BitIsSet(bytemask, 0)) { in CPSRWriteByInstr()
|
/external/llvm-project/llvm/test/MC/Disassembler/AArch64/ |
D | neon-instructions.txt | 110 # Vector Move Immediate - bytemask, per doubleword 111 # Vector Move Immediate - bytemask, one doubleword
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | neon-instructions.txt | 110 # Vector Move Immediate - bytemask, per doubleword 111 # Vector Move Immediate - bytemask, one doubleword
|