Home
last modified time | relevance | path

Searched refs:iOp (Results 1 – 25 of 238) sorted by relevance

12345678910

/dports/graphics/alembic/alembic-1.8.3/lib/Alembic/AbcGeom/
H A DXformSample.cpp68 iOp.setChannelValue( i, iVal[i] ); in addOp()
78 m_ops.push_back( iOp ); in addOp()
93 m_ops[ret] = iOp; in addOp()
119 m_ops.push_back( iOp ); in addOp()
134 m_ops[ret] = iOp; in addOp()
156 m_ops.push_back( iOp ); in addOp()
171 m_ops[ret] = iOp; in addOp()
197 m_ops.push_back( iOp ); in addOp()
212 m_ops[ret] = iOp; in addOp()
230 m_ops.push_back( iOp ); in addOp()
[all …]
H A DCameraSample.cpp177 std::size_t CameraSample::addOp( FilmBackXformOp iOp ) in addOp() argument
179 m_ops.push_back( iOp ); in addOp()
H A DXformSample.h73 std::size_t addOp( const XformOp &iOp );
H A DCameraSample.h190 std::size_t addOp( FilmBackXformOp iOp );
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/3rdparty/masm/disassembler/mips32/
H A DMips32Opcode.cpp219 if ((iOp != 0x02) && (iOp != 0x03)) { in formatJumpEncodingOpcode()
220 FORMAT_INSTR("unknown jump encoding opcode 0x%x", iOp); in formatJumpEncodingOpcode()
224 FORMAT_INSTR(OPCODE_FMT "0x%x", (iOp == 0x02) ? "j" : "jal", in formatJumpEncodingOpcode()
241 switch (iOp) { in formatImmediateEncodingOpcode()
567 uint32_t iOp = (opcode >> 26) & 0x3f; in disassemble() local
571 else if (!iOp) { in disassemble()
578 } else if ((iOp == 0x02) || (iOp == 0x03)) { in disassemble()
580 formatJumpEncodingOpcode(iOp, index, opcodePtr); in disassemble()
581 } else if (iOp == 0x11) { in disassemble()
601 } else if (iOp == 0x1c) { in disassemble()
[all …]
H A DMips32Opcode.h64 void formatJumpEncodingOpcode(uint32_t iOp, uint32_t index, uint32_t* opcodePtr);
66 …void formatImmediateEncodingOpcode(uint32_t iOp, uint8_t rs, uint8_t rt, int16_t imm, uint32_t* op…
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/3rdparty/masm/disassembler/mips32/
H A DMips32Opcode.cpp219 if ((iOp != 0x02) && (iOp != 0x03)) { in formatJumpEncodingOpcode()
220 FORMAT_INSTR("unknown jump encoding opcode 0x%x", iOp); in formatJumpEncodingOpcode()
224 FORMAT_INSTR(OPCODE_FMT "0x%x", (iOp == 0x02) ? "j" : "jal", in formatJumpEncodingOpcode()
241 switch (iOp) { in formatImmediateEncodingOpcode()
567 uint32_t iOp = (opcode >> 26) & 0x3f; in disassemble() local
571 else if (!iOp) { in disassemble()
578 } else if ((iOp == 0x02) || (iOp == 0x03)) { in disassemble()
580 formatJumpEncodingOpcode(iOp, index, opcodePtr); in disassemble()
581 } else if (iOp == 0x11) { in disassemble()
601 } else if (iOp == 0x1c) { in disassemble()
[all …]
H A DMips32Opcode.h64 void formatJumpEncodingOpcode(uint32_t iOp, uint32_t index, uint32_t* opcodePtr);
66 …void formatImmediateEncodingOpcode(uint32_t iOp, uint8_t rs, uint8_t rt, int16_t imm, uint32_t* op…
/dports/cad/opencascade/opencascade-7.6.0/src/BOPTest/
H A DBOPTest.cxx158 Standard_Integer iOp = anOp.IntegerValue(); in GetOperationType() local
159 if (iOp >= 0 && iOp <= 4) in GetOperationType()
161 return static_cast<BOPAlgo_Operation>(iOp); in GetOperationType()
/dports/science/iboview/ibo-view.20150427/src/MicroScf/
H A DCtAtomSet.cpp577 for ( uint iOp = 0; iOp < nOps; ++ iOp ) { in operator <<() local
578 if ( iOp != 0 ) in operator <<()
581 if ( (Ops[iOp] & (1 << i)) != 0 ) in operator <<()
584 if ( iOp == Gen[i] ) in operator <<()
586 if ( Ops[iOp] == 0 ) in operator <<()
955 for ( uint iOp = 0; iOp < nOps; ++ iOp ){ in FindEquivalentAtoms() local
957 MirrorPos = ApplySymOp(Atoms[iAt0].vPos, Ops[iOp]); in FindEquivalentAtoms()
962 pCurGroup->SymOp[pCurGroup->nEqiv] = Ops[iOp]; in FindEquivalentAtoms()
1006 iOp = AllOps[iOp_]; in FindMirrorSymmetryOps() local
1014 MirrorPos = ApplySymOp(Atoms[iAt0].vPos, iOp); in FindMirrorSymmetryOps()
[all …]
/dports/devel/hs-mueval/mueval-0.9.3/_cabal_deps/simple-reflect-0.3.3/Debug/SimpleReflect/
H A DExpr.hs80 iOp :: (Expr -> Expr) -> (Integer -> Integer) -> Expr -> Expr
85 iOp r f a = (r a ) { intExpr = f <$> intExpr a } function
160 negate = withReduce $ fun "negate" `iOp` negate `dOp` negate
161 abs = withReduce $ fun "abs" `iOp` abs `dOp` abs
162 signum = withReduce $ fun "signum" `iOp` signum `dOp` signum
210 succ = withReduce $ fun "succ" `iOp` succ `dOp` succ
211 pred = withReduce $ fun "pred" `iOp` pred `dOp` pred
/dports/devel/kBuild/kBuild-0.1.9998/src/kmk/
H A Dexpreval.c168 int iOp; member
1554 pThis->iOp--; in expr_op_left_parenthesis()
1736 assert(pThis->iOp >= 0); in expr_unget_op()
1739 pThis->apOps[pThis->iOp] = NULL; in expr_unget_op()
1740 pThis->iOp--; in expr_unget_op()
1798 if (pThis->iOp >= EXPR_MAX_OPERATORS - 1) in expr_get_binary_or_eoe_or_rparen()
1803 pThis->apOps[++pThis->iOp] = pOp; in expr_get_binary_or_eoe_or_rparen()
1861 pThis->apOps[++pThis->iOp] = pOp; in expr_get_unary_or_operand()
1999 while ( pThis->iOp >= 0 in expr_eval()
2018 pOp = pThis->apOps[pThis->iOp]; in expr_eval()
[all …]
/dports/textproc/libsphinxclient/sphinx-2.0.9-release/src/
H A Dsphinxexpr.cpp2633 tNode.m_iToken = iOp; in AddNodeOp()
2637 if ( iOp==TOK_NEG ) in AddNodeOp()
2643 } else if ( iOp==TOK_NOT ) in AddNodeOp()
2654 } else if ( iOp==TOK_LTE || iOp==TOK_GTE || iOp==TOK_EQ || iOp==TOK_NE in AddNodeOp()
2655 || iOp=='<' || iOp=='>' || iOp==TOK_AND || iOp==TOK_OR in AddNodeOp()
2656 || iOp=='+' || iOp=='-' || iOp=='*' || iOp==',' in AddNodeOp()
2657 || iOp=='&' || iOp=='|' || iOp=='%' ) in AddNodeOp()
2662 …tNode.m_eRetType = ( iOp=='+' || iOp=='-' || iOp=='*' || iOp==',' || iOp=='&' || iOp=='|' || iOp==… in AddNodeOp()
2667 if ( ( iOp==TOK_AND || iOp==TOK_OR || iOp=='&' || iOp=='|' ) in AddNodeOp()
2675 if ( iOp=='%' in AddNodeOp()
[all …]
/dports/www/itop/web/webservices/
H A Ditoprest.examples.php295 foreach ($aOperations as $iOp => $aOperation)
298 echo "Operation #$iOp: ".$aOperation['operation']."\n";
/dports/misc/gpsim/gpsim-0.31.0/src/
H A Doperator.cc670 Integer *iOp = static_cast<Integer *>(operand); in applyOp() local
671 rVal = new Integer(-(iOp->getVal())); in applyOp()
727 Integer *iOp = static_cast<Integer *>(operand); in applyOp() local
728 rVal = new Integer(iOp->getVal()); in applyOp()
764 Integer *iOp = static_cast<Integer *>(operand); in applyOp() local
768 pReg = get_active_cpu()->rma.get_register(*iOp); in applyOp()
777 snprintf(sMsg, sizeof(sMsg), sFormat, (int)iOp->getVal()); in applyOp()
/dports/textproc/sphinxsearch/sphinx-2.2.11-release/src/
H A Dsphinxexpr.cpp3877 …if ( iOp=='+' || iOp=='-' || iOp=='*' || iOp=='/' || iOp=='&' || iOp=='|' || iOp=='%' || iOp=='<' … in CreateTree()
3878 …|| iOp==TOK_LTE || iOp==TOK_GTE || iOp==TOK_EQ || iOp==TOK_NE || iOp==TOK_AND || iOp==TOK_OR || iO… in CreateTree()
5653 } else if ( iOp==TOK_LTE || iOp==TOK_GTE || iOp==TOK_EQ || iOp==TOK_NE in AddNodeOp()
5654 || iOp=='<' || iOp=='>' || iOp==TOK_AND || iOp==TOK_OR in AddNodeOp()
5655 || iOp=='+' || iOp=='-' || iOp=='*' || iOp==',' in AddNodeOp()
5656 || iOp=='&' || iOp=='|' || iOp=='%' in AddNodeOp()
5657 || iOp==TOK_IS_NULL || iOp==TOK_IS_NOT_NULL ) in AddNodeOp()
5662 …tNode.m_eRetType = ( iOp=='+' || iOp=='-' || iOp=='*' || iOp==',' || iOp=='&' || iOp=='|' || iOp==… in AddNodeOp()
5667 if ( ( iOp==TOK_AND || iOp==TOK_OR || iOp=='&' || iOp=='|' ) in AddNodeOp()
5675 if ( iOp=='%' in AddNodeOp()
[all …]
/dports/science/wxmacmolplt/wxmacmolplt-7.7-43-g9a46f7a/src/
H A DMoleculeData.cpp1371 for (int iOp=0; iOp<symOps.getOperationCount(); iOp++) { in DeterminePrincipleOrientation() local
1377 symOps.ApplyOperator(test, result, iOp); in DeterminePrincipleOrientation()
1430 for (int iOp=0; iOp<symOps.getOperationCount(); iOp++) { in GenerateSymmetryDependentAtoms() local
1434 symOps.ApplyOperator(cFrame->Atoms[atm].Position, result, iOp); in GenerateSymmetryDependentAtoms()
1500 for (int iOp=0; iOp<symOps.getOperationCount(); iOp++) { in GenerateSymmetryUniqueAtoms() local
1503 symOps.ApplyOperator(cFrame->Atoms[atm].Position, result, iOp); in GenerateSymmetryUniqueAtoms()
1557 for (int iOp=0; iOp<symOps.getOperationCount(); iOp++) { in SymmetrizeCoordinates() local
1560 symOps.ApplyOperator(cFrame->Atoms[atm].Position, result, iOp); in SymmetrizeCoordinates()
1572 for (int iOp=0; iOp<symOps.getOperationCount(); iOp++) { in SymmetrizeCoordinates() local
1575 symOps.ApplyOperator(cFrame->Atoms[atm].Position, result, iOp); in SymmetrizeCoordinates()
/dports/www/libmicrohttpd/libmicrohttpd-0.9.74/src/datadir/
H A Dcert-and-key.pem24 Q1BtjuXQ5KESvurYBAb0MbE8c+dExsCfEW0lfqlDp53GQcIZyOIu9UEhHszD+iOp
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections.Immutable/tests/
H A DImmutableSortedSetTest.cs41 for (int iOp = 0; iOp < operationCount; iOp++) in RandomOperationsTest()
H A DImmutableSortedDictionaryTest.cs36 for (int iOp = 0; iOp < operationCount; iOp++) in RandomOperationsTest()
/dports/devel/R-cran-gdata/gdata/inst/perl/Spreadsheet/
H A DParseExcel.pm2244 my ( $iOp );
2246 $iOp = unpack( 'C', $sObj );
2248 if ( $iOp == 0x3b ) {
2254 elsif ( $iOp == 0x29 ) {
2282 my ( $iOp );
2284 $iOp = unpack( 'C', $sObj );
2286 if ( $iOp == 0x3b ) {
2292 elsif ( $iOp == 0x29 ) {
/dports/textproc/p5-Spreadsheet-ParseExcel/Spreadsheet-ParseExcel-0.65/lib/Spreadsheet/
H A DParseExcel.pm2239 my ( $iOp );
2241 $iOp = unpack( 'C', $sObj );
2243 if ( $iOp == 0x3b ) {
2249 elsif ( $iOp == 0x29 ) {
2277 my ( $iOp );
2279 $iOp = unpack( 'C', $sObj );
2281 if ( $iOp == 0x3b ) {
2287 elsif ( $iOp == 0x29 ) {
/dports/biology/hyphy/hyphy-2.5.33/contrib/SQLite-3.8.2/
H A Dshell.c1188 int iOp; /* Index of operation in p->aiIndent[] */ in explain_data_prepare() local
1201 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ in explain_data_prepare()
1212 int p2op = (p2 + (iOp-iAddr)); in explain_data_prepare()
1215 if( iOp>=nAlloc ){ in explain_data_prepare()
1220 abYield[iOp] = str_in_array(zOp, azYield); in explain_data_prepare()
1221 p->aiIndent[iOp] = 0; in explain_data_prepare()
1222 p->nIndent = iOp+1; in explain_data_prepare()
1225 for(i=p2op; i<iOp; i++) p->aiIndent[i] += 2; in explain_data_prepare()
1228 for(i=p2op; i<iOp; i++) p->aiIndent[i] += 2; in explain_data_prepare()
/dports/games/craft/Craft-1.0fbsd/deps/sqlite/
H A Dshell.c1196 int iOp; /* Index of operation in p->aiIndent[] */ in explain_data_prepare() local
1209 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ in explain_data_prepare()
1220 int p2op = (p2 + (iOp-iAddr)); in explain_data_prepare()
1223 if( iOp>=nAlloc ){ in explain_data_prepare()
1228 abYield[iOp] = str_in_array(zOp, azYield); in explain_data_prepare()
1229 p->aiIndent[iOp] = 0; in explain_data_prepare()
1230 p->nIndent = iOp+1; in explain_data_prepare()
1233 for(i=p2op; i<iOp; i++) p->aiIndent[i] += 2; in explain_data_prepare()
1238 for(i=p2op+1; i<iOp; i++) p->aiIndent[i] += 2; in explain_data_prepare()
/dports/devel/libgpkg/luciad-libgpkg-c56e3708453e/shell/
H A Dshell.c1216 int iOp; /* Index of operation in p->aiIndent[] */ in explain_data_prepare() local
1230 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ in explain_data_prepare()
1241 int p2op = (p2 + (iOp-iAddr)); in explain_data_prepare()
1244 if( iOp>=nAlloc ){ in explain_data_prepare()
1249 abYield[iOp] = str_in_array(zOp, azYield); in explain_data_prepare()
1250 p->aiIndent[iOp] = 0; in explain_data_prepare()
1251 p->nIndent = iOp+1; in explain_data_prepare()
1254 for(i=p2op; i<iOp; i++) p->aiIndent[i] += 2; in explain_data_prepare()
1259 for(i=p2op+1; i<iOp; i++) p->aiIndent[i] += 2; in explain_data_prepare()

12345678910