Home
last modified time | relevance | path

Searched refs:s1 (Results 1 – 4 of 4) sorted by relevance

/hal_rpi_pico-latest/test/pico_test/include/pico/test/
Dxrand.h47 uint64_t s1; member
52 uint64_t s1 = s->s1; in xrand_next() local
53 const uint64_t result = xrand_rotl(s0 + s1, 17) + s0; in xrand_next()
55 s1 ^= s0; in xrand_next()
56 s->s0 = xrand_rotl(s0, 49) ^ s1 ^ (s1 << 21); // a, b in xrand_next()
57 s->s1 = xrand_rotl(s1, 28); // c in xrand_next()
71 uint64_t s1 = 0; in xrand_jump() local
76 s1 ^= s->s1; in xrand_jump()
82 s->s1 = s1; in xrand_jump()
/hal_rpi_pico-latest/src/rp2_common/pico_float/
Dfloat_sci_m33_vfp.S90 vmul.f32 s1,s0,s0
94 vmul.f32 s2,s0,s1
96 vmla.f32 s4,s1,s9
215 vmov s0,s1,r3,r0 @ s0=-log u, s1
217 vcvt.f32.s32 s1,s1,#32
218 vmul.f32 s2,s1,s1 @ power series in ε
220 vmul.f32 s3,s1,s2
234 vsub.f32 s1,s1,s2
235 vadd.f32 s0,s0,s1 @ log ε - log u
411 vmul.f32 s5,s7,s1 @ sinφ sinε
[all …]
/hal_rpi_pico-latest/src/rp2_common/pico_rand/
Drand.c93 uint64_t s1 = local_rng_state->r[1]; in xoroshiro128ss() local
97 while (s0 == 0 && s1 == 0) { in xoroshiro128ss()
98 s1 = time_us_64(); // should not be 0, but loop anyway in xoroshiro128ss()
103 s1 ^= s0; in xoroshiro128ss()
104 local_rng_state->r[0] = rotl(s0, 24) ^ s1 ^ (s1 << 16); // a, b in xoroshiro128ss()
105 local_rng_state->r[1] = rotl(s1, 37); // c in xoroshiro128ss()
/hal_rpi_pico-latest/tools/pioasm/gen/
Dlexer.cpp2817 static void yy_flex_strncpy (char* s1, const char * s2, int n ) in yy_flex_strncpy() argument
2822 s1[i] = s2[i]; in yy_flex_strncpy()