Home
last modified time | relevance | path

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

/external/toybox/tests/files/bc/
Dprint.txt1 obase = 2
24 obase = 3
67 obase = 4
138 obase = 5
245 obase = 6
396 obase = 7
599 obase = 8
862 obase = 9
1193 obase = 11
1684 obase = 12
[all …]
Dmisc1.txt17 obase
36 (obase)
62 ++obase
63 --obase
Dmisc.txt7 obase = 9
/external/dtc/
Dconvert-dtsv0-lexer.l54 int obase, width; member
110 int obase = 16, width = 0;
122 obase = guess_table[i].obase;
126 obase = 16;
131 obase = cbase;
133 switch (obase) {
/external/python/cpython3/Objects/clinic/
Dlongobject.c.h6 long_new_impl(PyTypeObject *type, PyObject *x, PyObject *obase);
15 PyObject *obase = NULL; in long_new() local
18 &x, &obase)) { in long_new()
21 return_value = long_new_impl(type, x, obase); in long_new()
/external/blktrace/btreplay/
Dbtrecord.c100 static char *obase = "replay"; // Output file base variable
444 obase = optarg; in handle_args()
688 sprintf(ofile_name, "%s/%s.%s.%d", odir, iip->devnm, obase, iip->cpu); in stream_open()
707 obase, iip->cpu); in stream_open()
/external/boringssl/src/crypto/x509/
Dt_x509.c497 int X509_NAME_print(BIO *bp, X509_NAME *name, int obase) in X509_NAME_print() argument
502 l = 80 - 2 - obase; in X509_NAME_print()
/external/python/cpython3/Objects/
Dlongobject.c4784 long_subtype_new(PyTypeObject *type, PyObject *x, PyObject *obase);
4795 long_new_impl(PyTypeObject *type, PyObject *x, PyObject *obase) in long_new_impl() argument
4801 return long_subtype_new(type, x, obase); /* Wimp out */ in long_new_impl()
4803 if (obase != NULL) { in long_new_impl()
4810 if (obase == NULL) in long_new_impl()
4813 base = PyNumber_AsSsize_t(obase, NULL); in long_new_impl()
4845 long_subtype_new(PyTypeObject *type, PyObject *x, PyObject *obase) in long_subtype_new() argument
4851 tmp = (PyLongObject *)long_new_impl(&PyLong_Type, x, obase); in long_subtype_new()
/external/boringssl/src/include/openssl/
Dx509.h934 OPENSSL_EXPORT int X509_NAME_print(BIO *bp, X509_NAME *name, int obase);