/external/v8/test/mjsunit/asm/ |
D | atomics-load.js | 65 function testElementType(taConstr, f, oobValue, offset) { function 79 testElementType(Int8Array, m.loadi8, 0, offset); 80 testElementType(Int16Array, m.loadi16, 0, offset); 81 testElementType(Int32Array, m.loadi32, 0, offset); 82 testElementType(Uint8Array, m.loadu8, 0, offset); 83 testElementType(Uint16Array, m.loadu16, 0, offset); 84 testElementType(Uint32Array, m.loadu32, 0, offset);
|
D | atomics-store.js | 71 function testElementType(taConstr, f, oobValue, offset) { function 84 testElementType(Int8Array, m.storei8, 0, offset); 85 testElementType(Int16Array, m.storei16, 0, offset); 86 testElementType(Int32Array, m.storei32, 0, offset); 87 testElementType(Uint8Array, m.storeu8, 0, offset); 88 testElementType(Uint16Array, m.storeu16, 0, offset); 89 testElementType(Uint32Array, m.storeu32, 0, offset);
|
D | atomics-or.js | 74 function testElementType(taConstr, f, offset) { function 89 testElementType(Int8Array, m.ori8, offset); 90 testElementType(Int16Array, m.ori16, offset); 91 testElementType(Int32Array, m.ori32, offset); 92 testElementType(Uint8Array, m.oru8, offset); 93 testElementType(Uint16Array, m.oru16, offset); 94 testElementType(Uint32Array, m.oru32, offset);
|
D | atomics-and.js | 71 function testElementType(taConstr, f, offset) { function 87 testElementType(Int8Array, m.andi8, offset); 88 testElementType(Int16Array, m.andi16, offset); 89 testElementType(Int32Array, m.andi32, offset); 90 testElementType(Uint8Array, m.andu8, offset); 91 testElementType(Uint16Array, m.andu16, offset); 92 testElementType(Uint32Array, m.andu32, offset);
|
D | atomics-add.js | 71 function testElementType(taConstr, f, offset) { function 86 testElementType(Int8Array, m.addi8, offset); 87 testElementType(Int16Array, m.addi16, offset); 88 testElementType(Int32Array, m.addi32, offset); 89 testElementType(Uint8Array, m.addu8, offset); 90 testElementType(Uint16Array, m.addu16, offset); 91 testElementType(Uint32Array, m.addu32, offset);
|
D | atomics-exchange.js | 74 function testElementType(taConstr, f, offset) { function 88 testElementType(Int8Array, m.exchangei8, offset); 89 testElementType(Int16Array, m.exchangei16, offset); 90 testElementType(Int32Array, m.exchangei32, offset); 91 testElementType(Uint8Array, m.exchangeu8, offset); 92 testElementType(Uint16Array, m.exchangeu16, offset); 93 testElementType(Uint32Array, m.exchangeu32, offset);
|
D | atomics-sub.js | 71 function testElementType(taConstr, f, offset) { function 87 testElementType(Int8Array, m.subi8, offset); 88 testElementType(Int16Array, m.subi16, offset); 89 testElementType(Int32Array, m.subi32, offset); 90 testElementType(Uint8Array, m.subu8, offset); 91 testElementType(Uint16Array, m.subu16, offset); 92 testElementType(Uint32Array, m.subu32, offset);
|
D | atomics-xor.js | 71 function testElementType(taConstr, f, offset) { function 86 testElementType(Int8Array, m.xori8, offset); 87 testElementType(Int16Array, m.xori16, offset); 88 testElementType(Int32Array, m.xori32, offset); 89 testElementType(Uint8Array, m.xoru8, offset); 90 testElementType(Uint16Array, m.xoru16, offset); 91 testElementType(Uint32Array, m.xoru32, offset);
|
D | atomics-compareexchange.js | 77 function testElementType(taConstr, f, oobValue, offset) { function 94 testElementType(Int8Array, m.compareExchangei8, 0, offset); 95 testElementType(Int16Array, m.compareExchangei16, 0, offset); 96 testElementType(Int32Array, m.compareExchangei32, 0, offset); 97 testElementType(Uint8Array, m.compareExchangeu8, 0, offset); 98 testElementType(Uint16Array, m.compareExchangeu16, 0, offset); 99 testElementType(Uint32Array, m.compareExchangeu32, 0, offset);
|