/external/v8/test/mjsunit/wasm/ |
D | asm-wasm-stdlib.js | 8 function Module(stdlib) { argument 11 var StdlibInfinity = stdlib.Infinity; 12 var StdlibNaN = stdlib.NaN; 13 var StdlibMathE = stdlib.Math.E; 14 var StdlibMathLN10 = stdlib.Math.LN10; 15 var StdlibMathLN2 = stdlib.Math.LN2; 16 var StdlibMathLOG2E = stdlib.Math.LOG2E; 17 var StdlibMathLOG10E = stdlib.Math.LOG10E; 18 var StdlibMathPI = stdlib.Math.PI; 19 var StdlibMathSQRT1_2 = stdlib.Math.SQRT1_2; [all …]
|
D | asm-wasm-f64.js | 8 function MODULE_NAME(stdlib) { argument 10 var Math_ceil = stdlib.Math.ceil; 11 var Math_floor = stdlib.Math.floor; 12 var Math_sqrt = stdlib.Math.sqrt; 13 var Math_abs = stdlib.Math.abs; 14 var Math_min = stdlib.Math.min; 15 var Math_max = stdlib.Math.max; 16 var Math_acos = stdlib.Math.acos; 17 var Math_asin = stdlib.Math.asin; 18 var Math_atan = stdlib.Math.atan; [all …]
|
D | asm-wasm-heap.js | 7 const stdlib = { variable 61 var js_module = eval("(" + nonasm_source + ")")(stdlib, {}, buffer); 66 var asm_module = asmfunc(stdlib, {}, buffer); 74 function LoadAt_i32(stdlib, foreign, buffer) { argument 76 var HEAP32 = new stdlib.Int32Array(buffer); 103 function LoadAt_i16(stdlib, foreign, buffer) { argument 105 var HEAP16 = new stdlib.Int16Array(buffer); 139 function LoadAt_u16(stdlib, foreign, buffer) { argument 141 var HEAP16 = new stdlib.Uint16Array(buffer); 155 function LoadAt_i8(stdlib, foreign, buffer) { argument [all …]
|
D | asm-wasm-f32.js | 8 function MODULE_NAME(stdlib) { argument 10 var fround = stdlib.Math.fround; 11 var Math_ceil = stdlib.Math.ceil; 12 var Math_floor = stdlib.Math.floor; 13 var Math_sqrt = stdlib.Math.sqrt; 14 var Math_abs = stdlib.Math.abs; 15 var Math_min = stdlib.Math.min; 16 var Math_max = stdlib.Math.max; 32 var stdlib = {Math: Math}; variable in RunThreeWayTest 34 var js_module = eval("(" + nonasm_source + ")")(stdlib); [all …]
|
D | asm-wasm.js | 474 function TestInt32HeapAccess(stdlib, foreign, buffer) { argument 477 var m = new stdlib.Int32Array(buffer); 530 function TestFloatHeapAccess(stdlib, foreign, buffer) { argument 533 var f32 = new stdlib.Float32Array(buffer); 534 var f64 = new stdlib.Float64Array(buffer); 535 var fround = stdlib.Math.fround; 981 function AsmModule(stdlib, foreign, buffer) { argument 1026 function AsmModule(stdlib, foreign, buffer) { argument 1065 function AsmModule(stdlib, foreign, buffer) { argument 1155 function TestByteHeapAccessCompat(stdlib, foreign, buffer) { argument [all …]
|
D | asm-wasm-i32.js | 8 function MODULE_NAME(stdlib) { argument 10 var imul = stdlib.Math.imul; 11 var Math_max = stdlib.Math.max; 12 var Math_min = stdlib.Math.min; 13 var Math_abs = stdlib.Math.abs; 29 var stdlib = {Math: Math}; variable in RunThreeWayTest 31 var js_module = eval("(" + nonasm_source + ")")(stdlib); 36 var asm_module = asmfunc(stdlib); 40 var wasm_module = Wasm.instantiateModuleFromAsm(asm_source, stdlib);
|
/external/v8/test/mjsunit/asm/ |
D | switch.js | 5 var stdlib = this; 10 var switch1 = (function(stdlib, foreign, heap) { argument 21 })(stdlib, foreign, heap).switch1; 30 var switch2 = (function(stdlib, foreign, heap) { argument 44 })(stdlib, foreign, heap).switch2; 54 var switch3 = (function(stdlib, foreign, heap) { argument 71 })(stdlib, foreign, heap).switch3; 84 var switch4 = (function(stdlib, foreign, heap) { argument 110 })(stdlib, foreign, heap).switch4;
|
D | atomics-load.js | 7 function Module(stdlib, foreign, heap, offset) { argument 9 var MEM8 = new stdlib.Int8Array(heap, offset); 10 var MEM16 = new stdlib.Int16Array(heap, offset); 11 var MEM32 = new stdlib.Int32Array(heap, offset); 12 var MEMU8 = new stdlib.Uint8Array(heap, offset); 13 var MEMU16 = new stdlib.Uint16Array(heap, offset); 14 var MEMU32 = new stdlib.Uint32Array(heap, offset); 15 var load = stdlib.Atomics.load; 16 var fround = stdlib.Math.fround;
|
D | atomics-add.js | 7 function Module(stdlib, foreign, heap, offset) { argument 9 var MEM8 = new stdlib.Int8Array(heap, offset); 10 var MEM16 = new stdlib.Int16Array(heap, offset); 11 var MEM32 = new stdlib.Int32Array(heap, offset); 12 var MEMU8 = new stdlib.Uint8Array(heap, offset); 13 var MEMU16 = new stdlib.Uint16Array(heap, offset); 14 var MEMU32 = new stdlib.Uint32Array(heap, offset); 15 var add = stdlib.Atomics.add; 16 var fround = stdlib.Math.fround;
|
D | atomics-store.js | 7 function Module(stdlib, foreign, heap, offset) { argument 9 var MEM8 = new stdlib.Int8Array(heap, offset); 10 var MEM16 = new stdlib.Int16Array(heap, offset); 11 var MEM32 = new stdlib.Int32Array(heap, offset); 12 var MEMU8 = new stdlib.Uint8Array(heap, offset); 13 var MEMU16 = new stdlib.Uint16Array(heap, offset); 14 var MEMU32 = new stdlib.Uint32Array(heap, offset); 15 var store = stdlib.Atomics.store; 16 var fround = stdlib.Math.fround;
|
D | atomics-xor.js | 7 function Module(stdlib, foreign, heap, offset) { argument 9 var MEM8 = new stdlib.Int8Array(heap, offset); 10 var MEM16 = new stdlib.Int16Array(heap, offset); 11 var MEM32 = new stdlib.Int32Array(heap, offset); 12 var MEMU8 = new stdlib.Uint8Array(heap, offset); 13 var MEMU16 = new stdlib.Uint16Array(heap, offset); 14 var MEMU32 = new stdlib.Uint32Array(heap, offset); 15 var xor = stdlib.Atomics.xor; 16 var fround = stdlib.Math.fround;
|
D | atomics-exchange.js | 7 function Module(stdlib, foreign, heap, offset) { argument 9 var MEM8 = new stdlib.Int8Array(heap, offset); 10 var MEM16 = new stdlib.Int16Array(heap, offset); 11 var MEM32 = new stdlib.Int32Array(heap, offset); 12 var MEMU8 = new stdlib.Uint8Array(heap, offset); 13 var MEMU16 = new stdlib.Uint16Array(heap, offset); 14 var MEMU32 = new stdlib.Uint32Array(heap, offset); 15 var exchange = stdlib.Atomics.exchange; 16 var fround = stdlib.Math.fround;
|
D | atomics-and.js | 7 function Module(stdlib, foreign, heap, offset) { argument 9 var MEM8 = new stdlib.Int8Array(heap, offset); 10 var MEM16 = new stdlib.Int16Array(heap, offset); 11 var MEM32 = new stdlib.Int32Array(heap, offset); 12 var MEMU8 = new stdlib.Uint8Array(heap, offset); 13 var MEMU16 = new stdlib.Uint16Array(heap, offset); 14 var MEMU32 = new stdlib.Uint32Array(heap, offset); 15 var and = stdlib.Atomics.and; 16 var fround = stdlib.Math.fround;
|
D | atomics-sub.js | 7 function Module(stdlib, foreign, heap, offset) { argument 9 var MEM8 = new stdlib.Int8Array(heap, offset); 10 var MEM16 = new stdlib.Int16Array(heap, offset); 11 var MEM32 = new stdlib.Int32Array(heap, offset); 12 var MEMU8 = new stdlib.Uint8Array(heap, offset); 13 var MEMU16 = new stdlib.Uint16Array(heap, offset); 14 var MEMU32 = new stdlib.Uint32Array(heap, offset); 15 var sub = stdlib.Atomics.sub; 16 var fround = stdlib.Math.fround;
|
D | atomics-or.js | 7 function Module(stdlib, foreign, heap, offset) { argument 9 var MEM8 = new stdlib.Int8Array(heap, offset); 10 var MEM16 = new stdlib.Int16Array(heap, offset); 11 var MEM32 = new stdlib.Int32Array(heap, offset); 12 var MEMU8 = new stdlib.Uint8Array(heap, offset); 13 var MEMU16 = new stdlib.Uint16Array(heap, offset); 14 var MEMU32 = new stdlib.Uint32Array(heap, offset); 15 var or = stdlib.Atomics.or; 16 var fround = stdlib.Math.fround;
|
D | atomics-compareexchange.js | 7 function Module(stdlib, foreign, heap, offset) { argument 9 var MEM8 = new stdlib.Int8Array(heap, offset); 10 var MEM16 = new stdlib.Int16Array(heap, offset); 11 var MEM32 = new stdlib.Int32Array(heap, offset); 12 var MEMU8 = new stdlib.Uint8Array(heap, offset); 13 var MEMU16 = new stdlib.Uint16Array(heap, offset); 14 var MEMU32 = new stdlib.Uint32Array(heap, offset); 15 var compareExchange = stdlib.Atomics.compareExchange; 16 var fround = stdlib.Math.fround;
|
D | zero-extend.js | 5 var stdlib = this; 10 var zext8 = (function Module(stdlib, foreign, heap) { argument 17 })(stdlib, foreign, buffer).zext8; 25 var zext16 = (function Module(stdlib, foreign, heap) { argument 32 })(stdlib, foreign, buffer).zext16;
|
D | word32ror.js | 5 var stdlib = {}; variable 9 var rol = (function Module(stdlib, foreign, heap) { argument 17 })(stdlib, foreign, heap).rol; 24 var ror = (function Module(stdlib, foreign, heap) { argument 32 })(stdlib, foreign, heap).ror;
|
D | sign-extend.js | 5 var stdlib = this; 10 var sext8 = (function Module(stdlib, foreign, heap) { argument 18 })(stdlib, foreign, buffer).sext8; 29 var sext16 = (function Module(stdlib, foreign, heap) { argument 37 })(stdlib, foreign, buffer).sext16;
|
D | math-clz32.js | 5 var stdlib = { Math: Math }; variable 7 var f = (function Module(stdlib) { argument 10 var clz32 = stdlib.Math.clz32; 18 })(stdlib);
|
D | pointer-masking.js | 5 var stdlib = this; 10 var pm1 = (function(stdlib, foreign, heap) { argument 12 var HEAP8 = new stdlib.Int8Array(heap); 26 })(stdlib, foreign, heap);
|
D | uint32div.js | 5 var stdlib = {}; variable 19 return m(stdlib, foreign, heap).f; 31 var div = (function(stdlib, foreign, heap) { argument 37 })(stdlib, foreign, heap).div;
|
D | int8array-negative-offset.js | 5 var stdlib = this; 10 var m = (function Module(stdlib, foreign, heap) { argument 12 var MEM8 = new stdlib.Int8Array(heap); 34 })(stdlib, foreign, buffer);
|
D | int32array-negative-offset.js | 5 var stdlib = this; 10 var m = (function Module(stdlib, foreign, heap) { argument 12 var MEM32 = new stdlib.Int32Array(heap); 34 })(stdlib, foreign, buffer);
|
/external/v8/build/secondary/third_party/crashpad/crashpad/util/ |
D | BUILD.gn | 105 "stdlib/aligned_allocator.cc", 106 "stdlib/aligned_allocator.h", 107 "stdlib/cxx.h", 108 "stdlib/map_insert.h", 109 "stdlib/objc.h", 110 "stdlib/pointer_container.h", 111 "stdlib/string_number_conversion.cc", 112 "stdlib/string_number_conversion.h", 113 "stdlib/strlcpy.cc", 114 "stdlib/strlcpy.h", [all …]
|