/linux/tools/perf/pmu-events/ |
H A D | metric_test.py | 44 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) 67 after = f'({before})' 68 self.assertEqual(ParsePerfJson(before).ToPerfJson(), after) [all …]
|
/linux/Documentation/hwmon/ |
H A D | isl68137.rst | 25 Publicly available (after August 2020 launch) at the Renesas website 35 Publicly available (after August 2020 launch) at the Renesas website 45 Publicly available (after August 2020 launch) at the Renesas website 55 Publicly available (after August 2020 launch) at the Renesas website 65 Publicly available (after August 2020 launch) at the Renesas website 75 Publicly available (after August 2020 launch) at the Renesas website 85 Publicly available (after August 2020 launch) at the Renesas website 95 Publicly available (after August 2020 launch) at the Renesas website 105 Publicly available (after August 2020 launch) at the Renesas website 115 Publicly available (after August 2020 launch) at the Renesas website [all …]
|
/linux/scripts/ |
H A D | config | 29 --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
|
/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | uprobe_syscall.c | 26 __naked void uretprobe_regs(struct pt_regs *before, struct pt_regs *after) in uretprobe_regs() argument 98 struct pt_regs before = {}, after = {}; in test_uretprobe_regs_equal() local 100 unsigned long *pa = (unsigned long *) &after; in test_uretprobe_regs_equal() 113 uretprobe_regs(&before, &after); in test_uretprobe_regs_equal() 180 struct pt_regs before = {}, after = {}; in test_uretprobe_regs_change() local 182 unsigned long *pa = (unsigned long *) &after; in test_uretprobe_regs_change() 192 uretprobe_regs(&before, &after); in test_uretprobe_regs_change()
|
H A D | uprobe_multi_test.c | 834 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/arch/powerpc/lib/ |
H A D | rheap.c | 155 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/testing/selftests/powerpc/pmu/ebb/ |
H A D | pmae_handling_test.c | 29 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/tools/perf/util/scripting-engines/ |
H A D | Build | 6 …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 D | thuge-gen.c | 117 unsigned long before, after; in test_mmap() local 126 after = read_free(size); in test_mmap() 129 ksft_test_result(size == getpagesize() || (before - after) == NUM_PAGES, in test_mmap() 139 unsigned long before, after; in test_shmget() local 164 after = read_free(size); in test_shmget() 167 ksft_test_result(size == getpagesize() || (before - after) == NUM_PAGES, in test_shmget()
|
/linux/sound/usb/ |
H A D | helper.c | 31 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/testing/selftests/damon/ |
H A D | debugfs_target_ids_pid_leak.sh |
|
/linux/Documentation/devicetree/bindings/ |
H A D | .yamllint | 24 colons: {max-spaces-before: 0, max-spaces-after: 1} 25 commas: {min-spaces-after: 1, max-spaces-after: 1} 39 max-spaces-after: 1
|
/linux/tools/perf/util/bpf_skel/ |
H A D | bpf_prog_profiler.bpf.c | 53 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 D | aperf.c | 29 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/perf/scripts/python/Perf-Trace-Util/ |
H A D | Build | 3 # -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/scripts/gcc-plugins/ |
H A D | stackleak_plugin.c | 54 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/testing/selftests/net/tcp_ao/lib/ |
H A D | sock.c | 408 struct tcp_ao_counters *after, in __test_tcp_ao_counters_cmp() argument 413 if (before->cnt > after->cnt) { \ in __test_tcp_ao_counters_cmp() 415 tst_name ?: "", before->cnt, after->cnt); \ in __test_tcp_ao_counters_cmp() 418 if ((before->cnt != after->cnt) != (expecting_inc)) { \ in __test_tcp_ao_counters_cmp() 421 before->cnt, after->cnt); \ in __test_tcp_ao_counters_cmp() 449 struct tcp_ao_counters *after, in test_tcp_ao_key_counters_cmp() argument 456 if (before->key_cnts[i].cnt > after->key_cnts[i].cnt) { \ in test_tcp_ao_key_counters_cmp() 459 after->key_cnts[i].cnt, \ in test_tcp_ao_key_counters_cmp() 464 if ((before->key_cnts[i].cnt != after->key_cnts[i].cnt) != (expecting_inc)) { \ in test_tcp_ao_key_counters_cmp() 468 after->key_cnts[i].cnt, \ in test_tcp_ao_key_counters_cmp() [all …]
|
/linux/sound/firewire/tascam/ |
H A D | amdtp-tascam.c | 139 __be32 after; in read_status_messages() local 143 after = buffer[s->data_block_quadlets - 1]; in read_status_messages() 157 if ((before ^ after) & mask) { in read_status_messages() 165 entry->after = after; in read_status_messages() 174 tscm->state[index] = after; in read_status_messages()
|
/linux/drivers/misc/lkdtm/ |
H A D | fortify.c | 75 int after[10]; in lkdtm_FORTIFY_MEM_OBJECT() local 84 memset(after, 0, sizeof(after)); in lkdtm_FORTIFY_MEM_OBJECT() 86 fortify_scratch_space = after[5]; in lkdtm_FORTIFY_MEM_OBJECT()
|
/linux/tools/bpf/bpftool/skeleton/ |
H A D | profiler.bpf.c | 77 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/scripts/kconfig/ |
H A D | qconf.h | 117 ConfigItem(ConfigList *parent, ConfigItem *after, struct menu *m) in ConfigItem() argument 118 : Parent(parent, after), nextItem(0), menu(m), goParent(false) in ConfigItem() 122 ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m) in ConfigItem() argument 123 : Parent(parent, after), nextItem(0), menu(m), goParent(false) in ConfigItem() 127 ConfigItem(ConfigList *parent, ConfigItem *after) in ConfigItem() argument 128 : Parent(parent, after), nextItem(0), menu(0), goParent(true) in ConfigItem()
|
/linux/Documentation/ABI/stable/ |
H A D | sysfs-transport-srp | 12 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/user_events/ |
H A D | ftrace_test.c | 310 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/drivers/gpu/drm/xe/ |
H A D | Kconfig.profile | 5 Configures the default max job timeout after which job will 11 Configures the default min job timeout after which job will 37 Configures the default max preempt timeout after which context 44 Configures the default min preempt timeout after which context
|
/linux/Documentation/driver-api/media/ |
H A D | dtv-frontend.rst | 107 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 …]
|