HomeSort by relevance Sort by last modified time
    Searched defs:matrices (Results 1 - 4 of 4) sorted by null

  /external/opencv/cvaux/src/
cvtexture.cpp 60 double*** matrices; member in struct:CvGLCM
140 newGLCM->matrices = 0;
233 if( (flag == CV_GLCM_GLCM || flag == CV_GLCM_ALL) && (*GLCM)->matrices )
237 if( (*GLCM)->matrices[ matrixLoop ] )
239 cvFree( (*GLCM)->matrices[matrixLoop] );
240 cvFree( (*GLCM)->matrices + matrixLoop );
244 cvFree( &((*GLCM)->matrices) );
283 double*** matrices = 0; local
285 // allocate memory to the matrices
286 CV_CALL( destGLCM->matrices = (double***)cvAlloc( sizeof(matrices[0])*numSteps ))
    [all...]
  /external/skia/src/core/
SkPictureRecord.cpp 573 int SkPictureRecord::find(SkTDArray<const SkFlatMatrix* >& matrices, const SkMatrix* matrix) {
577 int index = SkTSearch<SkFlatData>((const SkFlatData**) matrices.begin(),
578 matrices.count(), (SkFlatData*) flat, sizeof(flat), &SkFlatData::Compare);
581 return matrices[index]->index();
584 *matrices.insert(index) = flat;
644 matrices(&sizeData);
667 int SkPictureRecord::matrices(size_t* size) const { function in class:SkPictureRecord
SkPicturePlayback.cpp 20 int matrices = record.matrices(&matricesBytes); local
29 if (matrices != 0)
30 SkDebugf("matrices size %zd (matrices:%d) ", matricesBytes, matrices);
86 const SkTDArray<const SkFlatMatrix* >& matrices = record.getMatrices(); local
87 fMatrixCount = matrices.count();
90 for (const SkFlatMatrix** matrixPtr = matrices.begin();
91 matrixPtr != matrices.end(); matrixPtr++)
    [all...]
  /frameworks/base/libs/hwui/
DisplayListRenderer.cpp 189 const Vector<SkMatrix*> &matrices = recorder.getMatrices(); local
190 for (size_t i = 0; i < matrices.size(); i++) {
191 mMatrices.add(matrices.itemAt(i));
    [all...]

Completed in 445 milliseconds