/external/neven/Embedded/common/src/b_BasicEm/ |
Context.c | 41 void bbs_Context_init( struct bbs_Context* cpA ) 46 cpA->errStackE[ iL ].errorE = bbs_ERR_OK; 47 cpA->errStackE[ iL ].fileE[ 0 ] = 0; 48 cpA->errStackE[ iL ].lineE = 0; 49 cpA->errStackE[ iL ].textE[ 0 ] = 0; 52 cpA->errIndexE = 0; 54 bbs_MemTbl_init( cpA, &cpA->memTblE ); 58 bbs_DynMemManager_init( cpA, &cpA->dynMemManagerArrE[ iL ] ) [all...] |
Context.h | 33 typedef void ( *bbs_errorFPtr )( struct bbs_Context* cpA ); 36 typedef uint32 ( *bbs_callbackFPtr )( struct bbs_Context* cpA ); 125 void bbs_Context_init( struct bbs_Context* cpA ); 128 void bbs_Context_exit( struct bbs_Context* cpA ); 133 void bbs_Context_copy( struct bbs_Context* cpA, const struct bbs_Context* srcPtrA ); 149 flag bbs_Context_pushError( struct bbs_Context* cpA, struct bbs_Error errorA ); 152 struct bbs_Error bbs_Context_popError( struct bbs_Context* cpA ); 155 struct bbs_Error bbs_Context_peekError( struct bbs_Context* cpA ); 158 flag bbs_Context_error( struct bbs_Context* cpA ); 164 bbs_errorFPtr bbs_Context_setErrorHandler( struct bbs_Context* cpA, [all...] |
DynMemManager.h | 35 typedef void* ( *bbs_mallocFPtr )( struct bbs_Context* cpA, 81 void bbs_DynMemManager_init( struct bbs_Context* cpA, struct bbs_DynMemManager* ptrA ); 84 void bbs_DynMemManager_exit( struct bbs_Context* cpA, struct bbs_DynMemManager* ptrA ); 91 uint32 bbs_DynMemManager_allocatedSize( struct bbs_Context* cpA, const struct bbs_DynMemManager* ptrA ); 100 uint16* bbs_DynMemManager_alloc( struct bbs_Context* cpA, 106 void bbs_DynMemManager_free( struct bbs_Context* cpA, 111 uint16* bbs_DynMemManager_nextBlock( struct bbs_Context* cpA, 119 void bbs_DynMemManager_freeAll( struct bbs_Context* cpA,
|
/external/neven/Embedded/common/src/b_BitFeatureEm/ |
Feature.c | 55 void bbf_Feature_init( struct bbs_Context* cpA, 66 void bbf_Feature_exit( struct bbs_Context* cpA, 85 void bbf_Feature_copy( struct bbs_Context* cpA, 97 flag bbf_Feature_equal( struct bbs_Context* cpA, 135 uint32 bbf_Feature_memSize( struct bbs_Context* cpA, 147 uint32 bbf_Feature_memWrite( struct bbs_Context* cpA, 151 uint32 memSizeL = bbf_Feature_memSize( cpA, ptrA ); 160 uint32 bbf_Feature_memRead( struct bbs_Context* cpA, 164 if( bbs_Context_error( cpA ) ) return 0; 168 return bbf_Feature_memSize( cpA, ptrA ) [all...] |
BitParam.h | 55 void bbf_BitParam_init( struct bbs_Context* cpA, 59 void bbf_BitParam_exit( struct bbs_Context* cpA, 65 void bbf_BitParam_copy( struct bbs_Context* cpA, 70 flag bbf_BitParam_equal( struct bbs_Context* cpA, 81 uint32 bbf_BitParam_memSize( struct bbs_Context* cpA, 85 uint32 bbf_BitParam_memWrite( struct bbs_Context* cpA, 89 uint32 bbf_BitParam_memRead( struct bbs_Context* cpA,
|
Feature.h | 84 void bbf_Feature_init( struct bbs_Context* cpA, 88 void bbf_Feature_exit( struct bbs_Context* cpA, 94 void bbf_Feature_copy( struct bbs_Context* cpA, 99 flag bbf_Feature_equal( struct bbs_Context* cpA, 110 uint32 bbf_Feature_memSize( struct bbs_Context* cpA, 114 uint32 bbf_Feature_memWrite( struct bbs_Context* cpA, 118 uint32 bbf_Feature_memRead( struct bbs_Context* cpA, 124 void bbf_featureInit( struct bbs_Context* cpA, 129 void bbf_featureExit( struct bbs_Context* cpA, 133 uint32 bbf_featureMemSize( struct bbs_Context* cpA, [all...] |
/external/neven/Embedded/common/src/b_TensorEm/ |
VectorMap.c | 46 void bts_VectorMap_init( struct bbs_Context* cpA, 55 void bts_VectorMap_exit( struct bbs_Context* cpA, 72 void bts_VectorMap_copy( struct bbs_Context* cpA, 82 flag bts_VectorMap_equal( struct bbs_Context* cpA, 118 uint32 bts_VectorMap_memSize( struct bbs_Context* cpA, 128 uint32 bts_VectorMap_memWrite( struct bbs_Context* cpA, 132 uint32 memSizeL = bts_VectorMap_memSize( cpA, ptrA ); 139 uint32 bts_VectorMap_memRead( struct bbs_Context* cpA, 143 if( bbs_Context_error( cpA ) ) return 0; 145 return bts_VectorMap_memSize( cpA, ptrA ) [all...] |
Flt16Vec.h | 61 void bts_Flt16Vec_init( struct bbs_Context* cpA, 65 void bts_Flt16Vec_exit( struct bbs_Context* cpA, 71 void bts_Flt16Vec_copy( struct bbs_Context* cpA, 76 flag bts_Flt16Vec_equal( struct bbs_Context* cpA, 83 int16 bts_Flt16Vec_avg( struct bbs_Context* cpA, const struct bts_Flt16Vec* ptrA ); 86 uint32 bts_Flt16Vec_norm( struct bbs_Context* cpA, const struct bts_Flt16Vec* ptrA ); 89 uint16 bts_Flt16Vec_maxAbs( struct bbs_Context* cpA, const struct bts_Flt16Vec* ptrA ); 94 void bts_Flt16Vec_create( struct bbs_Context* cpA, 100 void bts_Flt16Vec_size( struct bbs_Context* cpA, 107 uint32 bts_Flt16Vec_memSize( struct bbs_Context* cpA, [all...] |
Alt.c | 41 void bts_Alt_init( struct bbs_Context* cpA, 44 bts_VectorMap_init( cpA, &ptrA->baseE ); 48 bts_CompactAlt_init( cpA, &ptrA->altE ); 53 void bts_Alt_exit( struct bbs_Context* cpA, 56 bts_CompactAlt_exit( cpA, &ptrA->altE ); 58 bts_VectorMap_exit( cpA, &ptrA->baseE ); 71 void bts_Alt_copy( struct bbs_Context* cpA, 75 bts_CompactAlt_copy( cpA, &ptrA->altE, &srcPtrA->altE ); 80 flag bts_Alt_equal( struct bbs_Context* cpA, 114 uint32 bts_Alt_memSize( struct bbs_Context* cpA, [all...] |
IdCluster2D.h | 59 void bts_IdCluster2D_init( struct bbs_Context* cpA, 63 void bts_IdCluster2D_exit( struct bbs_Context* cpA, 69 void bts_IdCluster2D_copy( struct bbs_Context* cpA, 74 flag bts_IdCluster2D_equal( struct bbs_Context* cpA, 81 struct bts_Flt16Vec2D bts_IdCluster2D_center( struct bbs_Context* cpA, 85 struct bts_Int16Rect bts_IdCluster2D_boundingBox( struct bbs_Context* cpA, 91 void bts_IdCluster2D_create( struct bbs_Context* cpA, 97 void bts_IdCluster2D_size( struct bbs_Context* cpA, 102 void bts_IdCluster2D_transform( struct bbs_Context* cpA, 107 void bts_IdCluster2D_copyTransform( struct bbs_Context* cpA, [all...] |
Cluster2D.h | 75 void bts_Cluster2D_init( struct bbs_Context* cpA, 79 void bts_Cluster2D_exit( struct bbs_Context* cpA, 85 void bts_Cluster2D_copy( struct bbs_Context* cpA, 90 flag bts_Cluster2D_equal( struct bbs_Context* cpA, 97 struct bts_Flt16Vec2D bts_Cluster2D_center( struct bbs_Context* cpA, 101 uint32 bts_Cluster2D_checkSum( struct bbs_Context* cpA, 105 struct bts_Int16Rect bts_Cluster2D_boundingBox( struct bbs_Context* cpA, 109 int32 bts_Cluster2D_int32X( struct bbs_Context* cpA, 114 int32 bts_Cluster2D_int32Y( struct bbs_Context* cpA, 122 void bts_Cluster2D_create( struct bbs_Context* cpA, [all...] |
Normalizer.c | 41 void bts_Normalizer_init( struct bbs_Context* cpA, 44 bts_VectorMap_init( cpA, &ptrA->baseE ); 51 void bts_Normalizer_exit( struct bbs_Context* cpA, 54 bts_VectorMap_exit( cpA, &ptrA->baseE ); 67 void bts_Normalizer_copy( struct bbs_Context* cpA, 75 flag bts_Normalizer_equal( struct bbs_Context* cpA, 108 uint32 bts_Normalizer_memSize( struct bbs_Context* cpA, 113 memSizeL += bts_VectorMap_memSize( cpA, &ptrA->baseE ); 119 uint32 bts_Normalizer_memWrite( struct bbs_Context* cpA, 123 uint32 memSizeL = bts_Normalizer_memSize( cpA, ptrA ) [all...] |
VectorMap.h | 62 void ( *vpMapE )( struct bbs_Context* cpA, 76 void bts_VectorMap_init( struct bbs_Context* cpA, 80 void bts_VectorMap_exit( struct bbs_Context* cpA, 86 void bts_VectorMap_copy( struct bbs_Context* cpA, 91 flag bts_VectorMap_equal( struct bbs_Context* cpA, 102 uint32 bts_VectorMap_memSize( struct bbs_Context* cpA, 106 uint32 bts_VectorMap_memWrite( struct bbs_Context* cpA, 110 uint32 bts_VectorMap_memRead( struct bbs_Context* cpA, 116 void bts_vectorMapInit( struct bbs_Context* cpA, 121 void bts_vectorMapExit( struct bbs_Context* cpA, [all...] |
Cluster3D.h | 71 void bts_Cluster3D_init( struct bbs_Context* cpA, 75 void bts_Cluster3D_exit( struct bbs_Context* cpA, 81 void bts_Cluster3D_copy( struct bbs_Context* cpA, 86 flag bts_Cluster3D_equal( struct bbs_Context* cpA, 93 struct bts_Flt16Vec3D bts_Cluster3D_center( struct bbs_Context* cpA, 97 struct bts_Int16Rect bts_Cluster3D_boundingBox( struct bbs_Context* cpA, 101 int32 bts_Cluster3D_int32X( struct bbs_Context* cpA, 107 int32 bts_Cluster3D_int32Y( struct bbs_Context* cpA, 113 int32 bts_Cluster3D_int32Z( struct bbs_Context* cpA, 121 void bts_Cluster3D_create( struct bbs_Context* cpA, [all...] |
Alt.h | 63 void bts_Alt_init( struct bbs_Context* cpA, 67 void bts_Alt_exit( struct bbs_Context* cpA, 73 void bts_Alt_copy( struct bbs_Context* cpA, 78 flag bts_Alt_equal( struct bbs_Context* cpA, 89 uint32 bts_Alt_memSize( struct bbs_Context* cpA, 93 uint32 bts_Alt_memWrite( struct bbs_Context* cpA, 97 uint32 bts_Alt_memRead( struct bbs_Context* cpA, 108 void bts_Alt_map( struct bbs_Context* cpA,
|
CompactAlt.h | 64 void bts_CompactAlt_init( struct bbs_Context* cpA, 68 void bts_CompactAlt_exit( struct bbs_Context* cpA, 74 void bts_CompactAlt_copy( struct bbs_Context* cpA, 83 void bts_CompactAlt_create( struct bbs_Context* cpA, 94 uint32 bts_CompactAlt_memSize( struct bbs_Context* cpA, 98 uint32 bts_CompactAlt_memWrite( struct bbs_Context* cpA, 103 uint32 bts_CompactAlt_memRead( struct bbs_Context* cpA, 116 void bts_CompactAlt_map( struct bbs_Context* cpA,
|
MapSequence.h | 76 void bts_MapSequence_init( struct bbs_Context* cpA, 80 void bts_MapSequence_exit( struct bbs_Context* cpA, 86 void bts_MapSequence_copy( struct bbs_Context* cpA, 91 flag bts_MapSequence_equal( struct bbs_Context* cpA, 102 uint32 bts_MapSequence_memSize( struct bbs_Context* cpA, 106 uint32 bts_MapSequence_memWrite( struct bbs_Context* cpA, 110 uint32 bts_MapSequence_memRead( struct bbs_Context* cpA, 121 void bts_MapSequence_map( struct bbs_Context* cpA,
|
Mat.h | 63 void bts_Mat_init( struct bbs_Context* cpA, 67 void bts_Mat_exit( struct bbs_Context* cpA, 73 void bts_Mat_copy( struct bbs_Context* cpA, 78 flag bts_Mat_equal( struct bbs_Context* cpA, 89 uint32 bts_Mat_memSize( struct bbs_Context* cpA, 93 uint32 bts_Mat_memWrite( struct bbs_Context* cpA, 97 uint32 bts_Mat_memRead( struct bbs_Context* cpA, 108 void bts_Mat_map( struct bbs_Context* cpA,
|
Normalizer.h | 59 void bts_Normalizer_init( struct bbs_Context* cpA, 63 void bts_Normalizer_exit( struct bbs_Context* cpA, 69 void bts_Normalizer_copy( struct bbs_Context* cpA, 74 flag bts_Normalizer_equal( struct bbs_Context* cpA, 85 uint32 bts_Normalizer_memSize( struct bbs_Context* cpA, 89 uint32 bts_Normalizer_memWrite( struct bbs_Context* cpA, 93 uint32 bts_Normalizer_memRead( struct bbs_Context* cpA, 104 void bts_Normalizer_map( struct bbs_Context* cpA,
|
SubVecMap.h | 65 void bts_SubVecMap_init( struct bbs_Context* cpA, 69 void bts_SubVecMap_exit( struct bbs_Context* cpA, 75 void bts_SubVecMap_copy( struct bbs_Context* cpA, 80 flag bts_SubVecMap_equal( struct bbs_Context* cpA, 91 uint32 bts_SubVecMap_memSize( struct bbs_Context* cpA, 95 uint32 bts_SubVecMap_memWrite( struct bbs_Context* cpA, 99 uint32 bts_SubVecMap_memRead( struct bbs_Context* cpA, 110 void bts_SubVecMap_map( struct bbs_Context* cpA,
|
/external/neven/Embedded/common/src/b_ImageEm/ |
ComplexImage.h | 65 void bim_ComplexImage_init( struct bbs_Context* cpA, 69 void bim_ComplexImage_exit( struct bbs_Context* cpA, 75 void bim_ComplexImage_copy( struct bbs_Context* cpA, 80 flag bim_ComplexImage_equal( struct bbs_Context* cpA, 87 uint32 bim_ComplexImage_checkSum( struct bbs_Context* cpA, 91 uint32 bim_ComplexImage_heapSize( struct bbs_Context* cpA, 98 void bim_ComplexImage_create( struct bbs_Context* cpA, 105 void bim_ComplexImage_size( struct bbs_Context* cpA, 113 uint32 bim_ComplexImage_memSize( struct bbs_Context* cpA, 117 uint32 bim_ComplexImage_memWrite( struct bbs_Context* cpA, [all...] |
UInt16ByteImage.h | 72 void bim_UInt16ByteImage_init( struct bbs_Context* cpA, 76 void bim_UInt16ByteImage_create( struct bbs_Context* cpA, 83 void bim_UInt16ByteImage_exit( struct bbs_Context* cpA, 89 void bim_UInt16ByteImage_copy( struct bbs_Context* cpA, 94 flag bim_UInt16ByteImage_equal( struct bbs_Context* cpA, 101 uint32 bim_UInt16ByteImage_checkSum( struct bbs_Context* cpA, 107 void bim_UInt16ByteImage_assignExternalImage( struct bbs_Context* cpA, 112 void bim_UInt16ByteImage_size( struct bbs_Context* cpA, 119 uint32 bim_UInt16ByteImage_memSize( struct bbs_Context* cpA, 123 uint32 bim_UInt16ByteImage_memWrite( struct bbs_Context* cpA, [all...] |
UInt32Image.h | 61 void bim_UInt32Image_init( struct bbs_Context* cpA, 65 void bim_UInt32Image_exit( struct bbs_Context* cpA, 71 void bim_UInt32Image_copy( struct bbs_Context* cpA, 76 flag bim_UInt32Image_equal( struct bbs_Context* cpA, 83 uint32 bim_UInt32Image_heapSize( struct bbs_Context* cpA, 89 uint32 bim_UInt32Image_checkSum( struct bbs_Context* cpA, 95 void bim_UInt32Image_create( struct bbs_Context* cpA, 102 void bim_UInt32Image_assignExternalImage( struct bbs_Context* cpA, 107 void bim_UInt32Image_size( struct bbs_Context* cpA, 115 uint32 bim_UInt32Image_memSize( struct bbs_Context* cpA, [all...] |
HistoEq.h | 37 void bim_UInt8Image_equalize( struct bbs_Context* cpA, 49 void bim_UInt8Image_equalizeSection( struct bbs_Context* cpA,
|
/external/neven/Embedded/common/src/b_APIEm/ |
FaceFinder.h | 57 void ( *vpSetParamsE )( struct bbs_Context* cpA, 63 void ( *vpSetRangeE )( struct bbs_Context* cpA, 69 int32 ( *vpProcessE )( struct bbs_Context* cpA, 74 int32 ( *vpPutDcrE )( struct bbs_Context* cpA, 79 void ( *vpGetDcrE )( struct bbs_Context* cpA, 93 void bpi_FaceFinder_init( struct bbs_Context* cpA, 97 void bpi_FaceFinder_exit( struct bbs_Context* cpA, 103 void bpi_FaceFinder_copy( struct bbs_Context* cpA, 108 flag bpi_FaceFinder_equal( struct bbs_Context* cpA, 119 uint32 bpi_FaceFinder_memSize( struct bbs_Context* cpA, [all...] |