Lines Matching refs:array
74 #define ARRAY_LENGTH(array) (uint32_t)(sizeof(array) / sizeof((array)[0]))
101 IAM_STATIC void Ntohl64Array(Uint64Array *array)
103 for (uint32_t i = 0; i < array->len; i++) {
104 array->data[i] = Ntohl64(array->data[i]);
108 IAM_STATIC void Htonl64Array(Uint64Array *array)
110 for (uint32_t i = 0; i < array->len; i++) {
111 array->data[i] = Htonl64(array->data[i]);
301 Uint8Array *array = attribute->values[i];
302 if (array == NULL) {
309 ResultCode writeLengthResult = WriteUInt32ToMsg(retMsg, &writeIndex, array->len);
312 if (array->len == 0) {
316 WriteDataToMsg(retMsg, &writeIndex, *array);
427 LOG_INFO("the current data is an empty array");