Searched refs:stop (Results 26 - 50 of 285) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/lld/Common/
H A DTimer.cpp22 void ScopedTimer::stop() { function in class:ScopedTimer
29 ScopedTimer::~ScopedTimer() { stop(); }
/freebsd-current/usr.bin/cut/
H A Dcut.c157 size_t setautostart, start, stop; local
168 setautostart = start = stop = 0;
174 start = stop = strtol(p, &p, 10);
180 stop = strtol(p + 1, &p, 10);
183 if (!autostop || autostop > stop)
184 autostop = stop;
189 if (!stop || !start)
191 if (maxval < stop) {
192 maxval = stop;
195 for (pos = positions + start; start++ <= stop; *po
[all...]
/freebsd-current/sys/dev/aic7xxx/aicasm/
H A Daicasm.c160 stop("-d: Assembler not built with debugging "
171 stop(NULL, EX_CANTCREAT);
187 stop(NULL, EX_CANTCREAT);
195 stop(NULL, EX_CANTCREAT);
202 stop(NULL, EX_CANTCREAT);
232 stop(NULL, EX_OSERR);
237 stop(NULL, EX_OSERR);
278 stop("Unterminated conditional expression", EX_DATAERR);
303 stop(NULL, 0);
338 stop(bu
687 stop(const char *string, int err_code) function
[all...]
H A Daicasm.h85 void stop(const char *errstring, int err_code);
/freebsd-current/tests/sys/kqueue/libkqueue/
H A Dtimer.c295 uint64_t end, start, stop; local
315 stop = now();
316 if (stop < end)
317 err(1, "too early %jd %jd", (intmax_t)stop, (intmax_t)end);
360 uint64_t end, start, stop; local
387 stop = now();
388 if (stop < end)
389 err(1, "too early %jd %jd", (intmax_t)stop, (intmax_t)end);
402 uint64_t end, start, stop; local
426 stop
582 uint64_t start, stop; local
639 uint64_t start, stop; local
[all...]
/freebsd-current/stand/usb/tools/
H A Dsysinit.c47 static struct sysinit_data **stop; variable in typeref:struct:sysinit_data
229 stop = start + entries;
234 if (start != stop)
238 for (sipp = start; sipp < stop; sipp++) {
253 for (sipp = start; sipp < stop; sipp++) {
286 for (c = 0, sipp = start; sipp < stop; c++, sipp++) {
312 for (c = 0, sipp = start; sipp < stop; c++, sipp++) {
/freebsd-current/contrib/nvi/common/
H A Dutil.h26 /* Offset to next column of stop size, e.g. tab offsets. */
27 #define COL_OFF(c, stop) ((stop) - ((c) % (stop)))
/freebsd-current/contrib/llvm-project/lld/include/lld/Common/
H A DTimer.h30 void stop();
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.h40 bool stop) override;
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/wasm-DYLD/
H A DDynamicLoaderWasmDYLD.h35 bool stop) override;
/freebsd-current/sys/kern/
H A Dsubr_prof.c143 int stop = 0; local
172 stop = 1;
180 stop = 0;
183 if (stop)
H A Dkern_linker.c196 struct sysinit **start, **stop, **sipp, **xipp, *save; local
204 if (linker_file_lookup_set(lf, "sysinit_set", &start, &stop, NULL) != 0)
213 for (sipp = start; sipp < stop; sipp++) {
214 for (xipp = sipp + 1; xipp < stop; xipp++) {
232 for (sipp = start; sipp < stop; sipp++) {
251 struct sysinit **start, **stop, **sipp, **xipp, *save; local
259 if (linker_file_lookup_set(lf, "sysuninit_set", &start, &stop,
270 for (sipp = start; sipp < stop; sipp++) {
271 for (xipp = sipp + 1; xipp < stop; xipp++) {
289 for (sipp = start; sipp < stop; sip
308 struct sysctl_oid **start, **stop, **oidp; local
354 struct sysctl_oid **start, **stop, **oidp; local
376 struct sysctl_oid **start, **stop, **oidp; local
397 struct mod_metadata **start, **stop, **mdp; local
1621 linker_addmodules(linker_file_t lf, struct mod_metadata **start, struct mod_metadata **stop, int preload) argument
1655 struct mod_metadata **start, **stop, **mdp, **nmdp; local
2314 struct mod_metadata **start, **stop, **mdp, **nmdp; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Debuginfod/
H A DHTTPServer.cpp71 HTTPServer::~HTTPServer() { stop(); }
153 void HTTPServer::stop() { function in class:HTTPServer
154 Server->stop();
194 void HTTPServer::stop() { function in class:HTTPServer
/freebsd-current/sys/dev/clk/
H A Dclk_link.c45 uint64_t *fout, int flags, int *stop);
78 int flags, int *stop)
77 clknode_link_set_freq(struct clknode *clk, uint64_t fin, uint64_t *fout, int flags, int *stop) argument
H A Dclk_div.c53 uint64_t *fout, int flag, int *stop);
162 int flags, int *stop)
192 *stop = 1;
206 *stop = 0;
216 if ((*stop != 0) &&
161 clknode_div_set_freq(struct clknode *clk, uint64_t fin, uint64_t *fout, int flags, int *stop) argument
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan_abi/
H A Dasan_abi.cpp15 void __asan_abi_register_elf_globals(bool *flag, void *start, void *stop) {} argument
16 void __asan_abi_unregister_elf_globals(bool *flag, void *start, void *stop) {} argument
H A Dasan_abi.h22 void __asan_abi_register_elf_globals(bool *flag, void *start, void *stop);
23 void __asan_abi_unregister_elf_globals(bool *flag, void *start, void *stop);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
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; } function in class:llvm::IntervalMapImpl::LeafNode
573 KeyT &stop(unsigned i) { return this->first[i].second; } function in class:llvm::IntervalMapImpl::LeafNode
580 /// @return First index with !stopLess(key[i].stop, x), or size.
584 assert((i == 0 || Traits::stopLess(stop(
[all...]
/freebsd-current/sys/dev/clk/rockchip/
H A Drk_clk_mux.c67 uint64_t *fout, int flags, int *stop);
166 int flags, int *stop)
177 *stop = 1;
181 *stop = 0;
198 *stop = 1;
202 if (!*stop)
165 rk_clk_mux_set_freq(struct clknode *clk, uint64_t fparent, uint64_t *fout, int flags, int *stop) argument
/freebsd-current/contrib/lib9p/pytest/
H A Dclient.py40 self.stop = False
327 tstate.stop = True # unless overwritten below
339 tstate.stop = False
342 if not tstate.stop:
346 tstate.stop = True
358 tstate.stop = False
362 if not tstate.stop:
378 if not tstate.stop:
385 tstate.stop = True
391 if not tstate.stop
[all...]
/freebsd-current/sys/dev/clk/allwinner/
H A Daw_clk_m.c162 int flags, int *stop)
191 *stop = 1;
197 *stop = 1;
202 *stop = 1;
217 *stop = 1;
161 aw_clk_m_set_freq(struct clknode *clk, uint64_t fparent, uint64_t *fout, int flags, int *stop) argument
H A Daw_clk_np.c132 int flags, int *stop)
148 *stop = 1;
154 *stop = 1;
159 *stop = 1;
186 *stop = 1;
131 aw_clk_np_set_freq(struct clknode *clk, uint64_t fparent, uint64_t *fout, int flags, int *stop) argument
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/cmd/
H A Dxattrtest.c354 struct timeval start, stop; local
402 (void) gettimeofday(&stop, NULL);
403 seconds = timeval_sub_seconds(&stop, &start);
445 struct timeval start, stop; local
496 (void) gettimeofday(&stop, NULL);
497 seconds = timeval_sub_seconds(&stop, &start);
522 struct timeval start, stop; local
597 (void) gettimeofday(&stop, NULL);
598 seconds = timeval_sub_seconds(&stop, &start);
621 struct timeval start, stop; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp89 OS << " [" << SI.start() << ' ' << SI.stop()
157 while (LRI->start < LiveUnionI.stop() && LRI->end > LiveUnionI.start()) {
183 if (LRI->start < LiveUnionI.stop())
/freebsd-current/contrib/nvi/ex/
H A Dex_at.c86 rp->stop = rp->start;
89 rp->stop = cmdp->addr2.lno;

Completed in 397 milliseconds

1234567891011>>