Home
last modified time | relevance | path

Searched refs:z (Results 1 – 14 of 14) sorted by relevance

/hal_rpi_pico-latest/test/pico_divider_test/
Dpico_divider_nesting_test.c26 static int z; in timer_callback() local
29 z += 23; in timer_callback()
30 int a = z / 7; in timer_callback()
31 int b = z % 7; in timer_callback()
32 if (z != a * 7 + b) { in timer_callback()
35 a = z / -7; in timer_callback()
36 b = z % -7; in timer_callback()
37 if (z != a * -7 + b) { in timer_callback()
44 float fz = (float) z; in timer_callback()
53 double dz = z; in timer_callback()
[all …]
/hal_rpi_pico-latest/src/rp2_common/pico_rand/
Drand.c67 uint64_t z = x + 0x9E3779B97F4A7C15ull; in splitmix64() local
68 z = (z ^ (z >> 30)) * 0xBF58476D1CE4E5B9ull; in splitmix64()
69 z = (z ^ (z >> 27)) * 0x94D049BB133111EBull; in splitmix64()
70 return z ^ (z >> 31); in splitmix64()
/hal_rpi_pico-latest/test/pico_float_test/llvm/
Dcall_apsr.h28 uint32_t z: 1; member
/hal_rpi_pico-latest/test/pico_float_test/
Dpico_double_test.c35 if (expected != cpsr.flags.z) { in test__aeabi_cdcmpeq()
37 a, b, cpsr.flags.z, expected); in test__aeabi_cdcmpeq()
156 if (expected_z != cpsr.flags.z || expected_c != cpsr.flags.c) { in test__aeabi_cdcmple()
158 a, b, cpsr.flags.z, cpsr.flags.c, expected_z, expected_c); in test__aeabi_cdcmple()
163 if (expected_z != cpsr.flags.z || expected_c != cpsr.flags.c) { in test__aeabi_cdcmple()
165 a, b, cpsr.flags.z, cpsr.flags.c, expected_z, expected_c); in test__aeabi_cdcmple()
Dpico_float_test.c34 if (expected != cpsr.flags.z) { in test__aeabi_cfcmpeq()
36 a, b, cpsr.flags.z, expected); in test__aeabi_cfcmpeq()
155 if (expected_z != cpsr.flags.z || expected_c != cpsr.flags.c) { in test__aeabi_cfcmple()
157 a, b, cpsr.flags.z, cpsr.flags.c, expected_z, expected_c); in test__aeabi_cfcmple()
162 if (expected_z != cpsr.flags.z || expected_c != cpsr.flags.c) { in test__aeabi_cfcmple()
164 a, b, cpsr.flags.z, cpsr.flags.c, expected_z, expected_c); in test__aeabi_cfcmple()
/hal_rpi_pico-latest/src/rp2_common/pico_double/include/pico/
Ddouble.h71 double mla(double x, double y, double z); // note this is not fused
/hal_rpi_pico-latest/src/rp2_common/pico_printf/
Dprintf.c481 const double z = expval * 2.302585092994046 - exp2 * 0.6931471805599453; in _etoa() local
482 const double z2 = z * z; in _etoa()
485 conv.F *= 1 + 2 * z / (2 - z + (z2 / (6 + (z2 / (10 + z2 / 14))))); in _etoa()
/hal_rpi_pico-latest/docs/
Dmain.css44 z-index: 9999;
Dstyles.css20 z-index: 10;
83 z-index: 1;
658 z-index: 50;
/hal_rpi_pico-latest/src/rp2_common/pico_float/
Dfloat_math.c334 float WRAPPER_FUNC(fmaf)(float x,float y,float z) { in WRAPPER_FUNC()
336 check_nan_f1(z); in WRAPPER_FUNC()
337 return (float)((double)x*(double)y+(double)z); in WRAPPER_FUNC()
/hal_rpi_pico-latest/src/rp2_common/pico_double/
Ddouble_math.c348 double WRAPPER_FUNC(fma)(double x,double y,double z) { check_nan_d1(x); return x*y+z; } in WRAPPER_FUNC()
Ddouble_sci_m33.S1188 @ r0:r1 has z=y/x in IEEE format, <2^-11
/hal_rpi_pico-latest/src/rp2_common/pico_standard_link/
DCMakeLists.txt98 target_link_options(pico_standard_link INTERFACE "LINKER:-z,max-page-size=4096")
/hal_rpi_pico-latest/bazel/toolchain/
DBUILD.bazel132 linkopts = ["-Wl,-z,max-page-size=4096"],