Home
last modified time | relevance | path

Searched refs:buffers (Results 1 – 25 of 1906) sorted by relevance

12345678910>>...77

/external/igt-gpu-tools/tests/i915/
Dgem_concurrent_all.c74 struct buffers { struct
90 static void blt_copy_bo(struct buffers *b, drm_intel_bo *dst, drm_intel_bo *src); argument
99 prw_set_bo(struct buffers *b, drm_intel_bo *bo, uint32_t val) in prw_set_bo()
107 prw_cmp_bo(struct buffers *b, drm_intel_bo *bo, uint32_t val) in prw_cmp_bo()
120 partial_set_bo(struct buffers *b, drm_intel_bo *bo, uint32_t val) in partial_set_bo()
127 partial_cmp_bo(struct buffers *b, drm_intel_bo *bo, uint32_t val) in partial_cmp_bo()
204 unmapped_create_bo(const struct buffers *b) in unmapped_create_bo()
216 snoop_create_bo(const struct buffers *b) in snoop_create_bo()
254 userptr_create_bo(const struct buffers *b) in userptr_create_bo()
284 userptr_set_bo(struct buffers *b, drm_intel_bo *bo, uint32_t val) in userptr_set_bo()
[all …]
/external/conscrypt/common/src/test/java/org/conscrypt/
DBufferUtilsTest.java73 ByteBuffer[] buffers = bufferType.newRandomBuffers(10, 10, 10, 10, 10); in checkNotNull() local
74 buffers[2] = null; in checkNotNull()
76 BufferUtils.checkNotNull(buffers); in checkNotNull()
94 ByteBuffer[] buffers = bufferType.newRandomBuffers(sizes); in consume() local
97 BufferUtils.consume(buffers, 0); in consume()
98 assertEquals(totalSize, BufferUtils.remaining(buffers)); in consume()
100 BufferUtils.consume(buffers,totalSize / 2); in consume()
101 assertEquals(totalSize / 2, BufferUtils.remaining(buffers)); in consume()
103 BufferUtils.consume(buffers,totalSize / 2); in consume()
104 assertEquals(0, BufferUtils.remaining(buffers)); in consume()
[all …]
/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/
DBufferUtilsTest.java77 ByteBuffer[] buffers = bufferType.newRandomBuffers(10, 10, 10, 10, 10); in checkNotNull() local
78 buffers[2] = null; in checkNotNull()
80 BufferUtils.checkNotNull(buffers); in checkNotNull()
98 ByteBuffer[] buffers = bufferType.newRandomBuffers(sizes); in consume() local
101 BufferUtils.consume(buffers, 0); in consume()
102 assertEquals(totalSize, BufferUtils.remaining(buffers)); in consume()
104 BufferUtils.consume(buffers,totalSize / 2); in consume()
105 assertEquals(totalSize / 2, BufferUtils.remaining(buffers)); in consume()
107 BufferUtils.consume(buffers,totalSize / 2); in consume()
108 assertEquals(0, BufferUtils.remaining(buffers)); in consume()
[all …]
/external/mesa3d/src/freedreno/decode/
Dbuffers.c49 static struct buffer buffers[512]; variable
70 if (buffer_contains_hostptr(&buffers[i], hostptr)) in gpuaddr()
71 return buffers[i].gpuaddr + (hostptr - buffers[i].hostptr); in gpuaddr()
82 if (buffer_contains_gpuaddr(&buffers[i], gpuaddr, 0)) in gpubaseaddr()
83 return buffers[i].gpuaddr; in gpubaseaddr()
94 if (buffer_contains_gpuaddr(&buffers[i], gpuaddr, 0)) in hostptr()
95 return buffers[i].hostptr + (gpuaddr - buffers[i].gpuaddr); in hostptr()
106 if (buffer_contains_gpuaddr(&buffers[i], gpuaddr, 0)) in hostlen()
107 return buffers[i].len + buffers[i].gpuaddr - gpuaddr; in hostlen()
118 if (buffer_contains_gpuaddr(&buffers[i], gpuaddr, 0)) { in has_dumped()
[all …]
/external/deqp-deps/amber/src/amberscript/
Dparser_buffer_test.cc63 const auto& buffers = script->GetBuffers(); in TEST_F() local
64 ASSERT_EQ(1U, buffers.size()); in TEST_F()
66 ASSERT_TRUE(buffers[0] != nullptr); in TEST_F()
67 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F()
69 auto* buffer = buffers[0].get(); in TEST_F()
96 const auto& buffers = script->GetBuffers(); in TEST_F() local
97 ASSERT_EQ(1U, buffers.size()); in TEST_F()
99 ASSERT_TRUE(buffers[0] != nullptr); in TEST_F()
100 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F()
102 auto* buffer = buffers[0].get(); in TEST_F()
[all …]
Dparser_image_test.cc208 const auto& buffers = script->GetBuffers(); in TEST_F() local
209 ASSERT_EQ(1U, buffers.size()); in TEST_F()
211 ASSERT_TRUE(buffers[0] != nullptr); in TEST_F()
212 EXPECT_EQ("image", buffers[0]->GetName()); in TEST_F()
214 auto* buffer = buffers[0].get(); in TEST_F()
232 const auto& buffers = script->GetBuffers(); in TEST_F() local
233 ASSERT_EQ(1U, buffers.size()); in TEST_F()
235 ASSERT_TRUE(buffers[0] != nullptr); in TEST_F()
236 EXPECT_EQ("image", buffers[0]->GetName()); in TEST_F()
238 auto* buffer = buffers[0].get(); in TEST_F()
[all …]
/external/OpenCL-CTS/test_conformance/buffers/
Dtest_buffer_copy.cpp43 cl_mem buffers[2]; in test_copy() local
65buffers[0] = clCreateBuffer(context, flag_set[src_flag_id], sizeof(cl_int) * num_elements, int_in… in test_copy()
67buffers[0] = clCreateBuffer(context, flag_set[src_flag_id], sizeof(cl_int) * num_elements, NULL, … in test_copy()
76buffers[1] = clCreateBuffer(context, flag_set[dst_flag_id], sizeof(cl_int) * num_elements, int_ou… in test_copy()
78buffers[1] = clCreateBuffer(context, flag_set[dst_flag_id], sizeof(cl_int) * num_elements, NULL, … in test_copy()
81 clReleaseMemObject( buffers[0] ); in test_copy()
88 …err = clEnqueueWriteBuffer(queue, buffers[0], CL_TRUE, 0, sizeof(cl_int)*num_elements, (void *)int… in test_copy()
91 clReleaseMemObject( buffers[0] ); in test_copy()
92 clReleaseMemObject( buffers[1] ); in test_copy()
99 …err = clEnqueueCopyBuffer(queue, buffers[0], buffers[1], 0, 0, sizeof(cl_int)*num_elements, 0, NUL… in test_copy()
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/
Dbasic_stream_socket.hpp234 std::size_t send(const ConstBufferSequence& buffers) in send() argument
238 this->get_implementation(), buffers, 0, ec); in send()
271 std::size_t send(const ConstBufferSequence& buffers, in send() argument
276 this->get_implementation(), buffers, flags, ec); in send()
300 std::size_t send(const ConstBufferSequence& buffers, in send() argument
304 this->get_implementation(), buffers, flags, ec); in send()
345 async_send(const ConstBufferSequence& buffers, in ASIO_INITFN_RESULT_TYPE()
353 this->get_implementation(), buffers, 0, in ASIO_INITFN_RESULT_TYPE()
397 async_send(const ConstBufferSequence& buffers, in ASIO_INITFN_RESULT_TYPE()
406 this->get_implementation(), buffers, flags, in ASIO_INITFN_RESULT_TYPE()
[all …]
/external/xz-embedded/linux/lib/xz/
Dxz_dec_test.c52 static struct xz_buf buffers = { variable
75 buffers.in_pos = 0; in xz_dec_test_open()
76 buffers.in_size = 0; in xz_dec_test_open()
77 buffers.out_pos = 0; in xz_dec_test_open()
120 while ((remaining > 0 || buffers.out_pos == buffers.out_size) in xz_dec_test_write()
122 if (buffers.in_pos == buffers.in_size) { in xz_dec_test_write()
123 buffers.in_pos = 0; in xz_dec_test_write()
124 buffers.in_size = min(remaining, sizeof(buffer_in)); in xz_dec_test_write()
125 if (copy_from_user(buffer_in, buf, buffers.in_size)) in xz_dec_test_write()
128 buf += buffers.in_size; in xz_dec_test_write()
[all …]
/external/python/cpython3/Objects/stringlib/
Djoin.h18 Py_buffer *buffers = NULL; in STRINGLIB() local
46 buffers = PyMem_NEW(Py_buffer, seqlen); in STRINGLIB()
47 if (buffers == NULL) { in STRINGLIB()
54 buffers = static_buffers; in STRINGLIB()
67 buffers[i].obj = item; in STRINGLIB()
68 buffers[i].buf = PyBytes_AS_STRING(item); in STRINGLIB()
69 buffers[i].len = PyBytes_GET_SIZE(item); in STRINGLIB()
72 if (PyObject_GetBuffer(item, &buffers[i], PyBUF_SIMPLE) != 0) { in STRINGLIB()
88 itemlen = buffers[i].len; in STRINGLIB()
126 Py_ssize_t n = buffers[i].len; in STRINGLIB()
[all …]
/external/deqp-deps/amber/src/vulkan/
Dbuffer_backed_descriptor.cc39 auto buffers = GetAmberBuffers(); in RecordCopyDataToResourceIfNeeded() local
40 if (resources.size() != buffers.size()) in RecordCopyDataToResourceIfNeeded()
46 if (!buffers[i]->ValuePtr()->empty()) { in RecordCopyDataToResourceIfNeeded()
47 resources[i]->UpdateMemoryWithRawData(*buffers[i]->ValuePtr()); in RecordCopyDataToResourceIfNeeded()
52 buffers[i]->ValuePtr()->clear(); in RecordCopyDataToResourceIfNeeded()
82 auto buffers = GetAmberBuffers(); in MoveResourceToBufferOutput() local
83 if (resources.size() != buffers.size()) in MoveResourceToBufferOutput()
102 if (!buffers[i]->ValuePtr()->empty()) { in MoveResourceToBufferOutput()
109 buffers[i]->SetElementCount(size_in_bytes / in MoveResourceToBufferOutput()
110 buffers[i]->GetFormat()->SizeInBytes()); in MoveResourceToBufferOutput()
[all …]
/external/okio/okio/jvm/jmh/src/jmh/java/com/squareup/okio/benchmarks/
DBufferPerformanceBenchmark.java100 public void threads1hot(HotBuffers buffers) throws IOException { in threads1hot() argument
101 readWriteRecycle(buffers); in threads1hot()
106 public void threads2hot(HotBuffers buffers) throws IOException { in threads2hot() argument
107 readWriteRecycle(buffers); in threads2hot()
112 public void threads4hot(HotBuffers buffers) throws IOException { in threads4hot() argument
113 readWriteRecycle(buffers); in threads4hot()
118 public void threads8hot(HotBuffers buffers) throws IOException { in threads8hot() argument
119 readWriteRecycle(buffers); in threads8hot()
124 public void threads16hot(HotBuffers buffers) throws IOException { in threads16hot() argument
125 readWriteRecycle(buffers); in threads16hot()
[all …]
/external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/
DBufferPerformanceBench.java100 public void threads1hot(HotBuffers buffers) throws IOException { in threads1hot() argument
101 readWriteRecycle(buffers); in threads1hot()
106 public void threads2hot(HotBuffers buffers) throws IOException { in threads2hot() argument
107 readWriteRecycle(buffers); in threads2hot()
112 public void threads4hot(HotBuffers buffers) throws IOException { in threads4hot() argument
113 readWriteRecycle(buffers); in threads4hot()
118 public void threads8hot(HotBuffers buffers) throws IOException { in threads8hot() argument
119 readWriteRecycle(buffers); in threads8hot()
124 public void threads16hot(HotBuffers buffers) throws IOException { in threads16hot() argument
125 readWriteRecycle(buffers); in threads16hot()
[all …]
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DCompositeReadableBuffer.java36 private final Queue<ReadableBuffer> buffers = new ArrayDeque<ReadableBuffer>(); field in CompositeReadableBuffer
46 buffers.add(buffer); in addBuffer()
52 while (!compositeBuffer.buffers.isEmpty()) { in addBuffer()
53 ReadableBuffer subBuffer = compositeBuffer.buffers.remove(); in addBuffer()
54 buffers.add(subBuffer); in addBuffer()
143 ReadableBuffer buffer = buffers.peek(); in readBytes()
148 newBuffer.addBuffer(buffers.poll()); in readBytes()
157 while (!buffers.isEmpty()) { in close()
158 buffers.remove().close(); in close()
169 if (!buffers.isEmpty()) { in execute()
[all …]
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DBufferUtils.java37 public static void checkNotNull(ByteBuffer[] buffers) { in checkNotNull() argument
38 for (ByteBuffer buffer : buffers) { in checkNotNull()
48 public static long remaining(ByteBuffer[] buffers) { in remaining() argument
50 for (ByteBuffer buffer : buffers) { in remaining()
81 public static ByteBuffer getBufferLargerThan(ByteBuffer[] buffers, int minSize) { in getBufferLargerThan() argument
82 int length = buffers.length; in getBufferLargerThan()
84 ByteBuffer buffer = buffers[i]; in getBufferLargerThan()
91 if (buffers[j].remaining() > 0) { in getBufferLargerThan()
110 ByteBuffer[] buffers, ByteBuffer destination, int maxAmount) { in copyNoConsume() argument
113 for (ByteBuffer buffer : buffers) { in copyNoConsume()
/external/conscrypt/common/src/main/java/org/conscrypt/
DBufferUtils.java35 public static void checkNotNull(ByteBuffer[] buffers) { in checkNotNull() argument
36 for (ByteBuffer buffer : buffers) { in checkNotNull()
46 public static long remaining(ByteBuffer[] buffers) { in remaining() argument
48 for (ByteBuffer buffer : buffers) { in remaining()
79 public static ByteBuffer getBufferLargerThan(ByteBuffer[] buffers, int minSize) { in getBufferLargerThan() argument
80 int length = buffers.length; in getBufferLargerThan()
82 ByteBuffer buffer = buffers[i]; in getBufferLargerThan()
89 if (buffers[j].remaining() > 0) { in getBufferLargerThan()
107 …public static ByteBuffer copyNoConsume(ByteBuffer[] buffers, ByteBuffer destination, int maxAmount… in copyNoConsume() argument
110 for (ByteBuffer buffer : buffers) { in copyNoConsume()
/external/OpenCL-CTS/test_conformance/api/
Dtest_binary.cpp52 unsigned char *buffers[ 1 ] = { binary }; in test_binary_get() local
58 if( size != sizeof( buffers ) ) in test_binary_get()
60 …ay in clGetProgramInfo is incorrect (should be %d, got %d)\n", (int)sizeof( buffers ), (int)size ); in test_binary_get()
65 error = clGetProgramInfo( program, CL_PROGRAM_BINARIES, sizeof( buffers ), &buffers, NULL ); in test_binary_get()
100 const unsigned char *buffers[ 1 ] = { binary }; in test_binary_create() local
102 error = clGetProgramInfo( program, CL_PROGRAM_BINARIES, sizeof( buffers ), &buffers, NULL ); in test_binary_create()
106 …program_from_binary = clCreateProgramWithBinary( context, 1, &deviceID, &binarySize, buffers, load… in test_binary_create()
120 buffers[ 0 ] = binary2; in test_binary_create()
121 …error = clGetProgramInfo( program_from_binary, CL_PROGRAM_BINARIES, sizeof( buffers ), &buffers, N… in test_binary_create()
126 …utStatus = clCreateProgramWithBinary( context, 1, &deviceID, &binary2Size, buffers, NULL, &error ); in test_binary_create()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dcustom_call_test.cc79 void Callback_Memcpy(se::gpu::GpuStreamHandle stream, void** buffers, in Callback_Memcpy() argument
81 void* src = buffers[0]; in Callback_Memcpy()
82 void* dst = buffers[1]; in Callback_Memcpy()
112 void Callback_SubBuffers(se::gpu::GpuStreamHandle stream, void** buffers, in Callback_SubBuffers() argument
128 gpuMemcpyAsync(buffers[4], buffers[3], 8 * sizeof(float), in Callback_SubBuffers()
130 gpuMemcpyAsync(buffers[5], buffers[0], 128 * sizeof(float), in Callback_SubBuffers()
132 gpuMemcpyAsync(buffers[6], buffers[1], 256 * sizeof(float), in Callback_SubBuffers()
134 gpuMemcpyAsync(buffers[7], buffers[2], 1024 * sizeof(float), in Callback_SubBuffers()
/external/mesa3d/src/mesa/main/
Dbuffers.c432 const GLenum *buffers, const char *caller, bool no_error) in draw_buffers() argument
465 (n != 1 || (buffers[0] != GL_NONE && buffers[0] != GL_BACK))) { in draw_buffers()
496 if (buffers[output] == GL_BACK && in draw_buffers()
505 } else if (buffers[output] == GL_FRONT || in draw_buffers()
506 buffers[output] == GL_LEFT || in draw_buffers()
507 buffers[output] == GL_RIGHT || in draw_buffers()
508 buffers[output] == GL_FRONT_AND_BACK || in draw_buffers()
509 (buffers[output] == GL_BACK && in draw_buffers()
512 caller, _mesa_enum_to_string(buffers[output])); in draw_buffers()
517 destMask[output] = draw_buffer_enum_to_bitmask(ctx, buffers[output]); in draw_buffers()
[all …]
Dglthread_draw.c113 struct glthread_attrib_binding *buffers) in upload_vertices() argument
197 buffers[num_buffers].buffer = upload_buffer; in upload_vertices()
198 buffers[num_buffers].offset = upload_offset - start; in upload_vertices()
199 buffers[num_buffers].original_pointer = ptr; in upload_vertices()
247 buffers[num_buffers].buffer = upload_buffer; in upload_vertices()
248 buffers[num_buffers].offset = upload_offset - offset; in upload_vertices()
249 buffers[num_buffers].original_pointer = ptr; in upload_vertices()
277 const struct glthread_attrib_binding *buffers = in _mesa_unmarshal_DrawArraysInstancedBaseInstance() local
282 _mesa_InternalBindVertexBuffers(ctx, buffers, user_buffer_mask, in _mesa_unmarshal_DrawArraysInstancedBaseInstance()
292 _mesa_InternalBindVertexBuffers(ctx, buffers, user_buffer_mask, in _mesa_unmarshal_DrawArraysInstancedBaseInstance()
[all …]
/external/erofs-utils/lib/
Dcache.c82 const erofs_off_t alignedoffset = roundup(bb->buffers.off, alignsize); in __erofs_battach()
83 const int oob = cmpsgn(roundup(bb->buffers.off % EROFS_BLKSIZ, in __erofs_battach()
97 BLK_ROUND_UP(bb->buffers.off)); in __erofs_battach()
107 list_add_tail(&bh->list, &bb->buffers.list); in __erofs_battach()
109 bb->buffers.off = alignedoffset + incr; in __erofs_battach()
112 tail_blkaddr = blkaddr + BLK_ROUND_UP(bb->buffers.off); in __erofs_battach()
122 if (bh->list.next != &bb->buffers.list) in erofs_bh_balloon()
149 used_before = cur->buffers.off % EROFS_BLKSIZ; in erofs_balloc()
200 bb->buffers.off = 0; in erofs_balloc()
201 init_list_head(&bb->buffers.list); in erofs_balloc()
[all …]
/external/OpenCL-CTS/test_conformance/pipes/
Dtest_pipe_readwrite_errors.cpp68 clMemWrapper buffers[3]; in test_pipe_readwrite_errors() local
100 buffers[0] = in test_pipe_readwrite_errors()
107 buffers[1] = clCreateBuffer(context, CL_MEM_USE_HOST_PTR, size, outptr, &err); in test_pipe_readwrite_errors()
110 buffers[2] = clCreateBuffer(context, CL_MEM_COPY_HOST_PTR, sizeof(int), &status, &err); in test_pipe_readwrite_errors()
127 err = clSetKernelArg(kernel[0], 0, sizeof(cl_mem), (void*)&buffers[0]); in test_pipe_readwrite_errors()
129 err |= clSetKernelArg(kernel[0], 2, sizeof(cl_mem), (void*)&buffers[2]); in test_pipe_readwrite_errors()
131 err |= clSetKernelArg(kernel[1], 1, sizeof(cl_mem), (void*)&buffers[1]); in test_pipe_readwrite_errors()
132 err |= clSetKernelArg(kernel[1], 2, sizeof(cl_mem), (void*)&buffers[2]); in test_pipe_readwrite_errors()
140 …err = clEnqueueReadBuffer(queue, buffers[2], true, 0, sizeof(status), &status, 1, &consumer_sync_e… in test_pipe_readwrite_errors()
155 …err = clEnqueueReadBuffer(queue, buffers[2], true, 0, sizeof(status), &status, 1, &producer_sync_e… in test_pipe_readwrite_errors()
[all …]
Dtest_pipe_query_functions.cpp83 clMemWrapper buffers[4]; in test_pipe_query_functions() local
122 buffers[0] = clCreateBuffer(context, CL_MEM_COPY_HOST_PTR, size, inptr, &err); in test_pipe_query_functions()
130 buffers[1] = clCreateBuffer(context, CL_MEM_HOST_READ_ONLY, size, NULL, &err); in test_pipe_query_functions()
133 buffers[2] = clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(int), NULL, &err); in test_pipe_query_functions()
136 buffers[3] = clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(int), NULL, &err); in test_pipe_query_functions()
156 err = clSetKernelArg(kernel[0], 0, sizeof(cl_mem), (void*)&buffers[0]); in test_pipe_query_functions()
159 err |= clSetKernelArg(kernel[1], 1, sizeof(cl_mem), (void*)&buffers[1]); in test_pipe_query_functions()
161 err |= clSetKernelArg(kernel[2], 1, sizeof(cl_mem), (void*)&buffers[2]); in test_pipe_query_functions()
162 err |= clSetKernelArg(kernel[2], 2, sizeof(cl_mem), (void*)&buffers[3]); in test_pipe_query_functions()
173 …err = clEnqueueReadBuffer(queue, buffers[2], true, 0, sizeof(cl_int), &pipe_num_packets, 1, &pipe_… in test_pipe_query_functions()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dbuffer_assignment_test.cc250 const BufferAssignment& buffers, HloInstruction* hlo) { in GetAssignedInputAllocation() argument
253 *buffers.GetUniqueTopLevelSlice(hlo).ConsumeValueOrDie().allocation(); in GetAssignedInputAllocation()
261 const BufferAssignment& buffers, HloInstruction* hlo) { in GetAssignedOutputAllocation() argument
263 const BufferAllocation& buffer = GetTopLevelAllocation(buffers, hlo); in GetAssignedOutputAllocation()
268 const BufferAllocation& GetAllocation(const BufferAssignment& buffers, in GetAllocation() argument
271 return *buffers.GetUniqueSlice(hlo, index).ConsumeValueOrDie().allocation(); in GetAllocation()
273 const BufferAllocation& GetTopLevelAllocation(const BufferAssignment& buffers, in GetTopLevelAllocation() argument
275 return *buffers.GetUniqueTopLevelSlice(hlo) in GetTopLevelAllocation()
285 const BufferAssignment& buffers) { in ValidateBuffers() argument
288 if (!buffers.HasTopLevelAllocation(hlo)) { in ValidateBuffers()
[all …]
/external/llvm-project/compiler-rt/test/xray/TestCases/Posix/
Dfdr-mode-multiple.cpp19 uint64_t buffers = 0; variable
41 __xray_log_process_buffers([](const char *, XRayBuffer) { ++buffers; }); in main()
42 std::cout << "buffers = " << buffers << std::endl; in main()
48 std::cout << "Buffers = " << buffers << std::endl; in main()
67 __xray_log_process_buffers([](const char *, XRayBuffer) { ++buffers; }); in main()
68 std::cout << "buffers = " << buffers << std::endl; in main()
75 std::cout << "Buffers = " << buffers << std::endl; in main()

12345678910>>...77