Home
last modified time | relevance | path

Searched refs:nbi (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/npm/node_modules/jsbn/
Dindex.js25 function nbi() { return new BigInteger(null); } function
129 function nbv(i) { var r = nbi(); r.fromInt(i); return r; }
207 function bnNegate() { var r = nbi(); BigInteger.ZERO.subTo(this,r); return r; }
365 if(r == null) r = nbi();
366 var y = nbi(), ts = this.s, ms = m.s;
375 var i = r.t, j = i-ys, t = (q==null)?nbi():q;
405 var r = nbi();
465 var r = nbi();
474 var r = nbi();
517 var r = nbi(), r2 = nbi(), g = z.convert(this), i = nbits(e)-1;
[all …]
/third_party/libxml2/
Ddict.c867 unsigned long key, okey, nbi = 0; in xmlDictLookup() local
905 nbi++; in xmlDictLookup()
947 nbi++; in xmlDictLookup()
985 if ((nbi > MAX_HASH_LEN) && in xmlDictLookup()
1007 unsigned long key, okey, nbi = 0; in xmlDictExists() local
1042 nbi++; in xmlDictExists()
1084 nbi++; in xmlDictExists()
1115 unsigned long okey, key, nbi = 0; in xmlDictQLookup() local
1143 nbi++; in xmlDictQLookup()
1170 nbi++; in xmlDictQLookup()
[all …]
/third_party/gettext/gnulib-local/lib/libxml/
Ddict.c870 unsigned long key, okey, nbi = 0; in xmlDictLookup() local
908 nbi++; in xmlDictLookup()
950 nbi++; in xmlDictLookup()
988 if ((nbi > MAX_HASH_LEN) && in xmlDictLookup()
1010 unsigned long key, okey, nbi = 0; in xmlDictExists() local
1045 nbi++; in xmlDictExists()
1087 nbi++; in xmlDictExists()
1118 unsigned long okey, key, nbi = 0; in xmlDictQLookup() local
1146 nbi++; in xmlDictQLookup()
1173 nbi++; in xmlDictQLookup()
[all …]
/third_party/python/Objects/
Dcomplexobject.c880 PyNumberMethods *nbr, *nbi = NULL; in complex_new_impl() local
939 nbi = Py_TYPE(i)->tp_as_number; in complex_new_impl()
940 if (nbi == NULL || in complex_new_impl()
941 (nbi->nb_float == NULL && nbi->nb_index == NULL && !PyComplex_Check(i))) in complex_new_impl()