Home | History | Annotate | Download | only in src

Lines Matching defs:Instance

31 /*      hInstance = Instance handle     Returns the memory requirements and             */
32 /* allocated base addresses for the instance */
37 /* When the function is called for free (hInstance = Instance Handle) the memory */
41 /* hInstance Instance Handle */
43 /* InitParams Pointer to the instance init parameters */
56 INST_ALLOC Instance;
63 InstAlloc_Init( &Instance , LVM_NULL);
105 * Instance memory
108 InstAlloc_AddMember( &Instance, sizeof(LVPSA_InstancePr_t) );
109 InstAlloc_AddMember( &Instance, pInitParams->nBands * sizeof(LVM_UINT16) );
110 InstAlloc_AddMember( &Instance, pInitParams->nBands * sizeof(LVPSA_FilterParam_t) );
127 InstAlloc_AddMember( &Instance, pInitParams->nBands * BufferLength * sizeof(LVM_UINT8) );
128 InstAlloc_AddMember( &Instance, pInitParams->nBands * sizeof(LVM_UINT8) );
129 InstAlloc_AddMember( &Instance, pInitParams->nBands * sizeof(LVPSA_BPFilterPrecision_en) );
130 pMemoryTable->Region[LVPSA_MEMREGION_INSTANCE].Size = InstAlloc_GetTotal(&Instance);