Searched refs:Int32Array (Results 1 – 13 of 13) sorted by relevance
/external/brotli/js/ |
D | decode.js | 25 …var CODE_LENGTH_CODE_ORDER = Int32Array.from([1, 2, 3, 4, 0, 5, 17, 6, 16, 7, 8, 9, 10, 11, 12, 13… 26 …var DISTANCE_SHORT_CODE_INDEX_OFFSET = Int32Array.from([3, 2, 1, 0, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, … 27 …var DISTANCE_SHORT_CODE_VALUE_OFFSET = Int32Array.from([0, 0, 0, 0, -1, 1, -2, 2, -3, 3, -1, 1, -2… 28 …var FIXED_TABLE = Int32Array.from([0x020000, 0x020004, 0x020003, 0x030002, 0x020000, 0x020004, 0x0… 29 …var DICTIONARY_OFFSETS_BY_LENGTH = Int32Array.from([0, 0, 0, 0, 0, 4096, 9216, 21504, 35840, 44032… 30 …var DICTIONARY_SIZE_BITS_BY_LENGTH = Int32Array.from([0, 0, 0, 0, 10, 10, 11, 11, 10, 10, 10, 10, … 31 …var BLOCK_LENGTH_OFFSET = Int32Array.from([1, 5, 9, 13, 17, 25, 33, 41, 49, 65, 81, 97, 113, 145, … 32 …var BLOCK_LENGTH_N_BITS = Int32Array.from([2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 7… 33 …var INSERT_LENGTH_OFFSET = Int32Array.from([0, 1, 2, 3, 4, 5, 6, 8, 10, 14, 18, 26, 34, 50, 66, 98… 34 …var INSERT_LENGTH_N_BITS = Int32Array.from([0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 7, … [all …]
|
D | decode.min.js | 1 …Int32Array.from([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]);var n=Int32Array.from([3,2,1,0,3,3,…
|
D | polyfill.js | 1 if (!Int32Array.__proto__.from) { 2 Object.defineProperty(Int32Array.__proto__, 'from', { 63 if (!Int32Array.prototype.fill) { 64 Int32Array.prototype.fill = Array.prototype.fill; class
|
/external/v8/tools/clusterfuzz/ |
D | v8_mock_archs.js | 41 Int32Array = mock(Int32Array); 55 Int32Array,
|
/external/v8/src/js/ |
D | typedarray.js | 25 FUNCTION(Int32Array, 4)
|
/external/pdfium/testing/resources/javascript/ |
D | array_buffer.in | 43 ia = new Int32Array(ab);
|
/external/v8/src/asmjs/ |
D | asm-names.h | 55 V(Int32Array, Mem, Mem, I32) \
|
D | asm-types.h | 50 V(Int32Array, "Int32Array", 21, kAsmHeap) \
|
D | asm-js.cc | 111 STDLIB_ARRAY_TYPE(int32_array_fun, Int32Array) in AreStdlibMembersValid()
|
/external/v8/src/ |
D | api.h | 98 V(Int32Array, JSTypedArray) \ 184 static inline Local<Int32Array> ToLocalInt32Array(
|
/external/v8/src/inspector/ |
D | v8-injected-script-host.cc | 413 addTypedArrayProperty<v8::Int32Array>(&arrays_vector, isolate, arrayBuffer, in typedArrayPropertiesCallback()
|
/external/flatbuffers/js/ |
D | flatbuffers.js | 63 flatbuffers.int32 = new Int32Array(2);
|
/external/v8/include/ |
D | v8.h | 4943 class V8_EXPORT Int32Array : public TypedArray { 4945 static Local<Int32Array> New(Local<ArrayBuffer> array_buffer, 4947 static Local<Int32Array> New(Local<SharedArrayBuffer> shared_array_buffer, 4949 V8_INLINE static Int32Array* Cast(Value* obj); 4952 Int32Array(); 10524 Int32Array* Int32Array::Cast(v8::Value* value) { 10528 return static_cast<Int32Array*>(value);
|