Home
last modified time | relevance | path

Searched refs:newconst (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Python/
Dcompile.c7196 PyObject *newconst = PyTuple_New(n); in fold_tuple_on_constants() local
7197 if (newconst == NULL) { in fold_tuple_on_constants()
7204 PyTuple_SET_ITEM(newconst, i, constant); in fold_tuple_on_constants()
7206 if (merge_const_one(c, &newconst) == 0) { in fold_tuple_on_constants()
7207 Py_DECREF(newconst); in fold_tuple_on_constants()
7213 if (PyList_GET_ITEM(consts, index) == newconst) { in fold_tuple_on_constants()
7219 Py_DECREF(newconst); in fold_tuple_on_constants()
7223 if (PyList_Append(consts, newconst)) { in fold_tuple_on_constants()
7224 Py_DECREF(newconst); in fold_tuple_on_constants()
7228 Py_DECREF(newconst); in fold_tuple_on_constants()
/third_party/ltp/scripts/
Dcheckpatch.pl6660 my $newconst = $const;
6661 $newconst =~ s/${Int_type}$//;
6671 $fixed[$fixlinenr] =~ s/\Q$cast\E$const\b/$newconst$suffix/;