Searched refs:nb_int (Results 1 – 9 of 9) sorted by relevance
/third_party/mbedtls/tests/suites/ |
D | test_suite_x509parse.function | 1039 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/ |
D | typeslots.inc | 27 {offsetof(PyNumberMethods, nb_int), offsetof(PyTypeObject, tp_as_number)},
|
D | abstract.c | 835 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()
|
D | typeobject.c | 5801 COPYNUM(nb_int); in inherit_slots() 8008 UNSLOT("__int__", nb_int, slot_nb_int, wrap_unaryfunc,
|
/third_party/python/Include/cpython/ |
D | object.h | 125 unaryfunc nb_int; member
|
/third_party/python/Modules/ |
D | mathmodule.c | 2118 return PyFloat_Type.tp_as_number->nb_int(x); in math_trunc()
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 269 …| :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/ |
D | message.cc | 668 if ((nb = arg->ob_type->tp_as_number) != NULL && nb->nb_int != NULL) { in CheckAndGetInteger()
|
/third_party/python/Misc/ |
D | HISTORY | 21978 - 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
|