OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bitwiseto
(Results
1 - 2
of
2
) sorted by null
/external/v8/benchmarks/
crypto.js
764
this.
bitwiseTo
(BigInteger.ONE.shiftLeft(a-1),op_or,this);
835
function bnAnd(a) { var r = nbi(); this.
bitwiseTo
(a,op_and,r); return r; }
839
function bnOr(a) { var r = nbi(); this.
bitwiseTo
(a,op_or,r); return r; }
843
function bnXor(a) { var r = nbi(); this.
bitwiseTo
(a,op_xor,r); return r; }
847
function bnAndNot(a) { var r = nbi(); this.
bitwiseTo
(a,op_andnot,r); return r; }
921
this.
bitwiseTo
(r,op,r);
[
all
...]
/external/webkit/SunSpider/tests/v8-v4/
v8-crypto.js
756
this.
bitwiseTo
(BigInteger.ONE.shiftLeft(a-1),op_or,this);
827
function bnAnd(a) { var r = nbi(); this.
bitwiseTo
(a,op_and,r); return r; }
831
function bnOr(a) { var r = nbi(); this.
bitwiseTo
(a,op_or,r); return r; }
835
function bnXor(a) { var r = nbi(); this.
bitwiseTo
(a,op_xor,r); return r; }
839
function bnAndNot(a) { var r = nbi(); this.
bitwiseTo
(a,op_andnot,r); return r; }
913
this.
bitwiseTo
(r,op,r);
[
all
...]
Completed in 102 milliseconds