Home
last modified time | relevance | path

Searched refs:iIndex1 (Results 1 – 25 of 63) sorted by relevance

123

/dports/math/scilab/scilab-6.1.1/scilab/modules/elementary_functions/src/c/
H A Dmatrix_generation.c20 int iIndex1 = 0; in franck_matrix() local
32 for (iIndex1 = 1 ; iIndex1 < _iSize ; iIndex1++) in franck_matrix()
35 _pData[(iIndex1 - 1) * _iSize + iIndex1] = dblVal; in franck_matrix()
50 for (iIndex1 = 0 ; iIndex1 < _iSize ; iIndex1++) in hilb_matrix()
54 dblVal = ((_iSize - iIndex1) * dblVal * (_iSize + iIndex1)) / pow(iIndex1, 2); in hilb_matrix()
58 _pData[iIndex1 * _iSize + iIndex1] = dblTemp / ( 2 * iIndex1 + 1); in hilb_matrix()
99 for (iIndex1 = 0 ; iIndex1 < iNewSize * iNewSize ; iIndex1++) in magic_matrix()
131 for (iIndex1 = 0 ; iIndex1 < iNewSize ; iIndex1++) in magic_matrix()
147 for (iIndex1 = 0 ; iIndex1 < (iNewSize - 1) / 2 ; iIndex1++) in magic_matrix()
161 for (iIndex1 = iTemp1 ; iIndex1 < _iSize ; iIndex1++) in magic_matrix()
[all …]
H A Dexpm.c74 for (iIndex1 = 0 ; iIndex1 < _iSize ; iIndex1++) in dexpms()
89 for (iIndex1 = 0 ; iIndex1 < _iSize ; iIndex1++) in dexpms()
122 for (iIndex1 = 0 ; iIndex1 < _iSize ; iIndex1++) in dexpms()
306 for (iIndex1 = 0 ; iIndex1 < _iSize ; iIndex1++) in dbdiaga()
532 for (iIndex1 = 0 ; iIndex1 < _iSize ; iIndex1++) in dbdiaga()
555 for (iIndex1 = 0 ; iIndex1 < _iSize ; iIndex1++) in dbdiaga()
596 for (iIndex1 = 0 ; iIndex1 < _iSize ; iIndex1++) in dbdiaga()
748 for (iIndex1 = 0 ; iIndex1 < iLoop1 ; iIndex1++) in dbalancs()
1121 for (iIndex1 = 0 ; iIndex1 < _iSize ; iIndex1++) in dortrans()
1138 for (iIndex1 = 0 ; iIndex1 < iLoop ; iIndex1++) in dortrans()
[all …]
H A Ddmsum.c19 int iIndex1 = 0; in ddmsums() local
26 for (iIndex1 = 0 ; iIndex1 < _iRows * _iCols ; iIndex1++) in ddmsums()
28 _pdblOut[0] += _pdblIn[iIndex1]; in ddmsums()
35 for (iIndex1 = 0 ; iIndex1 < _iRows ; iIndex1++) in ddmsums()
37 _pdblOut[iIndex2] += _pdblIn[iIndex2 * _iRows + iIndex1]; in ddmsums()
45 for (iIndex1 = 0 ; iIndex1 < _iCols ; iIndex1++) in ddmsums()
47 _pdblOut[iIndex2] += _pdblIn[iIndex1 * _iRows + iIndex2]; in ddmsums()
H A Dvmul.c39 int iIndex1 = 0; in vDvmul() local
43 iIndex1 = (-_iNbElem + 1) * _iIncIn1 + 1; in vDvmul()
47 iIndex1 = (-_iNbElem + 1) * _iIncIn2 + 1; in vDvmul()
52 _pdblOut[iIndex2] = _pdblIn1[iIndex1] * _pdblIn2[iIndex2]; in vDvmul()
53 iIndex1 += _iIncIn1; in vDvmul()
73 int iIndex1 = 0; in vWvmul() local
77 iIndex1 = (-_iNbElem + 1) * _iIncIn1 + 1; in vWvmul()
81 iIndex1 = (-_iNbElem + 1) * _iIncIn2 + 1; in vWvmul()
87 … _piRealOut[iIndex2] = dblTemp * _piRealIn1[iIndex1] - _piImgIn2[iIndex2] * _piImgIn1[iIndex1]; in vWvmul()
88 … _piImgOut[iIndex2] = dblTemp * _piImgIn1[iIndex1] + _piImgIn2[iIndex2] * _piRealIn1[iIndex1]; in vWvmul()
[all …]
H A Ddsearch.c82 int iIndex1 = 0; in vDsearchC() local
84 while (iIndex2 - iIndex1 > 1) in vDsearchC()
86 iIndex = (iIndex1 + iIndex2) / 2; in vDsearchC()
93 iIndex1 = iIndex; in vDsearchC()
176 int iIndex1 = 0; in vDsearchD() local
178 while (iIndex2 - iIndex1 > 1) in vDsearchD()
180 iIndex = (iIndex1 + iIndex2) / 2; in vDsearchD()
187 iIndex1 = iIndex; in vDsearchD()
190 if (_pdblX[iLoop] == _pdblVal[iIndex1]) in vDsearchD()
194 _pdblOcc[iIndex1]++; in vDsearchD()
[all …]
H A Dsub_vector.c20 int iIndex1 = 0; in vDless() local
24 for (iIndex1 = 0 ; iIndex1 < _iNbElem ; iIndex1++) in vDless()
26 pdblTemp[iIndex1] = -_pdblIn2[iIndex1 * _iIncIn2]; in vDless()
H A Dadd_vector.c30 int iIndex1 = 1; in vDadd() local
34 iIndex1 = (-_iNbElem + 1) * _iIncIn1 + 1; in vDadd()
38 iIndex1 = (-_iNbElem + 1) * _iIncIn2 + 1; in vDadd()
43 _piOut[iIndex2] = _piIn1[iIndex1] + _piIn2[iIndex2]; in vDadd()
44 iIndex1 += _iIncIn1; in vDadd()
/dports/math/scilab/scilab-6.1.1/scilab/modules/linear_algebra/src/c/
H A Dchol.c38 int iIndex1 = 0, iIndex2 = 0; in iRealCholProduct() local
39 for (iIndex1 = 0 ; iIndex1 < _iLeadDim ; iIndex1++) in iRealCholProduct()
41 for (iIndex2 = iIndex1 + 1 ; iIndex2 < _iLeadDim ; iIndex2++) in iRealCholProduct()
43 _pdblReal[iIndex2 + iIndex1 * _iLeadDim] = 0; in iRealCholProduct()
64 int iIndex1 = 0, iIndex2 = 0; in iComplexCholProduct() local
65 for (iIndex1 = 0 ; iIndex1 < _iLeadDim ; iIndex1++) in iComplexCholProduct()
67 for (iIndex2 = iIndex1 + 1 ; iIndex2 < _iLeadDim ; iIndex2++) in iComplexCholProduct()
69 _poIn[iIndex2 + iIndex1 * _iLeadDim].r = 0; in iComplexCholProduct()
70 _poIn[iIndex2 + iIndex1 * _iLeadDim].i = 0; in iComplexCholProduct()
/dports/games/xfrisk/XFrisk/
H A Driskgame.c72 Int32 iIndex1, Int32 iIndex2,
383 iIndex1, iIndex2, in _RISK_Replicate()
431 Int32 iIndex1, Int32 iIndex2) in RISK_SelectiveReplicate() argument
448 iIndex1, iIndex2, in RISK_SelectiveReplicate()
547 iIndex1 = pIntMess->iIndex1; in RISK_ProcessMessage()
621 iIndex1 = pStrMess->iIndex1; in RISK_ProcessMessage()
632 RiskGame.pPlayers[iIndex1].strName = in RISK_ProcessMessage()
644 RiskGame.pPlayers[iIndex1].strColor = in RISK_ProcessMessage()
1250 Int32 iIndex1, Int32 iIndex2, in _RISK_BuildMsg() argument
1260 pIntMess->iIndex1 = iIndex1; in _RISK_BuildMsg()
[all …]
/dports/chinese/scim-fcitx/fcitx/src/
H A Dsp.cpp236 int iIndex1 = 0, iIndex2 = 0; in SP2QP() local
244 iIndex1 = GetSPIndexJP_S (*strSP); in SP2QP()
245 if (iIndex1 == -1) { in SP2QP()
250 strcat (strQP, SPMap_S[iIndex1].strQP); in SP2QP()
279 if ((iIndex1 == -1 && !(IsSyllabary (strTmp, 0))) || iIndex2 == -1) { in SP2QP()
280 iIndex1 = FindPYFAIndex (strSP, False); in SP2QP()
281 if (iIndex1 != -1) in SP2QP()
/dports/chinese/fcitx/fcitx-4.2.9.7/src/im/pinyin/
H A Dsp.c208 int iIndex1 = 0, iIndex2 = 0; in SP2QP() local
254 iIndex1 = GetSPIndexJP_S(pyconfig, *strSP); in SP2QP()
256 if (iIndex1 == -1) { in SP2QP()
260 strcat(strQP, SPMap_S[iIndex1].strQP); in SP2QP()
304 if ((iIndex1 == -1 && !(IsSyllabary(strTmp, 0))) || iIndex2 == -1) { in SP2QP()
305 iIndex1 = FindPYFAIndex(pyconfig, strSP, false); in SP2QP()
307 if (iIndex1 != -1) in SP2QP()
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/gcc.c-torture/execute/
H A Dpr31448-2.c6 long int iIndex1 : 24; member
23 next->iIndex1 = constreg[nIndx]; in f()
32 if (next->iIndex1 != 0xFFFEFEFE) in main()
H A Dpr31448.c7 int iIndex1 : 24; member
24 next->iIndex1 = constreg[nIndx]; in f()
33 if (next->iIndex1 != 0xFFFEFEFE) in main()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/testsuite/gcc.c-torture/execute/
H A Dpr31448-2.c6 long int iIndex1 : 24; member
23 next->iIndex1 = constreg[nIndx]; in f()
32 if (next->iIndex1 != 0xFFFEFEFE) in main()
H A Dpr31448.c6 int iIndex1 : 24; member
23 next->iIndex1 = constreg[nIndx]; in f()
32 if (next->iIndex1 != 0xFFFEFEFE) in main()
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/testsuite/gcc.c-torture/execute/
H A Dpr31448.c7 int iIndex1 : 24; member
24 next->iIndex1 = constreg[nIndx]; in f()
33 if (next->iIndex1 != 0xFFFEFEFE) in main()
H A Dpr31448-2.c6 long int iIndex1 : 24; member
23 next->iIndex1 = constreg[nIndx]; in f()
32 if (next->iIndex1 != 0xFFFEFEFE) in main()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gcc.c-torture/execute/
H A Dpr31448-2.c6 long int iIndex1 : 24; member
23 next->iIndex1 = constreg[nIndx]; in f()
32 if (next->iIndex1 != 0xFFFEFEFE) in main()
H A Dpr31448.c7 int iIndex1 : 24; member
24 next->iIndex1 = constreg[nIndx]; in f()
33 if (next->iIndex1 != 0xFFFEFEFE) in main()
/dports/lang/gcc48/gcc-4.8.5/gcc/testsuite/gcc.c-torture/execute/
H A Dpr31448-2.c6 long int iIndex1 : 24; member
23 next->iIndex1 = constreg[nIndx]; in f()
32 if (next->iIndex1 != 0xFFFEFEFE) in main()
H A Dpr31448.c6 int iIndex1 : 24; member
23 next->iIndex1 = constreg[nIndx]; in f()
32 if (next->iIndex1 != 0xFFFEFEFE) in main()
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/gcc.c-torture/execute/
H A Dpr31448.c7 int iIndex1 : 24; member
24 next->iIndex1 = constreg[nIndx]; in f()
33 if (next->iIndex1 != 0xFFFEFEFE) in main()
H A Dpr31448-2.c6 long int iIndex1 : 24; member
23 next->iIndex1 = constreg[nIndx]; in f()
32 if (next->iIndex1 != 0xFFFEFEFE) in main()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gcc.c-torture/execute/
H A Dpr31448-2.c6 long int iIndex1 : 24; member
23 next->iIndex1 = constreg[nIndx]; in f()
32 if (next->iIndex1 != 0xFFFEFEFE) in main()
H A Dpr31448.c7 int iIndex1 : 24; member
24 next->iIndex1 = constreg[nIndx]; in f()
33 if (next->iIndex1 != 0xFFFEFEFE) in main()

123