Lines Matching refs:base
40 /* Pick a random valid base. (When the fuzzed function takes extra
43 int base = _Py_HashBytes(data, size) % 37;
44 if (base == 1) {
45 // 1 is the only number between 0 and 36 that is not a valid base.
46 base = 0;
48 if (base == -1) {
51 if (base < 0) {
52 base = -base;
62 PyObject* l = PyLong_FromUnicodeObject(s, base);