Home
last modified time | relevance | path

Searched defs:sz2 (Results 1 – 25 of 1117) sorted by relevance

12345678910>>...45

/dports/graphics/wdune/wdune-1.926/vcglib/vcg/math/
H A Dgen_normal.h215 int sz2; variable
275 …Val( sz2-j, sz2-i)[0] = Val(i,j)[0]; Val( sz2-j, sz2-i)[1] = Val(i,j)[1]; Val( sz2-j, sz2-i)[2] = … in Init() local
276 …Val(-sz2+j, sz2-i)[0] =-Val(i,j)[0]; Val(-sz2+j, sz2-i)[1] = Val(i,j)[1]; Val(-sz2+j, sz2-i)[2] = … in Init() local
277 …Val( sz2-j,-sz2+i)[0] = Val(i,j)[0]; Val( sz2-j,-sz2+i)[1] =-Val(i,j)[1]; Val( sz2-j,-sz2+i)[2] = … in Init() local
278 …Val(-sz2+j,-sz2+i)[0] =-Val(i,j)[0]; Val(-sz2+j,-sz2+i)[1] =-Val(i,j)[1]; Val(-sz2+j,-sz2+i)[2] = … in Init() local
/dports/devel/vcglib/vcglib-2020.09/vcg/math/
H A Dgen_normal.h213 int sz2; variable
273 …Val( sz2-j, sz2-i)[0] = Val(i,j)[0]; Val( sz2-j, sz2-i)[1] = Val(i,j)[1]; Val( sz2-j, sz2-i)[2] = … in Init() local
274 …Val(-sz2+j, sz2-i)[0] =-Val(i,j)[0]; Val(-sz2+j, sz2-i)[1] = Val(i,j)[1]; Val(-sz2+j, sz2-i)[2] = … in Init() local
275 …Val( sz2-j,-sz2+i)[0] = Val(i,j)[0]; Val( sz2-j,-sz2+i)[1] =-Val(i,j)[1]; Val( sz2-j,-sz2+i)[2] = … in Init() local
276 …Val(-sz2+j,-sz2+i)[0] =-Val(i,j)[0]; Val(-sz2+j,-sz2+i)[1] =-Val(i,j)[1]; Val(-sz2+j,-sz2+i)[2] = … in Init() local
/dports/graphics/opencv/opencv-4.5.3/samples/hal/c_hal/
H A Dimpl.c3 int wrong_add8u(const uchar* src1, size_t sz1, const uchar* src2, size_t sz2, uchar* dst, size_t sz… in wrong_add8u()
8 int wrong_add8s(const schar* src1, size_t sz1, const schar* src2, size_t sz2, schar* dst, size_t sz… in wrong_add8s()
23 int wrong_add32s(const int* src1, size_t sz1, const int* src2, size_t sz2, int* dst, size_t sz, int… in wrong_add32s()
58 int wrong_sub32s(const int* src1, size_t sz1, const int* src2, size_t sz2, int* dst, size_t sz, int… in wrong_sub32s()
303 int wrong_recip8u(const uchar* src2, size_t sz2, uchar* dst, size_t sz, int w, int h, double scale) in wrong_recip8u()
308 int wrong_recip8s(const schar* src2, size_t sz2, schar* dst, size_t sz, int w, int h, double scale) in wrong_recip8s()
313 int wrong_recip16u(const ushort* src2, size_t sz2, ushort* dst, size_t sz, int w, int h, double sca… in wrong_recip16u()
318 int wrong_recip16s(const short* src2, size_t sz2, short* dst, size_t sz, int w, int h, double scale) in wrong_recip16s()
323 int wrong_recip32s(const int* src2, size_t sz2, int* dst, size_t sz, int w, int h, double scale) in wrong_recip32s()
328 int wrong_recip32f(const float* src2, size_t sz2, float* dst, size_t sz, int w, int h, double scale) in wrong_recip32f()
[all …]
/dports/games/0ad/0ad-0.0.23b-alpha/libraries/source/fcollada/include/FUtils/
H A DFUString.h534 inline bool IsEquivalent(const char* sz1, const char* sz2) { return strcmp(sz1, sz2) == 0; } in IsEquivalent()
535 inline bool IsEquivalent(const fm::string& sz1, const char* sz2) { return strcmp(sz1.c_str(), sz2) … in IsEquivalent()
536 inline bool IsEquivalent(const char* sz1, const fm::string& sz2) { return strcmp(sz1, sz2.c_str()) … in IsEquivalent()
543 inline bool IsEquivalentI(const char* sz1, const char* sz2) { return _stricmp(sz1, sz2) == 0; } in IsEquivalentI()
544 inline bool IsEquivalentI(const fm::string& sz1, const char* sz2) { return _stricmp(sz1.c_str(), sz… in IsEquivalentI()
548 inline bool IsEquivalentI(const fchar* sz1, const fchar* sz2) { return fstricmp(sz1, sz2) == 0; } /… in IsEquivalentI()
549 inline bool IsEquivalentI(const fstring& sz1, const fchar* sz2) { return fstricmp(sz1.c_str(), sz2)… in IsEquivalentI()
550 inline bool IsEquivalentI(const fchar* sz1, const fstring& sz2) { return fstricmp(sz1, sz2.c_str())… in IsEquivalentI()
565 inline bool IsEquivalent(const fchar* sz1, const fchar* sz2) in IsEquivalent()
571 inline bool IsEquivalent(const fstring& sz1, const fchar* sz2) { return IsEquivalent(sz1.c_str(), s… in IsEquivalent()
[all …]
/dports/games/0ad/0ad-0.0.23b-alpha/libraries/source/fcollada/src/FCollada/FUtils/
H A DFUString.h534 inline bool IsEquivalent(const char* sz1, const char* sz2) { return strcmp(sz1, sz2) == 0; } in IsEquivalent()
535 inline bool IsEquivalent(const fm::string& sz1, const char* sz2) { return strcmp(sz1.c_str(), sz2) … in IsEquivalent()
536 inline bool IsEquivalent(const char* sz1, const fm::string& sz2) { return strcmp(sz1, sz2.c_str()) … in IsEquivalent()
543 inline bool IsEquivalentI(const char* sz1, const char* sz2) { return _stricmp(sz1, sz2) == 0; } in IsEquivalentI()
544 inline bool IsEquivalentI(const fm::string& sz1, const char* sz2) { return _stricmp(sz1.c_str(), sz… in IsEquivalentI()
548 inline bool IsEquivalentI(const fchar* sz1, const fchar* sz2) { return fstricmp(sz1, sz2) == 0; } /… in IsEquivalentI()
549 inline bool IsEquivalentI(const fstring& sz1, const fchar* sz2) { return fstricmp(sz1.c_str(), sz2)… in IsEquivalentI()
550 inline bool IsEquivalentI(const fchar* sz1, const fstring& sz2) { return fstricmp(sz1, sz2.c_str())… in IsEquivalentI()
565 inline bool IsEquivalent(const fchar* sz1, const fchar* sz2) in IsEquivalent()
571 inline bool IsEquivalent(const fstring& sz1, const fchar* sz2) { return IsEquivalent(sz1.c_str(), s… in IsEquivalent()
[all …]
H A DFUStringTest.cpp29 fm::string sz2("Test1"); variable
H A DFUXmlParser.h45 inline bool IsEquivalent(const xmlChar* sz1, const char* sz2) { return IsEquivalent((const char*) s… in IsEquivalent()
/dports/science/healpix/Healpix_3.50/src/cxx/cxxsupport/
H A Darr.h357 arr2T(tsize sz1, tsize sz2) in arr2T()
363 arr2T(T* p, tsize sz1, tsize sz2) in arr2T()
365 arr2T(tsize sz1, tsize sz2, const T &inival) in arr2T()
385 void alloc (tsize sz1, tsize sz2) in alloc()
401 void fast_alloc (tsize sz1, tsize sz2) in fast_alloc()
486 arr2(tsize sz1, tsize sz2, const T &inival) in arr2()
501 arr2_align(tsize sz1, tsize sz2) in arr2_align()
525 arr2b(tsize sz1, tsize sz2) in arr2b()
544 void alloc (tsize sz1, tsize sz2) in alloc()
591 arr3(tsize sz1, tsize sz2, tsize sz3) in arr3()
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/core/misc/objc/test/
H A DSizeTest.swift13 let sz2 = Size2d(width: -1, height: -1) variable
28 let sz2 = sz1.clone(); in testEqualsObject() variable
58 let sz2 = Size2d(vals: vals as [NSNumber]) in testSizeDoubleArray() variable
/dports/graphics/opencv/opencv-4.5.3/3rdparty/carotene/hal/
H A Dtegra_hal.hpp119 #define TEGRA_BINARYOP(type, op, src1, sz1, src2, sz2, dst, sz, w, h) \ argument
165 #define cv_hal_add8u(src1, sz1, src2, sz2, dst, sz, w, h) TEGRA_BINARYOP(CAROTENE_NS::u8, add, src1… argument
167 #define cv_hal_add8s(src1, sz1, src2, sz2, dst, sz, w, h) TEGRA_BINARYOP(CAROTENE_NS::s8, add, src1… argument
179 #define cv_hal_sub8u(src1, sz1, src2, sz2, dst, sz, w, h) TEGRA_BINARYOP(CAROTENE_NS::u8, sub, src1… argument
181 #define cv_hal_sub8s(src1, sz1, src2, sz2, dst, sz, w, h) TEGRA_BINARYOP(CAROTENE_NS::s8, sub, src1… argument
193 #define cv_hal_max8u(src1, sz1, src2, sz2, dst, sz, w, h) TEGRA_BINARYOP(CAROTENE_NS::u8, max, src1… argument
195 #define cv_hal_max8s(src1, sz1, src2, sz2, dst, sz, w, h) TEGRA_BINARYOP(CAROTENE_NS::s8, max, src1… argument
253 #define TEGRA_CMP(type, src1, sz1, src2, sz2, dst, sz, w, h, op) \ argument
291 #define cv_hal_cmp8u(src1, sz1, src2, sz2, dst, sz, w, h, op) TEGRA_CMP(CAROTENE_NS::u8, src1, sz1,… argument
293 #define cv_hal_cmp8s(src1, sz1, src2, sz2, dst, sz, w, h, op) TEGRA_CMP(CAROTENE_NS::s8, src1, sz1,… argument
[all …]
/dports/science/afni/afni-AFNI_21.3.16/src/matlab/
H A DVectStat.m50 sz2 = length(M); variable
54 sz2 = size(M,2); variable
/dports/math/octave/octave-6.4.0/scripts/signal/
H A Difftshift.m52 sz2 = floor (sz(dim) / 2); variable
64 sz2 = floor (sz ./ 2); variable
H A Dfftshift.m68 sz2 = ceil (sz(dim) / 2); variable
81 sz2 = ceil (sz ./ 2); variable
/dports/graphics/mahotas/mahotas-1.4.11/mahotas/
H A D_filters.h37 int sz2 = 2 * len - 2; in fix_offset() local
45 int sz2 = 2 * len - 2; in fix_offset() local
58 int sz2 = 2 * len; in fix_offset() local
67 int sz2 = 2 * len; in fix_offset() local
/dports/chinese/fcitx-libpinyin/fcitx-libpinyin-0.5.3/src/
H A Denummap.cpp132 int sz2 = FCITX_DICT_LAST + 1; in FcitxLibPinyinTransDictionary() local
154 int sz2 = FCITX_ZHUYIN_DICT_LAST + 1; in FcitxLibPinyinTransZhuyinDictionary() local
/dports/cad/gspiceui/gspiceui-v1.1.00/src/utility/
H A DStrUtils.cpp39 size_t sz1, sz2; in iStrCmpNode() local
92 size_t sz1, sz2; in iStrCmpCpnt() local
182 size_t sz1, sz2; in iStrCmpSrc() local
/dports/science/ALPSCore/ALPSCore-2.2.0/utilities/test/
H A Dvector_comparison_predicates.hpp38 std::size_t sz1=v1.size(), sz2=v2.size(); in is_near() local
54 std::size_t sz1=v1.size(), sz2=v2.size(); in is_rel_near() local
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/TestKernel/test/
H A DitkGoogleTest.cxx57 const SizeType sz2 = MakeSize(0u,1u); in TEST() local
93 const SizeType sz2 = MakeSize(0u,1u,2u); in TEST() local
/dports/science/PETSc/petsc-3.14.1/src/vec/is/is/utils/
H A Discomp.c35 PetscInt sz1,sz2,*a1,*a2; in ISEqual() local
116 PetscInt sz1,sz2; in ISEqualUnsorted() local
/dports/math/z3/z3-z3-4.8.13/src/ast/substitution/
H A Dunifier.cpp67 unsigned sz2 = 1; in union1() local
86 unsigned sz2 = 1; in union2() local
159 unsigned sz2 = 1; in operator ()() local
/dports/math/py-z3-solver/z3-z3-4.8.10/src/ast/substitution/
H A Dunifier.cpp67 unsigned sz2 = 1; in union1() local
86 unsigned sz2 = 1; in union2() local
159 unsigned sz2 = 1; in operator ()() local
/dports/math/z3/z3-z3-4.8.13/src/ast/rewriter/
H A Dbit2int.cpp73 unsigned sz2 = m_bv_util.get_bv_size(b); in align_sizes() local
105 unsigned sz1, sz2; in mk_add() local
133 unsigned sz1, sz2; in mk_comp() local
158 unsigned sz1, sz2; in mk_mul() local
278 unsigned sz2; in visit() local
/dports/math/py-z3-solver/z3-z3-4.8.10/src/ast/rewriter/
H A Dbit2int.cpp73 unsigned sz2 = m_bv_util.get_bv_size(b); in align_sizes() local
105 unsigned sz1, sz2; in mk_add() local
133 unsigned sz1, sz2; in mk_comp() local
158 unsigned sz1, sz2; in mk_mul() local
278 unsigned sz2; in visit() local
/dports/math/mcsim/mcsim-6.2.0/sim/
H A Dstrutil.c38 int MyStrcmp(const char* sz1, const char* sz2) in MyStrcmp()
/dports/math/mcsim/mcsim-6.2.0/mod/
H A Dstrutil.c38 int MyStrcmp(const char* sz1, const char* sz2) in MyStrcmp()

12345678910>>...45