HomeSort by relevance Sort by last modified time
    Searched full:lfsr (Results 1 - 21 of 21) 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, osize)) {
41 printf("lfsr: short loop\n");
lfsr-test.c 10 #include "../lib/lfsr.h"
14 printf("Usage: lfsr-test 0x<numbers> [seed] [spin] [verify]\n");
19 "verify: check if LFSR has iterated correctly\n\n"
51 /* Initialize LFSR */
65 printf("LFSR specs\n");
  /external/qemu/hw/mips/
cputimer.c 10 static uint32_t lfsr = 1; local
15 lfsr = (lfsr >> 1) ^ (-(lfsr & 1u) & 0xd0000001u);
16 idx = lfsr % (env->tlb->nb_tlb - env->CP0_Wired) + env->CP0_Wired;
  /external/chromium_org/third_party/libsrtp/srtp/test/
lfsr.c 37 * lfsr.c
65 v32_t lfsr; local
69 lfsr.value = 1;
74 /* printf("%s\n", v32_bit_string(lfsr)); */
75 if (parity(mask.value & lfsr.value))
76 lfsr.value = ((lfsr.value << 1) | 1) & 0xff;
78 lfsr.value = (lfsr.value << 1) & 0xff;
81 if (lfsr.value == 1)
    [all...]
  /external/fio/examples/
latency-profile.fio 9 random_generator=lfsr
  /external/fio/
file.h 10 #include "lib/lfsr.h"
115 struct fio_lfsr lfsr; member in struct:fio_file
Makefile 36 lib/lfsr.c gettime-thread.c helpers.c lib/flist_sort.c \
162 T_AXMAP_OBJS += lib/lfsr.o lib/axmap.o
165 T_LFSR_TEST_OBJS = t/lfsr-test.o
166 T_LFSR_TEST_OBJS += lib/lfsr.o
167 T_LFSR_TEST_PROGS = t/lfsr-test
273 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 1052 if (!lfsr_init(&f->lfsr, blocks, seed, 0))
1536 lfsr_reset(&f->lfsr, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
HOWTO     [all...]
fio.1 765 .B lfsr
771 side if we want to ensure that blocks are only read or written once. LFSR
774 for IO purposes it's typically good enough. LFSR only works with single block
    [all...]
io_u.c 111 if (lfsr_next(&f->lfsr, &off, lastb))
    [all...]
options.c     [all...]
  /external/chromium_org/third_party/libsrtp/srtp/
TODO 42 strip out test/lfsr.c
  /external/srtp/
TODO 42 strip out test/lfsr.c
  /external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
numa.c 170 OPT_BOOLEAN('r', "data_rand_walk", &p0.data_rand_walk, "access the data with random (32bit LFSR) walk"),
669 static inline uint32_t lfsr_32(uint32_t lfsr)
672 return (lfsr>>1) ^ ((0x0u - (lfsr & 0x1u)) & taps);
728 u32 lfsr = nr + loop + val; local
734 lfsr = lfsr_32(lfsr);
736 start = lfsr % words;
    [all...]
  /external/fio/profiles/
act.c 67 "random_generator=lfsr",
  /external/wpa_supplicant_8/src/eap_server/
eap_server_pwd.c 178 /* an lfsr is good enough to generate unpredictable tokens */

Completed in 1375 milliseconds