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.hh371 struct hb_prealloced_array_t struct
373 unsigned int len;
374 unsigned int allocated;
375 Type *array;
376 Type static_array[StaticSize];
378 void init (void) { memset (this, 0, sizeof (*this)); } in init()
380 inline Type& operator [] (unsigned int i) { return array[i]; } in operator []()
381 inline const Type& operator [] (unsigned int i) const { return array[i]; } in operator []()
383 inline Type *push (void) in push()
415 inline void pop (void) in pop()
[all …]