Searched refs:isEven (Results 1 - 8 of 8) sorted by relevance

/external/v8/benchmarks/
H A Dcrypto.js636 if(e < 256 || m.isEven()) z = new Classic(m); else z = new Montgomery(m);
654 BigInteger.prototype.isEven = bnpIsEven;
765 if(this.isEven()) this.dAddOffset(1,0); // force odd
1109 else if(m.isEven())
1198 var ac = m.isEven();
1199 if((this.isEven() && ac) || m.signum() == 0) return BigInteger.ZERO;
1203 while(u.isEven()) {
1206 if(!a.isEven() || !b.isEven()) { a.addTo(this,a); b.subTo(m,b); }
1209 else if(!b.isEven())
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-crypto.js628 if(e < 256 || m.isEven()) z = new Classic(m); else z = new Montgomery(m);
646 BigInteger.prototype.isEven = bnpIsEven;
757 if(this.isEven()) this.dAddOffset(1,0); // force odd
1101 else if(m.isEven())
1190 var ac = m.isEven();
1191 if((this.isEven() && ac) || m.signum() == 0) return BigInteger.ZERO;
1195 while(u.isEven()) {
1198 if(!a.isEven() || !b.isEven()) { a.addTo(this,a); b.subTo(m,b); }
1201 else if(!b.isEven())
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-crypto.js628 if(e < 256 || m.isEven()) z = new Classic(m); else z = new Montgomery(m);
646 BigInteger.prototype.isEven = bnpIsEven;
757 if(this.isEven()) this.dAddOffset(1,0); // force odd
1101 else if(m.isEven())
1190 var ac = m.isEven();
1191 if((this.isEven() && ac) || m.signum() == 0) return BigInteger.ZERO;
1195 while(u.isEven()) {
1198 if(!a.isEven() || !b.isEven()) { a.addTo(this,a); b.subTo(m,b); }
1201 else if(!b.isEven())
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-crypto.js628 if(e < 256 || m.isEven()) z = new Classic(m); else z = new Montgomery(m);
646 BigInteger.prototype.isEven = bnpIsEven;
757 if(this.isEven()) this.dAddOffset(1,0); // force odd
1101 else if(m.isEven())
1190 var ac = m.isEven();
1191 if((this.isEven() && ac) || m.signum() == 0) return BigInteger.ZERO;
1195 while(u.isEven()) {
1198 if(!a.isEven() || !b.isEven()) { a.addTo(this,a); b.subTo(m,b); }
1201 else if(!b.isEven())
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DTimelinePanel.js578 var isEven = !(i % 2);
596 listRowElement.row.update(record, isEven, this._calculator, visibleTop);
597 graphRowElement.row.update(record, isEven, this._calculator, width, this._expandOffset, i);
773 update: function(record, isEven, calculator, offset)
779 this.element.className = "timeline-tree-item timeline-category-" + record.category.name + (isEven ? " even" : "");
833 update: function(record, isEven, calculator, clientWidth, expandOffset, index)
836 this.element.className = "timeline-graph-side timeline-category-" + record.category.name + (isEven ? " even" : "");
H A DTimelineOverviewPane.js406 WebInspector.TimelineCategoryGraph = function(category, isEven)
411 this._graphElement.className = "timeline-graph-side timeline-overview-graph-side" + (isEven ? " even" : "");
/external/guava/guava-tests/test/com/google/common/collect/
H A DIteratorsTest.java273 final Predicate<Integer> isEven = new Predicate<Integer>() {
282 return Iterators.filter(list.iterator(), isEven);
/external/clang/lib/AST/
H A DExpr.cpp3097 bool isEven = Comp == "even"; local
3107 else if (isEven)

Completed in 112 milliseconds