/mcuboot-latest/testplan/mynewt/apps/slinky/src/ |
D | main.c | 83 static char *test_conf_get(int argc, char **argv, char *val, int max_len); 84 static int test_conf_set(int argc, char **argv, char *val); 86 static int test_conf_export(void (*export_func)(char *name, char *val), 117 test_conf_set(int argc, char **argv, char *val) in test_conf_set() argument 121 return CONF_VALUE_SET(val, CONF_INT8, test8_shadow); in test_conf_set() 123 return CONF_VALUE_SET(val, CONF_STRING, test_str); in test_conf_set() 138 test_conf_export(void (*func)(char *name, char *val), enum conf_export_tgt tgt) in test_conf_export() argument
|
/mcuboot-latest/ext/mbedtls-asn1/src/ |
D | asn1parse.c | 120 int *val ) in mbedtls_asn1_get_bool() argument 131 *val = ( **p != 0 ) ? 1 : 0; in mbedtls_asn1_get_bool() 139 int tag, int *val ) in asn1_get_tagged_int() argument 171 *val = 0; in asn1_get_tagged_int() 174 *val = ( *val << 8 ) | **p; in asn1_get_tagged_int() 183 int *val ) in mbedtls_asn1_get_int() argument 185 return( asn1_get_tagged_int( p, end, MBEDTLS_ASN1_INTEGER, val) ); in mbedtls_asn1_get_int() 190 int *val ) in mbedtls_asn1_get_enum() argument 192 return( asn1_get_tagged_int( p, end, MBEDTLS_ASN1_ENUMERATED, val) ); in mbedtls_asn1_get_enum() 447 mbedtls_free( cur->val.p ); in mbedtls_asn1_free_named_data()
|
/mcuboot-latest/ext/tinycrypt/lib/source/ |
D | utils.c | 51 void _set(void *to, uint8_t val, unsigned int len) in _set() argument 53 (void)memset(to, val, len); in _set()
|
D | ecc.c | 198 uECC_word_t val = (diff > left[i]); in uECC_vli_sub() local 199 borrow = cond_set(val, borrow, (diff != left[i])); in uECC_vli_sub() 215 uECC_word_t val = (sum < left[i]); in uECC_vli_add() local 216 carry = cond_set(val, carry, (sum != left[i])); in uECC_vli_add()
|
/mcuboot-latest/ext/mbedtls-asn1/include/mbedtls/ |
D | asn1.h | 181 mbedtls_asn1_buf MBEDTLS_PRIVATE(val); /**< The named value. */ 251 int *val ); 272 int *val ); 293 int *val );
|
D | bignum.h | 353 int mbedtls_mpi_set_bit( mbedtls_mpi *X, size_t pos, unsigned char val );
|
/mcuboot-latest/boot/bootutil/include/bootutil/ |
D | fault_injection_hardening.h | 119 volatile int val; member 195 if (x.val != (x.msk ^ _fih_mask)) { in fih_int_validate() 205 return x.val; in fih_int_decode() 251 #define FIH_DECLARE(var, val) \ argument 252 fih_ret FIH_SET(var, val)
|
/mcuboot-latest/ext/tinycrypt/lib/include/tinycrypt/ |
D | utils.h | 70 void _set(void *to, uint8_t val, unsigned int len);
|
/mcuboot-latest/ptest/src/ |
D | main.rs | 244 for val in fset.values { in from_yaml() 245 if !all_tests.contains(&val) { in from_yaml() 246 all_tests.insert(val.clone()); in from_yaml() 249 values: vec![val], in from_yaml() 252 warn!("Duplicate: {:?}: {:?}", env, val); in from_yaml()
|
/mcuboot-latest/boot/bootutil/src/ |
D | bootutil_public.c | 62 .val = { 159 boot_magic_compatible_check(uint8_t tbl_val, uint8_t val) in boot_magic_compatible_check() argument 166 return val != BOOT_MAGIC_GOOD; in boot_magic_compatible_check() 169 return tbl_val == val; in boot_magic_compatible_check()
|
D | bootutil_priv.h | 158 uint8_t val[16]; member 163 #define BOOT_IMG_MAGIC (boot_img_magic.val) 274 int boot_magic_compatible_check(uint8_t tbl_val, uint8_t val);
|
D | loader.c | 960 boot_data_is_set_to(uint8_t val, void *data, size_t len) argument 965 if (val != p[i]) {
|
/mcuboot-latest/boot/espressif/port/ |
D | esp_mcuboot.c | 318 uint8_t *val = (void *)(start_addr + i); in flash_area_erase() local 319 if (*val != 0xff) { in flash_area_erase() 320 BOOT_LOG_ERR("%s: Erase at 0x%x Failed", __func__, (int)val); in flash_area_erase()
|
/mcuboot-latest/scripts/ |
D | assemble.py | 63 label = child.props["label"].val
|
/mcuboot-latest/boot/zcbor/src/ |
D | zcbor_encode.c | 24 static uint8_t log2ceil(size_t val) in log2ceil() argument 26 switch(val) { in log2ceil()
|
/mcuboot-latest/boot/boot_serial/src/ |
D | boot_serial.c | 193 u32toa(char *tgt, uint32_t val) in u32toa() argument 201 while (val / d >= 10) { in u32toa() 205 dgt = val / d; in u32toa() 206 val %= d; in u32toa()
|
/mcuboot-latest/docs/ |
D | imgtool.md | 95 -R, --erased-val [0|0xff] The value that is read back from erased
|