Searched refs:itr (Results 1 - 21 of 21) sorted by relevance

/freebsd-11-stable/tests/sys/geom/class/eli/
H A Dgentestvect.py37 def printhmacres(salt, passwd, itr, hmacout):
39 cstring(passwd), itr, cstring(hmacout), len(hmacout))
54 print '\t/* salt, saltlen, passwd, itr, hmacout, hmacoutlen */'
56 for itr in itertools.chain(xrange(100, 1000, 100), xrange(1000,
62 itr)
63 printhmacres(salt, passwd, itr, hmacout)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSlotIndexes.cpp250 for (IndexList::const_iterator itr = indexList.begin();
251 itr != indexList.end(); ++itr) {
252 dbgs() << itr->getIndex() << " ";
254 if (itr->getInstr()) {
255 dbgs() << *itr->getInstr();
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp116 return itr == X.itr;
120 return itr != X.itr;
124 itr.push_back(SE);
128 assert(!itr.empty() && "attempting to iterate on an 'end' iterator");
134 assert(!itr.empty() && "attempting to dereference an 'end' iterator");
135 return itr.back();
139 const SymExpr *SE = itr.pop_back_val();
149 itr
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dfallible_iterator.h84 static fallible_iterator itr(Underlying I, Error &Err) { function in class:llvm::fallible_iterator
224 return fallible_iterator<Underlying>::itr(std::move(I), Err);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymExpr.h71 SmallVector<const SymExpr *, 5> itr; member in class:clang::ento::SymExpr::symbol_iterator
/freebsd-11-stable/contrib/gcc/
H A Dtree-if-conv.c146 block_stmt_iterator itr; local
179 for (itr = bsi_start (bb); !bsi_end_p (itr); /* empty */)
181 tree t = bsi_stmt (itr);
182 cond = tree_if_convert_stmt (loop, t, cond, &itr);
183 if (!bsi_end_p (itr))
184 bsi_next (&itr);
500 block_stmt_iterator itr; local
561 for (itr = bsi_start (bb); !bsi_end_p (itr); bsi_nex
[all...]
/freebsd-11-stable/sys/dev/ixl/
H A Dif_ixlv.c2092 rxr->itr = vsi->rx_itr_setting;
2097 txr->itr = vsi->tx_itr_setting;
2122 rx_bytes = rxr->bytes/rxr->itr;
2123 rx_itr = rxr->itr;
2152 if (rx_itr != rxr->itr) {
2154 rx_itr = (10 * rx_itr * rxr->itr) /
2155 ((9 * rx_itr) + rxr->itr);
2156 rxr->itr = min(rx_itr, IXL_MAX_ITR);
2158 que->me), rxr->itr);
2164 if (rxr->itr !
[all...]
H A Dixl_pf_main.c189 txr->itr = vsi->tx_itr_setting;
208 rxr->itr = vsi->rx_itr_setting;
1652 txr->itr = vsi->tx_itr_setting;
1657 rxr->itr = vsi->rx_itr_setting;
2571 rx_bytes = rxr->bytes/rxr->itr;
2572 rx_itr = rxr->itr;
2601 if (rx_itr != rxr->itr) {
2603 rx_itr = (10 * rx_itr * rxr->itr) /
2604 ((9 * rx_itr) + rxr->itr);
2605 rxr->itr
[all...]
H A Dixl.h453 u32 itr; member in struct:tx_ring
489 u32 itr; member in struct:rx_ring
H A Dixl_txrx.c2144 CTLFLAG_RD, &(rxr->itr), 0,
2147 CTLFLAG_RD, &(txr->itr), 0,
/freebsd-11-stable/sys/kern/
H A Dkern_cpu.c771 struct cf_level *fill, *itr; local
827 TAILQ_FOREACH_REVERSE(itr, list, cf_level_lst, link) {
828 itr_set = &itr->total_set;
832 itr = NULL;
835 if (fill->abs_set.freq <= itr->abs_set.freq) {
839 TAILQ_INSERT_AFTER(list, itr, fill, link);
844 itr = NULL;
851 if (itr == NULL) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h394 Mi2IndexMap::const_iterator itr = mi2iMap.find(&BundleNonDebug); local
395 assert(itr != mi2iMap.end() && "Instruction not found in maps.");
396 return itr->second;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp194 CFG::BuildOptions::ForcedBlkExprs::const_iterator itr = local
196 assert(itr != forcedBlkExprs->end());
197 return itr->second;
H A DCFG.cpp1318 CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt); local
1319 if (itr == fb->end()) {
1324 cachedEntry = &*itr;
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dscatterlist.h440 #define __sg_page_iter_dma_next(itr) \
441 __sg_page_iter_next(&(itr)->base)
/freebsd-11-stable/sys/dev/e1000/
H A De1000_api.h54 s32 e1000_set_obff_timer(struct e1000_hw *hw, u32 itr);
H A De1000_api.c957 * @itr: u32 indicating itr value
961 s32 e1000_set_obff_timer(struct e1000_hw *hw, u32 itr) argument
964 return hw->mac.ops.set_obff_timer(hw, itr);
H A De1000_ich8lan.c147 static s32 e1000_set_obff_timer_pch_lpt(struct e1000_hw *hw, u32 itr);
1222 * @itr: interrupt throttling rate
1226 static s32 e1000_set_obff_timer_pch_lpt(struct e1000_hw *hw, u32 itr) argument
1234 timer = itr & E1000_ITR_MASK;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java247 Iterator <Record> itr = records.iterator();
248 while (itr.hasNext()) {
249 record = itr.next();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DArchive.cpp781 return child_iterator::itr(
788 return child_iterator::itr(C, Err);
/freebsd-11-stable/crypto/openssl/crypto/ec/asm/
H A Decp_nistz256-avx2.pl411 my ($r_ptr,$a_ptr,$b_ptr,$itr)=("%rdi","%rsi","%rdx","%ecx");
577 mov $n_digits, $itr
625 dec $itr
654 mov $n_digits, $itr
696 dec $itr
738 #itr 1
768 #itr 2
804 #itr 3
839 #itr 4
871 #itr
[all...]

Completed in 415 milliseconds