Searched refs:buffer_size (Results 26 - 50 of 129) sorted by relevance

123456

/external/bluetooth/bluedroid/btif/co/
H A Dbta_hl_co.c264 ** buffer_size - the unit of the buffer size is sizeof(tBTA_HL_MDL_CFG)
271 BOOLEAN bta_hl_co_load_mdl_config (UINT8 app_id, UINT8 buffer_size, argument
279 __FUNCTION__, app_id, buffer_size);
281 if (buffer_size > BTA_HL_NUM_MDL_CFGS)
286 result = btif_hl_load_mdl_config(app_id, buffer_size, p_mdl_buf);
290 for (i=0, p=p_mdl_buf; i<buffer_size; i++, p++ )
300 BTIF_TRACE_DEBUG3("%s success=%d num_items=%d", __FUNCTION__, result, buffer_size);
/external/chromium/chrome/browser/extensions/
H A Dextension_creator.cc171 size_t buffer_size = 1 << 16; local
172 scoped_array<uint8> buffer(new uint8[buffer_size]);
174 while ((bytes_read = fread(buffer.get(), 1, buffer_size,
223 size_t buffer_size = 1 << 16; local
224 scoped_array<uint8> buffer(new uint8[buffer_size]);
227 while ((bytes_read = fread(buffer.get(), 1, buffer_size,
/external/chromium/chrome/browser/autofill/
H A Dautofill_country.cc382 // effect. |buffer_size| should specify the |buffer|'s size, and is updated if
387 int32_t* buffer_size) const;
468 int32_t buffer_size = 1000; local
469 scoped_array<uint8_t> buffer(new uint8_t[buffer_size]);
482 &buffer_size);
500 int32_t buffer_size = country_name.size() * 4; local
501 scoped_array<uint8_t> buffer(new uint8_t[buffer_size]);
505 &buffer_size);
539 int32_t* buffer_size) const {
541 DCHECK(buffer_size);
[all...]
/external/stlport/stlport/stl/
H A D_deque.c49 size_t __num_nodes = __num_elements / this->buffer_size() + 1 ;
65 this->_M_finish._M_cur = this->_M_finish._M_first + __num_elements % this->buffer_size();
74 *__cur = _M_map_size.allocate(this->buffer_size());
83 _M_map_size.deallocate(*__n, this->buffer_size());
350 _STLP_STD::_Destroy_Range(*__node, *__node + this->buffer_size());
351 this->_M_map_size.deallocate(*__node, this->buffer_size());
357 this->_M_map_size.deallocate(this->_M_finish._M_first, this->buffer_size());
373 uninitialized_fill(*__cur, *__cur + this->buffer_size(), __val);
384 *(this->_M_finish._M_node + 1) = this->_M_map_size.allocate(this->buffer_size());
391 this->buffer_size()))
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_win.cc58 bool WinSymbolize(const void *addr, char *out_buffer, int buffer_size) { argument
89 written += internal_snprintf(out_buffer + written, buffer_size - written,
93 written += internal_snprintf(out_buffer + written, buffer_size - written,
H A Dasan_internal.h145 bool WinSymbolize(const void *addr, char *out_buffer, int buffer_size);
/external/chromium/third_party/libjingle/source/talk/base/
H A Ddiskcache.cc270 size_t buffer_size = id.length()*3 + 1; local
271 char* buffer = new char[buffer_size];
272 encode(buffer, buffer_size, id.data(), id.length(),
305 size_t buffer_size = pathname.basename().length() + 1; local
306 char* buffer = new char[buffer_size];
307 decode(buffer, buffer_size, pathname.basename().data(),
H A Dsocketadapters.h50 BufferedReadAdapter(AsyncSocket* socket, size_t buffer_size);
78 AsyncProxyServerSocket(AsyncSocket* socket, size_t buffer_size) argument
79 : BufferedReadAdapter(socket, buffer_size) {}
/external/qemu/telephony/
H A Dandroid_modem.h120 extern int amodem_get_operator_name ( AModem modem, ANameIndex index, char* buffer, int buffer_size );
122 /* reset one operator name from a user-provided buffer, set buffer_size to -1 for zero-terminated strings */
123 extern void amodem_set_operator_name( AModem modem, ANameIndex index, const char* buffer, int buffer_size );
/external/tinyalsa/
H A Dpcm.c150 unsigned int buffer_size; member in struct:pcm
164 return pcm->buffer_size;
356 frames = hw_ptr + pcm->buffer_size - pcm->mmap_control->appl_ptr;
449 munmap(pcm->mmap_buffer, pcm_frames_to_bytes(pcm, pcm->buffer_size));
455 pcm->buffer_size = 0;
533 pcm->buffer_size = config->period_count * config->period_size;
536 pcm->mmap_buffer = mmap(NULL, pcm_frames_to_bytes(pcm, pcm->buffer_size),
540 pcm_frames_to_bytes(pcm, pcm->buffer_size));
582 pcm->boundary = sparams.boundary = pcm->buffer_size;
584 while (pcm->boundary * 2 <= INT_MAX - pcm->buffer_size)
[all...]
/external/bluetooth/bluedroid/bta/include/
H A Dbta_hl_co.h145 ** buffer_size - the unit of the buffer size is sizeof(tBTA_HL_MDL_CFG)
152 BTA_API extern BOOLEAN bta_hl_co_load_mdl_config (UINT8 app_id, UINT8 buffer_size,
/external/kernel-headers/original/linux/
H A Dxattr.h48 ssize_t generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size);
H A Dkobject.h117 int num_envp, char *buffer, int buffer_size);
267 char *buffer, int buffer_size, int *cur_len,
274 char *buffer, int buffer_size, int *cur_len,
273 add_uevent_var(char **envp, int num_envp, int *cur_index, char *buffer, int buffer_size, int *cur_len, const char *format, ...) argument
H A Dmsm_audio.h152 uint32_t buffer_size; member in struct:msm_audio_config
163 uint32_t buffer_size; member in struct:msm_audio_stream_config
260 uint32_t buffer_size; /* Size of buffer for capturing of member in struct:msm_audio_pcm_config
/external/srec/srec/include/
H A Dsrec_arb.h124 int read_arbdata_from_stream(srec_arbdata** pallotree, char* buffer, int buffer_size);
/external/opencv/otherlibs/highgui/
H A Dgrfmt_pxm.cpp198 const int buffer_size = 1 << 12; local
199 uchar buffer[buffer_size];
200 uchar pal_buffer[buffer_size];
213 if( src_pitch+32 > buffer_size )
219 if( m_maxval + 1 > buffer_size )
H A Dgrfmt_sunras.cpp175 const int buffer_size = 1 << 12; local
176 uchar buffer[buffer_size];
177 uchar bgr_buffer[buffer_size];
190 if( src_pitch+32 > buffer_size )
193 if( m_width*3 + 32 > buffer_size )
H A Dgrfmt_bmp.cpp189 const int buffer_size = 1 << 12; local
190 uchar buffer[buffer_size];
191 uchar bgr_buffer[buffer_size];
207 if( (m_bpp != 24 || !color) && src_pitch+32 > buffer_size )
216 if( m_width*3 + 32 > buffer_size ) bgr = new uchar[m_width*3 + 32];
/external/chromium/sdch/open-vcdiff/src/
H A Dvcdiff_main.cc99 // (so the caller must release it using free()), and buffer_size to the size
256 size_t buffer_size = 0U; local
262 buffer_size = static_cast<size_t>(FLAGS_buffersize);
278 buffer_size = static_cast<size_t>(FLAGS_buffersize);
279 if (file_size < buffer_size) {
281 buffer_size = file_size;
284 buffer->resize(buffer_size);
/external/jhead/
H A Djpgfile.c315 int ReadJpegSectionsFromBuffer (unsigned char* buffer, unsigned int buffer_size, ReadMode_t ReadMode) argument
325 if (buffer_size < 1) {
379 if (pos+itemlen-2 > buffer_size) {
397 size = buffer_size - pos;
844 int WriteJpegToBuffer(unsigned char* buffer, unsigned int buffer_size) argument
853 if (buffer_size < 1) {
883 if (pos+Sections[a].Size > buffer_size) {
894 if (pos+Sections[a].Size > buffer_size) {
/external/chromium/base/files/
H A Dfile_path_watcher_linux.cc179 int buffer_size; local
181 &buffer_size));
188 std::vector<char> buffer(buffer_size);
191 buffer_size));
/external/chromium/base/win/
H A Devent_trace_controller.h103 size_t buffer_size);
/external/chromium/net/base/
H A Dio_buffer.h23 explicit IOBuffer(int buffer_size);
/external/dhcpcd/
H A Dbpf.c96 if (iface->buffer_size != (size_t)buf_len) {
98 iface->buffer_size = buf_len;
180 bytes = read(fd, iface->buffer, iface->buffer_size);
/external/opencv/cv/src/
H A Dcvcornersubpix.cpp68 int max_iters, buffer_size; local
121 buffer_size = (win_rect_size * 5 + win_w + win_h + 32) * sizeof(float);
122 buffer = (float*)cvAlloc( buffer_size );

Completed in 741 milliseconds

123456