Lines Matching refs:netOrderValue
150 uint32_t netOrderValue;
151 Uint8Array uint8Data = { (uint8_t *)&netOrderValue, sizeof(netOrderValue) };
158 *retValue = Ntohl32(netOrderValue);
185 uint32_t netOrderValue = Htonl32(value);
187 WriteDataToMsg(msg, writeIndex, (Uint8Array){ (uint8_t *)&netOrderValue, sizeof(netOrderValue) });
341 uint32_t netOrderValue;
342 Uint8Array uint32Data = { (uint8_t *)&netOrderValue, sizeof(netOrderValue) };
345 IF_TRUE_LOGE_AND_RETURN_VAL(uint32Data.len != sizeof(netOrderValue), GENERAL_ERROR);
347 *value = Ntohl32(netOrderValue);
355 uint32_t netOrderValue = Htonl32(value);
357 SetAttributeUint8Array(attribute, key, (Uint8Array) { (uint8_t *)&netOrderValue, sizeof(netOrderValue) });
383 uint64_t netOrderValue;
384 Uint8Array uint64Data = { (uint8_t *)&netOrderValue, sizeof(netOrderValue) };
387 IF_TRUE_LOGE_AND_RETURN_VAL(uint64Data.len != sizeof(netOrderValue), GENERAL_ERROR);
389 *retValue = Ntohl64(netOrderValue);
397 uint64_t netOrderValue = Htonl64(value);
399 SetAttributeUint8Array(attribute, key, (Uint8Array){ (uint8_t *)&netOrderValue, sizeof(netOrderValue) });