aslallocate.c (ab71bbb75a92412f6327ff152ebe638568e9021c) aslallocate.c (722b16673c40aedf280895f2f2f676bb494518d7)
1/******************************************************************************
2 *
3 * Module Name: aslallocate -- Local memory allocation
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *
9 * 1. Copyright Notice
10 *
1/******************************************************************************
2 *
3 * Module Name: aslallocate -- Local memory allocation
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *
9 * 1. Copyright Notice
10 *
11 * Some or all of this work - Copyright (c) 1999 - 2022, Intel Corp.
11 * Some or all of this work - Copyright (c) 1999 - 2023, Intel Corp.
12 * All rights reserved.
13 *
14 * 2. License
15 *
16 * 2.1. This is your license from Intel Corp. under its intellectual property
17 * rights. You may have additional license terms from the party that provided
18 * you this software, covering your right to use that party's intellectual
19 * property rights.

--- 270 unchanged lines hidden (view full) ---

290 * DESCRIPTION: Free all line buffers
291 *
292 *****************************************************************************/
293
294void
295UtFreeLineBuffers (
296 void)
297{
12 * All rights reserved.
13 *
14 * 2. License
15 *
16 * 2.1. This is your license from Intel Corp. under its intellectual property
17 * rights. You may have additional license terms from the party that provided
18 * you this software, covering your right to use that party's intellectual
19 * property rights.

--- 270 unchanged lines hidden (view full) ---

290 * DESCRIPTION: Free all line buffers
291 *
292 *****************************************************************************/
293
294void
295UtFreeLineBuffers (
296 void)
297{
298
299 free (AslGbl_CurrentLineBuffer);
298 free (AslGbl_CurrentLineBuffer);
299
300 free (AslGbl_MainTokenBuffer);
300 free (AslGbl_MainTokenBuffer);
301
301 free (AslGbl_MacroTokenBuffer);
302 free (AslGbl_MacroTokenBuffer);
303
304 free (AslGbl_MacroTokenReplaceBuffer);
305
302 free (AslGbl_ExpressionTokenBuffer);
303}
306 free (AslGbl_ExpressionTokenBuffer);
307}