Lines Matching refs:netOrderValue
131 uint32_t netOrderValue;
132 Uint8Array uint8Data = { (uint8_t *)&netOrderValue, sizeof(netOrderValue) };
139 *retValue = Ntohl32(netOrderValue);
166 uint32_t netOrderValue = Htonl32(value);
168 WriteDataToMsg(msg, writeIndex, (Uint8Array){ (uint8_t *)&netOrderValue, sizeof(netOrderValue) });
323 uint32_t netOrderValue;
324 Uint8Array uint32Data = { (uint8_t *)&netOrderValue, sizeof(netOrderValue) };
327 IF_TRUE_LOGE_AND_RETURN_VAL(uint32Data.len != sizeof(netOrderValue), RESULT_GENERAL_ERROR);
329 *value = Ntohl32(netOrderValue);
337 uint32_t netOrderValue = Htonl32(value);
339 SetAttributeUint8Array(attribute, key, (Uint8Array) { (uint8_t *)&netOrderValue, sizeof(netOrderValue) });
365 uint64_t netOrderValue;
366 Uint8Array uint64Data = { (uint8_t *)&netOrderValue, sizeof(netOrderValue) };
369 IF_TRUE_LOGE_AND_RETURN_VAL(uint64Data.len != sizeof(netOrderValue), RESULT_GENERAL_ERROR);
371 *retValue = Ntohl64(netOrderValue);
379 uint64_t netOrderValue = Htonl64(value);
381 SetAttributeUint8Array(attribute, key, (Uint8Array){ (uint8_t *)&netOrderValue, sizeof(netOrderValue) });