Home
last modified time | relevance | path

Searched refs:block_len (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/BLAKE3/
H A Dblake3_dispatch.c139 uint8_t block_len, uint64_t counter, in blake3_compress_in_place() argument
146 blake3_compress_in_place_avx512(cv, block, block_len, counter, flags); in blake3_compress_in_place()
152 blake3_compress_in_place_sse41(cv, block, block_len, counter, flags); in blake3_compress_in_place()
158 blake3_compress_in_place_sse2(cv, block, block_len, counter, flags); in blake3_compress_in_place()
163 blake3_compress_in_place_portable(cv, block, block_len, counter, flags); in blake3_compress_in_place()
168 uint8_t block_len, uint64_t counter, uint8_t flags, in blake3_compress_xof() argument
175 blake3_compress_xof_avx512(cv, block, block_len, counter, flags, out); in blake3_compress_xof()
181 blake3_compress_xof_sse41(cv, block, block_len, counter, flags, out); in blake3_compress_xof()
187 blake3_compress_xof_sse2(cv, block, block_len, counter, flags, out); in blake3_compress_xof()
192 blake3_compress_xof_portable(cv, block, block_len, counter, flags, out); in blake3_compress_xof()
H A Dblake3_impl.h196 uint8_t block_len, uint64_t counter,
202 uint8_t block_len, uint64_t counter, uint8_t flags,
219 uint8_t block_len, uint64_t counter,
225 uint8_t block_len, uint64_t counter,
240 uint8_t block_len, uint64_t counter,
245 uint8_t block_len, uint64_t counter,
258 uint8_t block_len, uint64_t counter,
263 uint8_t block_len, uint64_t counter,
284 uint8_t block_len, uint64_t counter,
290 uint8_t block_len, uint64_t counter,
H A Dblake3_portable.c39 uint8_t block_len, uint64_t counter, uint8_t flags) { in compress_pre() argument
72 state[14] = (uint32_t)block_len; in compress_pre()
86 uint8_t block_len, uint64_t counter, in blake3_compress_in_place_portable() argument
89 compress_pre(state, cv, block, block_len, counter, flags); in blake3_compress_in_place_portable()
102 uint8_t block_len, uint64_t counter, in blake3_compress_xof_portable() argument
105 compress_pre(state, cv, block, block_len, counter, flags); in blake3_compress_xof_portable()
H A Dblake3.c65 uint8_t block_len; member
71 uint8_t block_len, uint64_t counter, in make_output() argument
76 ret.block_len = block_len; in make_output()
91 blake3_compress_in_place(cv_words, self->block, self->block_len, in output_chaining_value()
102 blake3_compress_xof(self->input_cv, self->block, self->block_len, in output_root_bytes()
H A Dblake3_sse41.c85 uint8_t block_len, uint64_t counter, uint8_t flags) { in compress_pre() argument
90 (uint32_t)block_len, (uint32_t)flags); in compress_pre()
256 uint8_t block_len, uint64_t counter, in blake3_compress_in_place_sse41() argument
259 compress_pre(rows, cv, block, block_len, counter, flags); in blake3_compress_in_place_sse41()
266 uint8_t block_len, uint64_t counter, in blake3_compress_xof_sse41() argument
269 compress_pre(rows, cv, block, block_len, counter, flags); in blake3_compress_xof_sse41()
H A Dblake3_sse2.c91 uint8_t block_len, uint64_t counter, uint8_t flags) { in compress_pre() argument
96 (uint32_t)block_len, (uint32_t)flags); in compress_pre()
262 uint8_t block_len, uint64_t counter, in blake3_compress_in_place_sse2() argument
265 compress_pre(rows, cv, block, block_len, counter, flags); in blake3_compress_in_place_sse2()
272 uint8_t block_len, uint64_t counter, in blake3_compress_xof_sse2() argument
275 compress_pre(rows, cv, block, block_len, counter, flags); in blake3_compress_xof_sse2()
H A Dblake3_avx512.c118 uint8_t block_len, uint64_t counter, uint8_t flags) { in compress_pre() argument
123 (uint32_t)block_len, (uint32_t)flags); in compress_pre()
289 uint8_t block_len, uint64_t counter, in blake3_compress_xof_avx512() argument
292 compress_pre(rows, cv, block, block_len, counter, flags); in blake3_compress_xof_avx512()
301 uint8_t block_len, uint64_t counter, in blake3_compress_in_place_avx512() argument
304 compress_pre(rows, cv, block, block_len, counter, flags); in blake3_compress_in_place_avx512()
H A Dblake3_neon.c303 uint8_t block_len, uint64_t counter,
/llvm-project-15.0.7/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp928 size_t block_len = (size_t)m_cfi_data.GetULEB128(&offset); in HandleCommonDwarfOpcode() local
930 static_cast<const uint8_t *>(m_cfi_data.GetData(&offset, block_len)); in HandleCommonDwarfOpcode()
931 row.GetCFAValue().SetIsDWARFExpression(block_data, block_len); in HandleCommonDwarfOpcode()
945 uint32_t block_len = (uint32_t)m_cfi_data.GetULEB128(&offset); in HandleCommonDwarfOpcode() local
947 static_cast<const uint8_t *>(m_cfi_data.GetData(&offset, block_len)); in HandleCommonDwarfOpcode()
949 reg_location.SetAtDWARFExpression(block_data, block_len); in HandleCommonDwarfOpcode()
1001 uint32_t block_len = (uint32_t)m_cfi_data.GetULEB128(&offset); in HandleCommonDwarfOpcode() local
1003 (const uint8_t *)m_cfi_data.GetData(&offset, block_len); in HandleCommonDwarfOpcode()
1004 reg_location.SetIsDWARFExpression(block_data, block_len); in HandleCommonDwarfOpcode()
/llvm-project-15.0.7/lldb/source/Expression/
H A DDWARFExpression.cpp323 uint64_t block_len = data.Skip_LEB128(&offset); in GetOpcodeDataSize() local
324 offset += block_len; in GetOpcodeDataSize()