HomeSort by relevance Sort by last modified time
    Searched refs:FIFO (Results 1 - 16 of 16) sorted by null

  /device/linaro/bootloader/edk2/StdLib/LibC/Containers/Queues/
Fifo.c 2 Class for arbitrary sized FIFO queues.
4 The FIFO is empty if both the Read and Write indexes are equal.
5 The FIFO is full if the next write would make the Read and Write indexes equal.
8 contained in the FIFO.
13 FIFO. They should be in the range 0:(NumElements - 1).
15 One element of the FIFO is always reserved as the "terminator" element. Thus,
16 the capacity of a FIFO is actually NumElements-1.
39 #include <Containers/Fifo.h>
41 /** Determine number of items available to read from the FIFO.
46 @param[in] Self Pointer to the FIFO instance.
    [all...]
  /external/ltp/testcases/kernel/syscalls/getxattr/
getxattr02.c 31 * 1. Get attribute from a FIFO, setxattr(2) should return -1 and
64 #define FIFO "getxattr02fifo"
73 FIFO, /* case 00, get attr from fifo */
139 if (mknod(FIFO, S_IFIFO | 0777, 0) == -1)
140 tst_brkm(TBROK | TERRNO, cleanup, "Create FIFO(%s) failed",
141 FIFO);
  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_spread_test/
cpuset_memory_spread_testset.sh 48 FIFO="./myfifo"
235 read exit_num < $FIFO
342 mkfifo $FIFO
345 tst_brkm TFAIL "failed to mkfifo $FIFO"
351 rm -f DATAFILE $FIFO
  /external/ltp/testcases/kernel/syscalls/setxattr/
setxattr02.c 35 * 4. Set attribute to a FIFO, setxattr(2) should return -1 and set
71 #define FIFO "setxattr02fifo"
111 { /* case 03, set attr to fifo */
112 .fname = FIFO,
208 SAFE_MKNOD(FIFO, S_IFIFO | 0777, 0);
  /external/u-boot/drivers/usb/musb-new/
Kconfig 63 All data is copied between memory and FIFO by the CPU.
  /external/ltp/testcases/kernel/syscalls/fgetxattr/
fgetxattr02.c 23 * 4. Get attribute from a FIFO:
63 #define FIFO MNTPOINT"/fgetxattr02fifo"
115 { /* case 03, get attr from fifo */
116 .fname = FIFO,
221 SAFE_MKNOD(FIFO, S_IFIFO | 0777, 0);
  /external/ltp/testcases/kernel/syscalls/fsetxattr/
fsetxattr02.c 17 * 4. Set attribute to a FIFO, fsetxattr(2) should return -1 and set
56 #define FIFO MNTPOINT"/fsetxattr02fifo"
102 { /* case 03, set attr to fifo */
103 .fname = FIFO,
207 SAFE_MKNOD(FIFO, S_IFIFO | 0777, 0);
  /external/u-boot/arch/arm/include/asm/ti-common/
ti-edma3.h 41 FIFO = 1
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/
DumpArchiveEntry.java 651 * Is this a fifo/pipe?
652 * @return whether this is a fifo
655 return type == TYPE.FIFO;
787 FIFO(1),
  /external/u-boot/drivers/dma/
ti-edma3.c 83 * @dst: physical address of destination (memory, controller FIFO, etc)
85 * @width: ignored unless @addressMode is FIFO, else specifies the
86 * width to use when addressing the fifo (e.g. W8BIT, W32BIT)
100 if (mode == FIFO)
154 * @src_port: physical address of source (memory, controller FIFO, etc)
156 * @width: ignored unless @addressMode is FIFO, else specifies the
157 * width to use when addressing the fifo (e.g. W8BIT, W32BIT)
171 if (mode == FIFO)
244 * An example of an AB-Synchronized transfer is a device using a FIFO.
245 * In that case, @acnt equals the FIFO width and @bcnt equals its depth
    [all...]
  /external/python/cpython2/Lib/
collections.py 172 Pairs are returned in LIFO order if last is true or FIFO order if false.
  /external/u-boot/drivers/serial/
Kconfig 104 pasting longer strings, even when the RX FIFO of the UART is
  /external/u-boot/drivers/i2c/
Kconfig 406 bool "UniPhier FIFO-builtin I2C driver"
410 Support for UniPhier FIFO-builtin I2C controller driver.
  /external/libchrome/mojo/public/cpp/bindings/tests/
associated_interface_unittest.cc 460 TEST_F(AssociatedInterfaceTest, FIFO) {
463 // Take turns to make calls using the four pointers. Test that FIFO-ness is
    [all...]
  /external/python/cpython3/Lib/collections/
__init__.py 170 Pairs are returned in LIFO order if last is true or FIFO order if false.
    [all...]
  /external/syzkaller/vendor/golang.org/x/net/trace/
trace.go 568 // Ring buffer implementation of a fixed-size FIFO queue.

Completed in 1609 milliseconds