/Zephyr-latest/drivers/sensor/bosch/bmi160/ |
D | bmi160.c | 136 uint16_t *word) in bmi160_word_read() argument 140 rc = bmi160_read(dev, reg_addr, word, 2); in bmi160_word_read() 145 *word = sys_le16_to_cpu(*word); in bmi160_word_read() 165 uint16_t word) in bmi160_word_write() argument 168 (uint8_t)(word & 0xff), in bmi160_word_write() 169 (uint8_t)(word >> 8) in bmi160_word_write()
|
/Zephyr-latest/arch/arm/core/cortex_m/ |
D | relay_vector_table.ld | 16 * of the vector table is 32-word aligned.
|
/Zephyr-latest/boards/nxp/mimxrt1060_evk/ |
D | mimxrt1060_evk_mimxrt1062_hyperflash.dts | 32 word-addressable;
|
/Zephyr-latest/boards/nxp/mimxrt1050_evk/ |
D | mimxrt1050_evk_mimxrt1052_hyperflash.dts | 34 word-addressable;
|
/Zephyr-latest/scripts/kconfig/ |
D | lint.py | 299 cmd_s = " ".join(shlex.quote(word) for word in cmd)
|
/Zephyr-latest/drivers/bluetooth/hci/ |
D | hci_da1469x.c | 412 uint32_t word; in rng_thread() local 422 word = sys_rand32_get(); in rng_thread() 423 cmac_rand_fill(&word, 1); in rng_thread()
|
/Zephyr-latest/doc/kernel/services/data_passing/ |
D | lifos.rst | 27 LIFO data items must be aligned on a word boundary, as the kernel reserves 28 the first word of an item for use as a pointer to the next data item in the 93 void *LIFO_reserved; /* 1st word reserved for use by LIFO */
|
D | fifos.rst | 27 FIFO data items must be aligned on a word boundary, as the kernel reserves 28 the first word of an item for use as a pointer to the next data item in 102 void *fifo_reserved; /* 1st word reserved for use by FIFO */
|
/Zephyr-latest/doc/kernel/data_structures/ |
D | mpsc_pbuf.rst | 36 :c:macro:`MPSC_PBUF_HDR` and remaining bits in the first word can be application 125 * 32 bit word packet 126 * 32 bit word with pointer packet
|
/Zephyr-latest/boards/makerbase/mks_canable_v20/ |
D | mks_canable_v20.dts | 33 label = "green-word D3";
|
/Zephyr-latest/samples/drivers/spi_bitbang/ |
D | README.rst | 11 be useful for devices which use a non multiple of 8 word size, for example some
|
/Zephyr-latest/drivers/serial/ |
D | Kconfig.ns16550 | 65 bool "NS16550 only allows word access" 68 16550 (DesignWare UART) only allows word access, byte access will raise
|
/Zephyr-latest/doc/templates/ |
D | sample.tmpl | 5 Short text description of the sample. It is recommended to word this as if you were completing
|
/Zephyr-latest/cmake/compiler/gcc/ |
D | target_arm.cmake | 51 # (regexps are supported and match whole word)
|
/Zephyr-latest/drivers/sensor/bosch/bmi08x/ |
D | bmi08x_gyro.c | 116 int bmi08x_gyro_word_write(const struct device *dev, uint8_t reg_addr, uint16_t word) in bmi08x_gyro_word_write() argument 118 uint8_t tx_word[2] = {(uint8_t)(word & 0xff), (uint8_t)(word >> 8)}; in bmi08x_gyro_word_write()
|
D | bmi08x.h | 558 int bmi08x_accel_word_write(const struct device *dev, uint8_t reg_addr, uint16_t word); 570 int bmi08x_gyro_word_write(const struct device *dev, uint8_t reg_addr, uint16_t word);
|
/Zephyr-latest/subsys/debug/ |
D | mipi_stp_decoder.c | 580 static uint32_t swap32(uint32_t word) in swap32() argument 582 word = __builtin_bswap32(word); in swap32() 583 uint32_t d1 = (word & 0xf0f0f0f0) >> 4; in swap32() 584 uint32_t d2 = (word & 0x0f0f0f0f) << 4; in swap32()
|
/Zephyr-latest/samples/subsys/llext/shell_loader/ |
D | README.rst | 131 28: 00000004 .word 0x00000004 133 2c: 00000000 .word 0x00000000 135 30: 00000014 .word 0x00000014
|
/Zephyr-latest/arch/riscv/ |
D | Kconfig.isa | 136 addresses that index into arrays of basic types (halfword, word, 137 doubleword) using both unsigned word-sized and XLEN-sized indices: a
|
/Zephyr-latest/drivers/mipi_dbi/ |
D | mipi_dbi_nxp_lcdic.c | 338 uint32_t word = 0U; in mipi_dbi_lcdic_get_unaligned() local 343 word <<= 8U; in mipi_dbi_lcdic_get_unaligned() 344 word |= bytes[aligned_len + unaligned_len]; in mipi_dbi_lcdic_get_unaligned() 346 return word; in mipi_dbi_lcdic_get_unaligned()
|
/Zephyr-latest/soc/sensry/ganymed/sy1xx/common/ |
D | crt0.S | 18 .word 0xAA551234
|
/Zephyr-latest/include/zephyr/linker/common-rom/ |
D | common-rom-init.ld | 8 * hence symbol __CTOR_LIST__ must be aligned on word
|
/Zephyr-latest/samples/sensor/jc42/ |
D | README.rst | 26 C and +100 |deg| C to a digital word with |plusminus| 0.5 |deg| C (max.)
|
/Zephyr-latest/drivers/spi/spi_nxp_lpspi/ |
D | spi_nxp_lpspi.c | 39 uint32_t word = LPSPI_ReadData(base); in lpspi_rx_word_write_bytes() local 47 buf[i] = (uint8_t)(word >> (BITS_PER_BYTE * i)); in lpspi_rx_word_write_bytes()
|
/Zephyr-latest/scripts/ |
D | checkpatch.pl | 189 foreach my $word (@words) { 190 last if ($word =~ m/^#/); 191 push (@conf_args, $word); 287 foreach my $word (@array) { 288 $word =~ s/\s*\n?$//g; 289 $word =~ s/^\s*//g; 290 $word =~ s/\s+/ /g; 291 $word =~ tr/[a-z]/[A-Z]/; 293 next if ($word =~ m/^\s*#/); 294 next if ($word =~ m/^\s*$/); [all …]
|