Home
last modified time | relevance | path

Searched refs:after (Results 1 – 25 of 1163) sorted by relevance

12345678910>>...47

/linux/tools/perf/pmu-events/
H A Dmetric_test.py44 after = before
45 self.assertEqual(ParsePerfJson(before).ToPerfJson(), after)
50 after = before
51 self.assertEqual(ParsePerfJson(before).ToPerfJson(), after)
56 after = before
57 self.assertEqual(ParsePerfJson(before).ToPerfJson(), after)
61 after = before
62 self.assertEqual(ParsePerfJson(before).ToPerfJson(), after)
65 after = before
66 self.assertEqual(ParsePerfJson(before).ToPerfJson(), after)
[all …]
/linux/tools/testing/selftests/kvm/arm64/
H A Dhost_sve.c49 unsigned long before, after; in do_sve_roundtrip() local
63 [after] "=r" (after) in do_sve_roundtrip()
68 if (before != after) { in do_sve_roundtrip()
70 before, after); in do_sve_roundtrip()
73 before, after); in do_sve_roundtrip()
/linux/scripts/
H A Dconfig29 --enable-after|-E beforeopt option
30 Enable option directly after other option
31 --disable-after|-D beforeopt option
32 Disable option directly after other option
33 --module-after|-M beforeopt option
34 Turn option into module directly after other option
86 local after="$2"
90 sed -e "s$SED_DELIM$before$SED_DELIM$after$SED_DELIM" "$infile" >"$tmpfile"
159 --*-after|-E|-D|-M)
215 --enable-after|
[all...]
/linux/tools/testing/selftests/arm64/pauth/
H A Dpac.c335 struct signatures after; in TEST() local
345 sign_specific(&after, ARBITRARY_VALUE); in TEST()
347 ASSERT_EQ(before.keyia, after.keyia) TH_LOG("keyia changed after context switching"); in TEST()
348 ASSERT_EQ(before.keyib, after.keyib) TH_LOG("keyib changed after context switching"); in TEST()
349 ASSERT_EQ(before.keyda, after.keyda) TH_LOG("keyda changed after context switching"); in TEST()
350 ASSERT_EQ(before.keydb, after.keydb) TH_LOG("keydb changed after context switching"); in TEST()
358 size_t after; in TEST() local
368 after = keyg_sign(ARBITRARY_VALUE); in TEST()
370 ASSERT_EQ(before, after) TH_LOG("keyg changed after context switching"); in TEST()
/linux/tools/testing/selftests/powerpc/pmu/ebb/
H A Dpmae_handling_test.c29 static uint64_t before, after; variable
49 after = mfspr(SPRN_MMCR0); in syscall_ebb_callee()
50 if (before != after) in syscall_ebb_callee()
88 printf("Saw MMCR0 before 0x%lx after 0x%lx\n", before, after); in test_body()
/linux/arch/powerpc/lib/
H A Drheap.c155 rh_block_t *after; in attach_free_block() local
169 after = NULL; in attach_free_block()
185 after = blk; in attach_free_block()
188 if (before != NULL && after != NULL) in attach_free_block()
196 if (after && e != after->start) in attach_free_block()
197 after = NULL; in attach_free_block()
200 if (before == NULL && after == NULL) { in attach_free_block()
214 if (before != NULL && after == NULL) { in attach_free_block()
220 if (before == NULL && after != NULL) { in attach_free_block()
221 after->start -= size; in attach_free_block()
[all …]
/linux/tools/perf/util/scripting-engines/
H A DBuild6 …ns -Wno-undef -Wno-switch-default -Wno-bad-function-cast -Wno-declaration-after-statement -Wno-swi…
8 # -Wno-declaration-after-statement: The python headers have mixed code with declarations (decls aft…
9 …arameter -Wno-shadow -Wno-deprecated-declarations -Wno-switch-enum -Wno-declaration-after-statement
/linux/tools/testing/selftests/mm/
H A Dthuge-gen.c97 unsigned long before, after; in test_mmap() local
106 after = read_free(size); in test_mmap()
109 ksft_test_result(size == getpagesize() || (before - after) == NUM_PAGES, in test_mmap()
119 unsigned long before, after; in test_shmget() local
144 after = read_free(size); in test_shmget()
147 ksft_test_result(size == getpagesize() || (before - after) == NUM_PAGES, in test_shmget()
/linux/sound/usb/
H A Dhelper.c31 void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype) in snd_usb_find_desc() argument
43 if (p[1] == dtype && (!after || (void *)p > after)) { in snd_usb_find_desc()
54 void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype) in snd_usb_find_csint_desc() argument
56 unsigned char *p = after; in snd_usb_find_csint_desc()
/linux/tools/perf/util/bpf_skel/
H A Dbpf_prog_profiler.bpf.c53 fexit_update_maps(struct bpf_perf_event_value *after) in fexit_update_maps() argument
63 diff.counter = after->counter - before->counter; in fexit_update_maps()
64 diff.enabled = after->enabled - before->enabled; in fexit_update_maps()
65 diff.running = after->running - before->running; in fexit_update_maps()
/linux/tools/testing/selftests/intel_pstate/
H A Daperf.c29 struct timespec before, after; in main() local
74 if (clock_gettime(CLOCK_MONOTONIC, &after) < 0) { in main()
87 finish = after.tv_sec*MSEC_PER_SEC + after.tv_nsec/NSEC_PER_MSEC; in main()
/linux/tools/testing/selftests/net/tcp_ao/lib/
H A Dsock.c483 struct tcp_counters *after) in test_cmp_counters() argument
487 if (before->cnt > after->cnt) \ in test_cmp_counters()
489 if (before->cnt != after->cnt) \ in test_cmp_counters()
496 if (before->ao.nr_keys != after->ao.nr_keys) in test_cmp_counters()
512 struct tcp_counters *after, in test_assert_counters_sk() argument
517 if (before->cnt > after->cnt) { \ in test_assert_counters_sk()
519 tst_name ?: "", before->cnt, after->cnt); \ in test_assert_counters_sk()
522 if ((before->cnt != after->cnt) != !!(expected & e_cnt)) { \ in test_assert_counters_sk()
525 before->cnt, after->cnt); \ in test_assert_counters_sk()
538 struct tcp_ao_counters *after, in test_assert_counters_key() argument
[all …]
/linux/tools/perf/scripts/python/Perf-Trace-Util/
H A DBuild3 # -Wno-declaration-after-statement: The python headers have mixed code with declarations (decls aft…
4 …s -Wno-strict-prototypes -Wno-unused-parameter -Wno-nested-externs -Wno-declaration-after-statement
/linux/tools/testing/selftests/kselftest_harness/
H A Dharness-selftest.expected6 # harness-selftest.c:23:standalone_pass:after
18 # harness-selftest.c:37:signal_pass:after
31 # harness-selftest.c:23:pass:after
32 # harness-selftest.c:66:pass:after
53 # harness-selftest.c:98:pass:after
/linux/scripts/gcc-plugins/
H A Dstackleak_plugin.c54 static void add_stack_tracking_gcall(gimple_stmt_iterator *gsi, bool after) in add_stack_tracking_gcall() argument
64 if (after) in add_stack_tracking_gcall()
113 static void add_stack_tracking_gasm(gimple_stmt_iterator *gsi, bool after) in add_stack_tracking_gasm() argument
134 add_stack_tracking_gcall(gsi, after); in add_stack_tracking_gasm()
143 if (after) in add_stack_tracking_gasm()
150 static void add_stack_tracking(gimple_stmt_iterator *gsi, bool after) in add_stack_tracking() argument
161 add_stack_tracking_gasm(gsi, after); in add_stack_tracking()
163 add_stack_tracking_gcall(gsi, after); in add_stack_tracking()
/linux/tools/bpf/bpftool/skeleton/
H A Dprofiler.bpf.c77 fexit_update_maps(u32 id, struct bpf_perf_event_value___local *after) in fexit_update_maps() argument
86 diff.counter = after->counter - before->counter; in fexit_update_maps()
87 diff.enabled = after->enabled - before->enabled; in fexit_update_maps()
88 diff.running = after->running - before->running; in fexit_update_maps()
/linux/drivers/misc/lkdtm/
H A Dfortify.c78 int after[10]; in lkdtm_FORTIFY_MEM_OBJECT() local
87 memset(after, 0, sizeof(after)); in lkdtm_FORTIFY_MEM_OBJECT()
89 fortify_scratch_space = after[5]; in lkdtm_FORTIFY_MEM_OBJECT()
/linux/scripts/kconfig/
H A Dqconf.h118 ConfigItem(ConfigList *parent, ConfigItem *after, struct menu *m) in ConfigItem() argument
119 : Parent(parent, after), nextItem(0), menu(m), goParent(false) in ConfigItem()
123 ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m) in ConfigItem() argument
124 : Parent(parent, after), nextItem(0), menu(m), goParent(false) in ConfigItem()
128 ConfigItem(ConfigList *parent, ConfigItem *after) in ConfigItem() argument
129 : Parent(parent, after), nextItem(0), menu(0), goParent(true) in ConfigItem()
/linux/Documentation/ABI/stable/
H A Dsysfs-transport-srp12 Description: Number of seconds the SCSI layer will wait after a transport
21 Description: Number of seconds the SCSI layer will wait after a transport
37 Description: Number of seconds the SCSI layer will wait after a reconnect
55 after the fast_io_fail_tmo timer has fired and before the
56 "dev_loss_tmo" timer has fired; "lost" after the
/linux/tools/testing/selftests/bpf/prog_tests/
H A Duprobe_multi_test.c834 unsigned long before, unsigned long after, in uprobe_consumer_test() argument
841 if (test_bit(idx, before) && !test_bit(idx, after)) in uprobe_consumer_test()
847 if (!test_bit(idx, before) && test_bit(idx, after)) { in uprobe_consumer_test()
865 unsigned long after, unsigned long offset) \
867 return uprobe_consumer_test(skel, before, after, offset); \
883 unsigned long before, unsigned long after, in consumer_test() argument
888 printf("consumer_test before %lu after %lu\n", before, after); in consumer_test()
898 err = test(skel, before, after, offset); in consumer_test()
923 uret_stays = before & after & 0b0110; in consumer_test()
924 uret_survives = ((before & 0b0110) && (after & 0b0110) && (before & 0b1001)); in consumer_test()
[all …]
/linux/tools/testing/selftests/user_events/
H A Dftrace_test.c310 int before = 0, after = 0; in TEST_F() local
355 after = trace_bytes(); in TEST_F()
356 ASSERT_GT(after, before); in TEST_F()
367 int before = 0, after = 0; in TEST_F() local
393 after = trace_bytes(); in TEST_F()
394 ASSERT_GT(after, before); in TEST_F()
439 int before = 0, after = 0; in TEST_F() local
475 after = trace_bytes(); in TEST_F()
476 ASSERT_GT(after, before); in TEST_F()
/linux/Documentation/driver-api/media/
H A Ddtv-frontend.rst107 in order to remove the tuner from the I2C bus after a channel is
115 removed in the future, after we have all existing drivers supporting
237 measurement usually comes from the tuner (e. g. after ``FE_HAS_CARRIER``,
241 as the frontend measures it indirectly from other parameters (e. g. after
244 Having it available after inner FEC is more common.
247 - Those counters measure the number of bits and bit errors after
249 (after Viterbi, LDPC or other inner code).
252 (e. g. after ``FE_HAS_SYNC`` or after ``FE_HAS_LOCK``,
263 after ``FE_HAS_VITERBI``, see :c:type:`fe_status`).
266 - Those counters measure the number of blocks and block errors after
[all …]
/linux/net/netfilter/
H A Dnf_conntrack_seqadj.c86 if (after(ntohl(sack->start_seq) - seq->offset_before, in nf_ct_sack_block_adjust()
94 if (after(ntohl(sack->end_seq) - seq->offset_before, in nf_ct_sack_block_adjust()
184 if (after(ntohl(tcph->seq), this_way->correction_pos)) in nf_ct_seq_adjust()
198 if (after(ntohl(tcph->ack_seq) - other_way->offset_before, in nf_ct_seq_adjust()
231 return after(seq, this_way->correction_pos) ? in nf_ct_seq_offset()
/linux/Documentation/arch/m68k/
H A Dbuddha-driver.rst146 value 0 (Default after reset)
147 497ns Select (7 clock cycles) , IOR/IOW after 172ns (2 clock cycles)
152 639ns Select (9 clock cycles), IOR/IOW after 243ns (3 clock cycles)
155 781ns Select (11 clock cycles), IOR/IOW after 314ns (4 clock cycles)
158 355ns Select (5 clock cycles), IOR/IOW after 101ns (1 clock cycle)
161 355ns Select (5 clock cycles), IOR/IOW after 172ns (2 clock cycles)
164 355ns Select (5 clock cycles), IOR/IOW after 243ns (3 clock cycles)
167 1065ns Select (15 clock cycles), IOR/IOW after 314ns (4 clock cycles)
170 355ns Select, (5 clock cycles), IOR/IOW after 101ns (1 clock cycle)
176 781ns select, IOR/IOW after 4 clock cycles (=314ns) active.
/linux/Documentation/power/
H A Dsuspend-and-interrupts.rst13 suspend after the "late" phase of suspending devices (that is, after all of the
17 The rationale for doing so is that after the "late" phase of device suspend
22 not prepared for interrupts triggering after their devices had been suspended.
52 for it will be executed as usual after suspend_device_irqs(), even if the
90 already suspended. However, after suspend_device_irqs() interrupt handlers are
101 interrupts right after the "noirq" phase of suspending devices.
122 interrupts (interrupt handlers are invoked after suspend_device_irqs()) are
124 handlers are not invoked after suspend_device_irqs()).

12345678910>>...47