Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1413)

Side by Side Diff: runtime/vm/bootstrap_natives.h

Issue 11881031: Add Dart class for _ExternalUint8ClampedArray and API to allocate it. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_BOOTSTRAP_NATIVES_H_ 5 #ifndef VM_BOOTSTRAP_NATIVES_H_
6 #define VM_BOOTSTRAP_NATIVES_H_ 6 #define VM_BOOTSTRAP_NATIVES_H_
7 7
8 #include "vm/native_entry.h" 8 #include "vm/native_entry.h"
9 9
10 // bootstrap dart natives used in the core dart library. 10 // bootstrap dart natives used in the core dart library.
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 V(Float32Array_getIndexed, 2) \ 171 V(Float32Array_getIndexed, 2) \
172 V(Float32Array_setIndexed, 3) \ 172 V(Float32Array_setIndexed, 3) \
173 V(Float64Array_new, 1) \ 173 V(Float64Array_new, 1) \
174 V(Float64Array_newTransferable, 1) \ 174 V(Float64Array_newTransferable, 1) \
175 V(Float64Array_getIndexed, 2) \ 175 V(Float64Array_getIndexed, 2) \
176 V(Float64Array_setIndexed, 3) \ 176 V(Float64Array_setIndexed, 3) \
177 V(ExternalInt8Array_getIndexed, 2) \ 177 V(ExternalInt8Array_getIndexed, 2) \
178 V(ExternalInt8Array_setIndexed, 3) \ 178 V(ExternalInt8Array_setIndexed, 3) \
179 V(ExternalUint8Array_getIndexed, 2) \ 179 V(ExternalUint8Array_getIndexed, 2) \
180 V(ExternalUint8Array_setIndexed, 3) \ 180 V(ExternalUint8Array_setIndexed, 3) \
181 V(ExternalUint8ClampedArray_getIndexed, 2) \
182 V(ExternalUint8ClampedArray_setIndexed, 3) \
181 V(ExternalInt16Array_getIndexed, 2) \ 183 V(ExternalInt16Array_getIndexed, 2) \
182 V(ExternalInt16Array_setIndexed, 3) \ 184 V(ExternalInt16Array_setIndexed, 3) \
183 V(ExternalUint16Array_getIndexed, 2) \ 185 V(ExternalUint16Array_getIndexed, 2) \
184 V(ExternalUint16Array_setIndexed, 3) \ 186 V(ExternalUint16Array_setIndexed, 3) \
185 V(ExternalInt32Array_getIndexed, 2) \ 187 V(ExternalInt32Array_getIndexed, 2) \
186 V(ExternalInt32Array_setIndexed, 3) \ 188 V(ExternalInt32Array_setIndexed, 3) \
187 V(ExternalUint32Array_getIndexed, 2) \ 189 V(ExternalUint32Array_getIndexed, 2) \
188 V(ExternalUint32Array_setIndexed, 3) \ 190 V(ExternalUint32Array_setIndexed, 3) \
189 V(ExternalInt64Array_getIndexed, 2) \ 191 V(ExternalInt64Array_getIndexed, 2) \
190 V(ExternalInt64Array_setIndexed, 3) \ 192 V(ExternalInt64Array_setIndexed, 3) \
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 static void DN_##name(Dart_NativeArguments args); 227 static void DN_##name(Dart_NativeArguments args);
226 228
227 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 229 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
228 230
229 #undef DECLARE_BOOTSTRAP_NATIVE 231 #undef DECLARE_BOOTSTRAP_NATIVE
230 }; 232 };
231 233
232 } // namespace dart 234 } // namespace dart
233 235
234 #endif // VM_BOOTSTRAP_NATIVES_H_ 236 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698