Searched refs:flush (Results 1 - 25 of 47) sorted by relevance

12

/u-boot/include/
H A Dxilinx.h83 typedef int (*xilinx_pgm_fn)(int assert_pgm, int flush, int cookie);
87 typedef int (*xilinx_clk_fn)(int assert_clk, int flush, int cookie);
88 typedef int (*xilinx_cs_fn)(int assert_cs, int flush, int cookie);
89 typedef int (*xilinx_wr_fn)(int assert_write, int flush, int cookie);
91 typedef int (*xilinx_wdata_fn)(unsigned char data, int flush, int cookie);
96 typedef int (*xilinx_bwr_fn)(void *buf, size_t len, int flush, int cookie);
H A Daltera.h94 typedef int (*Altera_config_fn)( int assert_config, int flush, int cookie );
97 typedef int (*Altera_clk_fn)( int assert_clk, int flush, int cookie );
98 typedef int (*Altera_data_fn)( int assert_data, int flush, int cookie );
99 typedef int(*Altera_write_fn)(const void *buf, size_t len, int flush, int cookie);
H A Dstdio.h19 void flush(void);
21 static inline void flush(void) {} function
34 static inline void flush(void) function
H A Dstdio_dev.h42 /* To flush output queue */
43 void (*flush)(struct stdio_dev *dev); member in struct:stdio_dev
44 #define STDIO_DEV_ASSIGN_FLUSH(dev, flush_func) ((dev)->flush = (flush_func))
H A D_exports.h16 EXPORT_FUNC(flush, void, flush, void)
H A Dvideo.h320 * Set whether we need to flush the dcache when changing the image. This
323 * @param flush non-zero to flush cache after update, 0 to skip
325 void video_set_flush_dcache(struct udevice *dev, bool flush);
/u-boot/arch/arm/lib/
H A Dreset.c36 flush();
/u-boot/lib/
H A Dpanic.c27 flush(); /* flush the panic message before reset */
H A Dgzip.c52 int r, flush, orig, window; local
82 flush = (srclen > CFG_GZIP_COMPRESS_DEF_SZ)?
90 r = deflate(&s, flush);
/u-boot/lib/zlib/
H A Ddeflate.h105 int last_flush; /* value of flush param for previous deflate call */
314 # define _tr_tally_lit(s, c, flush) \
320 flush = (s->sym_next == s->sym_end); \
322 # define _tr_tally_dist(s, distance, length, flush) \
331 flush = (s->sym_next == s->sym_end); \
334 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
335 # define _tr_tally_dist(s, distance, length, flush) \
336 flush = _tr_tally(s, distance, length)
H A Ddeflate.c69 block_done, /* block flush performed */
74 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
78 local block_state deflate_stored OF((deflate_state *s, int flush));
79 local block_state deflate_fast OF((deflate_state *s, int flush));
81 local block_state deflate_slow OF((deflate_state *s, int flush));
83 local block_state deflate_rle OF((deflate_state *s, int flush));
84 local block_state deflate_huff OF((deflate_state *s, int flush));
613 int ZEXPORT deflate (strm, flush)
615 int flush;
617 int old_flush; /* value of flush para
[all...]
/u-boot/cmd/
H A Dboot.c35 flush();
H A Delf.c89 flush();
100 flush();
303 flush();
H A Dload.c85 flush();
129 flush();
325 flush();
484 flush();
547 flush();
/u-boot/tools/u_boot_pylib/
H A Dtout.py52 _stdout.flush()
68 _stdout.flush()
H A Dterminal.py159 print(text, end='', flush=True)
167 print('\r%s\r' % (' '* last_print_len), end='', flush=True)
/u-boot/board/astro/mcf5373l/
H A Dfpga.c64 int altera_config_fn(int assert_config, int flush, int cookie) argument
100 int altera_write_fn(const void *buf, size_t len, int flush, int cookie) argument
204 int xilinx_pgm_config_fn(int assert, int flush, int cookie) argument
301 int xilinx_clk_config_fn(int assert_clk, int flush, int cookie) argument
312 int xilinx_wr_config_fn(int assert_write, int flush, int cookie) argument
323 int xilinx_fastwr_config_fn(void *buf, size_t len, int flush, int cookie) argument
/u-boot/board/theadorable/
H A Dfpga.c47 static int fpga_config_fn(int assert, int flush, int cookie) argument
62 static int fpga_write_fn(const void *buf, size_t len, int flush, int cookie) argument
/u-boot/tools/patman/
H A Dtest_settings.py43 global_config.flush()
/u-boot/test/py/
H A Dmultiplexed_log.py72 def flush(self): member in class:LogfileStream
82 self.logfile.flush()
84 self.chained_file.flush()
704 def flush(self): function
714 self.f.flush()
H A Du_boot_spawn.py215 self.logfile_read.flush()
/u-boot/drivers/sound/
H A Dsamsung-i2s.c113 * @param flush Tx fifo flush command (0x00 - do not flush
114 * 0x80 - flush tx fifo)
116 static void i2s_fifo(struct i2s_reg *i2s_reg, unsigned int flush) argument
119 setbits_le32(&i2s_reg->fic, flush);
120 clrbits_le32(&i2s_reg->fic, flush);
364 /* disable i2s transfer flag and flush the fifo */
/u-boot/drivers/ata/
H A Dsata_sil.h26 int flush; member in struct:sil_sata
/u-boot/board/beckhoff/mx53cx9020/
H A Dmx53cx9020.c186 static int ccat_config_fn(int assert_config, int flush, int cookie) argument
203 static int ccat_write_fn(const void *buf, size_t buf_len, int flush, int cookie) argument
/u-boot/arch/arm/mach-omap2/omap5/
H A Dsec_entry_cpu1.S86 blx flush_dcache_range @ flush the cache on args buffer

Completed in 296 milliseconds

12