Home
last modified time | relevance | path

Searched refs:m_slots (Results 1 – 25 of 65) sorted by relevance

123

/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_instr_alugroup.cpp35 std::fill(m_slots.begin(), m_slots.end(), nullptr); in AluGroup()
98 if (m_slots[4] || s_max_slots < 5) in add_trans_instructions()
119 if (!instr->has_alu_flag(alu_is_trans) && !m_slots[instr->dest_chan()]) { in add_trans_instructions()
122 while (!m_slots[used_slot] && used_slot >= 0) in add_trans_instructions()
136 m_slots[4] = instr; in add_trans_instructions()
142 if (!instr->has_alu_flag(alu_is_trans) && !m_slots[instr->dest_chan()]) in add_trans_instructions()
143 m_slots[instr->dest_chan()] = in add_trans_instructions()
155 if (!m_slots[i]) in free_slots()
196 if (!m_slots[preferred_chan]) { in add_vec_instructions()
219 while (m_slots[free_chan] && free_chan < 4) in add_vec_instructions()
[all …]
Dsfn_instr_alugroup.h54 auto begin() {return m_slots.begin(); } in begin()
55 auto end() {return m_slots.begin() + s_max_slots; } in end()
56 auto begin() const {return m_slots.begin(); } in begin()
57 auto end() const {return m_slots.begin() + s_max_slots; } in end()
77 bool has_lds_group_start() const { return m_slots[0] ? in has_lds_group_start()
78 m_slots[0]->has_alu_flag(alu_lds_group_start) : false;} in has_lds_group_start()
100 Slots m_slots; variable
/third_party/python/Objects/
Dmoduleobject.c196 if (module->m_slots) { in _PyModule_CreateInitialized()
281 for (cur_slot = def->m_slots; cur_slot && cur_slot->slot; cur_slot++) { in PyModule_FromDefAndSpec2()
397 if (def->m_slots == NULL) { in PyModule_ExecDef()
401 for (cur_slot = def->m_slots; cur_slot && cur_slot->slot; cur_slot++) { in PyModule_ExecDef()
/third_party/python/Include/
Dmoduleobject.h81 struct PyModuleDef_Slot* m_slots; member
/third_party/python/Modules/
D_uuidmodule.c115 .m_slots = uuid_slots,
Dsymtablemodule.c119 .m_slots = symtable_slots,
Dspwdmodule.c250 .m_slots = spwdmodule_slots,
D_scproxy.c243 .m_slots = _scproxy_slots,
Dsyslogmodule.c351 .m_slots = syslog_slots,
Dxxlimited.c372 .m_slots = xx_slots,
Dgrpmodule.c353 .m_slots = grpmodule_slots,
Dpwdmodule.c362 .m_slots = pwdmodule_slots,
D_queuemodule.c434 .m_slots = queuemodule_slots,
D_stat.c625 .m_slots = stat_slots,
Dresource.c534 .m_slots = resource_slots,
D_curses_panel.c710 .m_slots = _curses_slots,
Dnismodule.c520 .m_slots = nis_slots,
Dfcntlmodule.c681 .m_slots = fcntl_slots,
D_dbmmodule.c559 .m_slots = _dbmmodule_slots,
Dtermios.c1043 .m_slots = termios_slots,
/third_party/python/Modules/_blake2/
Dblake2module.c136 .m_slots = _blake2_slots,
/third_party/python/Modules/_multiprocessing/
Dmultiprocessing.c273 .m_slots = multiprocessing_slots,
/third_party/python/Doc/c-api/
Dmodule.rst184 .. c:member:: PyModuleDef_Slot* m_slots
188 When using single-phase initialization, *m_slots* must be ``NULL``.
304 :c:member:`~PyModuleDef.m_slots`. Before it is returned, the ``PyModuleDef``
316 The *m_slots* member of the module definition must point to an array of
331 The *m_slots* array must be terminated by a slot with id 0.
377 order they appear in the *m_slots* array.
/third_party/python/Python/
Dpystate.c705 if (module->m_slots) { in PyState_FindModule()
725 if (def->m_slots) { in _PyState_AddModule()
778 if (def->m_slots) { in PyState_RemoveModule()
/third_party/python/Modules/cjkcodecs/
Dcjkcodecs.h421 .m_slots = _cjk_slots, \

123