Home
last modified time | relevance | path

Searched refs:rowPtrs (Results 1 – 25 of 29) sorted by relevance

12

/dports/misc/visp/visp-3.4.0/modules/core/src/math/matrix/
H A DvpSubMatrix.cpp86 if (rowPtrs) in init()
87 free(rowPtrs); in init()
89 rowPtrs = (double **)malloc(nrows * sizeof(double *)); in init()
91 rowPtrs[r] = m.data + col_offset + (r + row_offset) * pColNum; in init()
130 rowPtrs[i][j] = B[i][j]; in operator =()
152 double **BrowPtrs = B.rowPtrs; in operator =()
156 rowPtrs[i][j] = BrowPtrs[i][j]; in operator =()
170 rowPtrs[i][j] = x; in operator =()
H A DvpSubRowVector.cpp82 if (rowPtrs) in init()
83 free(rowPtrs); in init()
85 rowPtrs = (double **)malloc(1 * sizeof(double *)); in init()
87 rowPtrs[i] = v.data + i + offset; in init()
H A DvpSubColVector.cpp82 if (rowPtrs) { in init()
83 free(rowPtrs); in init()
86 rowPtrs = (double **)malloc(parent->getRows() * sizeof(double *)); in init()
88 rowPtrs[i] = v.data + i + offset; in init()
H A DvpMatrix.cpp208 rowPtrs = A.rowPtrs; in vpMatrix()
214 A.rowPtrs = NULL; in vpMatrix()
681 free(rowPtrs); in operator =()
685 rowPtrs = other.rowPtrs; in operator =()
691 other.rowPtrs = NULL; in operator =()
801 rowPtrs[0][0] = val; in operator <<()
1570 s += rowPtrs[i][j]; in sum()
1656 rowPtrs[i][j] += x; in operator +=()
1666 rowPtrs[i][j] -= x; in operator -=()
1683 rowPtrs[i][j] *= x; in operator *=()
[all …]
H A DvpRowVector.cpp121 rowPtrs[i][j] = x; in operator =()
132 free(rowPtrs); in operator =()
136 rowPtrs = other.rowPtrs; in operator =()
142 other.rowPtrs = NULL; in operator =()
591 rowPtrs = v.rowPtrs; in vpRowVector()
597 v.rowPtrs = NULL; in vpRowVector()
1067 sum += rowPtrs[0][j]; in sum()
1084 double x = rowPtrs[0][j]; in sumSquare()
1160 if (this->rowPtrs == NULL) // Fix coverity scan: explicit null dereferenced in init()
H A DvpColVector.cpp258 if (this->rowPtrs == NULL) // Fix coverity scan: explicit null dereferenced in init()
331 rowPtrs = v.rowPtrs; in vpColVector()
337 v.rowPtrs = NULL; in vpColVector()
623 rowPtrs[i][j] = *x++; in operator <<()
710 free(rowPtrs); in operator =()
714 rowPtrs = other.rowPtrs; in operator =()
720 other.rowPtrs = NULL; in operator =()
/dports/misc/visp/visp-3.4.0/modules/core/include/visp3/core/
H A DvpArray2D.h139 Type **rowPtrs; variable
207 rowPtrs = A.rowPtrs;
213 A.rowPtrs = NULL;
265 if (rowPtrs != NULL) {
266 free(rowPtrs);
267 rowPtrs = NULL;
335 this->rowPtrs = (Type **)realloc(this->rowPtrs, nrows * sizeof(Type *));
395 rowPtrs = reinterpret_cast<Type **>(realloc(rowPtrs, nrows * sizeof(Type *))); in reshape()
397 Type **t_ = rowPtrs; in reshape()
436 free(rowPtrs);
[all …]
H A DvpRowVector.h153 if (rowPtrs != NULL) { in clear()
154 free(rowPtrs); in clear()
155 rowPtrs = NULL; in clear()
H A DvpColVector.h182 if (rowPtrs != NULL) { in clear()
183 free(rowPtrs); in clear()
184 rowPtrs = NULL; in clear()
H A DvpMatrix.h226 if (rowPtrs != NULL) { in clear()
227 free(rowPtrs); in clear()
228 rowPtrs = NULL; in clear()
/dports/games/dhewm3/dhewm3-1.5.1/neo/idlib/math/
H A DLcp.cpp157 idSwap( rowPtrs[i], rowPtrs[j] ); in Swap()
236 y0[i] = -rowPtrs[i][r]; in RemoveClamped()
246 z1[i] = -rowPtrs[r][i]; in RemoveClamped()
254 y0[i] += rowPtrs[i][r]; in RemoveClamped()
258 z1[i] += rowPtrs[r][i]; in RemoveClamped()
356 ptr[i] = rowPtrs[i][d]; in CalcForceDelta()
546 rowPtrs[i] = m[i]; in Solve()
886 idSwap( rowPtrs[i], rowPtrs[j] ); in Swap()
985 diag = rowPtrs[0][0]; in RemoveClamped()
997 ptr = rowPtrs[r]; in RemoveClamped()
[all …]
/dports/lang/squeak/Squeak-4.10.2.2614-src/Cross/plugins/Mpeg3Plugin/libmpeg/
H A Dtest.c13 unsigned char * rowPtrs[400]; in main() local
32 rowPtrs[i] = buf[i]; in main()
43 mpeg3_read_frame(file, rowPtrs, in main()
/dports/misc/visp/visp-3.4.0/modules/core/src/math/transformation/
H A DvpForceTwistMatrix.cpp64 rowPtrs[i][j] = M.rowPtrs[i][j]; in operator =()
279 s += rowPtrs[i][k] * F.rowPtrs[k][j]; in operator *()
306 s += rowPtrs[i][k] * M[k][j]; in operator *()
372 Hout[i] += rowPtrs[i][j] * H[j]; in operator *()
H A DvpVelocityTwistMatrix.cpp62 rowPtrs[i][j] = V.rowPtrs[i][j]; in operator =()
227 s += rowPtrs[i][k] * V.rowPtrs[k][j]; in operator *()
285 s += rowPtrs[i][k] * M[k][j]; in operator *()
319 c[i] += rowPtrs[i][j] * v[j]; in operator *()
H A DvpRotationMatrix.cpp89 rowPtrs[i][j] = R.rowPtrs[i][j]; in operator =()
258 s += rowPtrs[i][k] * R.rowPtrs[k][j]; in operator *()
339 v_out[i] += rowPtrs[i][j] * vj; in operator *()
359 p[i] += rowPtrs[i][j] * tv[j]; in operator *()
376 R[i][j] = rowPtrs[i][j] * x; in operator *()
389 rowPtrs[i][j] *= x; in operator *=()
H A DvpHomogeneousMatrix.cpp444 rowPtrs[i][j] = M.rowPtrs[i][j]; in operator =()
534 p[i] += rowPtrs[i][j] * v[j]; in operator *()
H A DvpRotationVector.cpp183 double x = rowPtrs[i][0]; in sumSquare()
H A DvpTranslationVector.cpp743 double x = rowPtrs[i][0]; in sumSquare()
/dports/graphics/freeimage/FreeImage/Source/OpenEXR/IlmImf/
H A DImfDwaCompressor.cpp468 (std::vector<char *> &rowPtrs, in LossyDctDecoder() argument
478 _rowPtrs.push_back(rowPtrs); in LossyDctDecoder()
610 std::vector<const char *> &rowPtrs, in LossyDctEncoder() argument
621 _rowPtrs.push_back(rowPtrs); in LossyDctEncoder()
2029 rowPtrs[_cscSets[csc].idx[0]], in compress()
2030 rowPtrs[_cscSets[csc].idx[1]], in compress()
2078 rowPtrs[chan], in compress()
2675 (rowPtrs[rChan], in uncompress()
2676 rowPtrs[gChan], in uncompress()
2677 rowPtrs[bChan], in uncompress()
[all …]
/dports/graphics/povray37/povray-3.7.0.10/libraries/openexr/IlmImf/
H A DImfDwaCompressor.cpp468 (std::vector<char *> &rowPtrs, in LossyDctDecoder() argument
478 _rowPtrs.push_back(rowPtrs); in LossyDctDecoder()
610 std::vector<const char *> &rowPtrs, in LossyDctEncoder() argument
621 _rowPtrs.push_back(rowPtrs); in LossyDctEncoder()
2029 rowPtrs[_cscSets[csc].idx[0]], in compress()
2030 rowPtrs[_cscSets[csc].idx[1]], in compress()
2078 rowPtrs[chan], in compress()
2670 (rowPtrs[rChan], in uncompress()
2671 rowPtrs[gChan], in uncompress()
2672 rowPtrs[bChan], in uncompress()
[all …]
/dports/graphics/opencv/opencv-4.5.3/3rdparty/openexr/IlmImf/
H A DImfDwaCompressor.cpp469 (std::vector<char *> &rowPtrs, in LossyDctDecoder() argument
479 _rowPtrs.push_back(rowPtrs); in LossyDctDecoder()
611 std::vector<const char *> &rowPtrs, in LossyDctEncoder() argument
622 _rowPtrs.push_back(rowPtrs); in LossyDctEncoder()
2039 rowPtrs[_cscSets[csc].idx[0]], in compress()
2040 rowPtrs[_cscSets[csc].idx[1]], in compress()
2088 rowPtrs[chan], in compress()
2682 (rowPtrs[rChan], in uncompress()
2683 rowPtrs[gChan], in uncompress()
2684 rowPtrs[bChan], in uncompress()
[all …]
/dports/graphics/openexr/openexr-3.1.4/src/lib/OpenEXR/
H A DImfDwaCompressor.cpp448 (std::vector<char *> &rowPtrs, in LossyDctDecoder() argument
459 _rowPtrs.push_back(rowPtrs); in LossyDctDecoder()
592 std::vector<const char *> &rowPtrs, in LossyDctEncoder() argument
603 _rowPtrs.push_back(rowPtrs); in LossyDctEncoder()
2033 rowPtrs[_cscSets[csc].idx[0]], in compress()
2034 rowPtrs[_cscSets[csc].idx[1]], in compress()
2082 rowPtrs[chan], in compress()
2689 (rowPtrs[rChan], in uncompress()
2690 rowPtrs[gChan], in uncompress()
2691 rowPtrs[bChan], in uncompress()
[all …]
/dports/misc/visp/visp-3.4.0/modules/io/src/image/
H A DvpImageIo.cpp1827 png_bytep *rowPtrs = new png_bytep[height]; in readPNG() local
1833 rowPtrs[i] = (png_bytep)data + (i * stride); in readPNG()
1835 png_read_image(png_ptr, rowPtrs); in readPNG()
1878 delete[](png_bytep) rowPtrs; in readPNG()
2004 png_bytep *rowPtrs = new png_bytep[height]; in readPNG() local
2010 rowPtrs[i] = (png_bytep)data + (i * stride); in readPNG()
2012 png_read_image(png_ptr, rowPtrs); in readPNG()
2055 delete[](png_bytep) rowPtrs; in readPNG()
/dports/graphics/wdune/wdune-1.926/docs/export_example_c++/
H A DlibC++RWD.h957 png_bytep *rowPtrs; in CRWDPngRead() local
962 rowPtrs = (png_bytep *) malloc(sizeof(png_bytep) * data->height); in CRWDPngRead()
966 rowPtrs[row] = (png_bytep)png_malloc(*pngPtr, in CRWDPngRead()
970 png_read_image(*pngPtr, rowPtrs); in CRWDPngRead()
975 memcpy(ptr, rowPtrs[i], rowStride); in CRWDPngRead()
979 free(rowPtrs); in CRWDPngRead()
/dports/graphics/wdune/wdune-1.926/docs/export_example_c/
H A DlibCRWD.h933 png_bytep *rowPtrs; in CRWDPngRead() local
938 rowPtrs = (png_bytep *) malloc(sizeof(png_bytep) * data->height); in CRWDPngRead()
942 rowPtrs[row] = (png_bytep)png_malloc(*pngPtr, in CRWDPngRead()
946 png_read_image(*pngPtr, rowPtrs); in CRWDPngRead()
951 memcpy(ptr, rowPtrs[i], rowStride); in CRWDPngRead()
955 free(rowPtrs); in CRWDPngRead()

12