|
abc-master
|
Go to the source code of this file.
Typedefs | |
| typedef typedefABC_NAMESPACE_HEADER_START struct ParseStackFnStruct | Parse_StackFn_t |
| INCLUDES ///. More... | |
| typedef struct ParseStackOpStruct | Parse_StackOp_t |
Functions | |
| Parse_StackFn_t * | Parse_StackFnStart (int nDepth) |
| GLOBAL VARIABLES ///. More... | |
| int | Parse_StackFnIsEmpty (Parse_StackFn_t *p) |
| void | Parse_StackFnPush (Parse_StackFn_t *p, void *bFunc) |
| void * | Parse_StackFnPop (Parse_StackFn_t *p) |
| void | Parse_StackFnFree (Parse_StackFn_t *p) |
| Parse_StackOp_t * | Parse_StackOpStart (int nDepth) |
| int | Parse_StackOpIsEmpty (Parse_StackOp_t *p) |
| void | Parse_StackOpPush (Parse_StackOp_t *p, int Oper) |
| int | Parse_StackOpPop (Parse_StackOp_t *p) |
| void | Parse_StackOpFree (Parse_StackOp_t *p) |
| typedef typedefABC_NAMESPACE_HEADER_START struct ParseStackFnStruct Parse_StackFn_t |
INCLUDES ///.
CFile****************************************************************
FileName [parseInt.h]
PackageName [MVSIS 2.0: Multi-valued logic synthesis system.]
Synopsis [Parsing symbolic Boolean formulas into BDDs.]
Author [MVSIS Group]
Affiliation [UC Berkeley]
Date [Ver. 1.0. Started - September 8, 2003.]
Revision [
]PARAMETERS ///STRUCTURE DEFINITIONS ///
Definition at line 43 of file parseInt.h.
| typedef struct ParseStackOpStruct Parse_StackOp_t |
Definition at line 44 of file parseInt.h.
| void Parse_StackFnFree | ( | Parse_StackFn_t * | p | ) |
Function*************************************************************
Synopsis [Deletes the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 136 of file parseStack.c.
| int Parse_StackFnIsEmpty | ( | Parse_StackFn_t * | p | ) |
Function*************************************************************
Synopsis [Checks whether the stack is empty.]
Description []
SideEffects []
SeeAlso []
Definition at line 78 of file parseStack.c.
| void* Parse_StackFnPop | ( | Parse_StackFn_t * | p | ) |
Function*************************************************************
Synopsis [Pops an entry out of the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 115 of file parseStack.c.
| void Parse_StackFnPush | ( | Parse_StackFn_t * | p, |
| void * | bFunc | ||
| ) |
Function*************************************************************
Synopsis [Pushes an entry into the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 94 of file parseStack.c.
| Parse_StackFn_t* Parse_StackFnStart | ( | int | nDepth | ) |
GLOBAL VARIABLES ///.
MACRO DEFINITIONS ///FUNCTION DEFINITIONS ///
GLOBAL VARIABLES ///.
Function*************************************************************
Synopsis [Starts the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 57 of file parseStack.c.
| void Parse_StackOpFree | ( | Parse_StackOp_t * | p | ) |
Function*************************************************************
Synopsis [Deletes the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 235 of file parseStack.c.
| int Parse_StackOpIsEmpty | ( | Parse_StackOp_t * | p | ) |
Function*************************************************************
Synopsis [Checks whether the stack is empty.]
Description []
SideEffects []
SeeAlso []
Definition at line 177 of file parseStack.c.
| int Parse_StackOpPop | ( | Parse_StackOp_t * | p | ) |
Function*************************************************************
Synopsis [Pops an entry out of the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 214 of file parseStack.c.
| void Parse_StackOpPush | ( | Parse_StackOp_t * | p, |
| int | Oper | ||
| ) |
Function*************************************************************
Synopsis [Pushes an entry into the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 193 of file parseStack.c.
| Parse_StackOp_t* Parse_StackOpStart | ( | int | nDepth | ) |
Function*************************************************************
Synopsis [Starts the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 156 of file parseStack.c.