Home
last modified time | relevance | path

Searched refs:nb_int (Results 1 – 9 of 9) sorted by relevance

/third_party/mbedtls/tests/suites/
Dtest_suite_x509parse.function1039 void mbedtls_x509_crt_verify_max( char *ca_file, char *chain_dir, int nb_int,
1060 /* Load a chain with nb_int intermediates (from 01 to nb_int),
1061 * plus one "end-entity" cert (nb_int + 1) */
1063 nb_int + 1 );
/third_party/python/Objects/
Dtypeslots.inc27 {offsetof(PyNumberMethods, nb_int), offsetof(PyTypeObject, tp_as_number)},
Dabstract.c835 return nb && (nb->nb_index || nb->nb_int || nb->nb_float || PyComplex_Check(o)); in PyNumber_Check()
1546 if (m && m->nb_int) { /* This should include subclasses of int */ in PyNumber_Long()
1549 result = m->nb_int(o); in PyNumber_Long()
Dtypeobject.c5801 COPYNUM(nb_int); in inherit_slots()
8008 UNSLOT("__int__", nb_int, slot_nb_int, wrap_unaryfunc,
/third_party/python/Include/cpython/
Dobject.h125 unaryfunc nb_int; member
/third_party/python/Modules/
Dmathmodule.c2118 return PyFloat_Type.tp_as_number->nb_int(x); in math_trunc()
/third_party/python/Doc/c-api/
Dtypeobj.rst269 …| :c:member:`~PyNumberMethods.nb_int` | :c:type:`unaryfunc` | __…
2111 unaryfunc nb_int;
2168 .. c:member:: unaryfunc PyNumberMethods.nb_int
/third_party/protobuf/python/google/protobuf/pyext/
Dmessage.cc668 if ((nb = arg->ob_type->tp_as_number) != NULL && nb->nb_int != NULL) { in CheckAndGetInteger()
/third_party/python/Misc/
DHISTORY21978 - operator.isNumberType() now checks that the object has a nb_int or
22238 - PyNumber_Check() now checks that the object has a nb_int or nb_float