Home
last modified time | relevance | path

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

/developtools/global_resource_tool/src/
Dresource_table.cpp344 in.read(reinterpret_cast<char *>(&indexHeader.fileSize), INT_TO_BYTES); in ReadFileHeader()
345 in.read(reinterpret_cast<char *>(&indexHeader.limitKeyConfigSize), INT_TO_BYTES); in ReadFileHeader()
353 pos = pos + TAG_LEN + INT_TO_BYTES + INT_TO_BYTES; in ReadLimitKeys()
365 in.read(reinterpret_cast<char *>(&limitKey.offset), INT_TO_BYTES); in ReadLimitKeys()
366 in.read(reinterpret_cast<char *>(&limitKey.keyCount), INT_TO_BYTES); in ReadLimitKeys()
370 pos = pos + INT_TO_BYTES + INT_TO_BYTES; in ReadLimitKeys()
376 in.read(reinterpret_cast<char *>(&keyParam.keyType), INT_TO_BYTES); in ReadLimitKeys()
377 in.read(reinterpret_cast<char *>(&keyParam.value), INT_TO_BYTES); in ReadLimitKeys()
389 pos = pos + TAG_LEN + INT_TO_BYTES; in ReadIdTables()
402 in.read(reinterpret_cast<char *>(&idss.idCount), INT_TO_BYTES); in ReadIdTables()
[all …]
/developtools/global_resource_tool/include/
Dresource_data.h41 const static int32_t INT_TO_BYTES = sizeof(uint32_t); variable