Home
last modified time | relevance | path

Searched refs:skip (Results 51 - 75 of 2168) sorted by relevance

12345678910>>...87

/kernel/linux/linux-6.6/kernel/
H A Dstacktrace.c78 unsigned int skip; member
89 if (c->skip > 0) { in stack_trace_consume_entry()
90 c->skip--; in stack_trace_consume_entry()
108 * @skipnr: Number of entries to skip at the start of the stack trace
119 .skip = skipnr + 1, in stack_trace_save()
132 * @skipnr: Number of entries to skip at the start of the stack trace
143 /* skip this function if they are tracing us */ in stack_trace_save_tsk()
144 .skip = skipnr + (current == tsk), in stack_trace_save_tsk()
160 * @skipnr: Number of entries to skip at the start of the stack trace
171 .skip in stack_trace_save_regs()
[all...]
/third_party/libinput/tools/
H A Dlibinput-measure-touchpad-size.py310 # If both x/y are within some acceptable deviation, we skip the axis
315 skip = between(xorig.minimum, touchpad.x.minimum, deviation)
316 skip = skip and between(xorig.maximum, touchpad.x.maximum, deviation)
318 skip = skip and between(yorig.minimum, touchpad.y.minimum, deviation)
319 skip = skip and between(yorig.maximum, touchpad.y.maximum, deviation)
321 if skip:
354 touchpad.x.minimum if not skip els
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DYAMLParser.h95 void skip();
99 skip(); in validate()
170 virtual void skip() {} in skip() function in llvm::yaml::Node
300 void skip() override {
302 Key->skip();
304 Val->skip();
388 template <class CollectionType> void skip(CollectionType &C) { in skip() function
390 assert((C.IsAtBeginning || C.IsAtEnd) && "Cannot skip mid parse!"); in skip()
394 i->skip(); in skip()
423 template <class T> friend void yaml::skip(
429 void skip() override { yaml::skip(*this); } global() member in llvm::yaml::final::yaml
486 void skip() override { yaml::skip(*this); } global() member in llvm::yaml::final::yaml
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DYAMLParser.h88 void skip();
91 skip(); in validate()
145 virtual void skip() {} in skip() function in llvm::yaml::Node
288 void skip() override {
289 getKey()->skip();
291 Val->skip();
374 template <class CollectionType> void skip(CollectionType &C) { in skip() function
376 assert((C.IsAtBeginning || C.IsAtEnd) && "Cannot skip mid parse!"); in skip()
380 i->skip(); in skip()
408 template <class T> friend void yaml::skip(
414 void skip() override { yaml::skip(*this); } global() member in llvm::yaml::final::yaml
472 void skip() override { yaml::skip(*this); } global() member in llvm::yaml::final::yaml
[all...]
/third_party/ffmpeg/libavcodec/
H A Dagm.c107 int len = 0, skip = 0, max; in read_code() local
117 skip = 3; in read_code()
121 skip = 4; in read_code()
125 skip = 4; in read_code()
130 skip = 3; in read_code()
134 skip = 4; in read_code()
138 skip = 4; in read_code()
142 skip = 4; in read_code()
146 skip = 4; in read_code()
150 skip in read_code()
197 decode_intra_blocks(AGMContext *s, GetBitContext *gb, const int *quant_matrix, int *skip, int *dc_level) decode_intra_blocks() argument
238 decode_inter_blocks(AGMContext *s, GetBitContext *gb, const int *quant_matrix, int *skip, int *map) decode_inter_blocks() argument
274 decode_intra_block(AGMContext *s, GetBitContext *gb, const int *quant_matrix, int *skip, int *dc_level) decode_intra_block() argument
318 int ret, skip = 0, dc_level = 0; decode_intra_plane() local
363 decode_inter_block(AGMContext *s, GetBitContext *gb, const int *quant_matrix, int *skip, int *map) decode_inter_block() argument
397 int ret, skip = 0; decode_inter_plane() local
837 int ret, skip = 0, value, map; decode_motion_vectors() local
1105 long skip; decode_frame() local
[all...]
H A Dwebvttdec.c48 int i, again = 0, skip = 0; in webvtt_event_to_ass() local
67 skip = 0; in webvtt_event_to_ass()
71 skip = 1; in webvtt_event_to_ass()
73 skip = 0; in webvtt_event_to_ass()
76 else if (!skip && *p != '\r') in webvtt_event_to_ass()
H A Dwcmv.c49 int skip, blocks, zret, ret, intra = 0, flags = 0, bpp = s->bpp; in decode_frame() local
78 skip = bytestream2_tell(&gb); in decode_frame()
79 if (size > avpkt->size - skip) in decode_frame()
82 zstream->next_in = avpkt->data + skip; in decode_frame()
121 skip = bytestream2_tell(&gb); in decode_frame()
123 zstream->next_in = avpkt->data + skip; in decode_frame()
124 zstream->avail_in = avpkt->size - skip; in decode_frame()
150 skip = bytestream2_tell(&gb); in decode_frame()
152 zstream->next_in = avpkt->data + skip; in decode_frame()
153 zstream->avail_in = avpkt->size - skip; in decode_frame()
[all...]
/kernel/linux/linux-5.10/arch/ia64/kernel/
H A Dstacktrace.c17 int skip = trace->skip; in ia64_do_save_stack() local
24 if (skip == 0) { in ia64_do_save_stack()
29 skip--; in ia64_do_save_stack()
/kernel/linux/linux-6.6/arch/ia64/kernel/
H A Dstacktrace.c17 int skip = trace->skip; in ia64_do_save_stack() local
24 if (skip == 0) { in ia64_do_save_stack()
29 skip--; in ia64_do_save_stack()
/kernel/linux/linux-5.10/lib/
H A Diov_iter.c18 #define iterate_iovec(i, n, __v, __p, skip, STEP) { \
22 __v.iov_len = min(n, __p->iov_len - skip); \
24 __v.iov_base = __p->iov_base + skip; \
27 skip += __v.iov_len; \
40 skip = __v.iov_len; \
46 #define iterate_kvec(i, n, __v, __p, skip, STEP) { \
49 __v.iov_len = min(n, __p->iov_len - skip); \
51 __v.iov_base = __p->iov_base + skip; \
53 skip += __v.iov_len; \
63 skip
167 size_t skip, copy, left, wanted; copy_page_to_iter_iovec() local
251 size_t skip, copy, left, wanted; copy_page_from_iter_iovec() local
433 size_t skip = i->iov_offset; iov_iter_fault_in_readable() local
[all...]
/kernel/linux/linux-6.6/kernel/bpf/
H A Dstackmap.c218 u32 skip = flags & BPF_F_SKIP_FIELD_MASK; in __bpf_get_stackid() local
224 if (trace->nr <= skip) in __bpf_get_stackid()
228 trace_nr = trace->nr - skip; in __bpf_get_stackid()
230 ips = trace->ip + skip; in __bpf_get_stackid()
287 u32 skip = flags & BPF_F_SKIP_FIELD_MASK; in BPF_CALL_3() local
296 max_depth += skip; in BPF_CALL_3()
367 u64 skip = flags & BPF_F_SKIP_FIELD_MASK; in BPF_CALL_3() local
369 skip += nr_kernel; in BPF_CALL_3()
370 if (skip > BPF_F_SKIP_FIELD_MASK) in BPF_CALL_3()
373 flags = (flags & ~BPF_F_SKIP_FIELD_MASK) | skip; in BPF_CALL_3()
395 u32 skip = flags & BPF_F_SKIP_FIELD_MASK; __bpf_get_stack() local
544 u64 skip = flags & BPF_F_SKIP_FIELD_MASK; BPF_CALL_4() local
[all...]
/third_party/toybox/toys/posix/
H A Drm.c35 if (dir && !(toys.optflags & (FLAG_r|FLAG_R))) goto skip; in do_rm()
42 if (or && errno == ENOENT) goto skip; in do_rm()
59 else goto skip; in do_rm()
62 if (try->symlink) goto skip; in do_rm()
74 skip: in do_rm()
/third_party/ltp/testcases/kernel/syscalls/madvise/
H A Dmadvise02.c66 int skip; member
95 tc->skip = 0; in tcases_filter()
101 * skip EINVAL test for MADV_MERGEABLE. */ in tcases_filter()
103 tc->skip = 1; in tcases_filter()
110 tc->skip = 1; in tcases_filter()
114 tc->skip = 1; in tcases_filter()
118 tc->skip = 1; in tcases_filter()
163 if (tc->skip == 1) { in advice_test()
/kernel/linux/linux-5.10/arch/hexagon/kernel/
H A Dstacktrace.c27 int skip = trace->skip; in save_stack_trace() local
36 if (skip) { in save_stack_trace()
37 skip--; in save_stack_trace()
/kernel/linux/linux-5.10/arch/nds32/kernel/
H A Dstacktrace.c18 int skip = trace->skip; in save_stack_trace_tsk() local
42 if (skip) { in save_stack_trace_tsk()
43 skip--; in save_stack_trace_tsk()
/kernel/linux/linux-6.6/arch/hexagon/kernel/
H A Dstacktrace.c27 int skip = trace->skip; in save_stack_trace() local
36 if (skip) { in save_stack_trace()
37 skip--; in save_stack_trace()
/kernel/linux/linux-5.10/fs/dlm/
H A Dmidcomms.c68 log_print("dlm msg too small: %u, will skip this message", in dlm_process_incoming_buffer()
70 goto skip; in dlm_process_incoming_buffer()
76 log_print("dlm rcom msg too small: %u, will skip this message", in dlm_process_incoming_buffer()
78 goto skip; in dlm_process_incoming_buffer()
83 log_print("unsupported h_cmd received: %u, will skip this message", in dlm_process_incoming_buffer()
85 goto skip; in dlm_process_incoming_buffer()
98 skip: in dlm_process_incoming_buffer()
/third_party/node/test/parallel/
H A Dtest-tls-connect-address-family.js4 common.skip('missing crypto');
7 common.skip('no IPv6 support');
40 common.skip('localhost does not resolve to ::1');
48 common.skip('localhost does not resolve to ::1');
/kernel/linux/linux-6.6/tools/testing/selftests/drivers/net/bonding/
H A Dbond_options.sh17 local skip=1
21 [[ $? -ne 0 ]] && skip=0
25 [[ $? -ne 0 ]] && skip=0
27 return $skip
32 local skip=1
36 [[ $? -ne 0 ]] && skip=0
40 [[ $? -ne 0 ]] && skip=0
44 return $skip
/third_party/astc-encoder/Test/
H A Dastc_test_result_report.py78 skip = [1 for filt in CONFIG_FILTER if filt.match(name)]
79 if skip:
89 skip = [1 for filt in TESTSET_FILTER if filt.match(imageSet)]
90 if skip:
94 skip = [1 for filt in QUALITY_FILTER if filt.match(quality)]
95 if skip:
104 skip = [1 for filt in BLOCKSIZE_FILTER if filt.match(result.blkSz)]
105 if not skip:
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/
H A DCompatibilityTest.java49 boolean skip; field in CompatibilityTest.FileHolder
65 this.skip = skipFile(this.icuVersion, this.className); in FileHolder()
69 for (int skip = 0; skip < SKIP_CASES.length; skip++) { in skipFile()
70 if (icuVersion.equals(SKIP_CASES[skip][0]) && className.equals(SKIP_CASES[skip][1])) { in skipFile()
86 if (holder.skip) { in testCompatibility()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
H A DCompatibilityTest.java46 boolean skip; field in CompatibilityTest.FileHolder
62 this.skip = skipFile(this.icuVersion, this.className); in FileHolder()
66 for (int skip = 0; skip < SKIP_CASES.length; skip++) { in skipFile()
67 if (icuVersion.equals(SKIP_CASES[skip][0]) && className.equals(SKIP_CASES[skip][1])) { in skipFile()
83 if (holder.skip) { in testCompatibility()
/third_party/mesa3d/src/freedreno/decode/
H A Dcffdump.c105 "\t it only for the first tile and skip the remainder,\n" in print_usage()
262 bool skip = false; in handle_file() local
326 skip = false; in handle_file()
328 skip |= (strstr(buf, exename) != buf); in handle_file()
330 skip |= (strstr(buf, "fdperf") == buf); in handle_file()
331 skip |= (strstr(buf, "chrome") == buf); in handle_file()
332 skip |= (strstr(buf, "surfaceflinger") == buf); in handle_file()
333 skip |= ((char *)buf)[0] == 'X'; in handle_file()
360 if (!skip) { in handle_file()
/kernel/linux/linux-6.6/kernel/kcsan/
H A Dreport.c168 * Special rules to skip reporting.
182 * 2. read watchpoint, conflicting write (value_change==MAYBE): skip; in skip_report()
184 * 4. write watchpoint, conflicting write (value_change==MAYBE): skip; in skip_report()
185 * 5. write watchpoint, conflicting read (value_change==MAYBE): skip; in skip_report()
276 /* Helper to skip KCSAN-related functions in stack-trace. */
281 int len, skip; in get_stack_skipnr() local
283 for (skip = 0; skip < num_entries; ++skip) { in get_stack_skipnr()
284 len = scnprintf(buf, sizeof(buf), "%ps", (void *)stack_entries[skip]); in get_stack_skipnr()
320 int skip; replace_stack_entry() local
[all...]
/foundation/resourceschedule/ffrt/test/ut/testcase/
H A Dut_execute_unit.cpp61 int cancel_ret = ffrt::skip(h2); in HWTEST_F()
73 int cancel_ret = ffrt::skip(h2); in HWTEST_F()
78 cancel_ret = ffrt::skip(h1); in HWTEST_F()
81 cancel_ret = ffrt::skip(h3); in HWTEST_F()

Completed in 32 milliseconds

12345678910>>...87