Lines Matching refs:array
55 #define ARRAY_LENGTH(array) (uint32_t)(sizeof(array) / sizeof((array)[0]))
82 IAM_STATIC void Ntohl64Array(Uint64Array *array)
84 for (uint32_t i = 0; i < array->len; i++) {
85 array->data[i] = Ntohl64(array->data[i]);
89 IAM_STATIC void Htonl64Array(Uint64Array *array)
91 for (uint32_t i = 0; i < array->len; i++) {
92 array->data[i] = Htonl64(array->data[i]);
283 Uint8Array *array = attribute->values[i];
284 if (array == NULL) {
291 ResultCode writeLengthResult = WriteUInt32ToMsg(retMsg, &writeIndex, array->len);
294 if (array->len == 0) {
298 WriteDataToMsg(retMsg, &writeIndex, *array);
428 LOG_INFO("the current data is an empty array");