Home
last modified time | relevance | path

Searched refs:overflow_size (Results 1 – 22 of 22) sorted by relevance

/external/grpc-grpc/test/core/tsi/alts/frame_protector/
Dalts_counter_test.cc36 size_t overflow_size) { in alts_counter_test_input_sanity_check() argument
43 alts_counter_create(true, 0, overflow_size, &ctr, &error_details); in alts_counter_test_input_sanity_check()
57 status = alts_counter_create(true, counter_size, overflow_size, nullptr, in alts_counter_test_input_sanity_check()
64 status = alts_counter_create(true, counter_size, overflow_size, &ctr, in alts_counter_test_input_sanity_check()
87 size_t overflow_size) { in alts_counter_test_overflow_full_range() argument
91 is_client, counter_size, overflow_size, &ctr, &error_details); in alts_counter_test_overflow_full_range()
112 int iterations = 1 << (overflow_size * 8); in alts_counter_test_overflow_full_range()
133 size_t overflow_size) { in alts_counter_test_overflow_single_increment() argument
137 is_client, counter_size, overflow_size, &ctr, &error_details); in alts_counter_test_overflow_single_increment()
141 memset(expected, 0xFF, overflow_size); in alts_counter_test_overflow_single_increment()
Dalts_crypter_test.cc367 size_t overflow_size = rekey ? 8 : 5; in create_random_alts_seal_crypter() local
369 overflow_size, client_seal, nullptr); in create_random_alts_seal_crypter()
371 overflow_size, client_unseal, nullptr); in create_random_alts_seal_crypter()
373 overflow_size, server_seal, nullptr); in create_random_alts_seal_crypter()
375 overflow_size, server_unseal, nullptr); in create_random_alts_seal_crypter()
/external/grpc-grpc/src/core/tsi/alts/frame_protector/
Dalts_counter.cc35 size_t overflow_size, in alts_counter_create() argument
44 if (overflow_size == 0 || overflow_size >= counter_size) { in alts_counter_create()
57 (*crypter_counter)->overflow_size = overflow_size; in alts_counter_create()
82 for (; i < crypter_counter->overflow_size; i++) { in alts_counter_increment()
91 if (i == crypter_counter->overflow_size) { in alts_counter_increment()
Dalts_counter.h32 size_t overflow_size; member
54 size_t overflow_size,
Dalts_crypter.h216 size_t overflow_size,
242 size_t overflow_size,
Dalts_unseal_privacy_integrity_crypter.cc87 size_t overflow_size, in alts_unseal_crypter_create() argument
96 alts_crypter_create_common(gc, is_client, overflow_size, error_details); in alts_unseal_crypter_create()
Dalts_record_protocol_crypter_common.cc91 gsec_aead_crypter* crypter, bool is_client, size_t overflow_size, in alts_crypter_create_common() argument
103 status = alts_counter_create(is_client, counter_size, overflow_size, in alts_crypter_create_common()
Dalts_seal_privacy_integrity_crypter.cc89 size_t overflow_size, in alts_seal_crypter_create() argument
98 alts_crypter_create_common(gc, !is_client, overflow_size, error_details); in alts_seal_crypter_create()
Dalts_frame_protector.cc348 size_t overflow_size = is_rekey ? kAltsRecordProtocolRekeyFrameLimit in create_alts_crypters() local
350 status = alts_seal_crypter_create(aead_crypter_seal, is_client, overflow_size, in create_alts_crypters()
356 alts_unseal_crypter_create(aead_crypter_unseal, is_client, overflow_size, in create_alts_crypters()
Dalts_record_protocol_crypter_common.h102 gsec_aead_crypter* crypter, bool is_client, size_t overflow_size,
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
Dpb_bufmgr_debug.c76 pb_size overflow_size; member
95 pb_size overflow_size; member
166 buf->overflow_size); in pb_debug_buffer_fill()
200 buf->overflow_size, in pb_debug_buffer_check()
207 max_ofs == buf->overflow_size - 1 ? "+" : ""); in pb_debug_buffer_check()
221 buf->overflow_size); in pb_debug_buffer_check()
379 real_size = mgr->underflow_size + size + mgr->overflow_size; in pb_debug_manager_create_buffer()
413 buf->overflow_size = buf->buffer->size - buf->underflow_size - size; in pb_debug_manager_create_buffer()
459 pb_size underflow_size, pb_size overflow_size) in pb_debug_manager_create() argument
475 mgr->overflow_size = overflow_size; in pb_debug_manager_create()
[all …]
Dpb_bufmgr.h219 pb_size underflow_size, pb_size overflow_size);
/external/grpc-grpc/src/core/tsi/alts/zero_copy_frame_protector/
Dalts_grpc_privacy_integrity_record_protocol.cc124 gsec_aead_crypter* crypter, size_t overflow_size, bool is_client, in alts_grpc_privacy_integrity_record_protocol_create() argument
135 alts_grpc_record_protocol_init(impl, crypter, overflow_size, is_client, in alts_grpc_privacy_integrity_record_protocol_create()
Dalts_grpc_record_protocol_common.cc90 size_t overflow_size, bool is_client, in alts_grpc_record_protocol_init() argument
101 crypter, overflow_size, is_client, is_integrity_only, is_protect, in alts_grpc_record_protocol_init()
Dalts_grpc_privacy_integrity_record_protocol.h45 gsec_aead_crypter* crypter, size_t overflow_size, bool is_client,
Dalts_grpc_integrity_only_record_protocol.h50 gsec_aead_crypter* crypter, size_t overflow_size, bool is_client,
Dalts_grpc_integrity_only_record_protocol.cc199 gsec_aead_crypter* crypter, size_t overflow_size, bool is_client, in alts_grpc_integrity_only_record_protocol_create() argument
211 &impl->base, crypter, overflow_size, is_client, in alts_grpc_integrity_only_record_protocol_create()
Dalts_grpc_record_protocol_common.h95 size_t overflow_size, bool is_client,
Dalts_iovec_record_protocol.h187 gsec_aead_crypter* crypter, size_t overflow_size, bool is_client,
Dalts_iovec_record_protocol.cc428 gsec_aead_crypter* crypter, size_t overflow_size, bool is_client, in alts_iovec_record_protocol_create() argument
449 overflow_size, &impl->ctr, error_details); in alts_iovec_record_protocol_create()
/external/grpc-grpc/test/core/tsi/alts/zero_copy_frame_protector/
Dalts_iovec_record_protocol_test.cc98 size_t overflow_size = 8; in alts_iovec_record_protocol_test_fixture_create() local
108 crypter, overflow_size, /*is_client=*/true, integrity_only, in alts_iovec_record_protocol_test_fixture_create()
116 crypter, overflow_size, /*is_client=*/true, integrity_only, in alts_iovec_record_protocol_test_fixture_create()
124 crypter, overflow_size, /*is_client=*/false, integrity_only, in alts_iovec_record_protocol_test_fixture_create()
132 crypter, overflow_size, /*is_client=*/false, integrity_only, in alts_iovec_record_protocol_test_fixture_create()
/external/vixl/test/aarch64/
Dtest-assembler-aarch64.cc26709 const int overflow_size = in TEST() local
26741 for (unsigned i = 0; i < overflow_size / kInstructionSize; ++i) { in TEST()