{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array write","Code":" const a = new Array(0x1fff).fill(0);\r\n\r\nfor(let i = 0; i \u003C 0x1fff; i\u002B\u002B) {\r\n for(let j = 0; j \u003C 0x1fff; j\u002B\u002B) {\r\n a[(i ^ j) \u0026 0x1fff] = (i ^ j) \u0026 0xff;\r\n }\r\n}","IsDeferred":false},{"Name":"TypedArray write","Code":"const a = new Uint8Array(0x1fff);\r\n\r\nfor(let i = 0; i \u003C 0x1fff; i\u002B\u002B) {\r\n for(let j = 0; j \u003C 0x1fff; j\u002B\u002B) {\r\n a[(i ^ j) \u0026 0x1fff] = (i ^ j) \u0026 0xff;\r\n }\r\n}","IsDeferred":false}]}