Home
last modified time | relevance | path

Searched defs:str (Results 1 – 20 of 20) sorted by relevance

/mcuboot-latest/boot/zcbor/include/
Dzcbor_decode.h226 #define zcbor_search_key_bstr_lit(state, str) zcbor_search_key_bstr_ptr(state, str, sizeof(str) - 1) argument
227 #define zcbor_search_key_tstr_lit(state, str) zcbor_search_key_tstr_ptr(state, str, sizeof(str) - 1) argument
228 #define zcbor_search_key_bstr_arr(state, str) zcbor_search_key_bstr_ptr(state, str, (sizeof(str))) argument
229 #define zcbor_search_key_tstr_arr(state, str) zcbor_search_key_tstr_ptr(state, str, (sizeof(str))) argument
374 #define zcbor_bstr_expect_lit(state, str) zcbor_bstr_expect_ptr(state, str, sizeof(str) - 1) argument
375 #define zcbor_tstr_expect_lit(state, str) zcbor_tstr_expect_ptr(state, str, sizeof(str) - 1) argument
376 #define zcbor_bstr_expect_arr(state, str) zcbor_bstr_expect_ptr(state, str, sizeof(str)) argument
377 #define zcbor_tstr_expect_arr(state, str) zcbor_tstr_expect_ptr(state, str, sizeof(str)) argument
Dzcbor_encode.h216 #define zcbor_bstr_put_lit(state, str) zcbor_bstr_encode_ptr(state, str, sizeof(str) - 1) argument
217 #define zcbor_tstr_put_lit(state, str) zcbor_tstr_encode_ptr(state, str, sizeof(str) - 1) argument
218 #define zcbor_bstr_put_arr(state, str) zcbor_bstr_encode_ptr(state, str, sizeof(str)) argument
219 #define zcbor_tstr_put_arr(state, str) zcbor_tstr_encode_ptr(state, str, sizeof(str)) argument
/mcuboot-latest/boot/espressif/port/esp32c3/
Dserial_adapter.c75 void console_write(const char *str, int cnt) in console_write()
101 int console_read(char *str, int cnt, int *newline) in console_read()
/mcuboot-latest/boot/espressif/port/esp32c6/
Dserial_adapter.c75 void console_write(const char *str, int cnt) in console_write()
101 int console_read(char *str, int cnt, int *newline) in console_read()
/mcuboot-latest/boot/espressif/port/esp32h2/
Dserial_adapter.c75 void console_write(const char *str, int cnt) in console_write()
101 int console_read(char *str, int cnt, int *newline) in console_read()
/mcuboot-latest/boot/espressif/port/esp32s3/
Dserial_adapter.c78 void console_write(const char *str, int cnt) in console_write()
104 int console_read(char *str, int cnt, int *newline) in console_read()
/mcuboot-latest/scripts/tests/
Dtest_compression.py61 def test_lzma2_compression(tmpdir: Path, key_file: Path, compression: str, compressed: bool):
/mcuboot-latest/boot/espressif/port/esp32/
Dserial_adapter.c68 void console_write(const char *str, int cnt) in console_write()
79 int console_read(char *str, int cnt, int *newline) in console_read()
/mcuboot-latest/boot/espressif/port/esp32c2/
Dserial_adapter.c70 void console_write(const char *str, int cnt) in console_write()
87 int console_read(char *str, int cnt, int *newline) in console_read()
/mcuboot-latest/boot/espressif/port/esp32s2/
Dserial_adapter.c73 void console_write(const char *str, int cnt) in console_write()
90 int console_read(char *str, int cnt, int *newline) in console_read()
/mcuboot-latest/sim/tests/
Dcore.rs190 fn dump_image(image: &Images, name: &str) { in dump_image()
/mcuboot-latest/boot/zephyr/
Dserial_adapter.c78 console_write(const char *str, int cnt) in console_write()
90 console_read(char *str, int str_size, int *newline) in console_read()
/mcuboot-latest/boot/bootutil/include/bootutil/
Dfault_injection_hardening.h280 #define FIH_LABEL(str, lin, cnt) __asm volatile ("FIH_LABEL_" str "_" #lin "_" #cnt "::" ::); argument
282 #define FIH_LABEL(str) do {} while (0) argument
284 #define FIH_LABEL(str) __asm volatile ("FIH_LABEL_" str "_%=:" ::); argument
/mcuboot-latest/boot/mynewt/src/
Dmain.c70 boot_read(char *str, int cnt, int *newline) in boot_read()
/mcuboot-latest/sim/mcuboot-sys/src/
Dc.rs134 pub fn rsa_oaep_encrypt(pubkey: &[u8], seckey: &[u8]) -> Result<[u8; 256], &'static str> { in rsa_oaep_encrypt()
146 pub fn kw_encrypt(kek: &[u8], seckey: &[u8], keylen: u32) -> Result<Vec<u8>, &'static str> { in kw_encrypt()
/mcuboot-latest/boot/zcbor/src/
Dzcbor_encode.c317 bool zcbor_bstr_encode_ptr(zcbor_state_t *state, const char *str, size_t len)
325 bool zcbor_tstr_encode_ptr(zcbor_state_t *state, const char *str, size_t len)
333 bool zcbor_bstr_put_term(zcbor_state_t *state, char const *str, size_t maxlen)
339 bool zcbor_tstr_put_term(zcbor_state_t *state, char const *str, size_t maxlen)
Dzcbor_decode.c958 bool zcbor_search_key_bstr_term(zcbor_state_t *state, char const *str, size_t maxlen)
964 bool zcbor_search_key_tstr_term(zcbor_state_t *state, char const *str, size_t maxlen)
/mcuboot-latest/boot/mynewt/boot_uart/src/
Dboot_uart.c103 boot_uart_read(char *str, int cnt, int *newline) in boot_uart_read()
/mcuboot-latest/ext/tinycrypt/tests/
Dtest_ecc_utils.c131 void string2scalar(unsigned int *scalar, unsigned int num_word32, char *str) in string2scalar()
/mcuboot-latest/sim/src/
Dimage.rs1667 pub fn debug_dump(&self, prefix: &str) { in debug_dump()