Home
last modified time | relevance | path

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

12345678910>>...51

/kernel/linux/linux-5.10/Documentation/hwmon/
Disl68137.rst25 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 …]
/kernel/linux/linux-5.10/scripts/
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
/kernel/linux/linux-5.10/tools/testing/selftests/vm/
Dthuge-gen.c145 unsigned long before, after; in test_mmap() local
154 after = read_free(size); in test_mmap()
156 before, after, before - after, size); in test_mmap()
157 assert(size == getpagesize() || (before - after) == NUM_PAGES); in test_mmap()
166 unsigned long before, after; in test_shmget() local
185 after = read_free(size); in test_shmget()
188 before, after, before - after, size); in test_shmget()
189 assert(size == getpagesize() || (before - after) == NUM_PAGES); in test_shmget()
/kernel/linux/linux-5.10/sound/usb/
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()
Dhelper.h7 void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype);
8 void *snd_usb_find_csint_desc(void *descstart, int desclen, void *after, u8 dsubtype);
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/pmu/ebb/
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()
/kernel/linux/linux-5.10/tools/testing/selftests/media_tests/
Dregression_test.txt2 and unregister paths. There have a few problems that result in user-after
18 Regressions test for cdev user-after free error on /dev/mediaX when driver
22 and cdev user-after-free fixes. This opens media dev files and sits in
35 device file goes away after unbind, device file name changes. Start the
37 after unbind, /dev/media1 or /dev/media2 could get created. The idea is
43 Run dmesg looking for any user-after free errors or mutex lock errors.
/kernel/linux/linux-5.10/tools/testing/selftests/arm64/pauth/
Dpac.c332 struct signatures after; in TEST() local
342 sign_specific(&after, ARBITRARY_VALUE); in TEST()
344 ASSERT_EQ(before.keyia, after.keyia) TH_LOG("keyia changed after context switching"); in TEST()
345 ASSERT_EQ(before.keyib, after.keyib) TH_LOG("keyib changed after context switching"); in TEST()
346 ASSERT_EQ(before.keyda, after.keyda) TH_LOG("keyda changed after context switching"); in TEST()
347 ASSERT_EQ(before.keydb, after.keydb) TH_LOG("keydb changed after context switching"); in TEST()
355 size_t after; in TEST() local
365 after = keyg_sign(ARBITRARY_VALUE); in TEST()
367 ASSERT_EQ(before, after) TH_LOG("keyg changed after context switching"); in TEST()
/kernel/linux/linux-5.10/tools/testing/selftests/intel_pstate/
Daperf.c25 struct timeb before, after; in main() local
67 ftime(&after); in main()
77 finish = after.time*1000 + after.millitm; in main()
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/
D.yamllint19 colons: {max-spaces-before: 0, max-spaces-after: 1}
20 commas: {min-spaces-after: 1, max-spaces-after: 1}
34 max-spaces-after: 1
/kernel/linux/linux-5.10/arch/powerpc/lib/
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 …]
/kernel/liteos_a/testsuites/unittest/basic/mem/vm/smoke/
Dmmap_test_007.cpp41 unsigned long before, after; in Testcase() local
57 after = fixAddr + MAP_OFFSET; in Testcase()
58 next = mmap((void *)after, len, PROT_READ | PROT_WRITE, flags, -1, 0); in Testcase()
62 belong = mmap((void *)after, shinkLen, PROT_READ | PROT_WRITE, flags, -1, 0); in Testcase()
/kernel/linux/linux-5.10/tools/bpf/bpftool/skeleton/
Dprofiler.bpf.c71 fexit_update_maps(u32 id, struct bpf_perf_event_value *after) in fexit_update_maps() argument
80 diff.counter = after->counter - before->counter; in fexit_update_maps()
81 diff.enabled = after->enabled - before->enabled; in fexit_update_maps()
82 diff.running = after->running - before->running; in fexit_update_maps()
/kernel/linux/linux-5.10/scripts/gcc-plugins/
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()
115 static void add_stack_tracking_gasm(gimple_stmt_iterator *gsi, bool after) in add_stack_tracking_gasm() argument
136 add_stack_tracking_gcall(gsi, after); in add_stack_tracking_gasm()
145 if (after) in add_stack_tracking_gasm()
152 static void add_stack_tracking(gimple_stmt_iterator *gsi, bool after) in add_stack_tracking() argument
163 add_stack_tracking_gasm(gsi, after); in add_stack_tracking()
165 add_stack_tracking_gcall(gsi, after); in add_stack_tracking()
/kernel/linux/linux-5.10/sound/firewire/tascam/
Damdtp-tascam.c139 __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()
/kernel/linux/linux-5.10/scripts/kconfig/
Dqconf.h119 ConfigItem(ConfigList *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem() argument
120 : Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false) in ConfigItem()
124 ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem() argument
125 : Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false) in ConfigItem()
129 ConfigItem(ConfigList *parent, ConfigItem *after, bool v) in ConfigItem() argument
130 : Parent(parent, after), nextItem(0), menu(0), visible(v), goParent(true) in ConfigItem()
/kernel/linux/linux-5.10/Documentation/ABI/stable/
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
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/igc/
Digc_diag.c86 u32 value, before, after; in igc_reg_test() local
98 after = rd32(IGC_STATUS) & toggle; in igc_reg_test()
99 if (value != after) { in igc_reg_test()
102 after, value); in igc_reg_test()
/kernel/linux/linux-5.10/net/netfilter/
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()
/kernel/linux/linux-5.10/scripts/coccinelle/misc/
Difcol.cocci2 /// Find confusingly indented code in or after an if. An if branch should
4 /// Sometimes, code after an if that is indented is actually intended to be
40 cocci.print_secs("after",p2)
/kernel/linux/linux-5.10/Documentation/driver-api/media/
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 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 errors after
[all …]
/kernel/linux/linux-5.10/Documentation/m68k/
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) aktive.
/kernel/linux/linux-5.10/Documentation/power/
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()).
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/mtd/
Dfsl-upm-nand.txt17 - fsl,upm-wait-flags : add chip-dependent short delays after running the
18 UPM pattern (0x1), after writing a data byte (0x2) or after
/kernel/linux/linux-5.10/arch/ia64/
DKconfig.debug26 Faults, that is, for Read-after-Write (RAW), Write-after-Write (WAW),
27 or Write-after-Read (WAR) violations. This option is ignored if you

12345678910>>...51