/hal_rpi_pico-latest/src/rp2_common/pico_double/include/pico/ |
D | double.h | 51 int32_t double2fix(double d, int e); 52 uint32_t double2ufix(double d, int e); 53 int64_t double2fix64(double d, int e); 54 uint64_t double2ufix64(double d, int e); 55 int32_t double2int(double d); 56 uint32_t double2uint(double d); 57 int64_t double2int64(double d); 58 uint64_t double2uint64(double d); 61 int32_t double2int_z(double d); 62 int64_t double2int64_z(double d); [all …]
|
/hal_rpi_pico-latest/docs/ |
D | logo-mobile.svg | 14 …<path d="M120.397,80.45865c-.56815-5.90742-3.22385-11.16309-6.995-13.93267a17.27379,17.27379,0,0,0… 15 …<path class="cls-1" d="M82.88834,15.64565a.50715.50715,0,0,1,.64431.53875c-.16085,1.517.75688,1.32… 16 …<path class="cls-1" d="M35.37668,35.161a.50084.50084,0,0,1,.43005-.75445c.92449-.02391.982-.67308.… 17 …<path class="cls-2" d="M102.70391,57.14512c2.07215,5.51262.45788,8.1631-4.45781,5.35681a35.23186,3… 18 …<path class="cls-2" d="M80.656,50.9434c7.02971,5.84278-1.02445,9.97893-9.78984,9.97893s-16.81947-4… 19 …<path class="cls-2" d="M39.02843,57.14512A15.74294,15.74294,0,0,1,49.27372,48.546c5.83261-1.05666,… 20 …<path class="cls-2" d="M28.86006,87.77634a15.73764,15.73764,0,0,1,1.16828-13.39206c2.59721-4.419,5… 21 …<path class="cls-2" d="M47.58848,116.39963A15.64491,15.64491,0,0,1,35.82,102.43657C36.79507,79.749… 22 …<path class="cls-2" d="M48.254,88.14263c-5.48323-3.16572-6.9343-10.91794-3.24093-17.31507s11.13243… 23 …<path class="cls-2" d="M80.0159,125.05829a15.6584,15.6584,0,0,1-18.29955,0c-5.43318-3.75194.03278-… [all …]
|
/hal_rpi_pico-latest/test/pico_float_test/ |
D | pico_float_test.c | 363 for(double d = -1.0; d<=1.0; d+=0.25) { in main() local 364 printf("%d\n", (int)d); in main() 367 for(double d = -1.0; d<=1.0; d+=0.25) { in main() local 368 printf("%lld\n", (int64_t)d); in main() 371 for(float d = -0.125; d>=-65536.0*65536.0*65536.0*65536.0*2; d*=2) { in main() local 372 printf("%g %d, %lld, %u, %llu\n", d, (int32_t)d, (int64_t)d, (uint32_t)d, (uint64_t)d); in main() 374 for(float d = 0.125; d<=65536.0*65536.0*65536.0*65536.0*2; d*=2) { in main() local 375 printf("%g %d, %lld, %u, %llu\n", d, (int32_t)d, (int64_t)d, (uint32_t)d, (uint64_t)d); in main() 378 for(double d = -0.125; d>=-65536.0*65536.0*65536.0*65536.0*2; d*=2) { in main() local 379 printf("%g %d, %lld, %u, %llu\n", d, (int32_t)d, (int64_t)d, (uint32_t)d, (uint64_t)d); in main() [all …]
|
D | pico_double_test.c | 415 double d = (double) f0; in main() local 416 … printf("f2d %f %08"PRIx32" -> %g %016"PRIx64"\n", f0, *(uint32_t *) &f0, d, *(uint64_t *) &d); in main()
|
/hal_rpi_pico-latest/tools/ |
D | build_all_headers.py | 47 for d in dirs: 48 if os.path.relpath(os.path.join(root, d), top_dir) in IGNORE_DIRS: 49 prune_dirs.append(d) 50 for d in prune_dirs: 51 dirs.remove(d) 59 for d in sorted(include_dirs): 60 for root, dirs, files in os.walk(d): 63 include_file = os.path.relpath(os.path.join(root, f), d) 64 include_path = os.path.relpath(d, top_dir)
|
D | extract_configs.py | 233 for d in all_defines: 234 if d not in all_config_names and d.startswith("PICO_"): 235 logger.warning("Potential unmarked PICO define {}".format(d)) 238 for val in all_defines[d]: 240 resolved_defines[d] = all_defines[val]
|
/hal_rpi_pico-latest/src/rp2_common/pico_stdio/ |
D | stdio.c | 169 for (stdio_driver_t *d = drivers; d; d = d->next) { in stdio_flush() local 170 if (d->out_flush) d->out_flush(); in stdio_flush() 182 for (stdio_driver_t *d = drivers; d; d = d->next) { in stdio_stack_buffer_flush() local 183 if (!d->out_chars) continue; in stdio_stack_buffer_flush() 184 if (filter && filter != d) continue; in stdio_stack_buffer_flush() 185 stdio_out_chars_crlf(d, buffer->buf, buffer->used); in stdio_stack_buffer_flush()
|
/hal_rpi_pico-latest/test/pico_test/include/pico/ |
D | test.h | 18 #define PICOTEST_MODULE_NAME(n,d) const char *picotest_module=n; const char *picotest_description=d… argument
|
/hal_rpi_pico-latest/src/rp2_common/pico_lwip/tools/ |
D | makefsdata.py | 87 if any(d["data_var"] == f"data_{var_name}" for d in data):
|
/hal_rpi_pico-latest/src/rp2_common/pico_float/include/pico/ |
D | float.h | 80 float fdiv_fast(float n, float d);
|
/hal_rpi_pico-latest/src/rp2_common/pico_double/ |
D | double_math.c | 43 double d; member 50 return tmp.d; in ui642double() 53 static inline ui64 double2ui64(double d) { in double2ui64() argument 55 tmp.d = d; in double2ui64()
|
D | double_v1_rom_shim_rp2040.S | 1141 @ ω+=dω 1175 @ ω-=dω
|
/hal_rpi_pico-latest/test/pico_divider_test/ |
D | pico_divider_test.c | 52 unsigned int odig(unsigned int*pv,unsigned int d,int zf) { in odig() argument 55 while(v>=d) v-=d,c++; in odig()
|
/hal_rpi_pico-latest/src/cmake/ |
D | on_device.cmake | 43 …COMMAND ${CMAKE_OBJDUMP} -d $<TARGET_FILE:${TARGET}> >> ${output_path}$<IF:$<BOOL:$<TARGET_PROPERT…
|
/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/ |
D | LICENSE.txt | 106 (d) If the Work includes a "NOTICE" text file as part of its
|
/hal_rpi_pico-latest/tools/pioasm/ |
D | parser.yy | 436 fprintf(stderr, "%5d | %s\n", l.begin.line, line.c_str());
|
/hal_rpi_pico-latest/src/rp2_common/pico_float/ |
D | float_sci_m33_vfp.S | 282 .word 0x00cd,0x3e637fde @ 00003f43..000040dd
|