Home
last modified time | relevance | path

Searched refs:BYTE_MASK (Results 1 - 3 of 3) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandafile/
H A Dfile_writer.h62 static constexpr size_t BYTE_MASK = 0xff; in Write() local
66 if (!WriteByte(data & BYTE_MASK)) { in Write()
/arkcompiler/runtime_core/libpandafile/
H A Dfile_writer.h63 static constexpr size_t BYTE_MASK = 0xff; in Write() local
67 if (!WriteByte(data & BYTE_MASK)) { in Write()
/arkcompiler/runtime_core/static_core/runtime/coretypes/
H A Dstring.cpp241 constexpr size_t BYTE_MASK = 0xFF; in CreateNewStringFromBytes() local
245 highByte &= BYTE_MASK; in CreateNewStringFromBytes()
261 to[i] = (from[i] & BYTE_MASK); in CreateNewStringFromBytes()
267 to[i] = (highByte << 8U) + (from[i] & BYTE_MASK); in CreateNewStringFromBytes()

Completed in 3 milliseconds