Searched refs:oldvalue (Results 1 - 10 of 10) sorted by relevance
/third_party/ltp/testcases/kernel/syscalls/syslog/ |
H A D | syslog05 | 63 oldvalue=`grep -c "syslogtst: info to console test." /var/log/messages` 65 oldvalue=0 82 if [ "x$(( $newvalue - $oldvalue ))" != "x1" ]; then
|
H A D | syslog02 | 73 oldvalue=`grep -c "syslogtst: mail $level test\." $MAILLOG` 75 oldvalue=0 91 diff=$(( $newvalue - $oldvalue ))
|
H A D | syslog08 | 73 oldvalue=`grep -c "syslogtst: $facility info test." /var/log/messages` 75 oldvalue=0 102 diff=$(( $newvalue - $oldvalue ))
|
/third_party/python/Objects/ |
H A D | frameobject.c | 1253 PyObject *oldvalue = fast[i]; in _PyFrame_LocalsToFast() local 1258 assert(oldvalue != NULL && PyCell_Check(oldvalue)); in _PyFrame_LocalsToFast() 1259 cell = oldvalue; in _PyFrame_LocalsToFast() 1261 else if (kind & CO_FAST_CELL && oldvalue != NULL) { in _PyFrame_LocalsToFast() 1263 if (PyCell_Check(oldvalue) && in _PyFrame_LocalsToFast() 1266 cell = oldvalue; in _PyFrame_LocalsToFast() 1272 oldvalue = PyCell_GET(cell); in _PyFrame_LocalsToFast() 1273 if (value != oldvalue) { in _PyFrame_LocalsToFast() 1274 Py_XDECREF(oldvalue); in _PyFrame_LocalsToFast() [all...] |
H A D | dictobject.c | 2280 PyObject *oldvalue; in _PyDict_FromKeys() local 2291 while (_PyDict_Next(iterable, &pos, &key, &oldvalue, &hash)) { in _PyDict_FromKeys() 4309 PyObject *oldvalue = PyTuple_GET_ITEM(result, 1); in dictiter_iternextitem() local 4314 Py_DECREF(oldvalue); in dictiter_iternextitem() 4443 PyObject *oldvalue = PyTuple_GET_ITEM(result, 1); in dictreviter_iternext() local 4448 Py_DECREF(oldvalue); in dictreviter_iternext()
|
/third_party/python/Lib/ |
H A D | _osx_support.py | 146 oldvalue = _config_vars.get(cv, '') 147 if (oldvalue != newvalue) and (_INITPRE + cv not in _config_vars): 148 _config_vars[_INITPRE + cv] = oldvalue
|
H A D | pdb.py | 401 for expr, oldvalue in displaying.items(): 406 if newvalue is not oldvalue and newvalue != oldvalue: 409 (expr, newvalue, oldvalue))
|
/third_party/python/Python/ |
H A D | errors.c | 35 PyObject *oldtype, *oldvalue, *oldtraceback; in _PyErr_Restore() local 47 oldvalue = tstate->curexc_value; in _PyErr_Restore() 55 Py_XDECREF(oldvalue); in _PyErr_Restore()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | linearize.c | 1462 pseudo_t oldvalue = linearize_load_gen(ep, &ad); in linearize_assignment() local 1482 oldvalue = cast_pseudo(ep, oldvalue, target->ctype, ctype); in linearize_assignment() 1484 dst = add_binary_op(ep, ctype, opcode, oldvalue, value); in linearize_assignment()
|
/third_party/python/Modules/ |
H A D | itertoolsmodule.c | 261 PyObject *newvalue, *newkey, *oldvalue; in groupby_step() local 278 oldvalue = gbo->currvalue; in groupby_step() 281 Py_XDECREF(oldvalue); in groupby_step()
|
Completed in 24 milliseconds