Home
last modified time | relevance | path

Searched refs:succ (Results 1 – 25 of 27) sorted by relevance

12

/freebsd/contrib/netbsd-tests/net/icmp/
H A Dt_ping.c151 int loop, succ; in doping() local
179 succ = 0; in doping()
191 succ++; in doping()
199 return succ; in doping()
208 int succ; in ATF_TC_BODY() local
227 succ = doping("1.1.1.10", LOOPS, 56); in ATF_TC_BODY()
228 printf("got %d/%d\n", succ, LOOPS); in ATF_TC_BODY()
244 int succ; in ATF_TC_BODY() local
255 succ = doping("1.1.1.20", LOOPS, 56); in ATF_TC_BODY()
259 succ = doping("1.1.1.10", LOOPS, 56); in ATF_TC_BODY()
[all …]
/freebsd/contrib/ntp/sntp/libopts/
H A Dreset.c80 tSuccess succ; in optionResetOpt() local
108 succ = opt_find_short(pOpts, (uint8_t)*pzArg, &opt_state); in optionResetOpt()
109 if (! SUCCESSFUL(succ)) { in optionResetOpt()
116 succ = opt_find_long(pOpts, (char *)pzArg, &opt_state); in optionResetOpt()
117 if (! SUCCESSFUL(succ)) { in optionResetOpt()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp401 } else if (u.i < u.v.pred.size() + u.v.succ.size()) { in propagateCounts()
402 GCOVArc *e = u.v.succ[u.i++ - u.v.pred.size()]; in propagateCounts()
450 if (!succ.empty()) { in print()
452 for (const GCOVArc *Edge : succ) { in print()
482 if (i == u->succ.size()) { in augmentOneCycle()
490 GCOVArc *succ = u->succ[i]; in augmentOneCycle() local
494 if (succ->cycleCount == 0 || !succ->dst.traversable || &succ->dst == u) in augmentOneCycle()
496 if (succ->dst.incoming == nullptr) { in augmentOneCycle()
497 succ->dst.incoming = succ; in augmentOneCycle()
498 stack.emplace_back(&succ->dst, 0); in augmentOneCycle()
[all …]
/freebsd/contrib/lib9p/pytest/
H A Dclient.py194 def succ(self, detail=None): member in TestCase
340 tc.succ()
359 tc.succ(err.args[0])
375 tc.succ(err.args[0])
387 tc.succ(err.args[0])
389 tc.succ()
404 tc.succ(err.args[0])
438 tc.succ()
451 tc.succ(err.args[0])
453 tc.succ('note: empty Twalk component name not rejected')
[all …]
/freebsd/contrib/netbsd-tests/rump/kernspace/
H A Dalloc.c83 int succ, i; in rumptest_alloc() local
108 for (succ = 0;; succ++) { in rumptest_alloc()
109 if (succ * 1024 > thelimit) in rumptest_alloc()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp95 const ExplodedNode *succ = *(node->succ_begin()); in shouldCollect() local
96 if (succ->pred_size() != 1) in shouldCollect()
141 const ProgramPoint SuccLoc = succ->getLocation(); in shouldCollect()
160 ExplodedNode *succ = *(node->succ_begin()); in collectNode() local
161 pred->replaceSuccessor(succ); in collectNode()
162 succ->replacePredecessor(pred); in collectNode()
H A DCoreEngine.cpp350 if (const CFGBlock *succ = *it) { in HandleBlockExit() local
351 generateNode(BlockEdge(B, succ, Pred->getLocationContext()), in HandleBlockExit()
/freebsd/bin/ed/
H A Ded.h157 #define REQUE(pred, succ) (pred)->q_forw = (succ), (succ)->q_back = (pred) argument
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h289 void addDstEdge(GCOVArc *Edge) { succ.push_back(Edge); } in addDstEdge()
296 return make_range(succ.begin(), succ.end()); in dsts()
312 SmallVector<GCOVArc *, 2> succ; variable
/freebsd/crypto/openssl/crypto/ec/curve448/
H A Dcurve448.c191 mask_t succ; in ossl_curve448_point_eq() local
197 succ = gf_eq(a, b); in ossl_curve448_point_eq()
199 return mask_to_bool(succ); in ossl_curve448_point_eq()
333 mask_t succ; in ossl_curve448_point_decode_like_eddsa_and_mul_by_ratio() local
340 succ = gf_deserialize(p->y, enc2, 1, 0); in ossl_curve448_point_decode_like_eddsa_and_mul_by_ratio()
341 succ &= word_is_zero(enc2[EDDSA_448_PRIVATE_BYTES - 1]); in ossl_curve448_point_decode_like_eddsa_and_mul_by_ratio()
349 succ &= gf_isr(p->t, p->x); /* 1/sqrt(num * denom) */ in ossl_curve448_point_decode_like_eddsa_and_mul_by_ratio()
380 assert(ossl_curve448_point_valid(p) || ~succ); in ossl_curve448_point_decode_like_eddsa_and_mul_by_ratio()
382 return c448_succeed_if(mask_to_bool(succ)); in ossl_curve448_point_decode_like_eddsa_and_mul_by_ratio()
H A Df_generic.c74 mask_t succ; in gf_deserialize() local
95 succ = with_hibit ? 0 - (mask_t) 1 : ~gf_hibit(x); in gf_deserialize()
96 return succ & word_is_zero((word_t)buffer) & ~word_is_zero((word_t)scarry); in gf_deserialize()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSink.cpp91 Loop *succ = LI.getLoopFor(SuccToSinkTo); in IsAcceptableTarget()
93 if (succ != nullptr && succ != cur) in IsAcceptableTarget()
92 Loop *succ = LI.getLoopFor(SuccToSinkTo); IsAcceptableTarget() local
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionIterator.h88 NodeRef succ; in getISucc() local
89 succ = getNode()->getParent()->getNode(BB); in getISucc()
90 assert(succ && "BB not in Region or entered subregion!"); in getISucc()
91 return succ; in getISucc()
H A DDependenceAnalysis.h204 void setNextSuccessor(const Dependence *succ) { NextSuccessor = succ; } in setNextSuccessor() argument
/freebsd/contrib/libpcap/
H A Dgencode.h258 struct block *succ; /* successor vertex */ member
413 #define JT(b) ((b)->et.succ)
414 #define JF(b) ((b)->ef.succ)
H A Doptimize.c458 if (ep->succ) { in propedom()
459 SET_INTERSECT(ep->succ->et.edom, ep->edom, opt_state->edgewords); in propedom()
460 SET_INTERSECT(ep->succ->ef.edom, ep->edom, opt_state->edgewords); in propedom()
1595 use_conflict(struct block *b, struct block *succ) in use_conflict() argument
1598 atomset use = succ->out_use; in use_conflict()
1605 if (b->val[atom] != succ->val[atom]) in use_conflict()
1709 if (JT(ep->succ) == 0) in opt_j()
1717 if (JT(ep->succ) == JF(ep->succ)) { in opt_j()
1734 if (!use_conflict(ep->pred, JT(ep->succ))) { in opt_j()
1745 ep->succ = JT(ep->succ); in opt_j()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp125 MachineBasicBlock* succ = *BB.succ_begin(); in runOnMachineFunction() local
127 for (MachineInstr &Phi : succ->phis()) { in runOnMachineFunction()
H A DMachineVerifier.cpp706 for (const auto *succ : MBB->successors()) { in visitMachineBasicBlockBefore() local
707 if (succ->isEHPad()) in visitMachineBasicBlockBefore()
708 LandingPadSuccs.insert(succ); in visitMachineBasicBlockBefore()
709 if (!FunctionBlocks.count(succ)) in visitMachineBasicBlockBefore()
711 if (!MBBInfoMap[succ].Preds.count(MBB)) { in visitMachineBasicBlockBefore()
714 << printMBBReference(*succ) << ".\n"; in visitMachineBasicBlockBefore()
H A DMachinePipeliner.cpp1911 SUnit *succ = S.getSUnit(); in computeNodeFunctions() local
1912 if (succ->isBoundaryNode()) in computeNodeFunctions()
1916 std::max(zeroLatencyHeight, getZeroLatencyHeight(succ) + 1); in computeNodeFunctions()
1919 alap = std::min(alap, (int)(getALAP(succ) - S.getLatency() + in computeNodeFunctions()
1920 getDistance(SU, succ, S) * MII)); in computeNodeFunctions()
/freebsd/contrib/lib9p/backend/
H A Dfs.c1789 char *comp, *succ, *next, *swtmp; in fs_walk() local
1826 succ = namebufs[0]; in fs_walk()
1828 namelen = strlcpy(succ, file->ff_name, MAXPATHLEN); in fs_walk()
1831 if (fstatat(file->ff_dirfd, succ, &st, AT_SYMLINK_NOFOLLOW) < 0) in fs_walk()
1834 atroot = strlen(succ) == 0; /* XXX? */ in fs_walk()
1857 succ, (unsigned)ai->ai_uid); in fs_walk()
1901 (void) r_dirname(succ, next, MAXPATHLEN); in fs_walk()
1910 memcpy(next, succ, namelen); in fs_walk()
1931 swtmp = succ; in fs_walk()
1932 succ = next; in fs_walk()
[all …]
/freebsd/contrib/bmake/
H A Dmake.c640 GNode *succ = ln->datum; in ScheduleOrderSuccessors() local
642 if (succ->made == DEFERRED && in ScheduleOrderSuccessors()
643 !MakeBuildChild(succ, toBeMadeNext)) in ScheduleOrderSuccessors()
644 succ->flags.doneOrder = true; in ScheduleOrderSuccessors()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp556 if (const CFGBlock *succ = *it) { in computeLiveness() local
557 val = LV->merge(val, LV->blocksBeginToLiveness[succ]); in computeLiveness()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp3093 for (auto *succ : MBB->successors()) { in getBlocksForScope() local
3094 if (BlocksToExplore.count(succ)) in getBlocksForScope()
3096 if (!ArtificialBlocks.count(succ)) in getBlocksForScope()
3098 ToAdd.insert(succ); in getBlocksForScope()
3099 DFS.push_back({succ, succ->succ_begin()}); in getBlocksForScope()
/freebsd/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_new.c200 dbus_bool_t succ; in wpas_dbus_signal_scan_done() local
214 succ = success ? TRUE : FALSE; in wpas_dbus_signal_scan_done()
215 if (dbus_message_append_args(msg, DBUS_TYPE_BOOLEAN, &succ, in wpas_dbus_signal_scan_done()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.td693 (ins fencearg:$pred, fencearg:$succ),
694 "fence", "$pred, $succ">, Sched<[]> {
696 bits<4> succ;
700 let imm12 = {0b0000,pred,succ};

12