Searched refs:z (Results 1 – 14 of 14) sorted by relevance
/hal_rpi_pico-latest/test/pico_divider_test/ |
D | pico_divider_nesting_test.c | 26 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/ |
D | rand.c | 67 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/ |
D | call_apsr.h | 28 uint32_t z: 1; member
|
/hal_rpi_pico-latest/test/pico_float_test/ |
D | pico_double_test.c | 35 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()
|
D | pico_float_test.c | 34 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/ |
D | double.h | 71 double mla(double x, double y, double z); // note this is not fused
|
/hal_rpi_pico-latest/src/rp2_common/pico_printf/ |
D | printf.c | 481 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/ |
D | main.css | 44 z-index: 9999;
|
D | styles.css | 20 z-index: 10; 83 z-index: 1; 658 z-index: 50;
|
/hal_rpi_pico-latest/src/rp2_common/pico_float/ |
D | float_math.c | 334 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/ |
D | double_math.c | 348 double WRAPPER_FUNC(fma)(double x,double y,double z) { check_nan_d1(x); return x*y+z; } in WRAPPER_FUNC()
|
D | double_sci_m33.S | 1188 @ r0:r1 has z=y/x in IEEE format, <2^-11
|
/hal_rpi_pico-latest/src/rp2_common/pico_standard_link/ |
D | CMakeLists.txt | 98 target_link_options(pico_standard_link INTERFACE "LINKER:-z,max-page-size=4096")
|
/hal_rpi_pico-latest/bazel/toolchain/ |
D | BUILD.bazel | 132 linkopts = ["-Wl,-z,max-page-size=4096"],
|