Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_arraybuffer.cpp576 void BuiltinsArrayBuffer::SetValueInBufferForInteger(double val, uint8_t *block, uint32_t byteIndex… in SetValueInBufferForInteger() function in panda::ecmascript::builtins::BuiltinsArrayBuffer
691 SetValueInBufferForInteger<uint16_t>(val, block, byteIndex, littleEndian); in SetValueInBuffer()
694 SetValueInBufferForInteger<int16_t>(val, block, byteIndex, littleEndian); in SetValueInBuffer()
697 SetValueInBufferForInteger<uint32_t>(val, block, byteIndex, littleEndian); in SetValueInBuffer()
700 SetValueInBufferForInteger<int32_t>(val, block, byteIndex, littleEndian); in SetValueInBuffer()
Dbuiltins_arraybuffer.h105 …static void SetValueInBufferForInteger(double val, uint8_t *block, uint32_t byteIndex, bool little…