Home
last modified time | relevance | path

Searched refs:slot_idx (Results 1 – 4 of 4) sorted by relevance

/third_party/mbedtls/library/
Dpsa_crypto_slot_management.c106 size_t slot_idx; in psa_get_and_lock_key_slot_in_memory() local
129 for( slot_idx = 0; slot_idx < MBEDTLS_PSA_KEY_SLOT_COUNT; slot_idx++ ) 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()
135 status = ( slot_idx < MBEDTLS_PSA_KEY_SLOT_COUNT ) ? in psa_get_and_lock_key_slot_in_memory()
160 size_t slot_idx; in psa_wipe_all_key_slots() local
162 for( slot_idx = 0; slot_idx < MBEDTLS_PSA_KEY_SLOT_COUNT; slot_idx++ ) in psa_wipe_all_key_slots()
164 psa_key_slot_t *slot = &global_data.key_slots[ slot_idx ]; in psa_wipe_all_key_slots()
175 size_t slot_idx; in psa_get_empty_key_slot() local
185 for( slot_idx = 0; slot_idx < MBEDTLS_PSA_KEY_SLOT_COUNT; slot_idx++ ) in psa_get_empty_key_slot()
187 psa_key_slot_t *slot = &global_data.key_slots[ slot_idx ]; in psa_get_empty_key_slot()
[all …]
/third_party/libinput/src/
Devdev-fallback.c281 int slot_idx, in fallback_flush_mt_down() argument
293 slot = &dispatch->mt.slots[slot_idx]; in fallback_flush_mt_down()
311 touch_notify_touch_down(base, time, slot_idx, seat_slot, in fallback_flush_mt_down()
320 int slot_idx, in fallback_flush_mt_motion() argument
331 slot = &dispatch->mt.slots[slot_idx]; in fallback_flush_mt_motion()
342 touch_notify_touch_motion(base, time, slot_idx, seat_slot, in fallback_flush_mt_motion()
351 int slot_idx, in fallback_flush_mt_up() argument
362 slot = &dispatch->mt.slots[slot_idx]; in fallback_flush_mt_up()
371 touch_notify_touch_up(base, time, slot_idx, seat_slot); in fallback_flush_mt_up()
379 int slot_idx, in fallback_flush_mt_cancel() argument
[all …]
/third_party/mesa3d/src/gallium/frontends/nine/
Dnine_shader.c596 unsigned slot_idx = tx->info->const_i_base + idx; in nine_integer_constant_src() local
598 slot_idx = tx->slot_map[slot_idx]; in nine_integer_constant_src()
599 src = ureg_src_register(TGSI_FILE_CONSTANT, slot_idx); in nine_integer_constant_src()
601 tx->slots_used[slot_idx] = TRUE; in nine_integer_constant_src()
603 if (tx->num_slots < (slot_idx + 1)) in nine_integer_constant_src()
604 tx->num_slots = slot_idx + 1; in nine_integer_constant_src()
624 unsigned slot_idx = tx->info->const_b_base + r; in nine_boolean_constant_src() local
626 slot_idx = tx->slot_map[slot_idx]; in nine_boolean_constant_src()
627 src = ureg_src_register(TGSI_FILE_CONSTANT, slot_idx); in nine_boolean_constant_src()
629 tx->slots_used[slot_idx] = TRUE; in nine_boolean_constant_src()
[all …]
/third_party/grpc/src/core/lib/surface/
Dcall.cc1146 size_t slot_idx = batch_slot_for_op(ops[0].op); in reuse_or_allocate_batch_control() local
1147 batch_control** pslot = &call->active_batches[slot_idx]; in reuse_or_allocate_batch_control()