| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #include "src/arguments.h" | 7 #include "src/arguments.h" |
| 8 #include "src/messages.h" | 8 #include "src/messages.h" |
| 9 #include "src/runtime/runtime.h" | 9 #include "src/runtime/runtime.h" |
| 10 #include "src/runtime/runtime-utils.h" | 10 #include "src/runtime/runtime-utils.h" |
| (...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 DATA_VIEW_SETTER(Uint8, uint8_t) | 711 DATA_VIEW_SETTER(Uint8, uint8_t) |
| 712 DATA_VIEW_SETTER(Int8, int8_t) | 712 DATA_VIEW_SETTER(Int8, int8_t) |
| 713 DATA_VIEW_SETTER(Uint16, uint16_t) | 713 DATA_VIEW_SETTER(Uint16, uint16_t) |
| 714 DATA_VIEW_SETTER(Int16, int16_t) | 714 DATA_VIEW_SETTER(Int16, int16_t) |
| 715 DATA_VIEW_SETTER(Uint32, uint32_t) | 715 DATA_VIEW_SETTER(Uint32, uint32_t) |
| 716 DATA_VIEW_SETTER(Int32, int32_t) | 716 DATA_VIEW_SETTER(Int32, int32_t) |
| 717 DATA_VIEW_SETTER(Float32, float) | 717 DATA_VIEW_SETTER(Float32, float) |
| 718 DATA_VIEW_SETTER(Float64, double) | 718 DATA_VIEW_SETTER(Float64, double) |
| 719 | 719 |
| 720 #undef DATA_VIEW_SETTER | 720 #undef DATA_VIEW_SETTER |
| 721 } | 721 } // namespace internal |
| 722 } // namespace v8::internal | 722 } // namespace v8 |
| OLD | NEW |