Searched defs:uTypeHash (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Main/include/
H A Dvector.h168 #define VEC_INIT(pvec, cbElement, uTypeHash, pfnCleanup) \
171 pvec->muTypeHash = uTypeHash; \
177 unsigned uTypeHash, void (*pfnCleanup)(void *))
179 VEC_INIT(pvec, cbElement, uTypeHash, pfnCleanup)
184 unsigned uTypeHash, void (*pfnCleanup)(void *))
186 VEC_INIT(pvec, cbElement, uTypeHash, pfnCleanup)
190 DECLINLINE(int) vecPushBackObj(VECTOR_OBJ *pvec, unsigned uTypeHash, argument
194 AssertReturn(pvec->muTypeHash == uTypeHash, VERR_INVALID_PARAMETER);
205 DECLINLINE(int) vecPushBackPtr(VECTOR_PTR *pvec, unsigned uTypeHash, argument
209 AssertReturn(pvec->muTypeHash == uTypeHash, VERR_INVALID_PARAMETE
176 vecInitObj(VECTOR_OBJ *pvec, size_t cbElement, unsigned uTypeHash, void (*pfnCleanup)(void *)) argument
183 vecInitPtr(VECTOR_PTR *pvec, size_t cbElement, unsigned uTypeHash, void (*pfnCleanup)(void *)) argument
[all...]

Completed in 42 milliseconds