Home
last modified time | relevance | path

Searched refs:ff (Results 1 – 25 of 99) sorted by relevance

1234

/linux/Documentation/w1/slaves/
H A Dw1_ds2423.rst44 …2 00 00 00 00 00 00 00 6d 38 00 ff ff 00 00 fe ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
45 …2 00 00 00 00 00 00 00 e0 1f 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
46 …9 c6 5d 18 00 00 00 00 04 37 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
47 …05 00 00 00 00 00 00 00 8d 39 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
51 …2 00 00 00 00 00 00 00 6d 38 00 ff ff 00 00 fe ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
52 …2 00 00 22 00 00 00 00 e0 1f 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
53 …1 61 5d 19 00 00 00 00 df 0b 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
54 …05 00 00 20 00 00 00 00 8d 39 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
/linux/drivers/input/
H A Dff-core.c23 static int check_effect_access(struct ff_device *ff, int effect_id, in check_effect_access() argument
26 if (effect_id < 0 || effect_id >= ff->max_effects || in check_effect_access()
27 !ff->effect_owners[effect_id]) in check_effect_access()
30 if (file && ff->effect_owners[effect_id] != file) in check_effect_access()
50 static int compat_effect(struct ff_device *ff, struct ff_effect *effect) in compat_effect() argument
56 if (!test_bit(FF_PERIODIC, ff->ffbit)) in compat_effect()
94 struct ff_device *ff = dev->ff; in input_ff_upload() local
116 if (!test_bit(effect->type, ff->ffbit)) { in input_ff_upload()
117 error = compat_effect(ff, effect); in input_ff_upload()
122 guard(mutex)(&ff->mutex); in input_ff_upload()
[all …]
H A Dff-memless.c196 static int get_compatible_type(struct ff_device *ff, int effect_type) in get_compatible_type() argument
199 if (test_bit(effect_type, ff->ffbit)) in get_compatible_type()
202 if (effect_type == FF_PERIODIC && test_bit(FF_RUMBLE, ff->ffbit)) in get_compatible_type()
353 effect_type = get_compatible_type(ml->dev->ff, effect->type); in ml_get_combo_effect()
417 struct ml_device *ml = dev->ff->private; in ml_ff_set_gain()
433 struct ml_device *ml = dev->ff->private; in ml_ff_playback()
464 struct ml_device *ml = dev->ff->private; in ml_ff_upload()
482 static void ml_ff_destroy(struct ff_device *ff) in ml_ff_destroy() argument
484 struct ml_device *ml = ff->private; in ml_ff_destroy()
507 struct ff_device *ff; in input_ff_create_memless() local
[all …]
/linux/sound/firewire/fireface/
H A Dff.c16 static void name_card(struct snd_ff *ff) in name_card() argument
18 struct fw_device *fw_dev = fw_parent_device(ff->unit); in name_card()
28 name = names[ff->unit_version]; in name_card()
30 strscpy(ff->card->driver, "Fireface"); in name_card()
31 strscpy(ff->card->shortname, name); in name_card()
32 strscpy(ff->card->mixername, name); in name_card()
33 snprintf(ff->card->longname, sizeof(ff->card->longname), in name_card()
36 dev_name(&ff->unit->device), 100 << fw_dev->max_speed); in name_card()
41 struct snd_ff *ff = card->private_data; in ff_card_free() local
43 snd_ff_stream_destroy_duplex(ff); in ff_card_free()
[all …]
H A Dff.h116 bool (*has_msg)(struct snd_ff *ff);
117 long (*copy_msg_to_user)(struct snd_ff *ff, char __user *buf, long count);
118 void (*handle_msg)(struct snd_ff *ff, unsigned int offset, const __le32 *buf,
120 int (*fill_midi_msg)(struct snd_ff *ff,
123 int (*get_clock)(struct snd_ff *ff, unsigned int *rate,
125 int (*switch_fetching_mode)(struct snd_ff *ff, bool enable);
126 int (*allocate_resources)(struct snd_ff *ff, unsigned int rate);
127 int (*begin_session)(struct snd_ff *ff, unsigned int rate);
128 void (*finish_session)(struct snd_ff *ff);
129 void (*dump_status)(struct snd_ff *ff, struct snd_info_buffer *buffer);
[all …]
H A Dff-protocol-latter.c141 static int latter_get_clock(struct snd_ff *ff, unsigned int *rate, in latter_get_clock() argument
148 err = snd_fw_transaction(ff->unit, TCODE_READ_QUADLET_REQUEST, in latter_get_clock()
154 return parse_clock_bits(data, rate, src, ff->unit_version); in latter_get_clock()
157 static int latter_switch_fetching_mode(struct snd_ff *ff, bool enable) in latter_switch_fetching_mode() argument
168 return snd_fw_transaction(ff->unit, TCODE_WRITE_QUADLET_REQUEST, in latter_switch_fetching_mode()
172 static int latter_allocate_resources(struct snd_ff *ff, unsigned int rate) in latter_allocate_resources() argument
197 err = snd_fw_transaction(ff->unit, TCODE_WRITE_QUADLET_REQUEST, in latter_allocate_resources()
208 err = latter_get_clock(ff, &curr_rate, &src); in latter_allocate_resources()
230 ff->tx_resources.channels_mask = 0x00000000000000ffuLL; in latter_allocate_resources()
231 err = fw_iso_resources_allocate(&ff->tx_resources, in latter_allocate_resources()
[all …]
H A DMakefile2 snd-fireface-y := ff.o ff-transaction.o ff-midi.o ff-proc.o amdtp-ff.o \
3 ff-stream.o ff-pcm.o ff-hwdep.o ff-protocol-former.o \
4 ff-protocol-latter.o
H A Dff-proc.c30 struct snd_ff *ff = entry->private_data; in proc_dump_status() local
32 ff->spec->protocol->dump_status(ff, buffer); in proc_dump_status()
35 static void add_node(struct snd_ff *ff, struct snd_info_entry *root, in add_node() argument
42 entry = snd_info_create_card_entry(ff->card, name, root); in add_node()
44 snd_info_set_text_ops(entry, ff, op); in add_node()
47 void snd_ff_proc_init(struct snd_ff *ff) in snd_ff_proc_init() argument
55 root = snd_info_create_card_entry(ff->card, "firewire", in snd_ff_proc_init()
56 ff->card->proc_root); in snd_ff_proc_init()
61 add_node(ff, root, "status", proc_dump_status); in snd_ff_proc_init()
/linux/fs/fuse/
H A Diomode.c30 int fuse_file_cached_io_open(struct inode *inode, struct fuse_file *ff) in fuse_file_cached_io_open() argument
35 if (!ff->args) in fuse_file_cached_io_open()
60 WARN_ON(ff->iomode == IOM_UNCACHED); in fuse_file_cached_io_open()
61 if (ff->iomode == IOM_NONE) { in fuse_file_cached_io_open()
62 ff->iomode = IOM_CACHED; in fuse_file_cached_io_open()
71 static void fuse_file_cached_io_release(struct fuse_file *ff, in fuse_file_cached_io_release() argument
76 WARN_ON(ff->iomode != IOM_CACHED); in fuse_file_cached_io_release()
77 ff->iomode = IOM_NONE; in fuse_file_cached_io_release()
117 struct fuse_file *ff, in fuse_file_uncached_io_open() argument
127 WARN_ON(ff->iomode != IOM_NONE); in fuse_file_uncached_io_open()
[all …]
H A Dioctl.c220 struct fuse_file *ff = file->private_data; in fuse_do_ioctl() local
221 struct fuse_mount *fm = ff->fm; in fuse_do_ioctl()
223 .fh = ff->fh, in fuse_do_ioctl()
318 ap.args.nodeid = ff->nodeid; in fuse_do_ioctl()
438 static int fuse_priv_ioctl(struct inode *inode, struct fuse_file *ff, in fuse_priv_ioctl() argument
441 struct fuse_mount *fm = ff->fm; in fuse_priv_ioctl()
448 inarg.fh = ff->fh; in fuse_priv_ioctl()
463 args.nodeid = ff->nodeid; in fuse_priv_ioctl()
500 static void fuse_priv_ioctl_cleanup(struct inode *inode, struct fuse_file *ff) in fuse_priv_ioctl_cleanup() argument
502 fuse_file_release(inode, ff, O_RDONLY, NULL, S_ISDIR(inode->i_mode)); in fuse_priv_ioctl_cleanup()
[all …]
/linux/tools/perf/util/
H A Dheader.c113 static int __do_write_fd(struct feat_fd *ff, const void *buf, size_t size) in __do_write_buf()
115 ssize_t ret = writen(ff->fd, buf, size); in __do_write_buf()
122 static int __do_write_buf(struct feat_fd *ff, const void *buf, size_t size) in __do_write_buf()
126 size_t new_size = ff->size; in __do_write_buf()
129 if (size + ff->offset > max_size) in __do_write_buf()
132 while (size > (new_size - ff->offset)) in __do_write_buf()
136 if (ff->size < new_size) { in __do_write_buf()
137 addr = realloc(ff->buf, new_size); in __do_write_buf()
140 ff->buf = addr;
141 ff argument
103 __do_write_fd(struct feat_fd * ff,const void * buf,size_t size) __do_write_fd() argument
112 __do_write_buf(struct feat_fd * ff,const void * buf,size_t size) __do_write_buf() argument
149 do_write_bitmap(struct feat_fd * ff,unsigned long * set,u64 size) do_write_bitmap() argument
168 write_padded(struct feat_fd * ff,const void * bf,size_t count,size_t count_aligned) write_padded() argument
184 do_write_string(struct feat_fd * ff,const char * str) do_write_string() argument
200 __do_read_fd(struct feat_fd * ff,void * addr,ssize_t size) __do_read_fd() argument
209 __do_read_buf(struct feat_fd * ff,void * addr,ssize_t size) __do_read_buf() argument
221 __do_read(struct feat_fd * ff,void * addr,ssize_t size) __do_read() argument
228 do_read_u32(struct feat_fd * ff,u32 * addr) do_read_u32() argument
241 do_read_u64(struct feat_fd * ff,u64 * addr) do_read_u64() argument
254 do_read_string(struct feat_fd * ff) do_read_string() argument
280 do_read_bitmap(struct feat_fd * ff,unsigned long ** pset,u64 * psize) do_read_bitmap() argument
310 write_tracing_data(struct feat_fd * ff,struct evlist * evlist) write_tracing_data() argument
320 write_build_id(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_build_id() argument
343 write_hostname(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_hostname() argument
356 write_osrelease(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_osrelease() argument
369 write_arch(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_arch() argument
382 write_e_machine(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_e_machine() argument
397 write_version(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_version() argument
403 __write_cpudesc(struct feat_fd * ff,const char * cpuinfo_proc) __write_cpudesc() argument
458 write_cpudesc(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_cpudesc() argument
494 write_nrcpus(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_nrcpus() argument
516 write_event_desc(struct feat_fd * ff,struct evlist * evlist) write_event_desc() argument
572 write_cmdline(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_cmdline() argument
602 write_cpu_topology(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_cpu_topology() argument
675 write_total_mem(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_total_mem() argument
704 write_numa_topology(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_numa_topology() argument
758 write_pmu_mappings(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_pmu_mappings() argument
801 write_group_desc(struct feat_fd * ff,struct evlist * evlist) write_group_desc() argument
903 write_cpuid(struct feat_fd * ff,struct evlist * evlist) write_cpuid() argument
922 write_auxtrace(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_auxtrace() argument
939 write_clockid(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_clockid() argument
946 write_clock_data(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_clock_data() argument
980 write_hybrid_topology(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_hybrid_topology() argument
1014 write_dir_format(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_dir_format() argument
1030 write_bpf_prog_info(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_bpf_prog_info() argument
1072 write_bpf_btf(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_bpf_btf() argument
1254 write_cache(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_cache() argument
1313 write_sample_time(struct feat_fd * ff,struct evlist * evlist) write_sample_time() argument
1541 __write_pmu_caps(struct feat_fd * ff,struct perf_pmu * pmu,bool write_pmu) __write_pmu_caps() argument
1570 write_cpu_pmu_caps(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_cpu_pmu_caps() argument
1586 write_pmu_caps(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_pmu_caps() argument
1729 write_cpu_domain_info(struct feat_fd * ff,struct evlist * evlist __maybe_unused) write_cpu_domain_info() argument
1788 print_hostname(struct feat_fd * ff,FILE * fp) print_hostname() argument
1793 print_osrelease(struct feat_fd * ff,FILE * fp) print_osrelease() argument
1798 print_arch(struct feat_fd * ff,FILE * fp) print_arch() argument
1803 print_e_machine(struct feat_fd * ff,FILE * fp) print_e_machine() argument
1809 print_cpudesc(struct feat_fd * ff,FILE * fp) print_cpudesc() argument
1814 print_nrcpus(struct feat_fd * ff,FILE * fp) print_nrcpus() argument
1820 print_version(struct feat_fd * ff,FILE * fp) print_version() argument
1825 print_cmdline(struct feat_fd * ff,FILE * fp) print_cmdline() argument
1854 print_cpu_topology(struct feat_fd * ff,FILE * fp) print_cpu_topology() argument
1911 print_clockid(struct feat_fd * ff,FILE * fp) print_clockid() argument
1917 print_clock_data(struct feat_fd * ff,FILE * fp) print_clock_data() argument
1960 print_hybrid_topology(struct feat_fd * ff,FILE * fp) print_hybrid_topology() argument
1972 print_dir_format(struct feat_fd * ff,FILE * fp) print_dir_format() argument
1984 print_bpf_prog_info(struct feat_fd * ff,FILE * fp) print_bpf_prog_info() argument
2011 print_bpf_btf(struct feat_fd * ff,FILE * fp) print_bpf_btf() argument
2086 read_event_desc(struct feat_fd * ff) read_event_desc() argument
2173 print_event_desc(struct feat_fd * ff,FILE * fp) print_event_desc() argument
2211 print_total_mem(struct feat_fd * ff,FILE * fp) print_total_mem() argument
2216 print_numa_topology(struct feat_fd * ff,FILE * fp) print_numa_topology() argument
2233 print_cpuid(struct feat_fd * ff,FILE * fp) print_cpuid() argument
2253 print_cache(struct feat_fd * ff,FILE * fp __maybe_unused) print_cache() argument
2264 print_compressed(struct feat_fd * ff,FILE * fp) print_compressed() argument
2290 print_cpu_pmu_caps(struct feat_fd * ff,FILE * fp) print_cpu_pmu_caps() argument
2296 print_pmu_caps(struct feat_fd * ff,FILE * fp) print_pmu_caps() argument
2316 print_pmu_mappings(struct feat_fd * ff,FILE * fp) print_pmu_mappings() argument
2353 print_group_desc(struct feat_fd * ff,FILE * fp) print_group_desc() argument
2375 print_sample_time(struct feat_fd * ff,FILE * fp) print_sample_time() argument
2410 print_mem_topology(struct feat_fd * ff,FILE * fp) print_mem_topology() argument
2427 print_cpu_domain_info(struct feat_fd * ff,FILE * fp) print_cpu_domain_info() argument
2636 process_e_machine(struct feat_fd * ff,void * data __maybe_unused) process_e_machine() argument
2648 process_tracing_data(struct feat_fd * ff,void * data) process_tracing_data() argument
2656 process_build_id(struct feat_fd * ff,void * data __maybe_unused) process_build_id() argument
2663 process_nrcpus(struct feat_fd * ff,void * data __maybe_unused) process_nrcpus() argument
2681 process_total_mem(struct feat_fd * ff,void * data __maybe_unused) process_total_mem() argument
2724 process_event_desc(struct feat_fd * ff,void * data __maybe_unused) process_event_desc() argument
2749 process_cmdline(struct feat_fd * ff,void * data __maybe_unused) process_cmdline() argument
2788 process_cpu_topology(struct feat_fd * ff,void * data __maybe_unused) process_cpu_topology() argument
2907 process_numa_topology(struct feat_fd * ff,void * data __maybe_unused) process_numa_topology() argument
2953 process_pmu_mappings(struct feat_fd * ff,void * data __maybe_unused) process_pmu_mappings() argument
3003 process_group_desc(struct feat_fd * ff,void * data __maybe_unused) process_group_desc() argument
3087 process_auxtrace(struct feat_fd * ff,void * data __maybe_unused) process_auxtrace() argument
3101 process_cache(struct feat_fd * ff,void * data __maybe_unused) process_cache() argument
3157 process_sample_time(struct feat_fd * ff,void * data __maybe_unused) process_sample_time() argument
3178 process_mem_topology(struct feat_fd * ff,void * data __maybe_unused) process_mem_topology() argument
3231 process_clockid(struct feat_fd * ff,void * data __maybe_unused) process_clockid() argument
3242 process_clock_data(struct feat_fd * ff,void * _data __maybe_unused) process_clock_data() argument
3277 process_hybrid_topology(struct feat_fd * ff,void * data __maybe_unused) process_hybrid_topology() argument
3318 process_dir_format(struct feat_fd * ff,void * _data __maybe_unused) process_dir_format() argument
3334 process_bpf_prog_info(struct feat_fd * ff,void * data __maybe_unused) process_bpf_prog_info() argument
3407 process_bpf_btf(struct feat_fd * ff,void * data __maybe_unused) process_bpf_btf() argument
3455 process_compressed(struct feat_fd * ff,void * data __maybe_unused) process_compressed() argument
3478 __process_pmu_caps(struct feat_fd * ff,int * nr_caps,char *** caps,unsigned int * max_branches,unsigned int * br_cntr_nr,unsigned int * br_cntr_width) __process_pmu_caps() argument
3541 process_cpu_pmu_caps(struct feat_fd * ff,void * data __maybe_unused) process_cpu_pmu_caps() argument
3556 process_pmu_caps(struct feat_fd * ff,void * data __maybe_unused) process_pmu_caps() argument
3612 process_cpu_domain_info(struct feat_fd * ff,void * data __maybe_unused) process_cpu_domain_info() argument
3778 struct feat_fd ff; perf_file_section__fprintf_info() local
3848 struct feat_fd *ff; global() member
3858 do_write_feat(struct feat_fd * ff,int type,struct perf_file_section ** p,struct evlist * evlist,struct feat_copier * fc) do_write_feat() argument
3911 struct feat_fd ff = { perf_header__adds_write() local
3955 struct feat_fd ff = { perf_header__write_pipe() local
3983 struct feat_fd ff = { perf_session__do_write_header() local
4666 struct feat_fd ff = { .fd = 0 }; perf_event__process_feature() local
[all...]
/linux/Documentation/networking/
H A Dvrf.rst189 link/ether 72:b3:ba:91:e2:24 brd ff:ff:ff:ff:ff:ff promiscuity 0
192 link/ether b6:6f:6e:f6:da:73 brd ff:ff:ff:ff:ff:ff promiscuity 0
195 link/ether 36:62:e8:7d:bb:8c brd ff:ff:ff:ff:ff:ff promiscuity 0
198 link/ether e6:28:b8:63:70:bb brd ff:ff:ff:ff:ff:ff promiscuity 0
238 link/ether 02:00:00:00:02:02 brd ff:ff:ff:ff:ff:ff
240 link/ether 02:00:00:00:02:03 brd ff:ff:ff:ff:ff:ff
242 link/ether 02:00:00:00:02:06 brd ff:ff:ff:ff:ff:ff
283 link/ether 02:00:00:00:02:02 brd ff:ff:ff:ff:ff:ff
288 inet6 fe80::ff:fe00:202/64 scope link
291 link/ether 02:00:00:00:02:03 brd ff:ff:ff:ff:ff:ff
[all …]
H A Dnet_failover.rst77 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff
83 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff
85 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff
/linux/arch/m68k/ifpsp060/
H A Dfplsp.sa74 dc.l $660861ff,$00007124,$60220c01,$00026608
75 dc.l $61ff0000,$6d226014,$0c010003,$660861ff
76 dc.l $00006f4c,$600661ff,$00002f8e,$4cee0303
83 dc.l $660861ff,$00002d3e,$60300c01,$00016608
84 dc.l $61ff0000,$70866022,$0c010002,$660861ff
93 dc.l $660861ff,$00002c9e,$60300c01,$00016608
94 dc.l $61ff0000,$6fe66022,$0c010002,$660861ff
103 dc.l $2c0e6030,$0c010001,$660861ff,$00006fc8
105 dc.l $0c010003,$660861ff,$00006d74,$600661ff
112 dc.l $ff631d41,$ff4e4a01,$660861ff,$00002b70
[all …]
/linux/Documentation/iio/
H A Dadxl313.rst215 000000d0 01 fc 31 00 c7 ff 03 fc 31 00 c7 ff 04 fc 33 00 |..1.....1.....3.|
216 000000e0 c8 ff 03 fc 32 00 c5 ff ff fc 32 00 c7 ff 0a fc |....2.....2.....|
217 000000f0 30 00 c8 ff 06 fc 33 00 c7 ff 01 fc 2f 00 c8 ff |0.....3...../...|
218 00000100 02 fc 32 00 c6 ff 04 fc 33 00 c8 ff 05 fc 33 00 |..2.....3.....3.|
219 00000110 ca ff 02 fc 31 00 c7 ff 02 fc 30 00 c9 ff 09 fc |....1.....0.....|
220 00000120 35 00 c9 ff 08 fc 35 00 c8 ff 02 fc 31 00 c5 ff |5.....5.....1...|
221 00000130 03 fc 32 00 c7 ff 04 fc 32 00 c7 ff 02 fc 31 00 |..2.....2.....1.|
222 00000140 c7 ff 08 fc 30 00 c7 ff 02 fc 32 00 c5 ff ff fc |....0.....2.....|
223 00000150 31 00 c5 ff 04 fc 31 00 c8 ff 03 fc 32 00 c8 ff |1.....1.....2...|
224 00000160 01 fc 31 00 c7 ff 05 fc 31 00 c3 ff 04 fc 31 00 |..1.....1.....1.|
[all …]
H A Dadis16475.rst362 00001680 01 1f 00 00 ff ff fe ef 00 00 47 bf 00 03 35 55 |..........G...5U|
363 00001690 01 1f 00 00 ff ff ff d9 00 00 46 f1 00 03 35 35 |..........F...55|
364 000016a0 01 1f 00 00 ff ff fe fc 00 00 46 cb 00 03 35 7b |..........F...5{|
365 000016b0 01 1f 00 00 ff ff fe 41 00 00 47 0d 00 03 35 8b |.......A..G...5.|
366 000016c0 01 1f 00 00 ff ff fe 37 00 00 46 b4 00 03 35 90 |.......7..F...5.|
367 000016d0 01 1d 00 00 ff ff fe 5a 00 00 45 d7 00 03 36 08 |.......Z..E...6.|
368 000016e0 01 1b 00 00 ff ff fe fb 00 00 45 e7 00 03 36 60 |..........E...6`|
369 000016f0 01 1a 00 00 ff ff ff 17 00 00 46 bc 00 03 36 de |..........F...6.|
370 00001700 01 1a 00 00 ff ff fe 59 00 00 46 d7 00 03 37 b8 |.......Y..F...7.|
371 00001710 01 1a 00 00 ff ff fe ae 00 00 46 95 00 03 37 ba |..........F...7.|
[all …]
/linux/tools/testing/selftests/net/forwarding/
H A Dvxlan_bridge_1d.sh714 in_ns ns1 $MZ w2 -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff -B $dst \
746 in_ns ns1 $MZ w2 -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff -B $dst \
776 in_ns ns1 $MZ w2 -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff -B $dst \
785 in_ns ns1 $MZ w2 -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff -B $dst \
H A Dvxlan_bridge_1q.sh720 in_ns ns1 $MZ w2 -Q $vid -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff \
755 in_ns ns1 $MZ w2 -Q $vid -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff \
787 in_ns ns1 $MZ w2 -Q $vid -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff \
797 in_ns ns1 $MZ w2 -Q $vid -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff \
/linux/drivers/hid/
H A Dhid-haptic.c237 struct ff_device *ff = dev->ff; in hid_haptic_upload_effect() local
238 struct hid_haptic_device *haptic = ff->private; in hid_haptic_upload_effect()
302 struct hid_haptic_device *haptic = dev->ff->private; in haptic_work_handler()
315 struct hid_haptic_device *haptic = dev->ff->private; in hid_haptic_playback()
337 struct hid_haptic_device *haptic = dev->ff->private; in hid_haptic_erase()
372 static void hid_haptic_destroy(struct ff_device *ff) in hid_haptic_destroy() argument
374 struct hid_haptic_device *haptic = ff->private; in hid_haptic_destroy()
385 for (r = 0; r < ff->max_effects; r++) in hid_haptic_destroy()
409 struct ff_device *ff; in hid_haptic_init() local
519 ff = dev->ff; in hid_haptic_init()
[all …]
/linux/drivers/clk/mediatek/
H A Dclk-mtk.c162 const struct mtk_fixed_factor *ff = &clks[i]; in mtk_clk_register_factors() local
164 if (!IS_ERR_OR_NULL(clk_data->hws[ff->id])) { in mtk_clk_register_factors()
165 pr_warn("Trying to register duplicate clock ID: %d\n", ff->id); in mtk_clk_register_factors()
169 hw = clk_hw_register_fixed_factor(NULL, ff->name, ff->parent_name, in mtk_clk_register_factors()
170 ff->flags, ff->mult, ff->div); in mtk_clk_register_factors()
173 pr_err("Failed to register clk %s: %pe\n", ff->name, in mtk_clk_register_factors()
178 clk_data->hws[ff->id] = hw; in mtk_clk_register_factors()
185 const struct mtk_fixed_factor *ff = &clks[i]; in mtk_clk_register_factors() local
187 if (IS_ERR_OR_NULL(clk_data->hws[ff->id])) in mtk_clk_register_factors()
190 clk_hw_unregister_fixed_factor(clk_data->hws[ff->id]); in mtk_clk_register_factors()
[all …]
/linux/drivers/clk/pistachio/
H A Dclk.c108 struct pistachio_fixed_factor *ff, in pistachio_clk_register_fixed_factor() argument
115 clk = clk_register_fixed_factor(NULL, ff[i].name, ff[i].parent, in pistachio_clk_register_fixed_factor()
116 0, 1, ff[i].div); in pistachio_clk_register_fixed_factor()
117 p->clk_data.clks[ff[i].id] = clk; in pistachio_clk_register_fixed_factor()
/linux/samples/bpf/
H A Dtest_cls_bpf.sh6 -m 90:e2:ba:ff:ff:ff -d 192.168.0.1 -t 4
/linux/drivers/video/fbdev/
H A Dpxa168fb.h408 #define DMA_FF_UNDERFLOW_ENA(ff) ((ff) << 29) argument
414 #define GRA_FF_UNDERFLOW_ENA(ff) ((ff) << 25) argument
441 #define DMA_FF_UNDERFLOW(ff) ((ff) << 29) argument
447 #define GRA_FF_UNDERFLOW(ff) ((ff) << 25) argument
/linux/drivers/video/fbdev/mmp/hw/
H A Dmmp_ctrl.h640 #define DMA_FF_UNDERFLOW_ENA(ff) ((ff)<<29) argument
648 #define GRA_FF_UNDERFLOW_ENA(ff) ((ff)<<25) argument
690 #define PN2_DMA_FF_UNDERFLOW_ENA(ff) ((ff)<<5) argument
696 #define PN2_GRA_FF_UNDERFLOW_ENA(ff) ((ff)<<1) argument
749 #define DMA_FF_UNDERFLOW(ff) ((ff)<<29) argument
757 #define GRA_FF_UNDERFLOW(ff) ((ff)<<25) argument
793 #define PN2_DMA_FF_UNDERFLOW(ff) ((ff)<<5) argument
799 #define PN2_GRA_FF_UNDERFLOW(ff) ((ff)<<1) argument
/linux/Documentation/trace/
H A Dtracepoint-analysis.rst321 12.40 : 34eee: 66 0f 7f 80 40 ff ff movdqa %xmm0,-0xc0(%eax)
322 0.00 : 34ef5: ff
323 12.40 : 34ef6: 66 0f 7f 80 50 ff ff movdqa %xmm0,-0xb0(%eax)
324 0.00 : 34efd: ff
325 12.39 : 34efe: 66 0f 7f 80 60 ff ff movdqa %xmm0,-0xa0(%eax)
326 0.00 : 34f05: ff
327 12.67 : 34f06: 66 0f 7f 80 70 ff ff movdqa %xmm0,-0x90(%eax)
328 0.00 : 34f0d: ff

1234