Home
last modified time | relevance | path

Searched refs:input_bytes (Results 1 – 9 of 9) sorted by relevance

/external/brotli/c/enc/
Dcompress_fragment_two_pass.c352 uint64_t input_bytes; in CreateCommands() local
356 input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 3); in CreateCommands()
357 cur_hash = HashBytesAtOffset(input_bytes, 3, shift, min_match); in CreateCommands()
358 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match); in CreateCommands()
360 prev_hash = HashBytesAtOffset(input_bytes, 1, shift, min_match); in CreateCommands()
362 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match); in CreateCommands()
365 input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 5); in CreateCommands()
366 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match); in CreateCommands()
368 prev_hash = HashBytesAtOffset(input_bytes, 1, shift, min_match); in CreateCommands()
370 prev_hash = HashBytesAtOffset(input_bytes, 2, shift, min_match); in CreateCommands()
[all …]
Dcompress_fragment.c605 uint64_t input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 3); in BrotliCompressFragmentFastImpl() local
606 uint32_t prev_hash = HashBytesAtOffset(input_bytes, 0, shift); in BrotliCompressFragmentFastImpl()
607 uint32_t cur_hash = HashBytesAtOffset(input_bytes, 3, shift); in BrotliCompressFragmentFastImpl()
609 prev_hash = HashBytesAtOffset(input_bytes, 1, shift); in BrotliCompressFragmentFastImpl()
611 prev_hash = HashBytesAtOffset(input_bytes, 2, shift); in BrotliCompressFragmentFastImpl()
642 uint64_t input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 3); in BrotliCompressFragmentFastImpl() local
643 uint32_t prev_hash = HashBytesAtOffset(input_bytes, 0, shift); in BrotliCompressFragmentFastImpl()
644 uint32_t cur_hash = HashBytesAtOffset(input_bytes, 3, shift); in BrotliCompressFragmentFastImpl()
646 prev_hash = HashBytesAtOffset(input_bytes, 1, shift); in BrotliCompressFragmentFastImpl()
648 prev_hash = HashBytesAtOffset(input_bytes, 2, shift); in BrotliCompressFragmentFastImpl()
/external/tensorflow/tensorflow/lite/tools/benchmark/
Dbenchmark_test.cc83 std::vector<char> input_bytes; in TEST() local
84 input_bytes.reserve(input_tensor->bytes); in TEST()
86 input_bytes.push_back(input_tensor->data.raw_const[i]); in TEST()
91 EXPECT_EQ(input_bytes.size(), input_tensor->bytes); in TEST()
94 if (input_bytes[i] != input_tensor->data.raw_const[i]) { in TEST()
Dbenchmark_model.h40 BenchmarkResults(int64_t startup_latency_us, uint64_t input_bytes, in BenchmarkResults() argument
44 input_bytes_(input_bytes), in BenchmarkResults()
53 uint64_t input_bytes() const { return input_bytes_; } in input_bytes() function
Dbenchmark_model.cc164 uint64_t input_bytes = ComputeInputBytes(); in Run() local
173 {startup_latency_us, input_bytes, warmup_time_us, inference_time_us}); in Run()
/external/eigen/unsupported/test/
Dcxx11_tensor_cuda.cu327 std::size_t input_bytes = input.size() * sizeof(float); in test_cuda_convolution_1d() local
334 cudaMalloc((void**)(&d_input), input_bytes); in test_cuda_convolution_1d()
338 cudaMemcpy(d_input, input.data(), input_bytes, cudaMemcpyHostToDevice); in test_cuda_convolution_1d()
380 std::size_t input_bytes = input.size() * sizeof(float); in test_cuda_convolution_inner_dim_col_major_1d() local
387 cudaMalloc((void**)(&d_input), input_bytes); in test_cuda_convolution_inner_dim_col_major_1d()
391 cudaMemcpy(d_input, input.data(), input_bytes, cudaMemcpyHostToDevice); in test_cuda_convolution_inner_dim_col_major_1d()
433 std::size_t input_bytes = input.size() * sizeof(float); in test_cuda_convolution_inner_dim_row_major_1d() local
440 cudaMalloc((void**)(&d_input), input_bytes); in test_cuda_convolution_inner_dim_row_major_1d()
444 cudaMemcpy(d_input, input.data(), input_bytes, cudaMemcpyHostToDevice); in test_cuda_convolution_inner_dim_row_major_1d()
487 std::size_t input_bytes = input.size() * sizeof(float); in test_cuda_convolution_2d() local
[all …]
/external/libchrome/libchrome_tools/patch/
Ddmg_fp.patch147 const char input_bytes[8] = {0, 0, 0, 0, '\xee', '\x6d', '\x73', '\x42'};
149 memcpy(&input, input_bytes, arraysize(input_bytes));
/external/libchrome/base/strings/
Dstring_number_conversions_unittest.cc825 const char input_bytes[8] = {0, 0, 0, 0, '\xee', '\x6d', '\x73', '\x42'}; in TEST() local
827 memcpy(&input, input_bytes, arraysize(input_bytes)); in TEST()
/external/tensorflow/tensorflow/core/kernels/
Deigen_spatial_convolutions_test.cc1462 size_t input_bytes = input_dims.TotalSize() * sizeof(float); in PackRhsHelper() local
1465 std::max(static_cast<size_t>(1), mem_size_bytes / input_bytes); in PackRhsHelper()
1646 size_t input_bytes = filter_dims.TotalSize() * sizeof(float); in PackLhsHelper() local
1649 std::max(static_cast<size_t>(1), mem_size_bytes / input_bytes); in PackLhsHelper()