hbVPArray

typedef struct hbVPArray { uint64_t phyAddr; void *virAddr; uint32_t memSize; uint32_t capacity; uint32_t size; } hbVPArray;

Dynamic array structure.

  • Member

    Member NameDescription
    phyAddrPhysical address of the array.
    virAddrVirtual address of the array.
    memSizeMemory size of the array.
    capacityThe maximum number of elements the array can store.
    sizeThe number of elements actually stored in the array.