Searched refs:check_mod (Results 1 – 1 of 1) sorted by relevance
/external/v8/test/mjsunit/regress/ |
D | regress-binop.js | 88 function check_mod(a,b) { return a%b }; function 122 test(mod,check_mod,1,2); 124 test(mod,check_mod,1,2); 126 test(mod,check_mod,1<<30,1); 128 test(mod,check_mod,1<<30,1); 129 test(mod,check_mod,1,1<<30); 131 test(mod,check_mod,1,1<<30); 132 test(mod,check_mod,1<<30,-(1<<30)); 134 test(mod,check_mod,1<<30,-(1<<30)); 136 test(mod,check_mod,1,{},2); [all …]
|