| /* |
| * Copyright (C) 2008 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #ifndef bbs_INT16ARR_EM_H |
| #define bbs_INT16ARR_EM_H |
| |
| /* ---- includes ----------------------------------------------------------- */ |
| |
| #include "b_BasicEm/Context.h" |
| #include "b_BasicEm/MemSeg.h" |
| |
| /* ---- related objects --------------------------------------------------- */ |
| |
| /* ---- typedefs ----------------------------------------------------------- */ |
| |
| /* ---- constants ---------------------------------------------------------- */ |
| |
| /* ---- object definition -------------------------------------------------- */ |
| |
| /** short array */ |
| struct bbs_Int16Arr |
| { |
| |
| /* ---- private data --------------------------------------------------- */ |
| |
| /** pointer to exclusive memory segment used for allocation */ |
| struct bbs_MemSeg* mspE; |
| |
| /* ---- public data ---------------------------------------------------- */ |
| |
| /** pointer to array of int16 */ |
| int16* arrPtrE; |
| |
| /** current size */ |
| uint32 sizeE; |
| |
| /** allocated size */ |
| uint32 allocatedSizeE; |
| |
| }; |
| |
| /* ---- associated objects ------------------------------------------------- */ |
| |
| /* ---- external functions ------------------------------------------------- */ |
| |
| /* ---- \ghd{ constructor/destructor } ------------------------------------- */ |
| |
| /** initializes bbs_Int16Arr */ |
| void bbs_Int16Arr_init( struct bbs_Context* cpA, |
| struct bbs_Int16Arr* ptrA ); |
| |
| /** frees bbs_Int16Arr */ |
| void bbs_Int16Arr_exit( struct bbs_Context* cpA, |
| struct bbs_Int16Arr* ptrA ); |
| |
| /* ---- \ghd{ operators } -------------------------------------------------- */ |
| |
| /** copy operator */ |
| void bbs_Int16Arr_copy( struct bbs_Context* cpA, |
| struct bbs_Int16Arr* ptrA, |
| const struct bbs_Int16Arr* srcPtrA ); |
| |
| /** equal operator */ |
| flag bbs_Int16Arr_equal( struct bbs_Context* cpA, |
| const struct bbs_Int16Arr* ptrA, |
| const struct bbs_Int16Arr* srcPtrA ); |
| |
| /* ---- \ghd{ query functions } -------------------------------------------- */ |
| |
| /** calculates the amount of heap memory needed (16bit words) if created with given parameters */ |
| uint32 bbs_Int16Arr_heapSize( struct bbs_Context* cpA, |
| const struct bbs_Int16Arr* ptrA, |
| uint32 sizeA ); |
| |
| /* ---- \ghd{ modify functions } ------------------------------------------- */ |
| |
| /** allocates memory for bbs_Int16Arr */ |
| void bbs_Int16Arr_create( struct bbs_Context* cpA, |
| struct bbs_Int16Arr* ptrA, |
| uint32 sizeA, |
| struct bbs_MemSeg* mspA ); |
| |
| /** allocates memory for bbs_Int16Arr, |
| Allocation is done for allocPtrA with extra memory to allow for alignment, |
| aligned memory pointer is copied to ptrA. |
| alignBytes must be a power of 2. |
| bbs_Int16Arr_heapSize does not apply ! |
| */ |
| void bbs_Int16Arr_createAligned( struct bbs_Context* cpA, |
| struct bbs_Int16Arr* ptrA, |
| uint32 sizeA, |
| struct bbs_MemSeg* mspA, |
| struct bbs_Int16Arr* allocPtrA, |
| uint32 alignBytesA ); |
| |
| /** sets array size */ |
| void bbs_Int16Arr_size( struct bbs_Context* cpA, |
| struct bbs_Int16Arr* ptrA, |
| uint32 sizeA ); |
| |
| /* ---- \ghd{ memory I/O } ------------------------------------------------- */ |
| |
| /** size object needs when written to memory */ |
| uint32 bbs_Int16Arr_memSize( struct bbs_Context* cpA, |
| const struct bbs_Int16Arr* ptrA ); |
| |
| /** writes object to memory; returns number of 16-bit words written */ |
| uint32 bbs_Int16Arr_memWrite( struct bbs_Context* cpA, |
| const struct bbs_Int16Arr* ptrA, |
| uint16* memPtrA ); |
| |
| /** reads object from memory; returns number of 16-bit words read */ |
| uint32 bbs_Int16Arr_memRead( struct bbs_Context* cpA, |
| struct bbs_Int16Arr* ptrA, |
| const uint16* memPtrA, |
| struct bbs_MemSeg* mspA ); |
| |
| /* ---- \ghd{ exec functions } --------------------------------------------- */ |
| |
| /** fills array with a value */ |
| void bbs_Int16Arr_fill( struct bbs_Context* cpA, |
| struct bbs_Int16Arr* ptrA, |
| int16 valA ); |
| |
| #endif /* bbs_INT16ARR_EM_H */ |
| |