Home | History | Annotate | Download | only in VarCheckLib

Lines Matching refs:Table

196   Var check add table entry.

198 @param[in, out] Table Pointer to table buffer.
199 @param[in, out] MaxNumber Pointer to maximum number of entry in the table.
200 @param[in, out] CurrentNumber Pointer to current number of entry in the table.
201 @param[in] Entry Entry will be added to the table.
209 IN OUT UINTN **Table,
218 // Check whether the table is enough to store new entry.
222 // Reallocate memory for the table.
227 *Table
237 *Table = TempTable;
245 // Add entry to the table.
247 (*Table)[*CurrentNumber] = Entry;