Home
last modified time | relevance | path

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

/third_party/openssl/crypto/bn/
Dbn_lib.c85 static const BIGNUM const_one = in BN_value_one() local
88 return &const_one; in BN_value_one()
/third_party/python/Doc/c-api/
Dintro.rst597 PyObject *item = NULL, *const_one = NULL, *incremented_item = NULL;
612 const_one = PyLong_FromLong(1L);
613 if (const_one == NULL)
616 incremented_item = PyNumber_Add(item, const_one);
630 Py_XDECREF(const_one);