Home | History | Annotate | Download | only in octane

Lines Matching refs:Faster

225     var base64 = GameBoyWindow.btoa(data);  //Use this native function when it's available, as it's a magnitude faster than the non-native code below.
262 var decode64 = GameBoyWindow.atob(data); //Use this native function when it's available, as it's a magnitude faster than the non-native code below.
8790 return this.memoryReader[address](this, address); //This seems to be faster than the usual if/else.
8794 return this.memoryHighReader[address](this, address); //This seems to be faster than the usual if/else.
8797 //Faster in some browsers, since we are doing less conditionals overall by implementing them in advance.
9249 //Faster in some browsers, since we are doing less conditionals overall by implementing them in advance.