Searched full:foo* (Results 1 - 200 of 557) sorted by relevance

123

/linux-4.4.14/drivers/usb/mon/
H A Dmon_main.c181 * a reader staying across an rmmod foo_hcd, so test ->u_bus. mon_stop()
191 * Add a USB bus (usually by a modprobe foo-hcd)
206 * Remove a USB bus (either from rmmod foo-hcd or from a hot-remove event).
/linux-4.4.14/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.4.14/drivers/usb/serial/
H A Dezusb_convert.pl9 # perl ezusb_convert.pl foo <foo.hex >fw_foo.h
/linux-4.4.14/drivers/usb/storage/
H A Dfreecom.c266 usb_stor_dbg(us, "foo Status result %d %u\n", result, partial); freecom_transport()
H A Dunusual_devs.h667 /* Submitted by Michal Mlotek <mlotek@foobar.pl> */
/linux-4.4.14/drivers/staging/rdma/ipath/
H A Dipath_registers.h328 * temporarily. Minor footprint issue if common-model
/linux-4.4.14/drivers/staging/vt6655/
H A DTODO14 - reduce .data footprint
/linux-4.4.14/drivers/staging/wlan-ng/
H A Dhfa384x.h1169 volatile int reapable; /* Food for the reaper task */
H A Dp80211conv.c115 int foo; skb_ether_to_p80211() local
212 foo = wep_encrypt(wlandev, skb->data, p80211_wep->data, skb_ether_to_p80211()
216 if (foo) { skb_ether_to_p80211()
219 foo); skb_ether_to_p80211()
291 int foo; skb_p80211_to_ether() local
330 foo = wep_decrypt(wlandev, skb->data + payload_offset + 4, skb_p80211_to_ether()
335 if (foo) { skb_p80211_to_ether()
338 foo); skb_p80211_to_ether()
/linux-4.4.14/drivers/thermal/
H A Dintel_powerclamp.c265 static void noop_timer(unsigned long foo) noop_timer() argument
/linux-4.4.14/drivers/tty/serial/
H A D21285.c41 static const char serial21285_name[] = "Footbridge UART";
505 MODULE_DESCRIPTION("Intel Footbridge (21285) serial driver");
H A DKconfig402 depends on FOOTBRIDGE
405 If you have a machine based on a 21285 (Footbridge) StrongARM(R)/
414 If you have enabled the serial port on the 21285 footbridge you can
/linux-4.4.14/drivers/tty/serial/8250/
H A D8250_pci.c5159 * Mainpine series cards: Fairly standard layout but fools
/linux-4.4.14/drivers/usb/core/
H A Dhcd.c1379 * memory footprint over access speed since the amount hcd_alloc_coherent()
/linux-4.4.14/drivers/scsi/osd/
H A Dosd_initiator.c1400 OSD_ERR("BAD FOOD from target. list not valid!" osd_req_decode_get_attr_list()
1675 * targets with low memory footprint) osd_finalize_request()
/linux-4.4.14/drivers/scsi/
H A Dqla1280.c403 #define ia64_platform_is(foo) (!strcmp(x, platform_name))
H A Dqlogicfas408.c15 help respectively, and for suffering through my foolishness during the
H A Dscsi_devinfo.c424 * scsi_static_device_list[] entry, such as " FOO" scsi_dev_info_list_find()
425 * rather than "FOO". Since this code is already scsi_dev_info_list_find()
H A Dscsi_lib.c1814 blk_dump_rq_flags(req, "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 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 Din2000.c1932 * pretty straightforward and fool-proof operation. There are 3 in2000_detect()
/linux-4.4.14/drivers/staging/lustre/lustre/include/
H A Dcl_object.h3085 #define CL_IO_SLICE_CLEAN(foo_io, base) \
3087 typeof(foo_io) __foo_io = (foo_io); \
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 {
40 * atomic_t foo_refcount;
41 * struct lu_ref foo_reference;
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);
67 * foo_put(bar->bar_foo);
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);
82 * lu_ref_del() calls into foo_get() and foo_put(). When an instance of struct
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);
102 * foo_put(bar->bar_foo);
/linux-4.4.14/drivers/staging/lustre/lustre/include/lustre/
H A Dlustre_idl.h104 /* FOO_REQUEST_PORTAL is for incoming requests on the FOO
105 * FOO_REPLY_PORTAL is for incoming replies on the FOO
106 * FOO_BULK_PORTAL is for incoming bulk on the FOO
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/
H A Dobd_config.c990 /* e.g. tunefs.lustre --param mdt.group_upcall=foo /r/tmp/lustre-mdt class_process_proc_param()
/linux-4.4.14/drivers/staging/olpc_dcon/
H A Dolpc_dcon.c553 unsigned long foo, void *bar) dcon_reboot_notify()
552 dcon_reboot_notify(struct notifier_block *nb, unsigned long foo, void *bar) dcon_reboot_notify() argument
/linux-4.4.14/drivers/staging/comedi/
H A Ddrivers.c731 * structure, say 'struct foo_board' containing a member 'const char
737 * structure, say 'sizeof(struct foo_board)', and 'driv->num_names' is
/linux-4.4.14/drivers/video/fbdev/
H A Dgbefb.c720 DMA hardware is fooled into thinking the screen is only one tile gbefb_set_par()
H A Dstifb.c523 /* change fb->id temporarily to fool SETUP_FB() */ rattlerSetupPlanes()
/linux-4.4.14/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.4.14/drivers/video/fbdev/sis/
H A Dsis_main.c346 bool footprint; sisfb_detect_custom_timing() local
373 footprint = true; sisfb_detect_custom_timing()
379 footprint = false; sisfb_detect_custom_timing()
382 footprint = false; sisfb_detect_custom_timing()
385 if(footprint) { sisfb_detect_custom_timing()
/linux-4.4.14/drivers/scsi/csiostor/
H A Dcsio_wr.c750 * csio_wr_cleanup_iq_ftr - Cleanup Footer entries in IQ
754 * Cleanup the footer entries in the given ingress queue,
773 /* Get the footer */ csio_wr_cleanup_iq_ftr()
776 /* Zero out footer */ csio_wr_cleanup_iq_ftr()
1030 * @len_to_qid: The lower 32-bits of the first flit of the RSP footer
1100 * @ftr: Ingress queue WR SGE footer.
1103 * bit in the footer of the current WR.
1138 /* Get the footer */ csio_wr_process_iq()
1155 /* Subtract footer from WR len */ csio_wr_process_iq()
H A Dcsio_wr.h301 * Structure for footer (last 2 flits) of Ingress Queue Entry.
/linux-4.4.14/drivers/isdn/hisax/
H A Dl3dss1.c359 #define FOO1(s, a, b) \ l3dss1_parse_facility() macro
363 l3_debug(st, "FOO1 nlen < ilen+2"); \ l3dss1_parse_facility()
378 FOO1("1A", 0x30, FOO1("1C", 0xA1, FOO1("1D", 0x30, FOO1("1E", 0x02, ( { l3dss1_parse_facility()
401 FOO1("2A", 0x30, FOO1("2B", 0x30, FOO1("2C", 0xA1, FOO1("2D", 0x30, FOO1("2E", 0x02, ( { l3dss1_parse_facility()
422 #undef FOO1 l3dss1_parse_facility() macro
/linux-4.4.14/drivers/lguest/x86/
H A Dcore.c22 * mixed in with drivers/lguest/core.c but several foolhardy code slashers
24 * lguest to other architectures (see what I mean by foolhardy?).
/linux-4.4.14/drivers/mailbox/
H A Dmailbox-altera.c387 MODULE_AUTHOR("Ley Foon Tan <lftan@altera.com>");
/linux-4.4.14/drivers/md/bcache/
H A Dclosure.h41 * foo_endio(struct bio *bio)
50 * bio1->bi_endio = foo_endio;
55 * bio2->bi_endio = foo_endio;
/linux-4.4.14/drivers/md/
H A Ddm-cache-policy.h202 * queue merging has occurred). To stop the policy being fooled by
H A Dmd-cluster.c85 /* TODO: Unionize this for smaller footprint */
/linux-4.4.14/drivers/mtd/
H A Dafs.c37 struct footer_struct { struct
39 u32 image_start; /* Start of area reserved by this footer */
40 u32 signature; /* 'Magic' number proves it's a footer */
73 struct footer_struct fs; afs_read_footer()
113 * be located after the footer structure. afs_read_footer()
221 /* Read the footer. */ parse_afs_partitions()
/linux-4.4.14/drivers/mtd/chips/
H A Dcfi_cmdset_0001.c1103 * Warning: this function _will_ fool interrupt latency tracing tools.
H A Dcfi_cmdset_0002.c955 * Warning: this function _will_ fool interrupt latency tracing tools.
/linux-4.4.14/drivers/mtd/maps/
H A DKconfig266 tristate "CFI Flash device mapped on DC21285 Footbridge"
/linux-4.4.14/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.4.14/drivers/net/appletalk/
H A Dltpc.c43 * requires a minimal amount of fooling with the code in ddp.c and aarp.c.
/linux-4.4.14/drivers/net/bonding/
H A Dbond_main.c2493 * arp_ip_target and fool ourselves with our own arp requests. bond_arp_rcv()
/linux-4.4.14/drivers/net/ethernet/3com/
H A D3c59x.c28 * elimination of all the tests and reduced cache footprint.
/linux-4.4.14/drivers/ide/
H A Dide-gd.c359 /* strstr("foo", "") is non-NULL */ ide_gd_probe()
/linux-4.4.14/drivers/hid/
H A Dhid-ntrig.c606 /* Clear the contact footer */ ntrig_event()
646 /* Shouldn't get more than 4 footer packets, so skip */ ntrig_event()
652 /* if the footer isn't complete break */ ntrig_event()
671 * The first footer value indicates the presence of a ntrig_event()
722 * mode. The footer events tell us ntrig_event()
/linux-4.4.14/drivers/hwmon/
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()
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()
/linux-4.4.14/drivers/infiniband/hw/qib/
H A Dqib_iba6120.c2029 * for those who want to reduce memory footprint. Note that the qib_6120_tidtemplate()
H A Dqib_iba7322.c3901 * for those who want to reduce memory footprint. Note that the qib_7322_tidtemplate()
H A Dqib_pcie.c49 * To minimize the change footprint, we call it
/linux-4.4.14/drivers/input/mouse/
H A Dappletouch.c13 * Thanks to Alex Harper <basilisk@foobox.net> for his inputs.
/linux-4.4.14/drivers/input/serio/
H A Dhp_sdc.c304 static void hp_sdc_tasklet(unsigned long foo) hp_sdc_tasklet() argument
/linux-4.4.14/drivers/media/usb/cpia2/
H A Dcpia2_usb.c140 * NOTE: This is not entirely foolproof with 3 process_frame()
/linux-4.4.14/drivers/media/usb/gspca/
H A Dov519.c4362 /* Add 11 byte footer to frame, might be useful */ ov511_pkt_scan()
4403 except that they may contain part of the footer), are ov518_pkt_scan()
H A Dpac7302.c796 int n, lum_offset, footer_length; sd_pkt_scan() local
805 footer_length = 74; sd_pkt_scan()
808 n = (sof - data) - (footer_length + sizeof pac_sof_marker); sd_pkt_scan()
H A Dpac7311.c579 int n, lum_offset, footer_length; sd_pkt_scan() local
588 footer_length = 26; sd_pkt_scan()
591 n = (sof - data) - (footer_length + sizeof pac_sof_marker); sd_pkt_scan()
H A Dvicam.c208 a very similar 64 byte footer, which we don't even vicam_dostream()
/linux-4.4.14/drivers/gpu/drm/radeon/
H A Dradeon_drv.h59 * - Add flip-buffers ioctl, deprecate fullscreen foo (keith).
/linux-4.4.14/drivers/media/usb/pvrusb2/
H A Dpvrusb2-context.c162 static int pvr2_context_thread_func(void *foo) pvr2_context_thread_func() argument
/linux-4.4.14/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.4.14/drivers/net/wireless/realtek/rtl8xxxu/
H A DKconfig16 memory footprint than the vendor drivers and benetifs
/linux-4.4.14/drivers/net/ethernet/intel/i40e/
H A Di40e.h122 #define STRINGIFY(foo) #foo
/linux-4.4.14/drivers/net/ethernet/natsemi/
H A Dns83820.c1401 static irqreturn_t ns83820_irq(int foo, void *data) ns83820_irq() argument
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/
H A Dcfg80211.h221 struct pmkid foo[MAXPMKID - 1]; member in struct:brcmf_cfg80211_pmk_list
/linux-4.4.14/drivers/net/wireless/iwlwifi/pcie/
H A Dtrans.c1560 * Fool sparse by faking we release the lock - sparse will iwl_trans_pcie_grab_nic_access()
1575 * Fool sparse by faking we acquiring the lock - sparse will iwl_trans_pcie_release_nic_access()
/linux-4.4.14/drivers/net/ethernet/sun/
H A Dcassini.c4095 * cause resets to occur so fast as to fool the switch cas_link_timer()
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.4.14/drivers/net/wan/
H A Ddscc4.c8 * Specific bug reports/asian food will be welcome.
/linux-4.4.14/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.4.14/drivers/of/
H A Daddress.c894 * base = of_io_request_and_map(node, 0, "foo");
H A Dbase.c764 * /foo/bar Full path
765 * foo Valid alias
766 * foo/bar Valid alias + relative path
H A Dunittest.c429 unittest(rc == 0 && !strcmp(strings[0], "foobar"), "of_property_read_string_index() failure; rc=%i\n", rc); of_unittest_property_string()
/linux-4.4.14/drivers/of/unittest-data/
H A Dtests-overlay.dtsi216 property-foo = "bar";
H A Dtests-phandle.dtsi42 string-property = "foobar";
/linux-4.4.14/drivers/parisc/
H A Dpdc_stable.c270 * device, BUT nothing would prevent some foolish user to set the path to some
/linux-4.4.14/drivers/parport/
H A Ddaisy.c108 /* don't be fooled: a mux must have 2 or 4 ports. */ parport_daisy_init()
/linux-4.4.14/drivers/pci/host/
H A Dpcie-altera-msi.c312 MODULE_AUTHOR("Ley Foon Tan <lftan@altera.com>");
H A Dpcie-altera.c586 MODULE_AUTHOR("Ley Foon Tan <lftan@altera.com>");
/linux-4.4.14/drivers/pci/
H A Dpci.c2677 * device. The footnote for section 6.12 indicates the specific pci_acs_enabled()
/linux-4.4.14/drivers/pinctrl/intel/
H A Dpinctrl-baytrail.c339 * themselves in the foot. byt_gpio_direction_output()
/linux-4.4.14/drivers/net/wireless/
H A Dat76c50x-usb.c2609 MODULE_AUTHOR("Alex <alex@foogod.com>");
/linux-4.4.14/drivers/net/wireless/ath/ar5523/
H A Dar5523.c1494 int foolen; /* XXX(hch): handle short transfers */ ar5523_load_firmware() local
1529 txblock, sizeof(*txblock), &foolen, ar5523_load_firmware()
1540 fwbuf, mlen, &foolen, ar5523_load_firmware()
1550 rxblock, sizeof(*rxblock), &foolen, ar5523_load_firmware()
/linux-4.4.14/drivers/net/wireless/ath/
H A Dath.h299 #define ATH_DBG_WARN(foo, arg...) WARN(foo, arg)
300 #define ATH_DBG_WARN_ON_ONCE(foo) WARN_ON_ONCE(foo)
312 #define ATH_DBG_WARN(foo, arg...) do {} while (0)
313 #define ATH_DBG_WARN_ON_ONCE(foo) ({ \
314 int __ret_warn_once = !!(foo); \
/linux-4.4.14/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.4.14/drivers/net/ethernet/qualcomm/
H A Dqca_framing.c67 * QCAFRM_NOTAIL Footer expected but not found.
H A Dqca_framing.h57 /* QCA7K footer len */
91 * Waiting for first 0x55 of footer
95 /* Waiting for second 0x55 of footer */
127 * QCAFRM_NOTAIL Footer expected but not found.
/linux-4.4.14/drivers/net/ethernet/broadcom/
H A Dtg3.c148 * replace things like '% foo' with '& (foo - 1)'.
/linux-4.4.14/drivers/power/
H A Dbq24190_charger.c675 * of looking foolish and returning 'OVERVOLTAGE' bq24190_charger_get_health()
/linux-4.4.14/drivers/gpu/drm/
H A Ddrm_crtc.c621 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot drm_framebuffer_remove()
/linux-4.4.14/drivers/cpufreq/
H A Dspeedstep-lib.c288 * cf. 25130917.pdf / page 7, footnote 5 even speedstep_detect_processor()
/linux-4.4.14/drivers/eisa/
H A Deisa.ids64 AIR0101 "AIR486SE/25/33 EISA Baby AT-foot print motherboard."
/linux-4.4.14/drivers/ata/
H A Dpata_mpiix.c196 without BARs set fools the setup. #2 If you pci_disable_device mpiix_init_one()
/linux-4.4.14/drivers/atm/
H A Deni.c1459 static void foo(void)
1515 foo(); eni_int()
1905 /*foo();*/ eni_close()
/linux-4.4.14/drivers/base/
H A Dcpu.c300 * something as foolish as this. However, at this point in time, it is cpu_device_release()
/linux-4.4.14/drivers/block/
H A Dataflop.c987 /* ++ f.a. read twice to avoid being fooled by switcher */ fd_readtrack_check()
H A Dpktcdvd.c1462 static int kcdrwd(void *foobar) kcdrwd() argument
1464 struct pktcdvd_device *pd = foobar; kcdrwd()
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.4.14/drivers/block/drbd/
H A Ddrbd_nl.c1575 * someone fooled it, we need to double check here) drbd_adm_attach()
/linux-4.4.14/drivers/gpu/drm/i915/
H A Dintel_fbc.c32 * variation-less patterns. It comes from keeping the memory footprint small
/linux-4.4.14/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.4.14/arch/sparc/kernel/
H A Dtsb.S67 * which can be easily rematerialized. %g6 and %g7 foot the
/linux-4.4.14/arch/tile/
H A DKconfig176 smaller kernel memory footprint results from using a smaller
/linux-4.4.14/arch/tile/include/asm/
H A Dlinkage.h24 * self-named .text.foo section, and if linker feedback collection
H A Dpage.h201 * its ITLB footprint (as well as at PAGE_OFFSET). The last architected
/linux-4.4.14/arch/tile/kernel/
H A Dasm-offsets.c38 void foo(void) foo() function
H A Dintvec_32.S1508 * The fast swint code is designed to have a small footprint. It does
/linux-4.4.14/arch/x86/
H A DKconfig2627 pointers at 32 bits for smaller memory footprint.
H A DMakefile35 # e.g.: obj-y += foo_$(BITS).o
/linux-4.4.14/arch/x86/entry/
H A Dentry_64.S126 * When user can change pt_regs->foo always force IRET. That is because
272 /* Use IRET because user could have changed pt_regs->foo */
/linux-4.4.14/arch/x86/include/asm/
H A Dbitops.h326 #if 0 /* Fool kernel-doc since it doesn't do macros yet */
H A Dlinkage.h15 * the callee. This just fools gcc into not spilling into them,
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
/linux-4.4.14/arch/x86/include/asm/fpu/
H A Dtypes.h17 u32 foo; /* FPU Operand Pointer Offset */ member in struct:fregs_state
46 u32 foo; /* FPU Operand Offset */ member in struct:fxregs_state::__anon3046::__anon3048
81 u32 foo; member in struct:swregs_state
/linux-4.4.14/arch/x86/kernel/
H A Dasm-offsets_32.c16 void foo(void);
18 void foo(void) foo() function
H A Dtest_nx.c71 void foo_label(void);
85 fudze_exception_table(&foo_label, address); test_address()
88 "foo_label:\n" test_address()
100 fudze_exception_table(address, &foo_label); test_address()
/linux-4.4.14/arch/x86/kernel/fpu/
H A Dregset.c218 env->foo = fxsave->rdp; convert_from_fxsr()
233 env->foo = fxsave->foo; convert_from_fxsr()
256 fxsave->rdp = env->foo; convert_to_fxsr()
261 fxsave->foo = env->foo; convert_to_fxsr()
/linux-4.4.14/arch/x86/math-emu/
H A Dfpu_aux.c43 oaddr = (struct address *)&soft->foo; fpstate_init_soft()
H A Dfpu_system.h78 #define operand_address (*(struct address *)&I387->soft.foo)
/linux-4.4.14/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 Dsignal.c95 env[5] = fxsave->foo; convert_fxsr_to_user()
132 fxsave->foo = env[5]; convert_fxsr_from_user()
H A Duser-offsets.c31 void foo(void) foo() function
/linux-4.4.14/arch/x86/um/shared/sysdep/
H A Dkernel-offsets.h15 void foo(void) foo() function
/linux-4.4.14/block/
H A Dbsg.c735 * fool-proof error detection bsg_put_device()
/linux-4.4.14/drivers/block/zram/
H A Dzram_drv.h54 * footprint small so we can squeeze size and flags into a field.
/linux-4.4.14/drivers/cdrom/
H A Dcdrom.c88 will do their best to follow in his footsteps
/linux-4.4.14/drivers/char/
H A Dnwflash.c328 * reset footbridge to the correct offset 0 (...0..3) erase_block()
468 * program footbridge to the correct offset...0..3 write_block()
H A Dvirtio_console.c824 /* Userspace could be out to fool us */ port_fops_write()
/linux-4.4.14/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.4.14/drivers/clk/qcom/
H A Dgcc-ipq806x.c3052 /* Set GMAC footswitch sleep/wakeup values */ gcc_ipq806x_probe()
/linux-4.4.14/Documentation/
H A Dunaligned-memory-access.txt78 struct foo {
111 struct foo {
/linux-4.4.14/Documentation/usb/
H A Dgadget_multi.txt127 * Footnotes
H A Dpersist.txt154 If the kernel gets fooled in this way, it's almost certain to cause
/linux-4.4.14/Documentation/video4linux/
H A Dv4l2-controls.txt48 struct foo_dev {
54 struct foo_dev *foo;
58 v4l2_ctrl_handler_init(&foo->ctrl_handler, nr_of_controls);
68 struct foo_dev {
76 foo->v4l2_dev.ctrl_handler = &foo->ctrl_handler;
78 Where foo->v4l2_dev is of type struct v4l2_device.
87 struct foo_dev {
95 foo->sd.ctrl_handler = &foo->ctrl_handler;
97 Where foo->sd is of type struct v4l2_subdev.
116 v4l2_ctrl_handler_free(&foo->ctrl_handler);
160 v4l2_ctrl_handler_init(&foo->ctrl_handler, nr_of_controls);
161 v4l2_ctrl_new_std(&foo->ctrl_handler, &foo_ctrl_ops,
163 v4l2_ctrl_new_std(&foo->ctrl_handler, &foo_ctrl_ops,
165 v4l2_ctrl_new_std_menu(&foo->ctrl_handler, &foo_ctrl_ops,
169 v4l2_ctrl_new_int_menu(&foo->ctrl_handler, &foo_ctrl_ops,
174 v4l2_ctrl_new_std_menu_items(&foo->ctrl_handler, &foo_ctrl_ops,
178 if (foo->ctrl_handler.error) {
179 int err = foo->ctrl_handler.error;
181 v4l2_ctrl_handler_free(&foo->ctrl_handler);
226 v4l2_ctrl_handler_setup(&foo->ctrl_handler);
235 static const struct v4l2_ctrl_ops foo_ctrl_ops = {
236 .s_ctrl = foo_s_ctrl,
241 static int foo_s_ctrl(struct v4l2_ctrl *ctrl)
243 struct foo *state = container_of(ctrl->handler, struct foo, ctrl_handler);
337 static int foo_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
428 ctrl = v4l2_ctrl_new_custom(&foo->ctrl_handler, &ctrl_filter, NULL);
470 struct foo {
492 static int foo_s_ctrl(struct v4l2_ctrl *ctrl)
494 struct foo *state = container_of(ctrl->handler, struct foo, ctrl_handler);
532 And in foo_s_ctrl you can use these pointers directly: state->mute->val.
559 A common type of control cluster is one that handles 'auto-foo/foo'-type
718 ctrl = v4l2_ctrl_new_custom(&foo->ctrl_handler, &ctrl_private, NULL);
/linux-4.4.14/Documentation/virtual/kvm/
H A Dmmu.txt24 - footprint: keep the amount of pinned kernel memory low (most memory
/linux-4.4.14/Documentation/virtual/uml/
H A DUserModeLinux-HOWTO.txt4177 debugger is defunct and without some fancy footwork, another gdb can't
4178 attach to it. So, this is how the fancy footwork goes:
/linux-4.4.14/Documentation/vm/
H A Dnuma103 the scheduler does not take a task's NUMA footprint into account directly.
H A Dslub.txt302 while [ 1 ]; do slabinfo -X >> FOO_STATS; sleep 1; done
305 slabinfo-gnuplot.sh FOO_STATS [FOO_STATS2 .. FOO_STATSN]
310 - Slabcache Totals: FOO_STATS-totals.png
311 - Slabs sorted by size: FOO_STATS-slabs-by-size.png
312 - Slabs sorted by loss: FOO_STATS-slabs-by-loss.png
337 in `slabinfo -X >> FOO_STATS; sleep 1;' case, using
/linux-4.4.14/Documentation/w1/masters/
H A Dw1-gpio19 static struct w1_gpio_platform_data foo_w1_gpio_pdata = {
24 static struct platform_device foo_w1_device = {
27 .dev.platform_data = &foo_w1_gpio_pdata,
31 at91_set_GPIO_periph(foo_w1_gpio_pdata.pin, 1);
32 at91_set_multi_drive(foo_w1_gpio_pdata.pin, 1);
33 platform_device_register(&foo_w1_device);
/linux-4.4.14/Documentation/x86/
H A Dintel_mpx.txt243 However, if users did this, the kernel might be fooled in to unmaping an
H A Dtlb.txt73 1. A footnote in Intel's SDM "4.10.4.2 Recommended Invalidation"
/linux-4.4.14/Documentation/zh_CN/
H A DCodingStyle233 。称一个全局函数为“foo”是一个难以饶恕的错误。
523 #define FOO(x) \
534 #define FOO(val) bar(index, val)
539 3) 作为左值的带参数的宏: FOO(x) = y;如果有人把FOO变成一个内联函数的话,这种用
662 compile-command: "gcc -DMAGIC_DEBUG_FLAG foo.c"
/linux-4.4.14/Documentation/zh_CN/arm/
H A Dkernel_user_helpers.txt118 void foo()
/linux-4.4.14/Documentation/zh_CN/filesystems/
H A Dsysfs.txt121 static DEVICE_ATTR(foo, S_IWUSR | S_IRUGO, show_foo, store_foo);
127 .name = "foo",
/linux-4.4.14/
H A DMAINTAINERS581 M: Ley Foon Tan <lftan@altera.com>
1072 ARM/FOOTBRIDGE ARCHITECTURE
1078 F: arch/arm/mach-footbridge/
7550 M: Ley Foon Tan <lftan@altera.com>
8120 M: Ley Foon Tan <lftan@altera.com>
8229 M: Ley Foon Tan <lftan@altera.com>
H A DMakefile762 # disallow errors like 'EXPORT_GPL(foo);' with missing header
765 # require functions to have arguments in prototypes, not empty 'int foo()'
/linux-4.4.14/arch/alpha/boot/
H A Dmisc.c165 /* put in temp area to reduce initial footprint */ decompress_kernel()
/linux-4.4.14/arch/alpha/kernel/
H A Dasm-offsets.c14 void foo(void) foo() function
/linux-4.4.14/arch/arc/
H A DKconfig.debug10 This increases the resident kernel footprint and will cause less
/linux-4.4.14/arch/arm/
H A DKconfig434 bool "FootBridge"
436 select FOOTBRIDGE
443 ("FootBridge"), such as the Simtec CATS and the Rebel NetWinder.
837 source "arch/arm/mach-footbridge/Kconfig"
1730 rounding up to page size, the actual memory footprint is usually
H A DKconfig.debug252 bool "Kernel low-level debugging messages via footbridge serial port"
253 depends on FOOTBRIDGE
256 their output to the serial port in the DC21285 (Footbridge).
266 bool "Kernel low-level debugging messages via footbridge 8250 at PCI COM1"
267 depends on FOOTBRIDGE
1361 (FOOTBRIDGE && !DEBUG_DC21285_PORT) || \
1413 default 0x7c0003f8 if FOOTBRIDGE
1547 default 0xfee003f8 if FOOTBRIDGE
1570 default 0 if FOOTBRIDGE || ARCH_IOP32X || DEBUG_BCM_5301X || \
1589 default y if ARCH_EBSA110 || FOOTBRIDGE || ARCH_GEMINI || ARCH_RPC
H A DMakefile171 machine-$(CONFIG_ARCH_FOOTBRIDGE) += footbridge
/linux-4.4.14/arch/c6x/kernel/
H A Dasm-offsets.c13 void foo(void) foo() function
/linux-4.4.14/arch/cris/arch-v10/kernel/
H A Dsignal.c80 /* make sure the U-flag is set so user-mode cannot fool us */ restore_sigcontext()
/linux-4.4.14/arch/cris/arch-v10/lib/
H A Dusercopy.c81 This method is not foolproof; it assumes that the "asm reg" __copy_user()
164 /* Having a separate by-four loops cuts down on cache footprint. __copy_user()
247 This method is not foolproof; it assumes that the "asm reg" __copy_user_zeroing()
418 This method is not foolproof; it assumes that the "asm reg" __do_clear_user()
498 /* Having a separate by-four loops cuts down on cache footprint. __do_clear_user()
/linux-4.4.14/arch/cris/arch-v32/lib/
H A Dusercopy.c132 /* Having a separate by-four loops cuts down on cache footprint. __copy_user()
369 This method is not foolproof; it assumes that the "asm reg" __do_clear_user()
444 /* Having a separate by-four loops cuts down on cache footprint. __do_clear_user()
/linux-4.4.14/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.4.14/arch/cris/boot/rescue/
H A Drescue_v32.lds37 /* Get rid of stuff from EXPORT_SYMBOL(foo). */
/linux-4.4.14/fs/ext4/
H A Dsuper.c954 static void init_once(void *foo) init_once() argument
956 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo; init_once()
/linux-4.4.14/fs/f2fs/
H A DKconfig28 - current memory footprint consumed by f2fs.
H A Ddebug.c129 * This function calculates memory footprint.
334 /* memory footprint */ stat_show()
H A Df2fs.h512 unsigned int ram_thresh; /* control the memory footprint */
1312 #define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
H A Dgc.c799 switch (GET_SUM_TYPE((&sum->footer))) { do_garbage_collect()
810 stat_inc_seg_count(sbi, GET_SUM_TYPE((&sum->footer)), gc_type); do_garbage_collect()
H A Dnode.c1817 sum_entry->nid = rn->footer.nid; restore_node_summary()
H A Dnode.h25 /* control the memory footprint threshold (10MB per 1GB ram) */
224 old_flag = le32_to_cpu(rn->footer.flag); fill_node_footer()
226 rn->footer.nid = cpu_to_le32(nid); fill_node_footer()
227 rn->footer.ino = cpu_to_le32(ino); fill_node_footer()
230 rn->footer.flag = cpu_to_le32((ofs << OFFSET_BIT_SHIFT) | fill_node_footer()
238 memcpy(&dst_rn->footer, &src_rn->footer, sizeof(struct node_footer)); copy_node_footer()
246 rn->footer.cp_ver = ckpt->checkpoint_ver; fill_node_footer_blkaddr()
247 rn->footer.next_blkaddr = cpu_to_le32(blkaddr); fill_node_footer_blkaddr()
253 return le32_to_cpu(rn->footer.ino); ino_of_node()
259 return le32_to_cpu(rn->footer.nid); nid_of_node()
265 unsigned flag = le32_to_cpu(rn->footer.flag); ofs_of_node()
272 return le64_to_cpu(rn->footer.cp_ver); cpver_of_node()
278 return le32_to_cpu(rn->footer.next_blkaddr); next_blkaddr_of_node()
345 * - Mark cold node blocks in their node footer
366 return le32_to_cpu(rn->footer.flag) & (1 << type); is_node()
376 unsigned int flag = le32_to_cpu(rn->footer.flag); set_cold_node()
382 rn->footer.flag = cpu_to_le32(flag); set_cold_node()
388 unsigned int flag = le32_to_cpu(rn->footer.flag); set_mark()
393 rn->footer.flag = cpu_to_le32(flag); set_mark()
H A Dsegment.c971 sum_footer = &(curseg->sum_blk->footer); reset_curseg()
H A Dsegment.h86 #define GET_SUM_TYPE(footer) ((footer)->entry_type)
87 #define SET_SUM_TYPE(footer, type) ((footer)->entry_type = type)
H A Dsuper.c264 static void init_once(void *foo) init_once() argument
266 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo; init_once()
H A Dxattr.h95 * | .e_name = "foo" |
/linux-4.4.14/fs/fat/
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.c662 static void init_once(void *foo) init_once() argument
664 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo; init_once()
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()
/linux-4.4.14/fs/fuse/
H A Dinode.c1246 static void fuse_inode_init_once(void *foo) fuse_inode_init_once() argument
1248 struct inode *inode = foo; fuse_inode_init_once()
/linux-4.4.14/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.4.14/fs/hpfs/
H A Dsuper.c253 static void init_once(void *foo) init_once() argument
255 struct hpfs_inode_info *ei = (struct hpfs_inode_info *) foo; init_once()
/linux-4.4.14/fs/hugetlbfs/
H A Dinode.c959 static void init_once(void *foo) init_once() argument
961 struct hugetlbfs_inode_info *ei = (struct hugetlbfs_inode_info *)foo; init_once()
/linux-4.4.14/fs/
H A Dinode.c370 static void init_once(void *foo) init_once() argument
372 struct inode *inode = (struct inode *) foo; init_once()
H A Dnamei.c3414 * (foo/., foo/.., /////) filename_create()
3435 * Special case - lookup gave negative, but... we had foo/bar/ filename_create()
/linux-4.4.14/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.4.14/fs/jffs2/
H A Dnodemgmt.c656 addedsize = 0; /* To fool the refiling code later */ jffs2_mark_node_obsolete()
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.4.14/fs/jfs/
H A Dsuper.c880 static void init_once(void *foo) init_once() argument
882 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo; init_once()
/linux-4.4.14/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.4.14/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.4.14/fs/nfs/filelayout/
H A Dfilelayout.h37 * We store each index as a u8 (u32 on the wire) to keep the memory footprint
/linux-4.4.14/fs/nfs/
H A Dinode.c1915 static void init_once(void *foo) init_once() argument
1917 struct nfs_inode *nfsi = (struct nfs_inode *) foo; init_once()
H A Dsuper.c1238 * boolean options: foo/nofoo nfs_parse_mount_options()
/linux-4.4.14/fs/nfsd/
H A Dexport.c873 * since its harder to fool a kernel module than a user space program.
H A Dvfs.c1995 * However, `cp foo bar' should fail nevertheless when bar is nfsd_permission()
/linux-4.4.14/lib/
H A Ddecompress_unxz.c36 * Stream Footer (12)
H A Ddynamic_debug.c897 * modprobe foo finds foo.params in boot-args, strips "foo.", and
H A Didr.c991 * whole idea of ida is to have small memory foot print. ida_get_new_above()
/linux-4.4.14/lib/xz/
H A Dxz_dec_stream.c120 * and Stream Footer. The Block Header is the biggest (1 KiB)
421 /* Decode the Stream Footer field (the last 12 bytes of the .xz Stream) */ dec_stream_footer()
424 if (!memeq(s->temp.buf + 10, FOOTER_MAGIC, FOOTER_MAGIC_SIZE)) dec_stream_footer()
H A Dxz_stream.h31 #define FOOTER_MAGIC "YZ" macro
32 #define FOOTER_MAGIC_SIZE 2 macro

Completed in 6863 milliseconds

123