Home
last modified time | relevance | path

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

12345678910>>...123

/third_party/ltp/testcases/kernel/syscalls/inotify/
H A Dinotify05.c44 int len, stop; in verify_inotify() local
60 stop = 0; in verify_inotify()
61 while (!stop) { in verify_inotify()
89 stop = 1; in verify_inotify()
103 stop = 1; in verify_inotify()
109 stop = 1; in verify_inotify()
116 stop = 1; in verify_inotify()
/third_party/protobuf/objectivec/
H A DGPBDictionary.h110 * **stop**: A pointer to a boolean that when set stops the enumeration.
113 (void (NS_NOESCAPE ^)(uint32_t key, uint32_t value, BOOL *stop))block;
205 * **stop**: A pointer to a boolean that when set stops the enumeration.
208 (void (NS_NOESCAPE ^)(uint32_t key, int32_t value, BOOL *stop))block;
300 * **stop**: A pointer to a boolean that when set stops the enumeration.
303 (void (NS_NOESCAPE ^)(uint32_t key, uint64_t value, BOOL *stop))block;
395 * **stop**: A pointer to a boolean that when set stops the enumeration.
398 (void (NS_NOESCAPE ^)(uint32_t key, int64_t value, BOOL *stop))block;
490 * **stop**: A pointer to a boolean that when set stops the enumeration.
493 (void (NS_NOESCAPE ^)(uint32_t key, BOOL value, BOOL *stop))bloc
[all...]
/kernel/linux/linux-5.10/virt/lib/
H A Dirqbypass.c35 if (prod->stop) in __connect()
36 prod->stop(prod); in __connect()
37 if (cons->stop) in __connect()
38 cons->stop(cons); in __connect()
61 if (prod->stop) in __disconnect()
62 prod->stop(prod); in __disconnect()
63 if (cons->stop) in __disconnect()
64 cons->stop(cons); in __disconnect()
/kernel/linux/linux-6.6/virt/lib/
H A Dirqbypass.c35 if (prod->stop) in __connect()
36 prod->stop(prod); in __connect()
37 if (cons->stop) in __connect()
38 cons->stop(cons); in __connect()
61 if (prod->stop) in __disconnect()
62 prod->stop(prod); in __disconnect()
63 if (cons->stop) in __disconnect()
64 cons->stop(cons); in __disconnect()
/kernel/linux/linux-5.10/kernel/
H A Dstatic_call.c96 struct static_call_site *stop) in static_call_sort_entries()
98 sort(start, stop - start, sizeof(struct static_call_site), in static_call_sort_entries()
125 struct static_call_site *site, *stop; in __static_call_update() local
166 stop = __stop_static_call_sites; in __static_call_update()
170 stop = mod->static_call_sites + in __static_call_update()
177 site < stop && static_call_key(site) == key; site++) { in __static_call_update()
211 struct static_call_site *stop) in __static_call_init()
217 if (start == stop) in __static_call_init()
220 static_call_sort_entries(start, stop); in __static_call_init()
222 for (site = start; site < stop; sit in __static_call_init()
95 static_call_sort_entries(struct static_call_site *start, struct static_call_site *stop) static_call_sort_entries() argument
209 __static_call_init(struct module *mod, struct static_call_site *start, struct static_call_site *stop) __static_call_init() argument
339 struct static_call_tramp_key *stop = __stop_static_call_tramp_key; tramp_key_lookup() local
356 struct static_call_site *stop = start + mod->num_static_call_sites; static_call_add_module() local
395 struct static_call_site *stop = mod->static_call_sites + static_call_del_module() local
[all...]
/kernel/linux/linux-6.6/kernel/
H A Dstatic_call_inline.c107 struct static_call_site *stop) in static_call_sort_entries()
109 sort(start, stop - start, sizeof(struct static_call_site), in static_call_sort_entries()
136 struct static_call_site *site, *stop; in __static_call_update() local
177 stop = __stop_static_call_sites; in __static_call_update()
181 stop = mod->static_call_sites + in __static_call_update()
188 site < stop && static_call_key(site) == key; site++) { in __static_call_update()
222 struct static_call_site *stop) in __static_call_init()
228 if (start == stop) in __static_call_init()
231 static_call_sort_entries(start, stop); in __static_call_init()
233 for (site = start; site < stop; sit in __static_call_init()
106 static_call_sort_entries(struct static_call_site *start, struct static_call_site *stop) static_call_sort_entries() argument
220 __static_call_init(struct module *mod, struct static_call_site *start, struct static_call_site *stop) __static_call_init() argument
350 struct static_call_tramp_key *stop = __stop_static_call_tramp_key; tramp_key_lookup() local
367 struct static_call_site *stop = start + mod->num_static_call_sites; static_call_add_module() local
406 struct static_call_site *stop = mod->static_call_sites + static_call_del_module() local
[all...]
/kernel/linux/linux-5.10/arch/arm/kernel/
H A Dunwind.c99 * origin = first entry with positive offset (or stop if there is no such entry)
100 * stop - 1 = last entry
105 const struct unwind_idx *stop) in search_index()
110 __func__, addr, start, origin, stop); in search_index()
118 stop = origin; in search_index()
120 /* positive offsets: [origin; stop) */ in search_index()
126 while (start < stop - 1) { in search_index()
127 const struct unwind_idx *mid = start + ((stop - start) >> 1); in search_index()
135 stop = mid; in search_index()
153 const struct unwind_idx *start, const struct unwind_idx *stop) in unwind_find_origin()
102 search_index(unsigned long addr, const struct unwind_idx *start, const struct unwind_idx *origin, const struct unwind_idx *stop) search_index() argument
152 unwind_find_origin( const struct unwind_idx *start, const struct unwind_idx *stop) unwind_find_origin() argument
[all...]
/kernel/linux/linux-6.6/arch/arm/kernel/
H A Dunwind.c100 * origin = first entry with positive offset (or stop if there is no such entry)
101 * stop - 1 = last entry
106 const struct unwind_idx *stop) in search_index()
111 __func__, addr, start, origin, stop); in search_index()
119 stop = origin; in search_index()
121 /* positive offsets: [origin; stop) */ in search_index()
127 while (start < stop - 1) { in search_index()
128 const struct unwind_idx *mid = start + ((stop - start) >> 1); in search_index()
136 stop = mid; in search_index()
154 const struct unwind_idx *start, const struct unwind_idx *stop) in unwind_find_origin()
103 search_index(unsigned long addr, const struct unwind_idx *start, const struct unwind_idx *origin, const struct unwind_idx *stop) search_index() argument
153 unwind_find_origin( const struct unwind_idx *start, const struct unwind_idx *stop) unwind_find_origin() argument
[all...]
/kernel/linux/linux-6.6/drivers/i2c/busses/
H A Di2c-hix5hd2.c85 int stop; member
179 dev_dbg(priv->dev, "%s: rw and send stop over\n", __func__); in hix5hd2_rw_over()
189 if (priv->stop) { in hix5hd2_rw_handle_stop()
259 goto stop; in hix5hd2_i2c_irq()
265 goto stop; in hix5hd2_i2c_irq()
274 goto stop; in hix5hd2_i2c_irq()
285 stop: in hix5hd2_i2c_irq()
299 static void hix5hd2_i2c_message_start(struct hix5hd2_i2c_priv *priv, int stop) in hix5hd2_i2c_message_start() argument
315 struct i2c_msg *msgs, int stop) in hix5hd2_i2c_xfer_msg()
323 priv->stop in hix5hd2_i2c_xfer_msg()
314 hix5hd2_i2c_xfer_msg(struct hix5hd2_i2c_priv *priv, struct i2c_msg *msgs, int stop) hix5hd2_i2c_xfer_msg() argument
358 int i, ret, stop; hix5hd2_i2c_xfer() local
[all...]
/third_party/skia/src/core/
H A DSkRegion_path.cpp207 const SkRegion::RunType* stop = (const SkRegion::RunType*)fCurrScanline; in computeRunCount() local
209 return 2 + (int)(stop - line); in computeRunCount()
228 const Scanline* stop = fCurrScanline; in copyToRgn() local
241 } while (line < stop); in copyToRgn()
242 SkASSERT(line == stop); in copyToRgn()
419 static void find_link(Edge* base, Edge* stop) { in find_link() argument
420 SkASSERT(base < stop); in find_link()
427 SkASSERT(base + 1 < stop); in find_link()
461 static int extract_path(Edge* edge, Edge* stop, SkPath* path) { in extract_path() argument
466 SkASSERT(edge < stop); in extract_path()
[all...]
/third_party/node/test/parallel/
H A Dtest-promise-hook-exceptions.js12 const stop = hook(common.mustCall(() => {
13 stop();
29 const stop = promiseHooks.onInit(common.mustCall(2));
31 Promise.resolve().then(stop);
/kernel/linux/linux-5.10/drivers/scsi/aic7xxx/aicasm/
H A Daicasm.c162 stop("-d: Assembler not built with debugging " in main()
173 stop(NULL, EX_CANTCREAT); in main()
189 stop(NULL, EX_CANTCREAT); in main()
197 stop(NULL, EX_CANTCREAT); in main()
204 stop(NULL, EX_CANTCREAT); in main()
234 stop(NULL, EX_OSERR); in main()
239 stop(NULL, EX_OSERR); in main()
277 stop("Unterminated conditional expression", EX_DATAERR); in main()
302 stop(NULL, 0); in main()
337 stop(bu in back_patch()
687 stop(const char *string, int err_code) stop() function
[all...]
/kernel/linux/linux-6.6/drivers/scsi/aic7xxx/aicasm/
H A Daicasm.c162 stop("-d: Assembler not built with debugging " in main()
173 stop(NULL, EX_CANTCREAT); in main()
189 stop(NULL, EX_CANTCREAT); in main()
197 stop(NULL, EX_CANTCREAT); in main()
204 stop(NULL, EX_CANTCREAT); in main()
234 stop(NULL, EX_OSERR); in main()
239 stop(NULL, EX_OSERR); in main()
277 stop("Unterminated conditional expression", EX_DATAERR); in main()
302 stop(NULL, 0); in main()
337 stop(bu in back_patch()
687 stop(const char *string, int err_code) stop() function
[all...]
/third_party/curl/tests/
H A Dazure.pm105 my ($curl, $azure_run_id, $azure_result_id, $testnum, $error, $start, $stop)=@_;
106 if(!defined $stop) {
107 $stop = $start;
110 my $azure_complete = strftime "%Y-%m-%dT%H:%M:%SZ", gmtime $stop;
111 my $azure_duration = sprintf("%.0f", ($stop-$start)*1000);
H A Dappveyor.pm73 my ($curl, $testnum, $error, $start, $stop)=@_;
78 if(!defined $stop) {
79 $stop = $start;
81 my $appveyor_duration = sprintf("%.0f", ($stop-$start)*1000);
/third_party/libunwind/libunwind/src/unwind/
H A Dunwind-internal.h61 _Unwind_Stop_Fn stop = (_Unwind_Stop_Fn) exception_object->private_1; in _Unwind_Phase2() local
72 if (stop) in _Unwind_Phase2()
89 if (stop) in _Unwind_Phase2()
91 reason = (*stop) (_U_VERSION, actions, exception_class, in _Unwind_Phase2()
109 if (!stop) in _Unwind_Phase2()
/third_party/skia/gm/
H A Ddashcubics.cpp135 stop = offset[1] + fOffset; variable
141 stop -= SkScalarFloorToScalar(stop);
142 if (start > stop) {
144 swap(start, stop);
149 normalPaint.setPathEffect(SkTrimPathEffect::Make(start, stop, normalMode));
150 invertedPaint.setPathEffect(SkTrimPathEffect::Make(start, stop, invertedMode));
/kernel/linux/linux-5.10/drivers/i2c/busses/
H A Di2c-hix5hd2.c85 int stop; member
179 dev_dbg(priv->dev, "%s: rw and send stop over\n", __func__); in hix5hd2_rw_over()
189 if (priv->stop) { in hix5hd2_rw_handle_stop()
259 goto stop; in hix5hd2_i2c_irq()
265 goto stop; in hix5hd2_i2c_irq()
274 goto stop; in hix5hd2_i2c_irq()
285 stop: in hix5hd2_i2c_irq()
299 static void hix5hd2_i2c_message_start(struct hix5hd2_i2c_priv *priv, int stop) in hix5hd2_i2c_message_start() argument
315 struct i2c_msg *msgs, int stop) in hix5hd2_i2c_xfer_msg()
323 priv->stop in hix5hd2_i2c_xfer_msg()
314 hix5hd2_i2c_xfer_msg(struct hix5hd2_i2c_priv *priv, struct i2c_msg *msgs, int stop) hix5hd2_i2c_xfer_msg() argument
358 int i, ret, stop; hix5hd2_i2c_xfer() local
[all...]
/kernel/linux/linux-6.6/include/trace/events/
H A Dintel_ifs.h21 __field( u8, stop )
27 __entry->stop = activate.stop;
31 TP_printk("cpu: %d, start: %.2x, stop: %.2x, status: %llx",
34 __entry->stop,
/third_party/icu/icu4c/source/i18n/
H A Dformat.cpp183 int32_t stop = pos; in syntaxError() local
184 pattern.extract(start,stop-start,parseError.preContext,0); in syntaxError()
186 parseError.preContext[stop-start] = 0; in syntaxError()
190 stop = ((pos+U_PARSE_CONTEXT_LEN)<=pattern.length()) ? (pos+(U_PARSE_CONTEXT_LEN-1)) : in syntaxError()
192 pattern.extract(start,stop-start,parseError.postContext,0); in syntaxError()
194 parseError.postContext[stop-start]= 0; in syntaxError()
/third_party/node/deps/icu-small/source/i18n/
H A Dformat.cpp183 int32_t stop = pos; in syntaxError() local
184 pattern.extract(start,stop-start,parseError.preContext,0); in syntaxError()
186 parseError.preContext[stop-start] = 0; in syntaxError()
190 stop = ((pos+U_PARSE_CONTEXT_LEN)<=pattern.length()) ? (pos+(U_PARSE_CONTEXT_LEN-1)) : in syntaxError()
192 pattern.extract(start,stop-start,parseError.postContext,0); in syntaxError()
194 parseError.postContext[stop-start]= 0; in syntaxError()
/third_party/skia/src/effects/
H A DSkTrimPathEffect.cpp18 static size_t add_segments(const SkPath& src, SkScalar start, SkScalar stop, SkPath* dst, in add_segments() argument
20 SkASSERT(start < stop); in add_segments()
32 stop - current_segment_offset, in add_segments()
35 if (stop <= next_offset) in add_segments()
109 stop = buffer.readScalar();
112 return SkTrimPathEffect::Make(start, stop,
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dformat.cpp183 int32_t stop = pos; in syntaxError() local
184 pattern.extract(start,stop-start,parseError.preContext,0); in syntaxError()
186 parseError.preContext[stop-start] = 0; in syntaxError()
190 stop = ((pos+U_PARSE_CONTEXT_LEN)<=pattern.length()) ? (pos+(U_PARSE_CONTEXT_LEN-1)) : in syntaxError()
192 pattern.extract(start,stop-start,parseError.postContext,0); in syntaxError()
194 parseError.postContext[stop-start]= 0; in syntaxError()
/third_party/skia/modules/svg/src/
H A DSkSVGGradient.cpp37 const auto& stop = static_cast<const SkSVGStop&>(*child); in collectColorStops() local
38 colors->push_back(this->resolveStopColor(ctx, stop)); in collectColorStops()
39 pos->push_back(SkTPin(ltx.resolve(stop.getOffset(), SkSVGLengthContext::LengthType::kOther), in collectColorStops()
55 const SkSVGStop& stop) const { in resolveStopColor()
56 const auto& stopColor = stop.getStopColor(); in resolveStopColor()
57 const auto& stopOpacity = stop.getStopOpacity(); in resolveStopColor()
60 SkDebugf("unhandled: stop-color or stop-opacity has no value\n"); in resolveStopColor()
76 // * stop (lazy?) sorting in onAsPaint()
/kernel/linux/linux-5.10/kernel/power/
H A Dswap.c548 ktime_t stop; in save_image() local
573 stop = ktime_get(); in save_image()
578 swsusp_show_speed(start, stop, nr_to_write, "Wrote"); in save_image()
588 atomic_t stop; /* ready to stop flag */ member
610 atomic_set_release(&d->stop, 1); in crc32_threadfn()
619 atomic_set_release(&d->stop, 1); in crc32_threadfn()
630 atomic_t stop; /* ready to stop flag */ member
654 atomic_set_release(&d->stop, in lzo_compress_threadfn()
685 ktime_t stop; save_image_lzo() local
1066 ktime_t stop; load_image() local
1117 atomic_t stop; /* ready to stop flag */ global() member
1174 ktime_t stop; load_image_lzo() local
[all...]

Completed in 33 milliseconds

12345678910>>...123