Searched defs:cdr (Results 1 - 4 of 4) sorted by relevance

/external/v8/benchmarks/
H A Dearley-boyer.js536 function sc_Pair(car, cdr) {
538 this.cdr = cdr;
551 if (sc_isPair(current.cdr)) {
553 current = current.cdr;
554 } else if (current.cdr !== null) {
555 res += " . " + writeOrDisplay(current.cdr);
557 } else // current.cdr == null
582 return (comp(p1.car, p2.car) && comp(p1.cdr, p2.cdr));
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-earley-boyer.js530 function sc_Pair(car, cdr) {
532 this.cdr = cdr;
545 if (sc_isPair(current.cdr)) {
547 current = current.cdr;
548 } else if (current.cdr !== null) {
549 res += " . " + writeOrDisplay(current.cdr);
551 } else // current.cdr == null
576 return (comp(p1.car, p2.car) && comp(p1.cdr, p2.cdr));
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-earley-boyer.js530 function sc_Pair(car, cdr) {
532 this.cdr = cdr;
545 if (sc_isPair(current.cdr)) {
547 current = current.cdr;
548 } else if (current.cdr !== null) {
549 res += " . " + writeOrDisplay(current.cdr);
551 } else // current.cdr == null
576 return (comp(p1.car, p2.car) && comp(p1.cdr, p2.cdr));
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-earley-boyer.js530 function sc_Pair(car, cdr) {
532 this.cdr = cdr;
545 if (sc_isPair(current.cdr)) {
547 current = current.cdr;
548 } else if (current.cdr !== null) {
549 res += " . " + writeOrDisplay(current.cdr);
551 } else // current.cdr == null
576 return (comp(p1.car, p2.car) && comp(p1.cdr, p2.cdr));
[all...]

Completed in 51 milliseconds