Lines Matching defs:SetUint8

118             result = BuiltinsDataView::SetUint8(ecmaRuntimeCallInfo);
186 void SetUint8(JSThread *thread, const JSHandle<JSDataView> &view, int32_t offset, JSTaggedValue value)
309 // new DataView(new ArrayBuffer(8), 0).SetUint8/GetUint32
314 SetUint8(thread, view, 0, JSTaggedValue(127)); // 127:value
315 SetUint8(thread, view, 1, JSTaggedValue(255)); // 1: the second value, 255:value
316 SetUint8(thread, view, 2, JSTaggedValue(255)); // 2: the third value, 255:value
317 SetUint8(thread, view, 3, JSTaggedValue(255)); // 3: the forth value, 255:value
329 // new DataView(new ArrayBuffer(8), 0).SetUint8/GetInt32
339 // new DataView(new ArrayBuffer(8), 0).SetUint8/GetInt8
344 SetUint8(thread, view, 0, JSTaggedValue(255));
352 // new DataView(new ArrayBuffer(8), 0).SetUint8/GetUint8
357 SetUint8(thread, view, 0, JSTaggedValue(127));
364 // new DataView(new ArrayBuffer(8), 4).SetUint8/GetFloat32
369 SetUint8(thread, view, 4, JSTaggedValue(75));
370 SetUint8(thread, view, 5, JSTaggedValue(75));
371 SetUint8(thread, view, 6, JSTaggedValue(75));
372 SetUint8(thread, view, 7, JSTaggedValue(75));
380 // new DataView(new ArrayBuffer(12), 4).SetUint8/GetFloat64
385 SetUint8(thread, view, 4, JSTaggedValue(67));
386 SetUint8(thread, view, 5, JSTaggedValue(67));
387 SetUint8(thread, view, 6, JSTaggedValue(68));
388 SetUint8(thread, view, 7, JSTaggedValue(68));
389 SetUint8(thread, view, 8, JSTaggedValue(67));
390 SetUint8(thread, view, 9, JSTaggedValue(67));
391 SetUint8(thread, view, 10, JSTaggedValue(68));
392 SetUint8(thread, view, 11, JSTaggedValue(68));