/mcuboot-3.6.0/boot/zcbor/src/ |
D | zcbor_encode.c | 95 const void *const input, size_t max_result_len) in value_encode() argument 99 size_t result_len = zcbor_header_len_ptr(input, max_result_len) - 1; in value_encode() 100 const void *result = input; in value_encode() 103 result = (uint8_t *)input + max_result_len - (result_len ? result_len : 1); in value_encode() 116 const uint8_t *input = input_int; local 133 input = input_buf; 138 if (!value_encode(state, major_type, input, int_size)) { 156 bool zcbor_int32_encode(zcbor_state_t *state, const int32_t *input) argument 158 return zcbor_int_encode(state, input, sizeof(*input)); 162 bool zcbor_int64_encode(zcbor_state_t *state, const int64_t *input) argument [all …]
|
D | zcbor_common.c | 342 float zcbor_float16_to_32(uint16_t input) in zcbor_float16_to_32() argument 344 uint32_t sign = input >> F16_SIGN_OFFS; in zcbor_float16_to_32() 345 uint32_t expo = (input >> F16_EXPO_OFFS) & F16_EXPO_MSK; in zcbor_float16_to_32() 346 uint32_t mantissa = input & F16_MANTISSA_MSK; in zcbor_float16_to_32() 366 uint16_t zcbor_float32_to_16(float input) in zcbor_float32_to_16() argument 370 memcpy(&value32, &input, sizeof(value32)); in zcbor_float32_to_16()
|
/mcuboot-3.6.0/boot/zcbor/include/ |
D | zcbor_encode.h | 67 bool zcbor_int32_put(zcbor_state_t *state, int32_t input); /* pint/nint */ 68 bool zcbor_int64_put(zcbor_state_t *state, int64_t input); /* pint/nint */ 69 bool zcbor_uint32_put(zcbor_state_t *state, uint32_t input); /* pint */ 70 bool zcbor_uint64_put(zcbor_state_t *state, uint64_t input); /* pint */ 71 bool zcbor_size_put(zcbor_state_t *state, size_t input); /* pint */ 73 bool zcbor_simple_put(zcbor_state_t *state, uint8_t input); /* CBOR simple value */ 74 bool zcbor_bool_put(zcbor_state_t *state, bool input); /* boolean CBOR simple value */ 77 bool zcbor_float16_put(zcbor_state_t *state, float input); /* IEEE754 float16 */ 78 bool zcbor_float16_bytes_put(zcbor_state_t *state, uint16_t input); /* IEEE754 float16 raw bytes */ 79 bool zcbor_float32_put(zcbor_state_t *state, float input); /* IEEE754 float32 */ [all …]
|
D | zcbor_common.h | 470 float zcbor_float16_to_32(uint16_t input); 478 uint16_t zcbor_float32_to_16(float input);
|
/mcuboot-3.6.0/ext/mbedtls-asn1/include/mbedtls/ |
D | md.h | 268 int mbedtls_md_update( mbedtls_md_context_t *ctx, const unsigned char *input, size_t ilen ); 308 int mbedtls_md( const mbedtls_md_info_t *md_info, const unsigned char *input, size_t ilen, 373 int mbedtls_md_hmac_update( mbedtls_md_context_t *ctx, const unsigned char *input, 436 const unsigned char *input, size_t ilen,
|
D | rsa.h | 526 const unsigned char *input, 561 const unsigned char *input, 591 const unsigned char *input, 618 const unsigned char *input, 653 const unsigned char *input, 691 const unsigned char *input, 728 const unsigned char *input, 770 const unsigned char *input,
|
D | pk.h | 231 const unsigned char *input, unsigned char *output, 573 const unsigned char *input, size_t ilen, 596 const unsigned char *input, size_t ilen,
|
/mcuboot-3.6.0/boot/bootutil/include/bootutil/crypto/ |
D | rsa.h | 88 const uint8_t *input, in bootutil_rsa_oaep_decrypt() argument 108 input, TLV_ENC_RSA_SZ, NULL, 0, in bootutil_rsa_oaep_decrypt() 203 const uint8_t *input, 210 NULL, 0, olen, input, output, output_max_len); 213 NULL, 0, olen, input, output, output_max_len); 344 static inline int bootutil_rsa_public(bootutil_rsa_context *ctx, const uint8_t *input, uint8_t *out… 346 return mbedtls_rsa_public(ctx, input, output);
|
/mcuboot-3.6.0/boot/zephyr/ |
D | Kconfig.serial_recovery | 76 int "Maximum input line length" 79 Maximum length of input serial port buffer (SMP serial transport uses
|
/mcuboot-3.6.0/ext/tinycrypt/lib/include/tinycrypt/ |
D | ecc.h | 454 void uECC_vli_modInv(uECC_word_t *result, const uECC_word_t *input,
|
/mcuboot-3.6.0/docs/ |
D | index.md | 65 give your input, visit [MCUboot GitHub
|
D | readme-espressif.md | 774 # GPIO input type (0 for Pull-down, 1 for Pull-up) 818 # GPIO input type (0 for Pull-down, 1 for Pull-up)
|
D | release-notes.md | 371 - imgtool accepts .hex formatted input
|
/mcuboot-3.6.0/ext/tinycrypt/lib/source/ |
D | ecc.c | 408 void uECC_vli_modInv(uECC_word_t *result, const uECC_word_t *input, in uECC_vli_modInv() argument 415 if (uECC_vli_isZero(input, num_words)) { in uECC_vli_modInv() 420 uECC_vli_set(a, input, num_words); in uECC_vli_modInv()
|
/mcuboot-3.6.0/ |
D | README.md | 59 give your input, visit [MCUboot GitHub
|
/mcuboot-3.6.0/boot/cypress/platforms/PSOC_062_2M/CM0P/GCC_ARM/ |
D | cy8c6xxa_cm0plus.ld | 8 * input files should be mapped into the output file, and to control the memory
|
/mcuboot-3.6.0/boot/cypress/BlinkyApp/linker/ |
D | BlinkyApp_template.ld | 8 * input files should be mapped into the output file, and to control the memory
|
/mcuboot-3.6.0/boot/cypress/MCUBootApp/ |
D | MCUBootApp.ld | 8 * input files should be mapped into the output file, and to control the memory
|
/mcuboot-3.6.0/boot/cypress/platforms/PSOC_062_2M/CM4/GCC_ARM/ |
D | cy8c6xxa_cm4_dual.ld | 8 * input files should be mapped into the output file, and to control the memory
|