Searched refs:pVec (Results 1 - 2 of 2) sorted by relevance

/vbox/include/iprt/
H A Dvector.h108 DECLINLINE(size_t) name ## Size(struct name *pVec) \
110 return(pVec->mcElements); \
117 DECLINLINE(int) name ## Reserve(struct name *pVec, size_t cNewCapacity) \
121 if (cNewCapacity <= pVec->mcCapacity) \
123 pvNew = pfnRealloc(pVec->mpElements, cNewCapacity * sizeof(type)); \
126 pVec->mcCapacity = cNewCapacity; \
127 pVec->mpElements = (type *)pvNew; \
135 DECLINLINE(type *) name ## Begin(struct name *pVec) \
137 return(pVec->mpElements); \
145 DECLINLINE(type *) name ## End(struct name *pVec) \
[all...]
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dmemobj-r0drv-solaris.h198 static size_t rtR0SegVBoxSolInCore(seg_t *pSeg, caddr_t virtAddr, size_t cb, char *pVec) argument
206 *pVec++ = 1;

Completed in 43 milliseconds