Home
last modified time | relevance | path

Searched full:stop (Results 1 – 25 of 2836) sorted by relevance

12345678910>>...114

/freebsd/usr.bin/primes/
H A Dprimes.c41 * primes [-h] [start [stop]]
43 * Print primes >= start and < stop. If stop is omitted,
86 ubig stop; /* don't generate at or above this value */ in main() local
107 stop = (uint64_t)(-1); in main()
117 /* Start and stop supplied on the command line. */ in main()
129 stop = strtoumax(argv[1], &p, 0); in main()
154 if (start > stop) in main()
155 errx(1, "start value must be less than stop value."); in main()
156 primes(start, stop); in main()
192 * primes - sieve and print primes from start up to and but not including stop
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Ddeptgt-end-fail.exp15 Stop.
27 Stop.
38 Stop.
48 Stop.
58 Stop.
68 Stop.
78 Stop.
88 Stop.
98 Stop.
108 Stop.
[all …]
/freebsd/lib/libc/regex/
H A Dengine.c104 static const char *dissect(struct match *m, const char *start, const char *stop, sopno startst, sop…
105 static const char *backref(struct match *m, const char *start, const char *stop, sopno startst, sop…
106 static const char *walk(struct match *m, const char *start, const char *stop, sopno startst, sopno …
107 static states step(struct re_guts *g, sopno start, sopno stop, states bef, wint_t ch, states aft, i…
126 static void at(struct match *m, const char *title, const char *start, const char *stop, sopno start…
200 const char *stop; in matcher() local
214 stop = string + pmatch[0].rm_eo; in matcher()
217 stop = start + strlen(start); in matcher()
219 if (stop < start) in matcher()
230 for (dp = start+g->mlen-1; dp < stop;) { in matcher()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h88 Bits += 1 + It.stop() - It.start(); in count()
110 insert(It.start(), It.stop()); in set()
124 assert(It.stop() >= Index && "Interval must end after Index"); in test()
141 // [Start, Index-1] and another from [Index+1, Stop]. If Index is equal to in reset()
142 // either Start or Stop, we create one new interval. If Index is equal to in reset()
143 // both Start and Stop, we simply erase the existing interval. in reset()
148 IndexT Stop = It.stop(); in reset() local
149 assert(Index <= Stop && "Wrong interval for index"); in reset()
153 if (Index < Stop) in reset()
154 insert(Index + 1, Stop); in reset()
[all …]
H A DIntervalMap.h29 /// stop() iterator methods.
52 // KeyT stop() const;
80 // const KeyT &stop() const;
556 // - Traits::stopLess(start(i), stop(i)) - Non-empty, sane intervals.
558 // - Traits::stopLess(stop(i), start(i + 1) - Sorted.
560 // - value(i) != value(i + 1) || !Traits::adjacent(stop(i), start(i + 1))
569 const KeyT &stop(unsigned i) const { return this->first[i].second; } in stop() function
573 KeyT &stop(unsigned i) { return this->first[i].second; } in stop() function
580 /// @return First index with !stopLess(key[i].stop, x), or size.
584 assert((i == 0 || Traits::stopLess(stop( in findFrom()
705 const KeyT &stop(unsigned i) const { return this->second[i]; } stop() function
708 KeyT &stop(unsigned i) { return this->second[i]; } stop() function
752 insert(unsigned i,unsigned Size,NodeRef Node,KeyT Stop) insert() argument
1112 KeyT stop() const { stop() function
1419 const KeyT &stop() const { return unsafeStop(); } stop() function
1693 canCoalesceRight(KeyT Stop,ValT Value) canCoalesceRight() argument
1717 setNodeStop(unsigned Level,KeyT Stop) setNodeStop() argument
1788 insertNode(unsigned Level,IntervalMapImpl::NodeRef Node,KeyT Stop) insertNode() argument
2070 KeyT Stop = Node[Pos]->stop(NewSize[Pos]-1); overflow() local
2175 KeyType stop() const { stop() function
[all...]
/freebsd/crypto/openssl/doc/internal/man3/
H A Dossl_init_thread_deregister.pod25 Thread stop events may be detected by OpenSSL either automatically (using the
29 Thread aware code registers a "stop handler" for each new thread that it uses.
31 thread local variable and then register a stop handler. When the thread is
32 stopping the stop handler is called (while on that thread) and the code can
35 A new stop handler is registered using the function ossl_init_thread_start().
37 set of common stop handlers and is passed in a later call to
40 back as an argument to the stop handler when it is later invoked. Finally the
41 I<handfn> is a function pointer to the stop handler itself.
43 In the event that previously registered stop handlers need to be deregistered
45 This will deregister all stop handlers (no matter which thread they were
/freebsd/sys/dev/aic7xxx/aicasm/
H A Daicasm_gram.y270 stop("Prefix multiply defined",
274 stop("Unable to record prefix", EX_SOFTWARE);
282 stop("Patch argument list multiply defined",
286 stop("Unable to record patch arg list", EX_SOFTWARE);
303 stop("Register multiply defined", EX_DATAERR);
380 stop("SCB or SRAM space exhausted", EX_DATAERR);
414 stop("Valid register modes range between 0 and 4.",
427 stop("Only \"const\" symbols allowed in "
432 stop("Valid register modes range between 0 and 4.",
509 stop("Re-definition of register alias",
[all …]
/freebsd/contrib/nvi/regex/
H A Dengine.c92 static const RCHAR_T *dissect(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno sta…
93 static const RCHAR_T *backref(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno sta…
94 static const RCHAR_T *fast(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno starts…
95 static const RCHAR_T *slow(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno starts…
96 static states step(struct re_guts *g, sopno start, sopno stop, states bef, int flag, RCHAR_T ch, st…
107 static void at(struct match *m, char *title, char *start, char *stop, sopno startst, sopno stopst);
143 const RCHAR_T *stop; in matcher() local
150 stop = string + pmatch[0].rm_eo; in matcher()
153 stop = start + STRLEN(start); in matcher()
155 if (stop < start) in matcher()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStopInfo.h59 // If should stop returns false, check if we should notify of this event
82 /// A Continue operation can result in a false stop event
87 // Sometimes the thread plan logic will know that it wants a given stop to
88 // stop or not, regardless of what the ordinary logic for that StopInfo would
162 // Perform any action that is associated with this stop. This is done as the
170 // Stop the thread by default. Subclasses can override this to allow the
173 // whether to stop at this StopInfo, that must be done in the PerformAction.
180 lldb::ThreadWP m_thread_wp; // The thread corresponding to the stop reason.
181 uint32_t m_stop_id; // The process stop ID for which this stop info is valid
182 uint32_t m_resume_id; // This is the resume ID when we made this stop ID.
[all …]
H A DThreadPlan.h67 // plan stack (since multiple plans may be done at a given stop.) This is
72 // over that plan in reporting the reason for the stop.
80 // stop. Which leads to:
100 // calling mmap on device. ThreadStateCheckpoint saves Thread state (stop
130 // Responding to a stop:
134 // First the thread asks the Current Plan if it can handle this stop by
136 // asked if the stop should percolate all the way to the user by calling the
137 // ShouldStop method. If the current plan doesn't explain the stop, then we
138 // query up the plan stack for a plan that does explain the stop. The plan
139 // that does explain the stop then needs to figure out what to do about the
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dregengine.inc146 const char *stop;
153 stop = string + pmatch[0].rm_eo;
156 stop = start + strlen(start);
158 if (stop < start)
163 for (dp = start; dp < stop; dp++)
164 if (*dp == g->must[0] && stop - dp >= g->mlen &&
167 if (dp == stop) /* we didn't find g->must */
178 m->endp = stop;
188 endp = fast(m, start, stop, gf, gl);
202 endp = slow(m, m->coldp, stop, gf, gl);
[all …]
/freebsd/tests/sys/cam/ctl/
H A Dstart_stop_unit.sh41 atf_set "descr" "START STOP UNIT can eject a CDROM device"
69 atf_set "descr" "START STOP UNIT can load a CDROM device"
98 atf_set "descr" "START STOP UNIT can start a device"
106 # stop the device
107 atf_check sg_start --stop /dev/$dev
121 atf_test_case stop cleanup
124 atf_set "descr" "START STOP UNIT can stop a device"
132 # Stop the device
133 atf_check sg_start --stop /dev/$dev
149 atf_add_test_case stop
/freebsd/usr.bin/colrm/
H A Dcolrm.c51 u_long column, start, stop; in main() local
66 start = stop = 0; in main()
69 stop = strtol(argv[1], &p, 10); in main()
70 if (stop <= 0 || *p) in main()
84 if (stop && start > stop) in main()
85 errx(1, "illegal start and stop columns"); in main()
108 if ((!start || column < start || (stop && column > stop)) && in main()
126 (void)fprintf(stderr, "usage: colrm [start [stop]]\n"); in usage()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A DextractExternal.cpp36 void stop(char *errorMsg) { in stop() function
72 stop("rstream.getBuf: Error opening file"); in getBuf()
76 stop("rstream.getBuf: Error reading file"); in getBuf()
121 stop("StringTable.init: Invalid symbol table"); in init()
145 stop("StringTable: Invalid string table"); in StringTable()
152 stop("StringTable: Unexpected EOF"); in StringTable()
168 stop("StringTable: String too long"); in StringTable()
172 stop("StringTable: Symbol table too long"); in StringTable()
206 stop("StringTable::encode: String now found in string table"); in encode()
219 stop("StringTable::decode: Invalid string table lookup"); in decode()
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestStateMachine.java33 * methods before and after open(), compile(), enable(), go(), stop(),
257 // stop in beforeGo()
259 consumer.stop(); in beforeGo()
260 exit(1, "stop before go"); in beforeGo()
265 exit(1, "stop before go"); in beforeGo()
369 System.out.println("after stop"); in afterStop()
372 // stop in afterStop()
374 consumer.stop(); in afterStop()
375 exit(1, "stop after stop"); in afterStop()
380 exit(1, "stop after stop"); in afterStop()
[all …]
/freebsd/crypto/openssh/contrib/suse/
H A Drc.sshd15 # Required-Stop: $network $remote_fs
17 # Default-Stop: 0 1 2 6
57 stop)
59 ## Stop daemon with killproc(8) and if this fails
68 ## Stop the service and if this succeeds (i.e. the
76 ## Stop the service and regardless of whether it was
78 $0 stop
117 echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}"
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBThreadPlanDocstrings.i8 Get the number of words associated with the stop reason.
13 Get information associated with a stop reason.
15 Breakpoint stop reasons will have data that consists of pairs of
19 Stop Reason Count Data Type
34 %feature("docstring", "Return whether this plan will ask to stop other threads when it runs."
37 %feature("docstring", "Set whether this plan will ask to stop other threads when it runs."
/freebsd/contrib/unbound/contrib/
H A Dunbound.init_fedora13 # Required-Stop: $network $local_fs
15 # Should-Stop: $syslog
55 stop() {
57 # stop it here, often "killproc unbound"
72 stop
97 stop)
98 stop
117 echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterferenceCache.cpp133 SlotIndex Start, Stop; in update() local
134 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update()
168 if (StartI >= Stop) in update()
181 if (StartI >= Stop) in update()
190 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; in update()
199 PrevPos = Stop; in update()
210 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update()
216 if (!I.valid() || I.start() >= Stop) in update()
218 I.advanceTo(Stop); in update()
219 bool Backup = !I.valid() || I.start() >= Stop; in update()
[all …]
/freebsd/contrib/llvm-project/lld/docs/ELF/
H A Dstart-stop-gc.rst1 -z start-stop-gc
8 …ned under --gc-sections properly; consider -z nostart-stop-gc (see https://lld.llvm.org/start-stop
20 GNU ld 2.37 added ``-z start-stop-gc`` to restore the traditional behavior
21 ld.lld 13.0.0 defaults to ``-z start-stop-gc`` and supports ``-z nostart-stop-gc``
25 allowed GC (like ``-z start-stop-gc``).
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp155 // Only check once if we should stop at a breakpoint in ShouldStopSynchronous()
252 // stop. It should only ever get called after they have had a chance to in ShouldStop()
284 // conditions, we should change the stop-info to none. Otherwise, if we in PerformAction()
285 // hit another breakpoint on a different thread which does stop, users in PerformAction()
299 actually_hit_any_locations = true; // We're going to stop, don't in PerformAction()
300 // change the stop info. in PerformAction()
305 // If the condition says to stop, then we run the callback for that in PerformAction()
306 // location. If that callback says to stop as well, then we set in PerformAction()
307 // m_should_stop to true; we are going to stop. But we still want to in PerformAction()
308 // give all the breakpoints whose conditions say we are going to stop in PerformAction()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/net/can/
H A Dfsl,flexcan.yaml80 fsl,stop-mode:
82 Register bits of stop mode control.
87 req_gpr is the gpr register offset of CAN stop request.
88 req_bit is the bit offset of CAN stop request.
93 - description: The 'req_gpr' is the gpr register offset of CAN stop request.
95 - description: The 'req_bit' is the bit offset of CAN stop request.
119 For SoCs with SCU support, need setup stop mode via SCU firmware, so this
155 fsl,stop-mode = <&gpr 0x34 28>;
168 fsl,stop-mode = <&gpr 0x34 28>;
H A Dfsl-flexcan.txt27 - fsl,stop-mode: register bits of stop mode control, the format is
30 req_gpr is the gpr register offset of CAN stop request.
31 req_bit is the bit offset of CAN stop request.
32 ack_gpr is the gpr register offset of CAN stop acknowledge.
33 ack_bit is the bit offset of CAN stop acknowledge.
/freebsd/sys/contrib/openzfs/etc/init.d/
H A Dzfs-zed.in7 # description: This script will start and stop the ZFS Event Daemon.
13 # Required-Stop: zfs-mount
15 # Default-Stop: 0 1 6
16 # X-Stop-After: zfs-share
102 stop)
117 echo "Usage: $0 {start|stop|status|reload|restart}"
127 stop() { do_stop; }
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp42 // the stop reason to no thread plans think we are stopped for a reason and in OverrideStopInfo()
46 // often use the BVR/BCR registers that says "stop when the PC is not equal in OverrideStopInfo()
49 // executed. By fixing this we can stop the debugger from seeming like you in OverrideStopInfo()
52 // triggering a stop. in OverrideStopInfo()
82 // that detects when we stop on an instruction in ARM mode that is conditional in OverrideStopInfo()
84 // an instruction that is conditional. We currently will _always_ stop on the in OverrideStopInfo()
87 // because it would stop at all of the conditional instructions in both. In in OverrideStopInfo()
88 // such cases, we really don't want to stop at this location. in OverrideStopInfo()
104 // it stopped, we need to clear the stop info in OverrideStopInfo()
117 // Regardless of why it stopped, we need to clear the stop inf in OverrideStopInfo()
[all...]

12345678910>>...114