Home
last modified time | relevance | path

Searched refs:global_data (Results 1 – 7 of 7) sorted by relevance

/lib/
A Dasm-offsets.c24 (sizeof(struct global_data) + 15) & ~15); in main()
29 DEFINE(GD_SIZE, sizeof(struct global_data)); in main()
31 DEFINE(GD_BD, offsetof(struct global_data, bd)); in main()
33 DEFINE(GD_FLAGS, offsetof(struct global_data, flags)); in main()
36 DEFINE(GD_MALLOC_BASE, offsetof(struct global_data, malloc_base)); in main()
39 DEFINE(GD_RELOCADDR, offsetof(struct global_data, relocaddr)); in main()
41 DEFINE(GD_RELOC_OFF, offsetof(struct global_data, reloc_off)); in main()
43 DEFINE(GD_START_ADDR_SP, offsetof(struct global_data, start_addr_sp)); in main()
45 DEFINE(GD_NEW_GD, offsetof(struct global_data, new_gd)); in main()
48 DEFINE(GD_ENV_ADDR, offsetof(struct global_data, env_addr)); in main()
/lib/mbedtls/external/mbedtls/library/
A Dpsa_crypto_slot_management.c35 static psa_global_data_t global_data; variable
45 initialized = global_data.key_slots_initialized; in psa_get_key_slots_initialized()
115 slot = &global_data.key_slots[key_id - PSA_KEY_ID_VOLATILE_MIN]; in psa_get_and_lock_key_slot_in_memory()
131 slot = &global_data.key_slots[slot_idx]; in psa_get_and_lock_key_slot_in_memory()
159 global_data.key_slots_initialized = 1; in psa_initialize_key_slots()
168 psa_key_slot_t *slot = &global_data.key_slots[slot_idx]; in psa_wipe_all_key_slots()
174 global_data.key_slots_initialized = 0; in psa_wipe_all_key_slots()
191 psa_key_slot_t *slot = &global_data.key_slots[slot_idx]; in psa_reserve_free_key_slot()
230 ((psa_key_id_t) (selected_slot - global_data.key_slots)); in psa_reserve_free_key_slot()
657 const psa_key_slot_t *slot = &global_data.key_slots[slot_idx]; in mbedtls_psa_get_stats()
A Dpsa_crypto.c121 static psa_global_data_t global_data; variable
131 initialized = global_data.rng_state == RNG_SEEDED; in psa_get_initialized()
8031 if (global_data.rng_state != RNG_NOT_INITIALIZED) { in mbedtls_psa_crypto_configure_entropy_sources()
8034 global_data.rng.entropy_init = entropy_init; in mbedtls_psa_crypto_configure_entropy_sources()
8035 global_data.rng.entropy_free = entropy_free; in mbedtls_psa_crypto_configure_entropy_sources()
8072 if (global_data.rng_state != RNG_NOT_INITIALIZED) { in mbedtls_psa_crypto_free()
8073 mbedtls_psa_random_free(&global_data.rng); in mbedtls_psa_crypto_free()
8075 global_data.rng_state = RNG_NOT_INITIALIZED; in mbedtls_psa_crypto_free()
8076 mbedtls_platform_zeroize(&global_data.rng, sizeof(global_data.rng)); in mbedtls_psa_crypto_free()
8195 global_data.rng_state = RNG_INITIALIZED; in mbedtls_psa_crypto_init_subsystem()
[all …]
/lib/efi_client/
A Defi.c55 struct global_data *global_data_ptr = (struct global_data *)~0;
A Defi_app.c82 global_data_ptr = efi_malloc(priv, sizeof(struct global_data), &ret); in setup_memory()
/lib/mbedtls/external/mbedtls/tests/suites/
A Dtest_suite_psa_crypto_init.function147 /* Test getting global_data.rng_state. */
/lib/mbedtls/external/mbedtls/docs/architecture/psa-thread-safety/
A Dpsa-thread-safety.md13 - `global_data` variables in `psa_crypto.c` and `psa_crypto_slot_management.c` are now protected by…
25 …rent-strategy) section describes how thread-safety of key management and `global_data` is achieved.
141 There are two `psa_global_data_t` structs, each with a single instance `global_data`:
190 {mbedtls_svc_key_id_t k : (\exists slot := &global_data.key_slots[i]) [

Completed in 100 milliseconds