Home
last modified time | relevance | path

Searched refs:current_param (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Modules/_sqlite/
Dstatement.c230 PyObject* current_param; in pysqlite_statement_bind_parameters() local
264 current_param = Py_NewRef(item); in pysqlite_statement_bind_parameters()
267 current_param = Py_XNewRef(item); in pysqlite_statement_bind_parameters()
269 current_param = PySequence_GetItem(parameters, i); in pysqlite_statement_bind_parameters()
271 if (!current_param) { in pysqlite_statement_bind_parameters()
275 if (!_need_adapt(current_param)) { in pysqlite_statement_bind_parameters()
276 adapted = current_param; in pysqlite_statement_bind_parameters()
278 …adapted = pysqlite_microprotocols_adapt(current_param, (PyObject*)pysqlite_PrepareProtocolType, cu… in pysqlite_statement_bind_parameters()
279 Py_DECREF(current_param); in pysqlite_statement_bind_parameters()
314 current_param = Py_XNewRef(item); in pysqlite_statement_bind_parameters()
[all …]
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_vertexstageexport.h53 unsigned current_param() const;
Dsfn_vertexstageexport.cpp331 unsigned VertexStageWithOutputInfo::current_param() const in current_param() function in r600::VertexStageWithOutputInfo
341 … m_last_param_export = new ExportInstruction(current_param(), primid, ExportInstruction::et_param); in finalize_exports()