Searched defs:data_size (Results 1 - 25 of 76) sorted by relevance

1234

/external/qemu/android/protocol/
H A Dcore-connection.h162 core_connection_get_timeout(size_t data_size) argument
166 return 2000 + data_size * 10;
H A Dcore-commands-impl.c114 _coreCmdImpl_get_timeout(size_t data_size) argument
118 return 2000 + data_size * 10;
H A Dui-commands-proxy.c55 _uiCmdProxy_get_timeout(size_t data_size) argument
59 return 2000 + data_size * 10;
/external/bluetooth/bluez/sbc/
H A Dformats.h51 uint32_t data_size; /* size of data */ member in struct:au_header
/external/chromium/webkit/glue/media/
H A Daudio_decoder.cc24 const char* data, size_t data_size, double sample_rate) {
30 InMemoryDataReader data_reader(data, data_size);
50 << " data size: " << data_size
22 DecodeAudioFileData( WebKit::WebAudioBus* destination_bus, const char* data, size_t data_size, double sample_rate) argument
/external/webp/src/dec/
H A Dalpha.c37 size_t data_size = dec->alpha_data_size_; local
46 strm.avail_in = data_size;
/external/opencv/
H A DWLNonFileByteStream.cpp33 void WLNonFileByteStream::Allocate(int data_size) argument
36 m_start = new uchar[data_size];
38 m_end = m_start + data_size;
51 bool WLNonFileByteStream::Open(int data_size) argument
54 Allocate(data_size);
58 _size = data_size;
/external/webp/src/enc/
H A Dalpha.c30 static int CompressAlpha(const uint8_t* data, size_t data_size, argument
44 strm.avail_in = data_size;
/external/chromium/chrome/browser/autofill/crypto/
H A Drc4_decryptor.h32 int data_size = data.length() * sizeof(wchar_t); local
36 memcpy(buffer.get(), data.c_str(), data_size);
38 RunInternal(reinterpret_cast<uint8 *>(buffer.get()), data_size); local
43 memset(buffer.get(), 0, data_size);
/external/linux-tools-perf/util/
H A Dheader.h62 u64 data_size; member in struct:perf_header
/external/webp/examples/
H A Ddwebp.c69 uint32_t data_size = 0; local
77 data_size = ftell(in);
79 data = malloc(data_size);
80 const int ok = (fread(data, data_size, 1, in) == 1);
88 out = WebPDecodeRGB(data, data_size, &width, &height);
90 out = WebPDecodeYUV(data, data_size, &width, &height,
/external/chromium/chrome/browser/autofill/
H A Dautofill_ie_toolbar_import_win_unittest.cc90 size_t data_size = (lstrlen(value->value) + 1) * sizeof(wchar_t); local
91 data.resize(data_size);
92 memcpy(&data[0], value->value, data_size);
H A Dautofill_ie_toolbar_import_win.cc66 DWORD data_size = 0; local
67 LONG result = key->ReadValue(value_name, NULL, &data_size, &data_type);
68 if ((result != ERROR_SUCCESS) || !data_size || data_type != REG_BINARY)
71 data.resize(data_size);
72 result = key->ReadValue(value_name, &(data[0]), &data_size, &data_type);
/external/chromium/chrome/browser/password_manager/
H A Die7_password.cc23 DWORD data_size; // Size of the data referenced by the entries. member in struct:__anon1740::PreHeader
/external/chromium/sdch/open-vcdiff/src/
H A Dheaderparser.h36 ParseableChunk(const char* data_start, size_t data_size) { argument
37 SetDataBuffer(data_start, data_size);
78 void SetDataBuffer(const char* data_start, size_t data_size) { argument
80 end_ = data_start + data_size;
117 void Init(const char* data_start, size_t data_size) { argument
120 parseable_chunk_->SetDataBuffer(data_start, data_size);
122 parseable_chunk_ = new ParseableChunk(data_start, data_size);
/external/kernel-headers/original/linux/
H A Dipmi_smi.h57 * data_size is set to zero and the response holds the data from the
70 int data_size; member in struct:ipmi_smi_msg
186 * The data_size should be zero if this is an asyncronous message. If
H A Drpmsg_omx.h139 uint32_t data_size;/* Size of in/out data to/from the function. */ member in struct:omx_packet
140 uint32_t data[0]; /* Payload of data_size char's passed to
/external/v8/test/cctest/
H A Dtest-sockets.cc13 SocketListenerThread(int port, int data_size) argument
16 data_size_(data_size),
/external/webkit/Source/WebCore/platform/graphics/win/
H A DWKCAImageQueue.cpp87 uint64_t WKCAImageQueue::registerPixelBuffer(void *data, size_t data_size, size_t rowbytes, size_t width, size_t height, uint32_t pixel_format, CFDictionaryRef attachments, uint32_t flags) argument
89 return wkCAImageQueueRegisterPixelBuffer(m_private->m_imageQueue.get(), data, data_size, rowbytes, width, height, pixel_format, attachments, flags);
/external/webp/include/webp/
H A Ddecode_vp8.h30 // io.data_size = size;
82 uint32_t data_size; member in struct:VP8Io
/external/bluetooth/bluez/test/
H A Dscotest.c56 static long data_size = 672; variable
216 while ((len = read(sk, buf, data_size)) > 0)
230 while (total < data_size) {
232 if ((r = recv(sk, buf, data_size, 0)) <= 0) {
278 *(uint16_t *) (buf + 4) = htobs(data_size);
377 data_size = atoi(optarg);
398 if (!(buf = malloc(data_size))) {
/external/bluetooth/glib/gio/tests/
H A Ddata-input-stream.c193 int data_size = 1; local
205 data_size = 1;
209 data_size = 2;
213 data_size = 4;
217 data_size = 8;
267 pos += data_size;
271 g_assert_cmpint (pos - data_size, ==, len);
H A Ddata-output-stream.c143 int data_size = 1; local
160 data_size = 1;
164 data_size = 2;
168 data_size = 4;
172 data_size = 8;
210 pos += data_size;
243 pos += data_size;
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
H A DXvlib.h157 int data_size; /* bytes */ member in struct:__anon9231
/external/qemu/memcheck/
H A Dmemcheck.c81 * data_size - Size of data accessed at the 'addr'.
93 uint32_t data_size,
162 is_read ? "read" : "write", data_size,
174 * data_size - Size of the accessed data.
189 uint32_t data_size,
204 desc = procdesc_find_malloc_for_range(proc, addr, data_size);
217 validating_range_end = addr + data_size;
246 if ((validating_range_end - user_range_end) < data_size) {
566 * data_size - Size of the read.
576 uint32_t data_size,
90 av_access_violation(ProcDesc* proc, MallocDescEx* desc, target_ulong addr, uint32_t data_size, uint64_t val, target_ulong retaddr, int is_read) argument
188 memcheck_common_access_validation(target_ulong addr, uint32_t data_size, ProcDesc** proc_ptr, MallocDescEx** desc_ptr) argument
575 memcheck_validate_ld(target_ulong addr, uint32_t data_size, target_ulong retaddr) argument
610 memcheck_validate_st(target_ulong addr, uint32_t data_size, uint64_t value, target_ulong retaddr) argument
[all...]

Completed in 521 milliseconds

1234