Home | History | Annotate | Download | only in src

Lines Matching refs:FUNCTION

14 macro TYPED_ARRAYS(FUNCTION)
16 FUNCTION(1, Uint8Array, 1)
17 FUNCTION(2, Int8Array, 1)
18 FUNCTION(3, Uint16Array, 2)
19 FUNCTION(4, Int16Array, 2)
20 FUNCTION(5, Uint32Array, 4)
21 FUNCTION(6, Int32Array, 4)
22 FUNCTION(7, Float32Array, 4)
23 FUNCTION(8, Float64Array, 8)
24 FUNCTION(9, Uint8ClampedArray, 1)
28 function NAMEConstructByArrayBuffer(obj, buffer, byteOffset, length) {
73 function NAMEConstructByLength(obj, length) {
88 function NAMEConstructByArrayLike(obj, arrayLike) {
98 // propagate outside the function.
104 function NAMEConstructor(arg1, arg2, arg3) {
119 function NAME_GetBuffer() {
127 function NAME_GetByteLength() {
135 function NAME_GetByteOffset() {
143 function NAME_GetLength() {
153 function NAMESubArray(begin, end) {
190 function TypedArraySetFromArrayLike(target, source, sourceLength, offset) {
203 function TypedArraySetFromOverlappingTypedArray(target, source, offset) {
209 function CopyLeftPart() {
227 function CopyRightPart() {
255 function TypedArraySet(obj, offset) {
296 function SetupTypedArrays() {
329 function DataViewConstructor(buffer, byteOffset, byteLength) { // length = 3
360 function DataViewGetBufferJS() {
368 function DataViewGetByteOffset() {
376 function DataViewGetByteLength() {
384 macro DATA_VIEW_TYPES(FUNCTION)
385 FUNCTION(Int8)
386 FUNCTION(Uint8)
387 FUNCTION(Int16)
388 FUNCTION(Uint16)
389 FUNCTION(Int32)
390 FUNCTION(Uint32)
391 FUNCTION(Float32)
392 FUNCTION(Float64)
395 function ToPositiveDataViewOffset(offset) {
401 function DataViewGetTYPENAMEJS(offset, little_endian) {
414 function DataViewSetTYPENAMEJS(offset, value, little_endian) {
431 function SetupDataView() {