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

12345678910

/freebsd-11-stable/sys/dev/ixl/
H A Dixl_iw.h66 int (*stop)(struct ixl_iw_pf *pf_info); member in struct:ixl_iw_ops
/freebsd-11-stable/contrib/less/
H A Dsignal.c82 stop(type) function
85 LSIGNAL(SIGTSTP, stop);
169 (void) LSIGNAL(SIGTSTP, secure ? SIG_IGN : stop);
248 LSIGNAL(SIGTSTP, stop);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DFormatStringParsing.h77 SpecifierResult(bool stop = false)
78 : Start(nullptr), Stop(stop) {}
/freebsd-11-stable/usr.bin/cut/
H A Dcut.c164 size_t setautostart, start, stop; local
175 setautostart = start = stop = 0;
181 start = stop = strtol(p, &p, 10);
187 stop = strtol(p + 1, &p, 10);
190 if (!autostop || autostop > stop)
191 autostop = stop;
196 if (!stop || !start)
198 if (maxval < stop) {
199 maxval = stop;
202 for (pos = positions + start; start++ <= stop; *po
[all...]
/freebsd-11-stable/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
691 stop(const char *string, int err_code) function
[all...]
H A Daicasm.h85 void stop(const char *errstring, int err_code);
/freebsd-11-stable/stand/usb/tools/
H A Dsysinit.c48 static struct sysinit_data **stop; variable in typeref:struct:sysinit_data
230 stop = start + entries;
235 if (start != stop)
239 for (sipp = start; sipp < stop; sipp++) {
254 for (sipp = start; sipp < stop; sipp++) {
287 for (c = 0, sipp = start; sipp < stop; c++, sipp++) {
313 for (c = 0, sipp = start; sipp < stop; c++, sipp++) {
/freebsd-11-stable/contrib/binutils/gas/
H A Dcond.c131 char *stop = NULL; local
135 stop = mri_comment_field (&stopc);
180 mri_comment_end (stop, stopc);
264 char *stop = NULL; local
272 stop = mri_comment_field (&stopc);
297 mri_comment_end (stop, stopc);
/freebsd-11-stable/contrib/nvi/common/
H A Dutil.h28 /* Offset to next column of stop size, e.g. tab offsets. */
29 #define COL_OFF(c, stop) ((stop) - ((c) % (stop)))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DParallel.cpp59 void stop() { function in class:llvm::parallel::detail::__anon1991::ThreadPoolExecutor
71 stop();
81 static void call(void *Ptr) { ((ThreadPoolExecutor *)Ptr)->stop(); }
/freebsd-11-stable/sys/mips/cavium/octe/
H A Dcavium-ethernet.h70 int (*stop)(struct ifnet *ifp); member in struct:__anon12172
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.h40 bool stop) override;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalMap.h27 // value. The interval bounds are accessible through the start() and stop()
51 // KeyT stop() const;
74 // const KeyT &stop() const;
553 // - Traits::stopLess(start(i), stop(i)) - Non-empty, sane intervals.
555 // - Traits::stopLess(stop(i), start(i + 1) - Sorted.
557 // - value(i) != value(i + 1) || !Traits::adjacent(stop(i), start(i + 1))
566 const KeyT &stop(unsigned i) const { return this->first[i].second; } function in class:llvm::IntervalMapImpl::LeafNode
570 KeyT &stop(unsigned i) { return this->first[i].second; } function in class:llvm::IntervalMapImpl::LeafNode
577 /// @return First index with !stopLess(key[i].stop, x), or size.
581 assert((i == 0 || Traits::stopLess(stop(
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_linker.c195 struct sysinit **start, **stop, **sipp, **xipp, *save; local
202 if (linker_file_lookup_set(lf, "sysinit_set", &start, &stop, NULL) != 0)
211 for (sipp = start; sipp < stop; sipp++) {
212 for (xipp = sipp + 1; xipp < stop; xipp++) {
229 for (sipp = start; sipp < stop; sipp++) {
243 struct sysinit **start, **stop, **sipp, **xipp, *save; local
250 if (linker_file_lookup_set(lf, "sysuninit_set", &start, &stop,
261 for (sipp = start; sipp < stop; sipp++) {
262 for (xipp = sipp + 1; xipp < stop; xipp++) {
279 for (sipp = start; sipp < stop; sip
293 struct sysctl_oid **start, **stop, **oidp; local
319 struct sysctl_oid **start, **stop, **oidp; local
341 struct sysctl_oid **start, **stop, **oidp; local
362 struct mod_metadata **start, **stop, **mdp; local
1450 linker_addmodules(linker_file_t lf, struct mod_metadata **start, struct mod_metadata **stop, int preload) argument
1484 struct mod_metadata **start, **stop, **mdp, **nmdp; local
2086 struct mod_metadata **start, **stop, **mdp, **nmdp; local
[all...]
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwindLevel1.c41 // Walk each frame looking for a place to stop.
90 // If there is a personality routine, ask it if it will want to stop at
104 // stop search and remember stack pointer at the frame
140 // Walk each frame until we reach where search phase said to stop.
208 // Phase 1 said we would stop at this frame, but we did not...
210 "stop here, but now in phase2 it did not stop here");
248 _Unwind_Stop_Fn stop, void *stop_parameter) {
251 // Walk each frame until we reach where search phase said to stop
279 // Call stop functio
246 unwind_phase2_forced(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
408 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
[all...]
/freebsd-11-stable/sys/dev/extres/clk/
H A Dclk_div.c57 uint64_t *fout, int flag, int *stop);
126 int flags, int *stop)
160 *stop = 1;
166 *stop = 0;
175 if ((*stop != 0) &&
125 clknode_div_set_freq(struct clknode *clk, uint64_t fin, uint64_t *fout, int flags, int *stop) argument
H A Dclk_fixed.c53 uint64_t *fout, int flags, int *stop);
99 int flags, int *stop)
106 *stop = 1;
112 *stop = 0;
98 clknode_fixed_set_freq(struct clknode *clk, uint64_t fin, uint64_t *fout, int flags, int *stop) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp88 OS << " [" << SI.start() << ' ' << SI.stop() << "):"
145 while (LRI->start < LiveUnionI.stop() && LRI->end > LiveUnionI.start()) {
171 if (LRI->start < LiveUnionI.stop())
/freebsd-11-stable/usr.bin/dc/
H A Dinout.c332 BIGNUM mult, stop; local
339 BN_init(&stop);
340 bn_check(BN_one(&stop));
341 scale_number(&stop, b->scale);
344 while (BN_cmp(&mult, &stop) < 0) {
366 BN_free(&stop);
/freebsd-11-stable/tests/sys/kqueue/libkqueue/
H A Dtimer.c361 long stop; local
391 stop = now();
392 elapsed = stop - start;
419 long stop; local
455 stop = now();
456 elapsed = stop - start;
/freebsd-11-stable/contrib/gcc/
H A Dunwind-compat.c72 _Unwind_Stop_Fn stop, void * stop_argument)
74 return __libunwind_Unwind_ForcedUnwind (exc, stop, stop_argument);
71 _Unwind_ForcedUnwind(struct _Unwind_Exception *exc, _Unwind_Stop_Fn stop, void * stop_argument) argument
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_at.c90 rp->stop = rp->start;
93 rp->stop = cmdp->addr2.lno;
/freebsd-11-stable/sys/dev/en/
H A Dmidwayvar.h114 uint32_t stop; /* ends of buffer area (byte offset) */ member in struct:en_txslot
128 uint32_t stop; /* end of my buffer area */ member in struct:en_rxslot
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dconfig_file.c119 open_section(parse_context_t *ctx, svn_boolean_t *stop)
129 *stop = TRUE;
138 *stop = FALSE;
146 close_section(parse_context_t *ctx, svn_boolean_t *stop)
157 *stop = TRUE;
166 *stop = FALSE;
172 add_value(parse_context_t *ctx, svn_boolean_t *stop)
183 *stop = TRUE;
192 *stop = FALSE;
419 svn_boolean_t stop;
117 open_section(parse_context_t *ctx, svn_boolean_t *stop) argument
144 close_section(parse_context_t *ctx, svn_boolean_t *stop) argument
170 add_value(parse_context_t *ctx, svn_boolean_t *stop) argument
417 svn_boolean_t stop; local
765 svn_boolean_t stop; local
[all...]
/freebsd-11-stable/sys/arm/broadcom/bcm2835/
H A Dvc_vchi_audioserv_defs.h55 VC_AUDIO_MSG_TYPE_STOP, /* stop output (i.e. pause) */
149 VC_AUDIO_STOP_T stop; member in union:__anon7260::__anon7261

Completed in 272 milliseconds

12345678910