HomeSort by relevance Sort by last modified time
    Searched full:ptra (Results 1 - 25 of 174) sorted by null

1 2 3 4 5 6 7

  /external/neven/Embedded/common/src/b_BitFeatureEm/
Scanner.c 45 struct bbf_Scanner* ptrA,
55 uint32 proL = ptrA->maxRadiusE;
59 uint32 woL = ptrA->maxImageWidthE;
60 uint32 hoL = ptrA->maxImageHeightE;
63 uint32 xwoL = woL + ( ptrA->borderWidthE << 1 );
64 uint32 xhoL = hoL + ( ptrA->borderHeightE << 1 );
67 bbs_UInt16Arr_create( cpA, &ptrA->workImageE, ( ( woL >> 1 ) + ( woL & 1 ) ) * hoL, mspL );
69 bbs_UInt16Arr_fill( cpA, &ptrA->workImageE, 0 );
72 bim_UInt32Image_create( cpA, &ptrA->bitImageE, xwoL, ( xhoL >> 5 ) + ( ( ( xhoL & 0x1F ) != 0 ) ? 1 : 0 ), mspL );
74 bim_UInt32Image_setAllPixels( cpA, &ptrA->bitImageE, 0, 0 )
    [all...]
LocalScanDetector.c 38 const struct bbf_LocalScanDetector* ptrA,
44 struct bts_Cluster2D* tmpCl1PtrL = ( struct bts_Cluster2D* )&ptrA->tmpCluster1E;
45 struct bts_Cluster2D* tmpCl2PtrL = ( struct bts_Cluster2D* )&ptrA->tmpCluster2E;
46 struct bts_RBFMap2D* rbfPtrL = ( struct bts_RBFMap2D* )&ptrA->rbfMapE;
54 &ptrA->pcaClusterE,
61 bts_RBFMap2D_mapCluster( cpA, rbfPtrL, &ptrA->pcaClusterE.clusterE, tmpCl1PtrL, 6/* ! */ );
66 const int16* matPtrL = ptrA->pcaMatE.arrPtrE;
69 const int16* avgPtrL = ptrA->pcaAvgE.arrPtrE;
79 if( ptrA->pcaDimSubSpaceE > bpi_LOCAL_SCAN_DETECTOR_MAX_PCA_DIM )
86 for( iL = 0; iL < ptrA->pcaDimSubSpaceE; iL++
    [all...]
LocalScanner.c 35 struct bbf_LocalScanner* ptrA,
43 uint32 proL = ptrA->maxRadiusE;
47 uint32 woL = ptrA->maxImageWidthE;
48 uint32 hoL = ptrA->maxImageHeightE;
50 if( ptrA->minScaleExpE > 0 )
53 bbs_UInt8Arr_create( cpA, &ptrA->workImageBufferE, ( woL >> 1 ) * ( hoL >> 1 ), espL );
54 bbs_UInt8Arr_fill( cpA, &ptrA->workImageBufferE, 0 );
58 bim_UInt32Image_create( cpA, &ptrA->bitImageE, woL, ( hoL >> 5 ) + ( ( ( hoL & 0x1F ) != 0 ) ? 1 : 0 ), espL );
59 bim_UInt32Image_setAllPixels( cpA, &ptrA->bitImageE, 0, 0 );
62 bbs_UInt32Arr_create( cpA, &ptrA->patchBufferE, ptrA->bitImageE.widthE, espL )
    [all...]
ScanDetector.c 42 struct bbf_ScanDetector* ptrA )
46 ptrA->minScaleE = 0;
47 ptrA->maxScaleE = 0;
48 ptrA->maxImageWidthE = 0;
49 ptrA->maxImageHeightE = 0;
50 bbf_Scanner_init( cpA, &ptrA->scannerE );
52 ptrA->patchWidthE = 0;
53 ptrA->patchHeightE = 0;
54 ptrA->minDefScaleE = 0;
55 ptrA->maxDefScaleE = 0
    [all...]
Feature.c 56 struct bbf_Feature* ptrA )
58 ptrA->typeE = 0;
59 ptrA->patchWidthE = 0;
60 ptrA->patchHeightE = 0;
61 ptrA->vpActivityE = NULL;
67 struct bbf_Feature* ptrA )
69 ptrA->typeE = 0;
70 ptrA->patchWidthE = 0;
71 ptrA->patchHeightE = 0;
72 ptrA->vpActivityE = NULL
    [all...]
Scanner.h 162 struct bbf_Scanner* ptrA );
166 struct bbf_Scanner* ptrA );
172 struct bbf_Scanner* ptrA,
177 const struct bbf_Scanner* ptrA,
183 uint32 bbf_Scanner_positions( const struct bbf_Scanner* ptrA );
186 uint32 bbf_Scanner_scanIndex( const struct bbf_Scanner* ptrA );
189 void bbf_Scanner_pos( const struct bbf_Scanner* ptrA,
193 void bbf_Scanner_idxPos( const struct bbf_Scanner* ptrA, uint32 scanIndexA,
200 struct bbf_Scanner* ptrA,
217 struct bbf_Scanner* ptrA,
    [all...]
Sequence.c 42 struct bbf_Sequence* ptrA )
44 bbs_memset16( ptrA->ftrPtrArrE, 0, bbs_SIZEOF16( ptrA->ftrPtrArrE ) );
46 bbf_Feature_init( cpA, &ptrA->baseE );
47 ptrA->baseE.typeE = ( uint32 )bbf_FT_SEQUENCE;
48 ptrA->baseE.vpActivityE = bbf_Sequence_activity;
49 ptrA->sizeE = 0;
50 bbs_Int32Arr_init( cpA, &ptrA->thrArrE );
51 bbs_UInt16Arr_init( cpA, &ptrA->wgtArrE );
52 bbs_UInt16Arr_init( cpA, &ptrA->dataArrE )
    [all...]
  /external/neven/Embedded/common/src/b_TensorEm/
RBFMap2D.c 43 struct bts_RBFMap2D* ptrA )
45 ptrA->RBFTypeE = bts_RBF_LINEAR;
46 bts_Cluster2D_init( cpA, &ptrA->srcClusterE );
47 bts_Cluster2D_init( cpA, &ptrA->rbfCoeffClusterE );
48 ptrA->altTypeE = bts_ALT_LINEAR;
49 bts_Flt16Alt2D_init( &ptrA->altE );
51 ptrA->altOnlyE = FALSE;
53 bts_Int32Mat_init( cpA, &ptrA->matE );
54 bts_Int32Mat_init( cpA, &ptrA->tempMatE );
55 bbs_Int32Arr_init( cpA, &ptrA->inVecE )
    [all...]
Cluster3D.c 43 struct bts_Cluster3D* ptrA )
45 ptrA->mspE = NULL;
46 ptrA->vecArrE = NULL;
47 ptrA->allocatedSizeE = 0;
48 ptrA->sizeE = 0;
49 ptrA->bbpE = 0;
55 struct bts_Cluster3D* ptrA )
57 bbs_MemSeg_free( cpA, ptrA->mspE, ptrA->vecArrE );
58 ptrA->vecArrE = NULL
    [all...]
Cluster2D.c 87 struct bts_Cluster2D* ptrA )
89 ptrA->mspE = NULL;
90 ptrA->vecArrE = NULL;
91 ptrA->allocatedSizeE = 0;
92 ptrA->sizeE = 0;
93 ptrA->bbpE = 0;
99 struct bts_Cluster2D* ptrA )
101 bbs_MemSeg_free( cpA, ptrA->mspE, ptrA->vecArrE );
102 ptrA->vecArrE = NULL
    [all...]
CompactMat.c 41 struct bts_CompactMat* ptrA,
46 const int16* rowPtrL = ptrA->cpsArrE.arrPtrE + ptrA->wordsPerRowE * rowA;
65 switch( ptrA->bitsPerValueE )
219 uint32 bitsL = ptrA->bitsPerValueE;
239 switch( ptrA->bitsPerValueE )
291 uint32 bitsL = ptrA->bitsPerValueE;
343 struct bts_CompactMat* ptrA )
345 ptrA->widthE = 0;
346 ptrA->heightE = 0
    [all...]
Flt16Vec.c 43 struct bts_Flt16Vec* ptrA )
45 bbs_Int16Arr_init( cpA, &ptrA->arrE );
46 ptrA->expE = 0;
52 struct bts_Flt16Vec* ptrA )
54 bbs_Int16Arr_exit( cpA, &ptrA->arrE );
55 ptrA->expE = 0;
69 struct bts_Flt16Vec* ptrA,
72 bbs_Int16Arr_copy( cpA, &ptrA->arrE, &srcPtrA->arrE );
73 ptrA->expE = srcPtrA->expE;
79 const struct bts_Flt16Vec* ptrA,
    [all...]
VectorMap.c 47 struct bts_VectorMap* ptrA )
49 ptrA->typeE = 0;
50 ptrA->vpMapE = NULL;
56 struct bts_VectorMap* ptrA )
58 ptrA->typeE = 0;
59 ptrA->vpMapE = NULL;
73 struct bts_VectorMap* ptrA,
76 ptrA->typeE = srcPtrA->typeE;
77 ptrA->vpMapE = srcPtrA->vpMapE;
83 const struct bts_VectorMap* ptrA,
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
h264bsd_interpolate_chroma_hor.s 35 ptrA RN 0
143 ADD ptrA, ref, tmp3 ;// ptrA = ref + y0*width+x0
176 LDRB tmp1, [ptrA, width]
177 LDRB tmp2, [ptrA], #1
180 LDRB tmp3, [ptrA, width]
181 LDRB tmp4, [ptrA], #1
186 LDRB tmp1, [ptrA, width]
187 LDRB tmp2, [ptrA], #1
217 ADD ptrA, ptrA, width, LSL #
    [all...]
h264bsd_interpolate_chroma_hor_ver.s 36 ptrA RN 0
148 ADD ptrA, ref, tmp3 ;// ptrA = ref + y0*width+x0
180 LDRB tmp1, [ptrA]
181 LDRB tmp3, [ptrA, width]
182 LDRB tmp5, [ptrA, width, LSL #1]
193 LDRB tmp2, [ptrA, #1]!
194 LDRB tmp4, [ptrA, width]
195 LDRB tmp6, [ptrA, width, LSL #1]
214 LDRB tmp1, [ptrA, #1]
    [all...]
h264bsd_interpolate_chroma_ver.s 34 ptrA RN 0
141 ADD ptrA, ref, tmp3 ;// ptrA = ref + y0*width+x0
176 LDRB tmp2, [ptrA,width] ;// 2 row, 1 col
177 LDRB tmp3, [ptrA,width, LSL #1] ;// 3 row, 1 col
178 LDRB tmp1, [ptrA],#1 ;// 1 row, 1 col
180 LDRB tmp5, [ptrA,width] ;// 2 row, 2 col
181 LDRB tmp6, [ptrA,width, LSL #1] ;// 3 row, 2 col
182 LDRB tmp4, [ptrA],#1 ;// 1 row, 2 col
212 ADD ptrA, ptrA, width, LSL #
    [all...]
  /external/neven/Embedded/common/src/b_BasicEm/
MemTbl.c 54 struct bbs_MemTbl* ptrA )
59 bbs_MemSeg_init( cpA, &ptrA->esArrE[ iL ] );
60 bbs_MemSeg_init( cpA, &ptrA->ssArrE[ iL ] );
61 ptrA->espArrE[ iL ] = NULL;
63 ptrA->esSizeE = 0;
64 ptrA->ssSizeE = 0;
70 struct bbs_MemTbl* ptrA )
75 bbs_MemSeg_exit( cpA, &ptrA->esArrE[ iL ] );
76 bbs_MemSeg_exit( cpA, &ptrA->ssArrE[ iL ] );
77 ptrA->espArrE[ iL ] = NULL
    [all...]
MemSeg.c 42 struct bbs_MemSeg* ptrA )
44 ptrA->memPtrE = NULL;
45 ptrA->sizeE = 0;
46 ptrA->allocIndexE = 0;
47 ptrA->sharedE = FALSE;
48 ptrA->idE = 0;
49 ptrA->dynMemManagerPtrE = NULL;
55 struct bbs_MemSeg* ptrA )
57 ptrA->memPtrE = NULL;
58 ptrA->sizeE = 0
    [all...]
Int16Arr.c 45 struct bbs_Int16Arr* ptrA )
47 ptrA->arrPtrE = NULL;
48 ptrA->sizeE = 0;
49 ptrA->allocatedSizeE = 0;
50 ptrA->mspE = NULL;
56 struct bbs_Int16Arr* ptrA )
58 bbs_MemSeg_free( cpA, ptrA->mspE, ptrA->arrPtrE );
59 ptrA->arrPtrE = NULL;
60 ptrA->mspE = NULL
    [all...]
  /external/neven/Embedded/common/src/b_APIEm/
BFFaceFinder.c 44 struct bpi_BFFaceFinder* ptrA )
46 bpi_FaceFinder_init( cpA, &ptrA->baseE );
47 ptrA->baseE.typeE = ( uint32 )bpi_FF_BF_FACE_FINDER;
48 ptrA->baseE.vpSetParamsE = bpi_BFFaceFinder_setParams;
49 ptrA->baseE.vpSetRangeE = bpi_BFFaceFinder_setRange;
50 ptrA->baseE.vpProcessE = bpi_BFFaceFinder_processDcr;
51 ptrA->baseE.vpPutDcrE = bpi_BFFaceFinder_putDcr;
52 ptrA->baseE.vpGetDcrE = bpi_BFFaceFinder_getDcr;
54 ptrA->detectedFacesE = 0;
55 ptrA->availableFacesE = 0
    [all...]
DCR.c 41 struct bpi_DCR* ptrA )
43 ptrA->maxImageWidthE = 0;
44 ptrA->maxImageHeightE = 0;
45 ptrA->imageDataPtrE = NULL;
46 ptrA->imageWidthE = 0;
47 ptrA->imageHeightE = 0;
48 bts_Int16Vec2D_init( &ptrA->offsE );
49 bts_IdCluster2D_init( cpA, &ptrA->mainClusterE );
50 bts_IdCluster2D_init( cpA, &ptrA->sdkClusterE );
51 ptrA->confidenceE = 0
    [all...]
  /external/deqp/framework/delibs/decpp/
deSharedPtr.cpp 88 SharedPtr<Object> ptrA(m_ptr);
91 ptrB = ptrA;
92 ptrA = SharedPtr<Object>();
124 WeakPtr<Object> ptrA(m_ptr);
127 ptrB = ptrA;
128 ptrA = SharedPtr<Object>();
172 SharedPtr<Object> ptrA;
173 SharedPtr<Object> ptrB(ptrA);
179 SharedPtr<Object> ptrA;
181 ptrB = ptrA;
    [all...]
  /external/neven/Embedded/common/src/b_ImageEm/
UInt8PyramidalImage.c 43 struct bim_UInt8PyramidalImage* ptrA )
45 bbs_UInt8Arr_init( cpA, &ptrA->arrE );
46 ptrA->widthE = 0;
47 ptrA->heightE = 0;
48 ptrA->depthE = 0;
49 ptrA->typeE = bim_UINT8_PYRAMIDAL_IMG;
55 struct bim_UInt8PyramidalImage* ptrA )
57 bbs_UInt8Arr_exit( cpA, &ptrA->arrE );
58 ptrA->widthE = 0;
59 ptrA->heightE = 0;
    [all...]
UInt16BytePyrImage.c 43 struct bim_UInt16BytePyrImage* ptrA )
45 bbs_UInt16Arr_init( cpA, &ptrA->arrE );
46 ptrA->widthE = 0;
47 ptrA->heightE = 0;
48 ptrA->depthE = 0;
49 ptrA->typeE = bim_UINT16_PYRAMIDAL_IMG;
55 struct bim_UInt16BytePyrImage* ptrA )
57 bbs_UInt16Arr_exit( cpA, &ptrA->arrE );
58 ptrA->widthE = 0;
59 ptrA->heightE = 0;
    [all...]
UInt32Image.c 41 struct bim_UInt32Image* ptrA )
43 bbs_UInt32Arr_init( cpA, &ptrA->arrE );
44 ptrA->widthE = 0;
45 ptrA->heightE = 0;
51 struct bim_UInt32Image* ptrA )
53 bbs_UInt32Arr_exit( cpA, &ptrA->arrE );
54 ptrA->widthE = 0;
55 ptrA->heightE = 0;
69 struct bim_UInt32Image* ptrA,
73 if( ptrA->arrE.allocatedSizeE < srcPtrA->arrE.allocatedSizeE
    [all...]

Completed in 852 milliseconds

1 2 3 4 5 6 7