Home
last modified time | relevance | path

Searched refs:SetValueInBufferForInteger (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_arraybuffer.cpp599 void BuiltinsArrayBuffer::SetValueInBufferForInteger(double val, uint8_t *block, uint32_t byteIndex… in SetValueInBufferForInteger() function in panda::ecmascript::builtins::BuiltinsArrayBuffer
714 SetValueInBufferForInteger<uint16_t>(val, block, byteIndex, littleEndian); in SetValueInBuffer()
717 SetValueInBufferForInteger<int16_t>(val, block, byteIndex, littleEndian); in SetValueInBuffer()
720 SetValueInBufferForInteger<uint32_t>(val, block, byteIndex, littleEndian); in SetValueInBuffer()
723 SetValueInBufferForInteger<int32_t>(val, block, byteIndex, littleEndian); in SetValueInBuffer()
Dbuiltins_arraybuffer.h129 …static void SetValueInBufferForInteger(double val, uint8_t *block, uint32_t byteIndex, bool little…