Searched refs:buffer_size (Results 101 - 125 of 540) sorted by relevance

1234567891011>>

/external/chromium_org/extensions/browser/api/socket/
H A Dudp_socket.h93 int buffer_size() const { return buffer_size_; } function in class:extensions::ResumableUDPSocket
94 void set_buffer_size(int buffer_size) { buffer_size_ = buffer_size; } argument
/external/chromium_org/mojo/apps/js/test/
H A Djs_to_cpp_unittest.cc70 uint32_t buffer_size = static_cast<uint32_t>(sizeof(buffer)); local
72 data_pipe_handle, buffer, &buffer_size, MOJO_READ_DATA_FLAG_NONE);
74 EXPECT_EQ(64u, buffer_size);
82 uint32_t buffer_size = static_cast<uint32_t>(sizeof(buffer)); local
84 message_pipe_handle, buffer, &buffer_size, 0, 0, 0);
86 EXPECT_EQ(64u, buffer_size);
166 uint32_t buffer_size = static_cast<uint32_t>(sizeof(buffer)); local
168 data_pipe_handle, buffer, &buffer_size, MOJO_READ_DATA_FLAG_NONE);
171 for (uint32_t i = 0; i < buffer_size; ++i)
177 uint32_t buffer_size local
[all...]
/external/chromium_org/net/base/
H A Dio_buffer.cc15 IOBuffer::IOBuffer(int buffer_size) { argument
16 CHECK_GE(buffer_size, 0);
17 data_ = new char[buffer_size];
/external/chromium_org/net/spdy/
H A Dspdy_read_queue_unittest.cc32 size_t buffer_size = std::min(data.size() - i, max_buffer_size); local
34 scoped_ptr<SpdyBuffer>(new SpdyBuffer(data.data() + i, buffer_size)));
35 i += buffer_size;
/external/chromium_org/rlz/mac/lib/
H A Dmachine_id_mac.cc53 uint8_t* buffer, size_t buffer_size) {
54 if (buffer_size < kIOEthernetAddressSize)
59 bzero(buffer, buffer_size);
52 GetMACAddressFromIterator(io_iterator_t primary_interface_iterator, uint8_t* buffer, size_t buffer_size) argument
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/
H A Dpolochallengeresponse.cc62 size_t buffer_size = client_modulus_size + client_exponent_size local
66 uint8_t* buffer = new unsigned char[buffer_size];
84 SHA256(buffer, buffer_size, &(*alpha)[0]);
/external/libcxx/src/support/win32/
H A Dsupport.cpp40 size_t buffer_size = static_cast<size_t>(count) + 1;
41 char* p = static_cast<char*>(malloc(buffer_size));
46 if (_vsnprintf(p, buffer_size, format, ap) != count) {
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachTask.h103 uint32_t buffer_size,
108 uint32_t buffer_size,
114 uint32_t buffer_size,
/external/chromium_org/android_webview/native/
H A Dinput_stream_unittest.cc92 const int buffer_size = 3 * InputStreamImpl::kBufferSize; local
94 DoReadCountedStreamTest(buffer_size, buffer_size * 2, &bytes_read);
95 EXPECT_EQ(buffer_size, bytes_read);
/external/chromium_org/content/browser/
H A Dbyte_stream.h197 size_t buffer_size,
/external/chromium_org/content/child/webcrypto/nss/
H A Daes_gcm_nss.cc94 base::CheckedNumeric<unsigned int> buffer_size(data.byte_length());
98 buffer_size += tag_length_bytes;
99 if (!buffer_size.IsValid())
115 buffer->resize(buffer_size.ValueOrDie());
/external/chromium_org/extensions/browser/api/sockets_udp/
H A Dudp_socket_event_dispatcher.cc91 int buffer_size = (socket->buffer_size() <= 0 ? 4096 : socket->buffer_size()); local
93 buffer_size,
/external/chromium_org/pdf/
H A Dpdf.cc117 // |buffer_size| is the size of |pdf_buffer| in bytes.
143 int buffer_size,
169 bool ret = engine_exports->RenderPDFPageToDC(pdf_buffer, buffer_size,
183 int buffer_size, int* page_count,
196 pdf_buffer, buffer_size, page_count, max_page_width);
142 RenderPDFPageToDC(const void* pdf_buffer, int buffer_size, int page_number, HDC dc, int dpi_x, int dpi_y, int bounds_origin_x, int bounds_origin_y, int bounds_width, int bounds_height, bool fit_to_bounds, bool stretch_to_bounds, bool keep_aspect_ratio, bool center_in_bounds, bool autorotate) argument
182 GetPDFDocInfo(const void* pdf_buffer, int buffer_size, int* page_count, double* max_page_width) argument
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_system.h53 int Read(void* buffer, size_t buffer_size);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_pipe_constants.c57 cb->buffer_size,
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dbyte_array_test.cc68 for (int buffer_size = 1; buffer_size < ba1->Length();
69 buffer_size += increments) {
70 ByteVector buffer(buffer_size);
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_vp8_test_helper.h44 int buffer_size() const { return buffer_size_; } function in class:webrtc::test::RtpFormatVp8TestHelper
/external/chromium_org/v8/test/cctest/
H A Dtest-reloc-info.cc47 const int buffer_size = code_size + relocation_info_size; local
48 SmartArrayPointer<byte> buffer(new byte[buffer_size]);
51 byte* buffer_end = buffer.get() + buffer_size;
63 CodeDesc desc = { buffer.get(), buffer_size, code_size,
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_constants.c57 cb->buffer_size,
/external/sfntly/cpp/src/test/
H A Dbyte_array_test.cc68 for (int buffer_size = 1; buffer_size < ba1->Length();
69 buffer_size += increments) {
70 ByteVector buffer(buffer_size);
/external/chromium_org/mojo/public/cpp/system/tests/
H A Dcore_unittest.cc141 uint32_t buffer_size = static_cast<uint32_t>(sizeof(buffer)); local
144 buffer, &buffer_size,
209 uint32_t buffer_size = static_cast<uint32_t>(sizeof(buffer)); local
212 buffer, &buffer_size,
215 EXPECT_EQ(kHelloSize, buffer_size);
251 buffer_size = static_cast<uint32_t>(sizeof(buffer));
257 buffer, &buffer_size,
260 EXPECT_EQ(kHelloSize, buffer_size);
273 buffer_size = static_cast<uint32_t>(sizeof(buffer));
279 buffer, &buffer_size,
[all...]
/external/chromium_org/content/common/
H A Dchild_process_host_impl.h46 size_t buffer_size, base::ProcessHandle child_process,
83 void OnAllocateSharedMemory(uint32 buffer_size,
H A Dhost_shared_bitmap_manager.h58 size_t buffer_size,
61 void ChildAllocatedSharedBitmap(size_t buffer_size,
/external/chromium_org/content/common/gpu/media/
H A Dgpu_video_encode_accelerator.h72 uint32 buffer_size,
76 uint32 buffer_size);
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dxray.h43 int buffer_size,
85 int buffer_size,
84 XRayInit(int stack_size, int buffer_size, int frame_count, const char* mapfilename) argument

Completed in 2215 milliseconds

1234567891011>>