Lines Matching defs:value
76 PKG_LOGE("return value of fseek < 0");
82 PKG_LOGE("return value of ftell < 0");
265 uint64_t value = ((static_cast<uint64_t>(high)) << (BYTE_SIZE * sizeof(uint32_t))) | low;
266 return value;
269 void WriteLE32(uint8_t *buff, uint32_t value)
276 buff[0] = static_cast<uint8_t>(value);
278 buff[1] = static_cast<uint8_t>(value >> offset);
280 buff[SECOND_BUFFER] = static_cast<uint8_t>(value >> offset);
282 buff[THIRD_BUFFER] = static_cast<uint8_t>(value >> offset);
296 void WriteLE16(uint8_t *buff, uint16_t value)
302 buff[0] = static_cast<uint8_t>(value);
303 buff[1] = static_cast<uint8_t>(value >> BYTE_SIZE);