Home
last modified time | relevance | path

Searched defs:hb_prealloced_array_t (Results 1 – 1 of 1) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-private.hh370 struct hb_prealloced_array_t struct
372 unsigned int len;
373 unsigned int allocated;
374 Type *array;
375 Type static_array[StaticSize];
377 void init (void) { memset (this, 0, sizeof (*this)); } in init()
379 inline Type& operator [] (unsigned int i) { return array[i]; } in operator []()
380 inline const Type& operator [] (unsigned int i) const { return array[i]; } in operator []()
382 inline Type *push (void) in push()
414 inline void pop (void) in pop()
[all …]