Home | History | Annotate | Download | only in compiler

Lines Matching refs:function

32 function ConstructDiv(divisor) {
37 new Function("dividend", "divisor", ConstructDiv("divisor"));
43 function ConstructMod(divisor) {
48 new Function("dividend", "divisor", ConstructMod("divisor"));
54 function ConstructFlooringDiv(divisor) {
59 new Function("dividend", "divisor", ConstructFlooringDiv("divisor"));
65 function PushSymmetric(values, x) {
69 function PushRangeSymmetric(values, from, to) {
75 function CreateTestValues() {
104 function TestDivisionLike(ref, construct, values, divisor) {
105 // Define the function to test.
106 var OptFun = new Function("dividend", construct(divisor));
115 values.forEach(function(dividend) {
122 function Test(ref, construct) {
124 values.forEach(function(divisor) {