| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 6489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6500 V(Math, log, MathLog) \ | 6500 V(Math, log, MathLog) \ |
| 6501 V(Math, sin, MathSin) \ | 6501 V(Math, sin, MathSin) \ |
| 6502 V(Math, cos, MathCos) \ | 6502 V(Math, cos, MathCos) \ |
| 6503 V(Math, tan, MathTan) \ | 6503 V(Math, tan, MathTan) \ |
| 6504 V(Math, asin, MathASin) \ | 6504 V(Math, asin, MathASin) \ |
| 6505 V(Math, acos, MathACos) \ | 6505 V(Math, acos, MathACos) \ |
| 6506 V(Math, atan, MathATan) \ | 6506 V(Math, atan, MathATan) \ |
| 6507 V(Math, exp, MathExp) \ | 6507 V(Math, exp, MathExp) \ |
| 6508 V(Math, sqrt, MathSqrt) \ | 6508 V(Math, sqrt, MathSqrt) \ |
| 6509 V(Math, pow, MathPow) \ | 6509 V(Math, pow, MathPow) \ |
| 6510 V(Math, random, MathRandom) \ |
| 6510 V(Math, max, MathMax) \ | 6511 V(Math, max, MathMax) \ |
| 6511 V(Math, min, MathMin) \ | 6512 V(Math, min, MathMin) \ |
| 6512 V(Math, imul, MathImul) | 6513 V(Math, imul, MathImul) |
| 6513 | 6514 |
| 6514 enum BuiltinFunctionId { | 6515 enum BuiltinFunctionId { |
| 6515 kArrayCode, | 6516 kArrayCode, |
| 6516 #define DECLARE_FUNCTION_ID(ignored1, ignore2, name) \ | 6517 #define DECLARE_FUNCTION_ID(ignored1, ignore2, name) \ |
| 6517 k##name, | 6518 k##name, |
| 6518 FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID) | 6519 FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID) |
| 6519 #undef DECLARE_FUNCTION_ID | 6520 #undef DECLARE_FUNCTION_ID |
| (...skipping 4046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10566 } else { | 10567 } else { |
| 10567 value &= ~(1 << bit_position); | 10568 value &= ~(1 << bit_position); |
| 10568 } | 10569 } |
| 10569 return value; | 10570 return value; |
| 10570 } | 10571 } |
| 10571 }; | 10572 }; |
| 10572 | 10573 |
| 10573 } } // namespace v8::internal | 10574 } } // namespace v8::internal |
| 10574 | 10575 |
| 10575 #endif // V8_OBJECTS_H_ | 10576 #endif // V8_OBJECTS_H_ |
| OLD | NEW |