HomeSort by relevance Sort by last modified time
    Searched full:lfsr (Results 1 - 20 of 20) sorted by null

  /external/fio/lib/
lfsr.c 4 #include "lfsr.h"
8 * LFSR taps retrieved from:
17 {3, 2}, //Tap position for 3-bit LFSR
18 {4, 3}, //Tap position for 4-bit LFSR
19 {5, 3}, //Tap position for 5-bit LFSR
20 {6, 5}, //Tap position for 6-bit LFSR
21 {7, 6}, //Tap position for 7-bit LFSR
22 {8, 6, 5 ,4}, //Tap position for 8-bit LFSR
23 {9, 5}, //Tap position for 9-bit LFSR
24 {10, 7}, //Tap position for 10-bit LFSR
    [all...]
rand.c 22 Equidistributed Combined LFSR Generators", Mathematics of
  /external/srtp/test/
lfsr.c 2 * lfsr.c
30 v32_t lfsr; local
34 lfsr.value = 1;
39 /* printf("%s\n", v32_bit_string(lfsr)); */
40 if (parity(mask.value & lfsr.value))
41 lfsr.value = ((lfsr.value << 1) | 1) & 0xff;
43 lfsr.value = (lfsr.value << 1) & 0xff;
46 if (lfsr.value == 1)
    [all...]
  /external/fio/t/
axmap.c 8 #include "../lib/lfsr.h"
23 struct fio_lfsr lfsr; local
32 lfsr_init(&lfsr, size, seed, seed & 0xF);
40 if (lfsr_next(&lfsr, &val)) {
41 printf("lfsr: short loop\n");
lfsr-test.c 10 #include "../lib/lfsr.h"
16 printf("Usage: lfsr-test 0x<numbers> [seed] [spin] [verify]\n");
21 "verify: check if LFSR has iterated correctly\n\n"
53 /* Initialize LFSR */
67 printf("LFSR specs\n");
  /external/fio/examples/
latency-profile.fio 9 random_generator=lfsr
  /external/fio/
file.h 10 #include "lib/lfsr.h"
31 FIO_FILE_lfsr = 1 << 8, /* lfsr is used */
112 * block map or LFSR for random io
116 struct fio_lfsr lfsr; member in union:fio_file::__anon11126
161 FILE_FLAG_FNS(lfsr); variable
Makefile 36 lib/lfsr.c gettime-thread.c helpers.c lib/flist_sort.c \
189 T_AXMAP_OBJS += lib/lfsr.o lib/axmap.o
192 T_LFSR_TEST_OBJS = t/lfsr-test.o
193 T_LFSR_TEST_OBJS += lib/lfsr.o gettime.o t/log.o t/debug.o
194 T_LFSR_TEST_PROGS = t/lfsr-test
345 t/lfsr-test: $(T_LFSR_TEST_OBJS)
Android.mk 30 lib_src_files := lib/rbtree.c lib/flist_sort.c lib/getrusage.c lib/hweight.c lib/ieee754.c lib/lfsr.c \
filesetup.c 1047 if (!lfsr_init(&f->lfsr, blocks, seed, 0)) {
1549 lfsr_reset(&f->lfsr, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
fio.1 818 .B lfsr
824 side if we want to ensure that blocks are only read or written once. LFSR
827 for IO purposes it's typically good enough. LFSR only works with single block
    [all...]
HOWTO     [all...]
io_u.c 108 if (lfsr_next(&f->lfsr, &off))
    [all...]
options.c     [all...]
  /external/srtp/
TODO 42 strip out test/lfsr.c
  /external/fio/profiles/
act.c 67 "random_generator=lfsr",
  /toolchain/binutils/binutils-2.25/include/opcode/
ns32k.h 293 { "lfsr", 19,24, 0x00f3e,"1D", 4, "", DEF_MODEC,DEF_MODEL },
  /toolchain/binutils/binutils-2.25/opcodes/
epiphany-opc.c     [all...]
epiphany-desc.c     [all...]
  /toolchain/binutils/binutils-2.25/cpu/
epiphany.cpu 327 (FEXT FDEP LFSR - - - - -))
    [all...]

Completed in 368 milliseconds