/hal_rpi_pico-latest/test/pico_test/include/pico/test/ |
D | xrand.h | 41 static inline uint64_t xrand_rotl(const uint64_t x, int k) { in xrand_rotl() argument 42 return (x << k) | (x >> (64 - k)); in xrand_rotl()
|
/hal_rpi_pico-latest/test/pico_float_test/ |
D | hazard3_test_gen.c | 35 static inline uint64_t xr256_rotl(const uint64_t x, int k) { in xr256_rotl() argument 36 return (x << k) | (x >> (64 - k)); in xr256_rotl()
|
/hal_rpi_pico-latest/tools/ |
D | compare_build_systems.py | 230 for k in both.keys(): 232 bazel_options.get(k, None), 233 cmake_options.get(k, None),
|
D | extract_build_defines.py | 169 k, v = (i.strip() for i in item.split('=')) 172 config_attrs[k] = v.replace('\0', ',') 173 all_attrs.add(k)
|
D | extract_cmake_configs.py | 169 k, v = (i.strip() for i in item.split('=')) 172 config_attrs[k] = v.replace('\0', ',') 173 all_attrs.add(k)
|
D | extract_configs.py | 188 k, v = (i.strip() for i in item.split('=')) 191 config_attrs[k] = v.replace('\0', ',') 192 all_attrs.add(k)
|
/hal_rpi_pico-latest/src/rp2_common/pico_rand/ |
D | rand.c | 87 static inline uint64_t rotl(const uint64_t x, int k) { in rotl() argument 88 return (x << k) | (x >> (64 - k)); in rotl()
|
/hal_rpi_pico-latest/src/rp2_common/pico_double/ |
D | double_fma_dcp.S | 129 and r8,r7,#0x1f @ k=shift mod 32 131 lsl r12,r12,r8 @ 2^k 132 umull r5,r6,r5,r12 @ shift up high word: r4:r5:r6 is now a_lo + 2^k a_hi 133 sub r12,#1 @ 2^k-1 134 …w word, adding in: r4:r5:r6 is now (a_lo + 2^k a_hi) + (2^k-1) a_lo = 2^k (a_lo + a_hi) = a shifte… 313 and r6,r7,#0x1f @ k=shift mod 32 316 lsl r12,r12,r6 @ 2^k 320 @ r4:r5:r6: a shifted up by k=shift mod 32 418 clz r6,r3 @ k=amount of final shift 421 lsls r7,r7,r6 @ r7=2^k [all …]
|
D | double_sci_m33.S | 65 …asrs r8,r2,#5 @ k=e/32, k<=32 for double with e offset <32; with e offsets up to 12+… 1054 add r4,r5,r4,lsl#1 @ 4097+2k
|
D | double_v1_rom_shim_rp2040.S | 69 .macro mdump k 75 movs r0,#\k
|
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/rp2040/ |
D | memmap_no_flash.ld | 26 RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 256k 27 SCRATCH_X(rwx) : ORIGIN = 0x20040000, LENGTH = 4k 28 SCRATCH_Y(rwx) : ORIGIN = 0x20041000, LENGTH = 4k
|
D | memmap_blocked_ram.ld | 27 RAM(rwx) : ORIGIN = 0x21000000, LENGTH = 256k 28 SCRATCH_X(rwx) : ORIGIN = 0x20040000, LENGTH = 4k 29 SCRATCH_Y(rwx) : ORIGIN = 0x20041000, LENGTH = 4k
|
D | memmap_copy_to_ram.ld | 27 RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 256k 28 SCRATCH_X(rwx) : ORIGIN = 0x20040000, LENGTH = 4k 29 SCRATCH_Y(rwx) : ORIGIN = 0x20041000, LENGTH = 4k
|
D | memmap_default.ld | 27 RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 256k 28 SCRATCH_X(rwx) : ORIGIN = 0x20040000, LENGTH = 4k 29 SCRATCH_Y(rwx) : ORIGIN = 0x20041000, LENGTH = 4k
|
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/rp2350/ |
D | memmap_no_flash.ld | 26 RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 512k 27 SCRATCH_X(rwx) : ORIGIN = 0x20080000, LENGTH = 4k 28 SCRATCH_Y(rwx) : ORIGIN = 0x20081000, LENGTH = 4k
|
D | memmap_copy_to_ram.ld | 27 RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 512k 28 SCRATCH_X(rwx) : ORIGIN = 0x20080000, LENGTH = 4k 29 SCRATCH_Y(rwx) : ORIGIN = 0x20081000, LENGTH = 4k
|
D | memmap_default.ld | 27 RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 512k 28 SCRATCH_X(rwx) : ORIGIN = 0x20080000, LENGTH = 4k 29 SCRATCH_Y(rwx) : ORIGIN = 0x20081000, LENGTH = 4k
|
/hal_rpi_pico-latest/src/rp2_common/pico_float/ |
D | float_sci_m33.S | 48 asrs r3,r1,#5 @ k=e/32, k<=5 for e offsets up to 9+32
|
D | float_sci_m33_vfp.S | 48 asrs r3,r1,#5 @ k=e/32, k<=5 for e offsets up to 9+32
|