Searched refs:m_slots (Results 1 – 25 of 65) sorted by relevance
123
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_instr_alugroup.cpp | 35 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 …]
|
D | sfn_instr_alugroup.h | 54 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/ |
D | moduleobject.c | 196 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/ |
D | moduleobject.h | 81 struct PyModuleDef_Slot* m_slots; member
|
/third_party/python/Modules/ |
D | _uuidmodule.c | 115 .m_slots = uuid_slots,
|
D | symtablemodule.c | 119 .m_slots = symtable_slots,
|
D | spwdmodule.c | 250 .m_slots = spwdmodule_slots,
|
D | _scproxy.c | 243 .m_slots = _scproxy_slots,
|
D | syslogmodule.c | 351 .m_slots = syslog_slots,
|
D | xxlimited.c | 372 .m_slots = xx_slots,
|
D | grpmodule.c | 353 .m_slots = grpmodule_slots,
|
D | pwdmodule.c | 362 .m_slots = pwdmodule_slots,
|
D | _queuemodule.c | 434 .m_slots = queuemodule_slots,
|
D | _stat.c | 625 .m_slots = stat_slots,
|
D | resource.c | 534 .m_slots = resource_slots,
|
D | _curses_panel.c | 710 .m_slots = _curses_slots,
|
D | nismodule.c | 520 .m_slots = nis_slots,
|
D | fcntlmodule.c | 681 .m_slots = fcntl_slots,
|
D | _dbmmodule.c | 559 .m_slots = _dbmmodule_slots,
|
D | termios.c | 1043 .m_slots = termios_slots,
|
/third_party/python/Modules/_blake2/ |
D | blake2module.c | 136 .m_slots = _blake2_slots,
|
/third_party/python/Modules/_multiprocessing/ |
D | multiprocessing.c | 273 .m_slots = multiprocessing_slots,
|
/third_party/python/Doc/c-api/ |
D | module.rst | 184 .. 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/ |
D | pystate.c | 705 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/ |
D | cjkcodecs.h | 421 .m_slots = _cjk_slots, \
|
123