| /netbsd-src/sys/dev/raidframe/ |
| H A D | rf_evenodd_dagfuncs.c | 98 RF_Raid_t *raidPtr = (RF_Raid_t *) node->params[node->numParams - 1].p; in rf_RegularONEFunc() 100 int EpdaIndex = (node->numParams - 1) / 2 - 1; /* the parameter of node in rf_RegularONEFunc() 154 RF_Raid_t *raidPtr = (RF_Raid_t *) node->params[node->numParams - 1].p; in rf_SimpleONEFunc() 194 RF_Raid_t *raidPtr = (RF_Raid_t *) node->params[node->numParams - 1].p; in rf_RegularESubroutine() 204 for (i = 0; i < node->numParams - 2; i += 2) { in rf_RegularESubroutine() 244 RF_Raid_t *raidPtr = (RF_Raid_t *) node->params[node->numParams - 1].p; in rf_DegrESubroutine() 246 RF_PhysDiskAddr_t *failedPDA = (RF_PhysDiskAddr_t *) node->params[node->numParams - 2].p; in rf_DegrESubroutine() 255 for (i = 0; i < node->numParams - 2; i += 2) { in rf_DegrESubroutine() 388 RF_Raid_t *raidPtr = (RF_Raid_t *) node->params[node->numParams - 1].p; in rf_RecoveryEFunc() 390 RF_PhysDiskAddr_t *failedPDA = (RF_PhysDiskAddr_t *) node->params[node->numParams - 2].p; in rf_RecoveryEFunc() [all …]
|
| H A D | rf_pq.c | 243 int np = node->numParams; in rf_RegularONQFunc() 306 int np = node->numParams; in rf_SimpleONQFunc() 354 int np = node->numParams; in RegularQSubr() 396 int np = node->numParams; in DegrQSubr() 491 int np = node->numParams; in rf_Degraded_100_PQFunc() 533 RF_Raid_t *raidPtr = (RF_Raid_t *) node->params[node->numParams - 1].p; in rf_RecoveryQFunc() 535 RF_PhysDiskAddr_t *failedPDA = (RF_PhysDiskAddr_t *) node->params[node->numParams - 2].p; in rf_RecoveryQFunc() 546 memcpy(node->results[0], node->params[node->numParams - 3].p, in rf_RecoveryQFunc() 548 for (i = 0; i < node->numParams - 4; i += 2) { in rf_RecoveryQFunc() 571 RF_Raid_t *raidPtr = (RF_Raid_t *) node->params[node->numParams - 1].p; in rf_RecoveryPQFunc() [all …]
|
| H A D | rf_dagfuncs.c | 410 RF_Raid_t *raidPtr = (RF_Raid_t *) node->params[node->numParams - 1].p; in rf_RegularXorFunc() 423 for (i = 0; i < node->numParams - 1; i += 2) in rf_RegularXorFunc() 442 RF_Raid_t *raidPtr = (RF_Raid_t *) node->params[node->numParams - 1].p; in rf_SimpleXorFunc() 454 for (i = 0; i < node->numParams - 1; i += 2) in rf_SimpleXorFunc() 479 RF_Raid_t *raidPtr = (RF_Raid_t *) node->params[node->numParams - 1].p; in rf_RecoveryXorFunc() 481 RF_PhysDiskAddr_t *failedPDA = (RF_PhysDiskAddr_t *) node->params[node->numParams - 2].p; in rf_RecoveryXorFunc() 495 for (i = 0; i < node->numParams - 2; i += 2) in rf_RecoveryXorFunc()
|
| H A D | rf_dag.h | 97 int numParams; /* number of parameters required by *funcPtr */ member
|
| H A D | rf_pqdegdags.c | 189 int np = node->numParams; in rf_PQDoubleRecoveryFunc() 299 int np = node->numParams; in rf_PQWriteDoubleRecoveryFunc()
|
| H A D | rf_dagutils.c | 111 node->numParams = nParam; in rf_InitNode() 521 for (i = 0; i < node->numParams - 1; i += 2) { in rf_PrintNodeInfoString() 532 for (i = 0; i < node->numParams - 1; i += 2) { in rf_PrintNodeInfoString() 560 node->numAntecedents, node->numAntDone, node->numParams, node->numResults); in rf_RecurPrintDAG()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | dinterpret.c | 6564 size_t numParams = fd->parameters->dim; in interpret_aaApply() local 6565 assert(numParams == 1 || numParams == 2); in interpret_aaApply() 6567 Parameter *fparam = Parameter::getNth(((TypeFunction *)fd->type)->parameters, numParams - 1); in interpret_aaApply() 6571 args.setDim(numParams); in interpret_aaApply() 6588 args[numParams - 1] = evalue; in interpret_aaApply() 6589 if (numParams == 2) in interpret_aaApply() 6623 size_t numParams = fd->parameters->dim; in foreachApplyUtf() local 6624 assert(numParams == 1 || numParams == 2); in foreachApplyUtf() 6625 Type *charType = (*fd->parameters)[numParams-1]->type; in foreachApplyUtf() 6626 Type *indexType = numParams == 2 ? (*fd->parameters)[0]->type in foreachApplyUtf() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | dinterpret.d | 6944 size_t numParams = fd.parameters.dim; in interpret_aaApply() local 6945 assert(numParams == 1 || numParams == 2); in interpret_aaApply() 6947 Parameter fparam = fd.type.isTypeFunction().parameterList[numParams - 1]; in interpret_aaApply() 6950 Expressions args = Expressions(numParams); in interpret_aaApply() 6967 args[numParams - 1] = evalue; in interpret_aaApply() 6968 if (numParams == 2) in interpret_aaApply() 7005 size_t numParams = fd.parameters.dim; in foreachApplyUtf() local 7006 assert(numParams == 1 || numParams == 2); in foreachApplyUtf() 7007 Type charType = (*fd.parameters)[numParams - 1].type; in foreachApplyUtf() 7008 Type indexType = numParams == 2 ? (*fd.parameters)[0].type : Type.tsize_t; in foreachApplyUtf() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/ |
| H A D | CXType.cpp | 701 unsigned numParams = FD->getNumParams(); in clang_getArgType() local 702 if (i >= numParams) in clang_getArgType()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 1096 unsigned numParams = Record.readInt(); in ReadObjCTypeParamList() local 1097 if (numParams == 0) in ReadObjCTypeParamList() 1101 typeParams.reserve(numParams); in ReadObjCTypeParamList() 1102 for (unsigned i = 0; i != numParams; ++i) { in ReadObjCTypeParamList()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 4585 unsigned numParams = method->param_size(); in mergeInterfaceMethodToImpl() local 4587 for (unsigned i = 0, n = std::min(numParams, numPrevParams); i != n; ++i) { in mergeInterfaceMethodToImpl()
|
| H A D | SemaDeclAttr.cpp | 4920 bool Sema::CheckRegparmAttr(const ParsedAttr &AL, unsigned &numParams) { in CheckRegparmAttr() argument 4943 numParams = NP; in CheckRegparmAttr() 4944 if (numParams > Context.getTargetInfo().getRegParmMax()) { in CheckRegparmAttr()
|
| H A D | SemaType.cpp | 2779 for (size_t paramIndex = 0, numParams = paramTypes.size(); in checkExtParameterInfos() local 2780 paramIndex != numParams; ++paramIndex) { in checkExtParameterInfos()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | Expr.cpp | 705 for (unsigned i = 0, numParams = Params->size(); i != numParams; ++i) { in ComputeName() local
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | Sema.h | 9219 getPointerOrNull(unsigned numParams) { in getPointerOrNull() argument 9221 Infos.resize(numParams); in getPointerOrNull()
|