Searched refs:foo (Results 1 - 184 of 184) sorted by relevance

/linux-4.1.27/arch/ia64/scripts/
H A Dcheck-text-align.S1 .proc foo
3 foo: .save rp, r2 label
6 .endp foo
/linux-4.1.27/drivers/staging/lustre/lustre/include/
H A Dlu_ref.h35 * Suppose there is a reference counted data-structure struct foo. To track
36 * who acquired references to instance of struct foo, add lu_ref field to it:
39 * struct foo {
46 * foo::foo_reference has to be initialized by calling
48 * decrement foo::foo_refcount, let's say they are foo_get(struct foo *foo)
49 * and foo_put(struct foo *foo), respectively.
51 * Whenever foo_get() is called to acquire a reference on a foo, lu_ref_add()
52 * has to be called to insert into foo::foo_reference a record, describing
59 * // bar owns a reference to foo.
60 * bar->bar_foo = foo_get(foo);
61 * lu_ref_add(&foo->foo_reference, "bar", bar);
65 * // reference from bar to foo is released.
66 * lu_ref_del(&foo->foo_reference, "bar", bar);
70 * // current thread acquired a temporary reference to foo.
71 * foo_get(foo);
72 * lu_ref_add(&foo->reference, __func__, current);
77 * lu_ref_del(&foo->reference, __func__, current);
78 * foo_put(foo);
83 * foo is destroyed, lu_ref_fini() has to be called that checks that no
90 * in the same place where pointer to struct foo is stored), and use
94 * // There is a large number of bar's for a single foo.
95 * bar->bar_foo = foo_get(foo);
96 * bar->bar_foo_ref = lu_ref_add(&foo->foo_reference, "bar", bar);
100 * // reference from bar to foo is released.
101 * lu_ref_del_at(&foo->foo_reference, bar->bar_foo_ref, "bar", bar);
/linux-4.1.27/samples/kobject/
H A Dkset-example.c20 * Then tree kobjects are created and assigned to this kset, "foo", "baz",
33 int foo; member in struct:foo_obj
42 ssize_t (*show)(struct foo_obj *foo, struct foo_attribute *attr, char *buf);
43 ssize_t (*store)(struct foo_obj *foo, struct foo_attribute *attr, const char *buf, size_t count);
59 struct foo_obj *foo; foo_attr_show() local
62 foo = to_foo_obj(kobj); foo_attr_show()
67 return attribute->show(foo, attribute, buf); foo_attr_show()
79 struct foo_obj *foo; foo_attr_store() local
82 foo = to_foo_obj(kobj); foo_attr_store()
87 return attribute->store(foo, attribute, buf, len); foo_attr_store()
105 struct foo_obj *foo; foo_release() local
107 foo = to_foo_obj(kobj); foo_release()
108 kfree(foo); foo_release()
112 * The "foo" file where the .foo variable is read from and written to.
117 return sprintf(buf, "%d\n", foo_obj->foo); foo_show()
125 ret = kstrtoint(buf, 10, &foo_obj->foo); foo_store()
134 __ATTR(foo, 0664, foo_show, foo_store);
202 struct foo_obj *foo; create_foo_obj() local
206 foo = kzalloc(sizeof(*foo), GFP_KERNEL); create_foo_obj()
207 if (!foo) create_foo_obj()
214 foo->kobj.kset = example_kset; create_foo_obj()
222 retval = kobject_init_and_add(&foo->kobj, &foo_ktype, NULL, "%s", name); create_foo_obj()
224 kobject_put(&foo->kobj); create_foo_obj()
232 kobject_uevent(&foo->kobj, KOBJ_ADD); create_foo_obj()
234 return foo; create_foo_obj()
237 static void destroy_foo_obj(struct foo_obj *foo) destroy_foo_obj() argument
239 kobject_put(&foo->kobj); destroy_foo_obj()
255 foo_obj = create_foo_obj("foo"); example_init()
H A Dkobject-example.c19 * "foo", "baz", and "bar". If an integer is written to these files, it can be
23 static int foo; variable
28 * The "foo" file where a static variable is read from and written to.
33 return sprintf(buf, "%d\n", foo); foo_show()
41 ret = kstrtoint(buf, 10, &foo); foo_store()
50 __ATTR(foo, 0664, foo_show, foo_store);
/linux-4.1.27/arch/m32r/kernel/
H A Dasm-offsets.c4 int foo(void) foo() function
/linux-4.1.27/samples/trace_events/
H A Dtrace-events-sample.h69 * Here it is trace_foo_bar(char *foo, int bar).
72 * Here it is simply "foo, bar".
84 * __field(int, foo)
86 * __entry->foo = 5;
93 * __field_struct(struct bar, foo)
101 * __array( char, foo, 10) is the same as saying: char foo[10];
105 * __entry->foo[0] = 'a';
107 * memcpy(__entry->foo, bar, 10);
118 * __dynamic_array( int, foo, bar) is similar to: int foo[bar];
123 * memcpy(__get_dynamic_array(foo), bar, 10);
134 * __string(foo, bar) is similar to: strcpy(foo, bar)
138 * __assign_str(foo, bar);
169 * For __dynamic_array(int, foo, bar) use __get_dynamic_array(foo)
170 * Use __get_dynamic_array_len(foo) to get the length of the array
176 * For __string(foo, bar) use __get_str(foo)
230 TP_PROTO(const char *foo, int bar, const int *lst,
233 TP_ARGS(foo, bar, lst, string, mask),
236 __array( char, foo, 10 )
244 strlcpy(__entry->foo, foo, 10);
252 TP_printk("foo %s %d %s %s %s %s (%s)", __entry->foo, __entry->bar,
338 TP_PROTO(const char *foo, int bar),
340 TP_ARGS(foo, bar),
345 __string( foo, foo )
350 __assign_str(foo, foo);
354 TP_printk("foo %s %d", __get_str(foo), __entry->bar)
381 TP_PROTO(const char *foo, int bar),
383 TP_ARGS(foo, bar),
386 __string( foo, foo )
391 __assign_str(foo, foo);
395 TP_printk("foo %s %d", __get_str(foo), __entry->bar),
428 TP_PROTO(const char *foo, int bar),
430 TP_ARGS(foo, bar),
433 __string( foo, foo )
438 __assign_str(foo, foo);
442 TP_printk("foo %s %d", __get_str(foo), __entry->bar)
450 TP_PROTO(const char *foo, int bar),
451 TP_ARGS(foo, bar));
454 TP_PROTO(const char *foo, int bar),
455 TP_ARGS(foo, bar),
460 TP_PROTO(const char *foo, int bar),
461 TP_ARGS(foo, bar),
477 TP_PROTO(const char *foo, int bar),
478 TP_ARGS(foo, bar),
479 TP_printk("bar %s %d", __get_str(foo), __entry->bar));
/linux-4.1.27/drivers/gpu/drm/nouveau/include/nvif/
H A Dlist.h36 * We need to keep a list of struct foo in the parent struct bar, i.e. what
41 * struct foo *list_of_foos; -----> struct foo {}, struct foo {}, struct foo{}
54 * struct foo {
68 * struct foo *foo = malloc(...);
70 * list_add(&foo->entry, &bar.list_of_foos);
74 * list_del(&foo->entry);
75 * free(foo);
80 * Looping through the list requires a 'struct foo' as iterator and the
83 * struct foo *iterator;
92 * struct foo *iterator, *next;
152 * struct foo *newfoo = malloc(...);
173 * struct foo *newfoo = malloc(...);
202 * list_del(&foo->entry);
244 * struct foo* f;
245 * f = container_of(&foo->entry, struct foo, entry);
246 * assert(f == foo);
268 * struct foo *first;
269 * first = list_first_entry(&bar->list_of_foos, struct foo, list_of_foos);
283 * struct foo *first;
284 * first = list_last_entry(&bar->list_of_foos, struct foo, list_of_foos);
301 * struct foo *iterator;
/linux-4.1.27/arch/x86/um/shared/sysdep/
H A Dkernel-offsets.h15 void foo(void) foo() function
/linux-4.1.27/drivers/block/
H A Drbd_types.h18 /* For format version 2, rbd image 'foo' consists of objects
19 * rbd_id.foo - id of image
32 * For format version 1, rbd image 'foo' consists of objects
33 * foo.rbd - image metadata
/linux-4.1.27/include/linux/
H A Dnvram.h6 /* __foo is foo without grabbing the rtc_lock - get it yourself */
H A Drcupdate.h735 * bar = rcu_dereference_check(foo->bar, lockdep_is_held(&foo->lock));
737 * could be used to indicate to lockdep that foo->bar may only be dereferenced
739 * the bar struct at foo->bar is held.
745 * bar = rcu_dereference_check(foo->bar, lockdep_is_held(&foo->lock) ||
746 * atomic_read(&foo->usage) == 0);
H A Dmoduleparam.h42 * NOARG - the parameter allows for no argument (foo instead of foo=1)
107 * the user can use "foo-bar=1" even for variable "foo_bar".
H A Dseqlock.h22 * seq = read_seqbegin(&foo);
24 * } while (read_seqretry(&foo, seq));
H A Drculist.h263 * struct foo *bar = list_first_entry_rcu(mylist, struct foo, list_member);
H A Dcompiler.h264 * int __deprecated foo(void)
H A Dmodule.h92 * Example: MODULE_SOFTDEP("pre: module-foo module-bar post: module-baz")
H A Dkernel.h390 /* Obsolete, do not use. Use kstrto<foo> instead */
H A Ddevice.h66 * @dev_name: Used for subsystems to enumerate devices like ("foo%u", dev->id).
H A Dnetdevice.h1936 /* Used in ipv6_gro_receive() and foo-over-udp */
1956 /* Used in foo-over-udp, set in udp[46]_gro_receive */
/linux-4.1.27/arch/ia64/kernel/
H A Dnr-irqs.c14 void foo(void) foo() function
H A Dasm-offsets.c22 void foo(void) foo() function
/linux-4.1.27/include/linux/mfd/
H A Dcore.h85 * driver wants the cell "foo" to be used by a GPIO driver, an MTD driver,
89 * const char *fclones[] = { "foo-gpio", "foo-mtd" };
90 * err = mfd_clone_cells("foo", fclones, ARRAY_SIZE(fclones));
93 * platform_drivers for "foo-mtd", "foo-gpio", and "foo", respectively.
/linux-4.1.27/kernel/
H A Dbounds.c15 void foo(void) foo() function
H A Dtaskstats.c178 * per-task-foo(stats, tsk); fill_stats()
238 * per-task-foo(stats, tsk); fill_stats_for_tgid()
271 * per-task-foo(tsk->signal->stats, tsk); fill_tgid_exit()
H A Dacct.c72 #define RESUME (acct_parm[0]) /* >foo% free space - resume */
73 #define SUSPEND (acct_parm[1]) /* <foo% free space - suspend */
74 #define ACCT_TIMEOUT (acct_parm[2]) /* foo second timeout between checks */
H A Dparams.c190 /* Args looks like "foo=bar,bar2 baz=fuz wiz". */ parse_args()
H A Dmodule.c1286 * /sys/module/foo/sections stuff
1393 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
/linux-4.1.27/arch/avr32/kernel/
H A Dasm-offsets.c12 void foo(void) foo() function
/linux-4.1.27/arch/x86/um/
H A Dbugs_32.c35 unsigned long foo = 0; arch_check_bugs() local
36 __asm__ __volatile__("cmovz %0, %1" : "=r" (foo) : "0" (foo)); arch_check_bugs()
H A Duser-offsets.c31 void foo(void) foo() function
H A Dsignal.c95 env[5] = fxsave->foo; convert_fxsr_to_user()
132 fxsave->foo = env[5]; convert_fxsr_from_user()
/linux-4.1.27/tools/testing/selftests/efivarfs/
H A Defivarfs.sh167 foo
168 foo-bar
169 -foo-
170 foo-barbazba-foob-foob-foob-foobarbazfoo
171 foo-------------------------------------
/linux-4.1.27/fs/gfs2/
H A Dmain.c37 static void gfs2_init_inode_once(void *foo) gfs2_init_inode_once() argument
39 struct gfs2_inode *ip = foo; gfs2_init_inode_once()
48 static void gfs2_init_glock_once(void *foo) gfs2_init_glock_once() argument
50 struct gfs2_glock *gl = foo; gfs2_init_glock_once()
61 static void gfs2_init_gl_aspace_once(void *foo) gfs2_init_gl_aspace_once() argument
63 struct gfs2_glock *gl = foo; gfs2_init_gl_aspace_once()
/linux-4.1.27/sound/oss/
H A Dpas2_pcm.c49 int foo, tmp; pcm_set_speed() local
62 foo = ((PIT_TICK_RATE / 2) + (arg / 2)) / arg; pcm_set_speed()
63 arg = ((PIT_TICK_RATE / 2) + (foo / 2)) / foo; pcm_set_speed()
67 foo = (PIT_TICK_RATE + (arg / 2)) / arg; pcm_set_speed()
68 arg = (PIT_TICK_RATE + (foo / 2)) / foo; pcm_set_speed()
108 pas_write(foo & 0xff, 0x1388); pcm_set_speed()
109 pas_write((foo >> 8) & 0xff, 0x1388); pcm_set_speed()
H A Dpas2_mixer.c202 int foo; pas_mixer_reset() local
204 for (foo = 0; foo < SOUND_MIXER_NRDEVICES; foo++) pas_mixer_reset()
205 pas_mixer_set(foo, levels[foo]); pas_mixer_reset()
H A Dpas2_card.c284 unsigned char board_id, foo; detect_pas_hw() local
309 foo = board_id ^ 0xe0; detect_pas_hw()
311 pas_write(foo, 0x0B8B); detect_pas_hw()
312 foo = pas_read(0x0B8B); detect_pas_hw()
315 if (board_id != foo) detect_pas_hw()
/linux-4.1.27/tools/testing/selftests/net/
H A Dsocket.c15 * -foo = error foo
/linux-4.1.27/net/netfilter/ipset/
H A Dip_set_hash_mac.c38 __be32 foo[2]; member in union:hash_mac4_elem::__anon14161
80 struct hash_mac4_elem e = { { .foo[0] = 0, .foo[1] = 0 } }; hash_mac4_kadt()
102 struct hash_mac4_elem e = { { .foo[0] = 0, .foo[1] = 0 } }; hash_mac4_uadt()
/linux-4.1.27/drivers/net/wireless/ath/
H A Dath.h297 #define ATH_DBG_WARN(foo, arg...) WARN(foo, arg)
298 #define ATH_DBG_WARN_ON_ONCE(foo) WARN_ON_ONCE(foo)
310 #define ATH_DBG_WARN(foo, arg...) do {} while (0)
311 #define ATH_DBG_WARN_ON_ONCE(foo) ({ \
312 int __ret_warn_once = !!(foo); \
/linux-4.1.27/arch/sparc/kernel/
H A Dasm-offsets.c46 int foo(void) foo() function
H A Dprom_32.c50 * string, like this "foo@addr". The "addr" can be in any number of
H A Dprom_64.c58 * string, like this "foo@addr". The "addr" can be in any number of
/linux-4.1.27/arch/powerpc/xmon/
H A Dansidecl.h64 static int foo PARAMS ((int, char));
66 This produces: `static int foo();' or `static int foo (int, char);'
70 static int EXFUN (foo, (int, char));
/linux-4.1.27/arch/alpha/kernel/
H A Dasm-offsets.c14 void foo(void) foo() function
/linux-4.1.27/drivers/scsi/
H A Dt128.c333 void __iomem *foo = base + T_CONTROL_REG_OFFSET; local
334 tmp = readb(foo);
335 writeb(tmp | T_CR_CT, foo);
336 writeb(tmp, foo);
379 void __iomem *foo = base + T_CONTROL_REG_OFFSET; local
380 tmp = readb(foo);
381 writeb(tmp | T_CR_CT, foo);
382 writeb(tmp, foo);
H A DNCR5380.c1727 int foo; NCR5380_transfer_dma() local
1890 foo = NCR5380_pread(instance, d, c); NCR5380_transfer_dma()
1896 if (!(foo = NCR5380_pread(instance, d, c - diff))) { NCR5380_transfer_dma()
1929 foo = NCR5380_pwrite(instance, d, c); NCR5380_transfer_dma()
1933 if (!(foo = NCR5380_pwrite(instance, d, c))) { NCR5380_transfer_dma()
1978 return foo; NCR5380_transfer_dma()
H A Dscsi_lib.c1814 blk_dump_rq_flags(req, "foo");
H A Dqla1280.c403 #define ia64_platform_is(foo) (!strcmp(x, platform_name))
/linux-4.1.27/arch/x86/include/asm/
H A Duser32.h13 u32 foo; member in struct:user_i387_ia32_struct
26 int foo; member in struct:user32_fxsr_struct
H A Duser_32.h50 long foo; member in struct:user_i387_struct
62 long foo; member in struct:user_fxsr_struct
H A Dprocessor.h324 u32 foo; /* FPU Operand Pointer Offset */ member in struct:i387_fsave_struct
347 u32 foo; /* FPU Operand Offset */ member in struct:i387_fxsave_struct::__anon3076::__anon3078
375 u32 foo; member in struct:i387_soft_struct
/linux-4.1.27/arch/x86/kernel/
H A Dasm-offsets_32.c16 void foo(void);
18 void foo(void) foo() function
H A Di387.c500 env->foo = fxsave->rdp; convert_from_fxsr()
515 env->foo = fxsave->foo; convert_from_fxsr()
538 fxsave->rdp = env->foo; convert_to_fxsr()
543 fxsave->foo = env->foo; convert_to_fxsr()
H A Dentry_64.S193 * When user can change pt_regs->foo always force IRET. That is because
348 /* Use IRET because user could have changed pt_regs->foo */
/linux-4.1.27/tools/perf/tests/
H A Dmmap-basic.c99 int foo = syscalls[i](); test__basic_mmap() local
100 ++foo; test__basic_mmap()
/linux-4.1.27/arch/tile/include/asm/
H A Dlinkage.h24 * self-named .text.foo section, and if linker feedback collection
/linux-4.1.27/arch/mips/sgi-ip32/
H A Dip32-setup.c46 return 0; /* foo */ str2hexnum()
/linux-4.1.27/scripts/
H A Dcheckpatch.pl2610 # check for space after cast like "(int) foo" or "(struct foo) bar"
2613 # function pointer declarations like "(*foo)(int) = bar;"
2614 # structure definitions like "(struct foo) { 0 };"
2691 # foo bar; where foo is some local typedef or #define
2705 # foo bar; where foo is some local typedef or #define
2744 # (but not if it is a multiple line "if (foo) return bar; else return baz;")
2791 # check for old HOTPLUG __dev<foo> section markings
2848 # any (foo ... *) is a pointer cast, and foo is a type
2854 # int foo(something bar, other baz);
3136 # XXX(foo);
3168 "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
3204 # check for static char foo[] = "bar" declarations.
3211 # check for const <foo> const where <foo> is not a pointer or array type
3223 # check for non-global char *foo[] = {"bar", ...} declarations.
3230 # check for sizeof(foo)/sizeof(foo[0]) that could be ARRAY_SIZE(foo)
3243 # check for function declarations without arguments like "int foo()"
3290 "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr) &&
3317 "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr) &&
3483 # int foo(int bar, ...)
3839 # Ignore email addresses <foo@bar>
3990 # ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar
4002 # ie: (foo->bar)(); should be foo->bar();
4003 # but not "if (foo->bar) (" to avoid some false positives
4055 # if statements using unnecessary parentheses - ie: if ((foo == bar))
4250 #Ignore Page<foo> variants
4284 # warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes
4285 # itself <asm/foo.h> (uses RAW line)
4359 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
4360 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
4361 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
4364 $dstat !~ /^\.$Ident\s*=/ && # .foo =
4365 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo
4704 # check for needless "if (<foo>) fn(<foo>)" uses
4744 $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so
4820 # don't use __constant_<foo> functions outside of include/uapi/
5028 # Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
5095 # check for simple sscanf that should be kstrto<foo>
5173 # p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...)
5410 # likely/unlikely comparisons similar to "(likely(foo) > 0)"
H A Dkernel-doc18 # Functions prototyped as foo(void) same as foo()
/linux-4.1.27/drivers/staging/wlan-ng/
H A Dp80211conv.c115 int foo; skb_ether_to_p80211() local
210 foo = wep_encrypt(wlandev, skb->data, p80211_wep->data, skb_ether_to_p80211()
214 if (foo) { skb_ether_to_p80211()
217 foo); skb_ether_to_p80211()
289 int foo; skb_p80211_to_ether() local
328 foo = wep_decrypt(wlandev, skb->data + payload_offset + 4, skb_p80211_to_ether()
333 if (foo) { skb_p80211_to_ether()
336 foo); skb_p80211_to_ether()
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
H A Domapdss-boot-init.c21 * encoder nodes from "panel-foo" to "omapdss,panel-foo". This way we can have
/linux-4.1.27/include/uapi/linux/
H A Diso_fs.h105 char foo [ISODCL ( 1, 8)]; /* 733 */ member in struct:hs_volume_descriptor
114 char foo [ISODCL ( 1, 8)]; /* 733 */ member in struct:hs_primary_descriptor
/linux-4.1.27/security/integrity/
H A Diint.c150 static void init_once(void *foo) init_once() argument
152 struct integrity_iint_cache *iint = foo; init_once()
/linux-4.1.27/include/asm-generic/
H A Dbug.h179 * struct foo {
186 * void func(struct foo *zoot)
/linux-4.1.27/arch/tile/kernel/
H A Dasm-offsets.c38 void foo(void) foo() function
/linux-4.1.27/fs/proc/
H A Dinode.c87 static void init_once(void *foo) init_once() argument
89 struct proc_inode *ei = (struct proc_inode *) foo; init_once()
321 * deadlockable: rmmod foo </proc/foo . So, we're going to do ->release proc_reg_open()
H A Dproc_tty.c141 * registering the driver's /proc handler into /proc/tty/driver/<foo>
/linux-4.1.27/tools/testing/selftests/timers/
H A Dmqueue-lat.c77 q = mq_open("/foo", O_CREAT | O_RDONLY, 0666, NULL); mqueue_lat_test()
/linux-4.1.27/net/rds/
H A Drdma_transport.c41 #define RDS_CM_EVENT_STRING(foo) \
42 [RDMA_CM_EVENT_##foo] = __stringify(RDMA_CM_EVENT_##foo)
H A Dib_cm.c43 #define RDS_IB_EVENT_STRING(foo) \
44 [IB_EVENT_##foo] = __stringify(IB_EVENT_##foo)
H A Dib_send.c43 #define RDS_IB_WC_STATUS_STR(foo) \
44 [IB_WC_##foo] = __stringify(IB_WC_##foo)
/linux-4.1.27/fs/fat/
H A Dnamei_msdos.c279 /* Have to do it due to foo vs. .foo conflicts */ msdos_create()
360 /* foo vs .foo situation */ msdos_mkdir()
465 /* "foo" -> ".foo" case. just change the ATTR_HIDDEN */ do_msdos_rename()
H A Dcache.c38 static void init_once(void *foo) init_once() argument
40 struct fat_cache *cache = (struct fat_cache *)foo; init_once()
H A Dinode.c661 static void init_once(void *foo) init_once() argument
663 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo; init_once()
/linux-4.1.27/drivers/mtd/nand/
H A Dcs553x_nand.c157 unsigned char foo = readb(mmio_base + MM_NAND_STS); cs553x_device_ready() local
159 return (foo & CS_NAND_STS_FLASH_RDY) && !(foo & CS_NAND_CTLR_BUSY); cs553x_device_ready()
/linux-4.1.27/arch/x86/math-emu/
H A Dfpu_aux.c43 oaddr = (struct address *)&soft->foo; finit_soft_fpu()
H A Dfpu_system.h78 #define operand_address (*(struct address *)&I387->soft.foo)
/linux-4.1.27/arch/mips/alchemy/common/
H A Dprom.c89 return 0; /* foo */ str2hexnum()
/linux-4.1.27/arch/mn10300/kernel/
H A Dasm-offsets.c18 void foo(void) foo() function
/linux-4.1.27/arch/c6x/kernel/
H A Dasm-offsets.c13 void foo(void) foo() function
/linux-4.1.27/arch/frv/kernel/
H A Dasm-offsets.c33 void foo(void) foo() function
/linux-4.1.27/fs/f2fs/
H A Dxattr.h91 * | .e_name = "foo" |
H A Dsuper.c251 static void init_once(void *foo) init_once() argument
253 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo; init_once()
/linux-4.1.27/fs/jffs2/
H A Dsuper.c58 static void jffs2_i_init_once(void *foo) jffs2_i_init_once() argument
60 struct jffs2_inode_info *f = foo; jffs2_i_init_once()
/linux-4.1.27/include/net/sctp/
H A Dcommand.h151 * __s32. So, after foo = SCTP_I32(arg), foo.i32 == arg.
H A Dconstants.h124 * sctp_subtype_t foo = SCTP_ST_CHUNK(SCTP_CID_INIT);
/linux-4.1.27/arch/ia64/hp/sim/
H A Dsimscsi.c81 * to use /foo/bar/disk[a-z] as disk images
82 * you have to specify simscsi=/foo/bar/disk on the command line
/linux-4.1.27/fs/coda/
H A Dinode.c67 static void init_once(void *foo) init_once() argument
69 struct coda_inode_info *ei = (struct coda_inode_info *) foo; init_once()
/linux-4.1.27/fs/efs/
H A Dsuper.c87 static void init_once(void *foo) init_once() argument
89 struct efs_inode_info *ei = (struct efs_inode_info *) foo; init_once()
/linux-4.1.27/scripts/kconfig/
H A Dexpr.h123 * prompt "foo prompt"
131 P_PROMPT, /* prompt "foo prompt" or "BAZ Value" */
/linux-4.1.27/include/linux/byteorder/
H A Dgeneric.h13 * gathered all the good ideas from all asm-foo/byteorder.h into one file,
80 * See asm-foo/byteorder.h for examples of how to provide
/linux-4.1.27/scripts/mod/
H A Dmodpost.c221 /* For our purposes, .foo matches foo. PPC64 needs this. */ find_symbol()
776 * "foo" will match an exact string equal to "foo"
777 * "*foo" will match a string that ends with "foo"
778 * "foo*" will match a string that begins with "foo"
779 * "*foo*" will match a string that contains "foo"
788 /* "*foo*" */ match()
797 /* "*foo" */ match()
802 /* "foo*" */ match()
/linux-4.1.27/drivers/nubus/
H A Dnubus.c149 static inline long nubus_expand32(long foo) nubus_expand32() argument
151 if(foo & 0x00800000) /* 24bit negative */ nubus_expand32()
152 foo |= 0xFF000000; nubus_expand32()
153 return foo; nubus_expand32()
825 unsigned short foo, bar; nubus_add_board() local
826 foo = nubus_get_rom(&rp, 2, bytelanes); nubus_add_board()
828 printk("%04x %04x ", foo, bar); nubus_add_board()
/linux-4.1.27/tools/firewire/
H A Ddecode-fcp.c74 { "foo", 0, 8 },
/linux-4.1.27/drivers/usb/mon/
H A Dmon_main.c188 * Add a USB bus (usually by a modprobe foo-hcd)
203 * Remove a USB bus (either from rmmod foo-hcd or from a hot-remove event).
/linux-4.1.27/fs/qnx4/
H A Dinode.c355 static void init_once(void *foo) init_once() argument
357 struct qnx4_inode_info *ei = (struct qnx4_inode_info *) foo; init_once()
/linux-4.1.27/arch/powerpc/platforms/pseries/
H A Dreconfig.c30 * described by path. E.g., for path = "/foo/bar", returns
31 * the node with full_name = "/foo".
/linux-4.1.27/fs/bfs/
H A Dinode.c261 static void init_once(void *foo) init_once() argument
263 struct bfs_inode_info *bi = foo; init_once()
/linux-4.1.27/kernel/locking/
H A Drtmutex.c1272 * foo->lock->owner = NULL; rt_mutex_slowunlock()
1273 * rtmutex_lock(foo->lock); <- fast path rt_mutex_slowunlock()
1274 * free = atomic_dec_and_test(foo->refcnt); rt_mutex_slowunlock()
1275 * rtmutex_unlock(foo->lock); <- fast path rt_mutex_slowunlock()
1277 * kfree(foo); rt_mutex_slowunlock()
1278 * raw_spin_unlock(foo->lock->wait_lock); rt_mutex_slowunlock()
/linux-4.1.27/fs/squashfs/
H A Dsuper.c411 static void init_once(void *foo) init_once() argument
413 struct squashfs_inode_info *ei = foo; init_once()
/linux-4.1.27/arch/cris/arch-v32/mach-a3/
H A Darbiter.c18 * | foo arbiter|----| Internal memory|
325 /* Propagate allocation from foo to bar */ crisv32_arbiter_allocate_bandwidth()
/linux-4.1.27/fs/9p/
H A Dv9fs.c565 static void v9fs_inode_init_once(void *foo) v9fs_inode_init_once() argument
567 struct v9fs_inode *v9inode = (struct v9fs_inode *)foo; v9fs_inode_init_once()
/linux-4.1.27/fs/adfs/
H A Dsuper.c262 static void init_once(void *foo) init_once() argument
264 struct adfs_inode_info *ei = (struct adfs_inode_info *) foo; init_once()
/linux-4.1.27/fs/affs/
H A Dsuper.c120 static void init_once(void *foo) init_once() argument
122 struct affs_inode_info *ei = (struct affs_inode_info *) foo; init_once()
/linux-4.1.27/drivers/hwmon/
H A Dadt7470.c183 u16 foo; adt7470_read_word_data() local
184 foo = i2c_smbus_read_byte_data(client, reg); adt7470_read_word_data()
185 foo |= ((u16)i2c_smbus_read_byte_data(client, reg + 1) << 8); adt7470_read_word_data()
186 return foo; adt7470_read_word_data()
H A Dadt7462.c240 u16 foo; adt7462_read_word_data() local
241 foo = i2c_smbus_read_byte_data(client, reg); adt7462_read_word_data()
242 foo |= ((u16)i2c_smbus_read_byte_data(client, reg + 1) << 8); adt7462_read_word_data()
243 return foo; adt7462_read_word_data()
/linux-4.1.27/drivers/media/usb/pvrusb2/
H A Dpvrusb2-context.c162 static int pvr2_context_thread_func(void *foo) pvr2_context_thread_func() argument
/linux-4.1.27/drivers/usb/phy/
H A Dphy-fsl-usb.c227 void b_data_pulse_end(unsigned long foo) b_data_pulse_end() argument
246 void b_vbus_pulse_end(unsigned long foo) b_vbus_pulse_end() argument
259 void b_srp_end(unsigned long foo) b_srp_end() argument
274 void a_wait_enum(unsigned long foo) a_wait_enum() argument
/linux-4.1.27/fs/
H A Dproc_namespace.c153 /* Tagged fields ("foo:X" or "bar") */ show_mountinfo()
H A Dinode.c370 static void init_once(void *foo) init_once() argument
372 struct inode *inode = (struct inode *) foo; init_once()
H A Dblock_dev.c490 static void init_once(void *foo) init_once() argument
492 struct bdev_inode *ei = (struct bdev_inode *) foo; init_once()
H A Dnamei.c2025 * duplicated. Typically there is a function foo(), and its RCU path_lookupat()
3368 * (foo/., foo/.., /////) filename_create()
3390 * Special case - lookup gave negative, but... we had foo/bar/ filename_create()
/linux-4.1.27/include/media/
H A Dv4l2-device.h90 instance = v4l2_device_set_name(&v4l2_dev, "foo", &drv_instance);
H A Dv4l2-ctrls.h556 * that cluster and set it up for autofoo/foo-type handling.
581 * on the autofoo control and V4L2_CTRL_FLAG_INACTIVE on the foo control(s)
/linux-4.1.27/net/dns_resolver/
H A Ddns_key.c58 * "ip1,ip2,...#foo=bar"
/linux-4.1.27/drivers/net/ethernet/intel/i40e/
H A Di40e.h113 #define STRINGIFY(foo) #foo
/linux-4.1.27/drivers/char/xilinx_hwicap/
H A Dxilinx_hwicap.c67 * cp foo.bit /dev/icap0
69 * Note that unless foo.bit is an appropriately constructed partial
/linux-4.1.27/fs/ocfs2/dlmfs/
H A Ddlmfs.c331 static void dlmfs_init_once(void *foo) dlmfs_init_once() argument
334 (struct dlmfs_inode_private *) foo; dlmfs_init_once()
/linux-4.1.27/fs/qnx6/
H A Dinode.c615 static void init_once(void *foo) init_once() argument
617 struct qnx6_inode_info *ei = (struct qnx6_inode_info *) foo; init_once()
/linux-4.1.27/fs/hpfs/
H A Dsuper.c226 static void init_once(void *foo) init_once() argument
228 struct hpfs_inode_info *ei = (struct hpfs_inode_info *) foo; init_once()
/linux-4.1.27/fs/jfs/
H A Dsuper.c883 static void init_once(void *foo) init_once() argument
885 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo; init_once()
/linux-4.1.27/fs/minix/
H A Dinode.c82 static void init_once(void *foo) init_once() argument
84 struct minix_inode_info *ei = (struct minix_inode_info *) foo; init_once()
/linux-4.1.27/fs/ceph/
H A Dsuper.c615 static void ceph_inode_init_once(void *foo) ceph_inode_init_once() argument
617 struct ceph_inode_info *ci = foo; ceph_inode_init_once()
H A Ddir.c798 /* mkdir .snap/foo is a MKSNAP */ ceph_mkdir()
915 /* rmdir .snap/foo is RMSNAP */ ceph_unlink()
H A Dmds_client.c1717 * foo/.snap/bar -> foo//bar
/linux-4.1.27/drivers/ide/
H A Dide-gd.c359 /* strstr("foo", "") is non-NULL */ ide_gd_probe()
/linux-4.1.27/drivers/firmware/efi/libstub/
H A Dfdt.c43 pr_efi_err(sys_table, "Truncated device tree! foo!\n"); update_fdt()
/linux-4.1.27/arch/microblaze/kernel/
H A Dunwind.c94 /* addik r1, r1, foo ? */ find_frame_creation()
/linux-4.1.27/arch/mips/pmcs-msp71xx/
H A Dmsp_prom.c83 return 0; /* foo */ str2hexnum()
/linux-4.1.27/arch/powerpc/
H A DMakefile159 asinstr := $(call as-instr,lis 9$(comma)foo@high,-DHAVE_AS_ATHIGH=1)
/linux-4.1.27/net/unix/
H A Dgarbage.c37 * of foo to bar and vice versa. Current code chokes on that.
/linux-4.1.27/arch/mips/cavium-octeon/
H A Dsetup.c1057 u32 *foo; prom_free_prom_memory() local
1059 foo = &insn; prom_free_prom_memory()
1062 prefetch(foo); prom_free_prom_memory()
/linux-4.1.27/fs/btrfs/
H A Dtree-log.c47 * mkdir foo/some_dir
49 * rename foo/some_dir foo2/some_dir
50 * mkdir foo/some_dir
51 * fsync foo/some_dir/some_file
70 * mkdir f1/foo
72 * rm -rf f1/foo
3238 * touch foo log_dir_items()
3241 * ln foo mydir/bar log_dir_items()
4326 * echo "123" > /mnt/foo
4328 * mv /mnt/foo /mnt/bar
4329 * echo "abc" > /mnt/foo
4330 * xfs_io -c fsync /mnt/foo
H A Dxattr.c76 * where name is the xattr name, so security.foo, and data is the __btrfs_getxattr()
H A Dinode.c9015 static void init_once(void *foo) init_once() argument
9017 struct btrfs_inode *ei = (struct btrfs_inode *) foo; init_once()
H A Dsend.c210 * rm -f /a/b/c/foo.txt
/linux-4.1.27/lib/
H A Ddynamic_debug.c897 * modprobe foo finds foo.params in boot-args, strips "foo.", and
/linux-4.1.27/net/sunrpc/
H A Drpc_pipe.c1288 seq_printf(m, "service: foo (1) version 0\n"); rpc_show_dummy_info()
1486 init_once(void *foo) init_once() argument
1488 struct rpc_inode *rpci = (struct rpc_inode *) foo; init_once()
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/
H A Dcfg80211.h223 struct pmkid foo[MAXPMKID - 1]; member in struct:brcmf_cfg80211_pmk_list
/linux-4.1.27/drivers/usb/storage/
H A Dfreecom.c263 usb_stor_dbg(us, "foo Status result %d %u\n", result, partial); freecom_transport()
/linux-4.1.27/fs/afs/
H A Dsuper.c33 static void afs_i_init_once(void *foo);
/linux-4.1.27/net/ceph/
H A Dceph_common.c50 * find filename portion of a path (/foo/bar/baz -> baz)
H A Dosdmap.c44 * the foo_mask is the smallest value 2^n-1 that is >= foo.
/linux-4.1.27/include/drm/
H A Ddrm_crtc.h575 * @encoder_type: one of the %DRM_MODE_ENCODER_<foo> types in drm_mode.h
621 * @connector_type: one of the %DRM_MODE_CONNECTOR_<foo> types from drm_mode.h
634 * @polled: a %DRM_CONNECTOR_POLL_<foo> value for core driven polling
638 * @force: a %DRM_FORCE_<foo> state for forced mode sets
/linux-4.1.27/fs/hugetlbfs/
H A Dinode.c693 static void init_once(void *foo) init_once() argument
695 struct hugetlbfs_inode_info *ei = (struct hugetlbfs_inode_info *)foo; init_once()
/linux-4.1.27/fs/ncpfs/
H A Dinode.c72 static void init_once(void *foo) init_once() argument
74 struct ncp_inode_info *ei = (struct ncp_inode_info *) foo; init_once()
/linux-4.1.27/ipc/
H A Dmqueue.c343 static void init_once(void *foo) init_once() argument
345 struct mqueue_inode_info *p = (struct mqueue_inode_info *) foo; init_once()
/linux-4.1.27/fs/befs/
H A Dlinuxvfs.c296 static void init_once(void *foo) init_once() argument
298 struct befs_inode_info *bi = (struct befs_inode_info *) foo; init_once()
/linux-4.1.27/fs/exofs/
H A Dsuper.c183 static void exofs_init_once(void *foo) exofs_init_once() argument
185 struct exofs_i_info *oi = foo; exofs_init_once()
/linux-4.1.27/fs/fuse/
H A Dinode.c1190 static void fuse_inode_init_once(void *foo) fuse_inode_init_once() argument
1192 struct inode *inode = foo; fuse_inode_init_once()
/linux-4.1.27/drivers/media/usb/usbvision/
H A Dusbvision-core.c1266 static int foo; usbvision_compress_isochronous() local
1268 if (foo < 1) { usbvision_compress_isochronous()
1271 ++foo; usbvision_compress_isochronous()
/linux-4.1.27/drivers/atm/
H A Deni.c1459 static void foo(void)
1515 foo(); eni_int()
1905 /*foo();*/ eni_close()
/linux-4.1.27/fs/reiserfs/
H A Dsuper.c615 static void init_once(void *foo) init_once() argument
617 struct reiserfs_inode_info *ei = (struct reiserfs_inode_info *)foo; init_once()
938 * foo=bar, reiserfs_getopt()
/linux-4.1.27/drivers/staging/olpc_dcon/
H A Dolpc_dcon.c556 unsigned long foo, void *bar) dcon_reboot_notify()
555 dcon_reboot_notify(struct notifier_block *nb, unsigned long foo, void *bar) dcon_reboot_notify() argument
/linux-4.1.27/drivers/thermal/
H A Dintel_powerclamp.c265 static void noop_timer(unsigned long foo) noop_timer() argument
/linux-4.1.27/security/tomoyo/
H A Dutil.c124 * @string: String representation for permissions in foo/bar/buz format.
/linux-4.1.27/fs/ufs/
H A Dsuper.c1445 static void init_once(void *foo) init_once() argument
1447 struct ufs_inode_info *ei = (struct ufs_inode_info *) foo; init_once()
/linux-4.1.27/fs/isofs/
H A Dinode.c85 static void init_once(void *foo) init_once() argument
87 struct iso_inode_info *ei = foo; init_once()
/linux-4.1.27/arch/mips/kernel/
H A Dunaligned.c46 * struct foo {
52 * struct foo x = {0, 1, 2, 3, 4, 5, 6, 7};
/linux-4.1.27/fs/ext2/
H A Dsuper.c186 static void init_once(void *foo) init_once() argument
188 struct ext2_inode_info *ei = (struct ext2_inode_info *) foo; init_once()
/linux-4.1.27/drivers/net/ethernet/nvidia/
H A Dforcedeth.c3592 static irqreturn_t nv_nic_irq(int foo, void *data) nv_nic_irq() argument
3625 static irqreturn_t nv_nic_irq_optimized(int foo, void *data) nv_nic_irq_optimized() argument
3654 static irqreturn_t nv_nic_irq_tx(int foo, void *data) nv_nic_irq_tx() argument
3766 static irqreturn_t nv_nic_irq_rx(int foo, void *data) nv_nic_irq_rx() argument
3811 static irqreturn_t nv_nic_irq_other(int foo, void *data) nv_nic_irq_other() argument
3878 static irqreturn_t nv_nic_irq_test(int foo, void *data) nv_nic_irq_test() argument
3935 irqreturn_t (*handler)(int foo, void *data); nv_request_irq()
/linux-4.1.27/drivers/of/
H A Dbase.c767 * /foo/bar Full path
768 * foo Valid alias
769 * foo/bar Valid alias + relative path
H A Daddress.c887 * base = of_io_request_and_map(node, 0, "foo");
/linux-4.1.27/fs/udf/
H A Dsuper.c169 static void init_once(void *foo) init_once() argument
171 struct udf_inode_info *ei = (struct udf_inode_info *)foo; init_once()
/linux-4.1.27/fs/nfs/
H A Dinode.c1901 static void init_once(void *foo) init_once() argument
1903 struct nfs_inode *nfsi = (struct nfs_inode *) foo; init_once()
H A Dsuper.c1235 * boolean options: foo/nofoo nfs_parse_mount_options()
/linux-4.1.27/
H A DMakefile766 # disallow errors like 'EXPORT_GPL(foo);' with missing header
769 # require functions to have arguments in prototypes, not empty 'int foo()'
/linux-4.1.27/drivers/net/ethernet/sun/
H A Dsunbmac.c570 bp->timer_state = asleep; /* foo on you */ bigmac_timer()
H A Dsunhme.c855 hp->timer_state = asleep; /* foo on you */ happy_meal_timer()
/linux-4.1.27/drivers/input/serio/
H A Dhp_sdc.c304 static void hp_sdc_tasklet(unsigned long foo) hp_sdc_tasklet() argument
/linux-4.1.27/tools/net/
H A Dbpf_dbg.c21 * 3) > load pcap foo.pcap
/linux-4.1.27/fs/ext3/
H A Dsuper.c524 static void init_once(void *foo) init_once() argument
526 struct ext3_inode_info *ei = (struct ext3_inode_info *) foo; init_once()
/linux-4.1.27/mm/
H A Dshmem.c3085 static void shmem_init_inode(void *foo) shmem_init_inode() argument
3087 struct shmem_inode_info *info = foo; shmem_init_inode()
/linux-4.1.27/net/
H A Dsocket.c282 static void init_once(void *foo) init_once() argument
284 struct socket_alloc *ei = (struct socket_alloc *)foo; init_once()
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/
H A Dobd_config.c1313 /* e.g. tunefs.lustre --param mdt.group_upcall=foo /r/tmp/lustre-mdt class_process_proc_param()
/linux-4.1.27/net/ipv4/
H A Dip_output.c433 /* Transport layer set skb->h.foo itself. */ ip_queue_xmit()
/linux-4.1.27/drivers/net/ethernet/natsemi/
H A Dns83820.c1401 static irqreturn_t ns83820_irq(int foo, void *data) ns83820_irq() argument
/linux-4.1.27/drivers/gpu/drm/radeon/
H A Dradeon_drv.h59 * - Add flip-buffers ioctl, deprecate fullscreen foo (keith).
/linux-4.1.27/fs/nfsd/
H A Dvfs.c2071 * However, `cp foo bar' should fail nevertheless when bar is nfsd_permission()
/linux-4.1.27/fs/ntfs/
H A Dsuper.c3055 static void ntfs_big_inode_init_once(void *foo) ntfs_big_inode_init_once() argument
3057 ntfs_inode *ni = (ntfs_inode *)foo; ntfs_big_inode_init_once()
/linux-4.1.27/fs/ext4/
H A Dsuper.c941 static void init_once(void *foo) init_once() argument
943 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo; init_once()
/linux-4.1.27/fs/xfs/
H A Dxfs_log.c774 * currently architecture converted and "Unmount" is a bit foo.
/linux-4.1.27/kernel/trace/
H A Dtrace.c3680 " instances\t\t- Make sub-buffers with: mkdir instances/foo\n"
/linux-4.1.27/drivers/net/ethernet/broadcom/
H A Dtg3.c148 * replace things like '% foo' with '& (foo - 1)'.

Completed in 8973 milliseconds