HomeSort by relevance Sort by last modified time
    Searched full:buf_size (Results 476 - 500 of 1199) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/r11/platforms/android-24/arch-arm64/usr/include/linux/
omap3isp.h 86 __u32 buf_size; member in struct:omap3isp_h3a_aewb_config
109 __u32 buf_size; member in struct:omap3isp_stat_data
146 __u32 buf_size; member in struct:omap3isp_hist_config
197 __u32 buf_size; member in struct:omap3isp_h3a_af_config
  /prebuilts/ndk/r11/platforms/android-24/arch-mips/usr/include/linux/
omap3isp.h 86 __u32 buf_size; member in struct:omap3isp_h3a_aewb_config
109 __u32 buf_size; member in struct:omap3isp_stat_data
146 __u32 buf_size; member in struct:omap3isp_hist_config
197 __u32 buf_size; member in struct:omap3isp_h3a_af_config
  /prebuilts/ndk/r11/platforms/android-24/arch-mips64/usr/include/linux/
omap3isp.h 86 __u32 buf_size; member in struct:omap3isp_h3a_aewb_config
109 __u32 buf_size; member in struct:omap3isp_stat_data
146 __u32 buf_size; member in struct:omap3isp_hist_config
197 __u32 buf_size; member in struct:omap3isp_h3a_af_config
  /prebuilts/ndk/r11/platforms/android-24/arch-x86/usr/include/linux/
omap3isp.h 86 __u32 buf_size; member in struct:omap3isp_h3a_aewb_config
109 __u32 buf_size; member in struct:omap3isp_stat_data
146 __u32 buf_size; member in struct:omap3isp_hist_config
197 __u32 buf_size; member in struct:omap3isp_h3a_af_config
  /prebuilts/ndk/r11/platforms/android-24/arch-x86_64/usr/include/linux/
omap3isp.h 86 __u32 buf_size; member in struct:omap3isp_h3a_aewb_config
109 __u32 buf_size; member in struct:omap3isp_stat_data
146 __u32 buf_size; member in struct:omap3isp_hist_config
197 __u32 buf_size; member in struct:omap3isp_h3a_af_config
  /system/libufdt/
ufdt_convert.c 460 int ufdt_to_fdt(const struct ufdt *tree, void *buf, int buf_size) {
464 err = fdt_create(buf, buf_size);
495 * IMPORTANT: fdt_totalsize(buf) might be less than buf_size
498 return fdt_open_into(buf, buf, buf_size);
  /toolchain/binutils/binutils-2.25/bfd/
vms.h 63 unsigned int buf_size; member in struct:vms_rec_rd
  /bionic/libc/kernel/uapi/rdma/
vmw_pvrdma-abi.h 129 __u32 buf_size; member in struct:pvrdma_create_cq
140 __u32 buf_size; member in struct:pvrdma_resize_cq
  /external/fio/
iolog.c 722 size_t buf_size; member in struct:inflate_chunk_iter
739 iter->buf_size = iter->buf_used = 0;
765 if (!iter->buf_size) {
766 iter->buf_size = iter->chunk_sz;
767 iter->buf = malloc(iter->buf_size);
771 size_t this_out = iter->buf_size - iter->buf_used;
787 iter->buf_size += iter->chunk_sz;
788 iter->buf = realloc(iter->buf, iter->buf_size);
  /external/guava/guava/src/com/google/common/io/
CharStreams.java 50 private static final int BUF_SIZE = 0x800; // 2K chars (4K bytes)
66 CharBuffer buf = CharBuffer.allocate(BUF_SIZE);
  /external/ltp/testcases/kernel/syscalls/fanotify/
fanotify06.c 77 #define BUF_SIZE 256
78 static char fname[BUF_SIZE];
  /external/ltp/testcases/kernel/syscalls/inotify/
inotify04.c 64 #define BUF_SIZE 256
67 char name[BUF_SIZE];
  /external/vixl/test/aarch32/config/
template-assembler-aarch32.cc.in 42 #define BUF_SIZE (4096)
102 MacroAssembler masm(BUF_SIZE);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
WsbmWrapper.c 360 unsigned long buf_size = wsbmBOSize((struct _WsbmBufferObject *)buf); local
362 address, buf_size);
  /device/google/marlin/camera/usbcamcore/src/
QCameraMjpegDecode.cpp 620 uint32_t buf_size; local
629 jpeg_buffer_get_max_size(buffer, &buf_size);
631 bytes_to_read = (length < buf_size) ? length : buf_size;
634 ALOGD("%s: buf_ptr = %p, start_offset = %d, length = %d buf_size = %d bytes_to_read = %d", __func__, buf_ptr, start_offset, length, buf_size, bytes_to_read);
  /external/bison/lib/
stdlib.in.h 563 (unsigned int seed, char *buf, size_t buf_size)
567 (unsigned int seed, char *buf, size_t buf_size));
653 (unsigned int seed, char *buf, size_t buf_size,
657 (unsigned int seed, char *buf, size_t buf_size,
662 (unsigned int seed, char *buf, size_t buf_size,
667 (unsigned int seed, char *buf, size_t buf_size,
  /external/opencv/cv/src/
cvcorner.cpp 212 int buf_size = 1 << 12; local
276 CV_CALL( tempsrc = icvIPPFilterInit( src, buf_size,
291 max_dy = buf_size / src->cols;
509 int buf_size = 1 << 12; local
580 CV_CALL( tempsrc = icvIPPFilterInit( src, buf_size, el_size ));
596 max_dy = buf_size / src->cols;
cvderiv.cpp 390 buf_size = rows*row_sz;
391 buf_size = MIN( buf_size, 1 << 16 );
392 buf_size = MAX( buf_size, min_rows*row_sz );
393 max_rows = (buf_size/row_sz)*3 + max_ky*2 + 8;
394 buf_size += trow_sz;
    [all...]
  /frameworks/minikin/tests/unittest/
GraphemeBreakTests.cpp 24 const size_t BUF_SIZE = 256;
25 uint16_t buf[BUF_SIZE];
28 ParseUnicode(buf, BUF_SIZE, src, &size, &offset);
33 const size_t BUF_SIZE = 256;
34 uint16_t buf[BUF_SIZE];
37 ParseUnicode(buf, BUF_SIZE, src, &size, &offset);
WordBreakerTests.cpp 215 const size_t BUF_SIZE = kFlagLength * 2;
217 uint16_t buf[BUF_SIZE];
219 ParseUnicode(buf, BUF_SIZE, flags.c_str(), &size, nullptr);
240 const size_t BUF_SIZE = kFlagLength * 2;
242 uint16_t buf[BUF_SIZE];
244 ParseUnicode(buf, BUF_SIZE, flagSequence.c_str(), &size, nullptr);
  /hardware/intel/audio_media/hdmi/
tinyaudio_hw.c 296 size_t buf_size; local
299 buf_size = out->pcm_config.period_size *
303 buf_size = out->pcm_config.period_size *
310 buf_size/=LATENCY_TO_BUFFER_SIZE_RATIO;
315 buf_size,
319 return buf_size;
  /toolchain/binutils/binutils-2.25/opcodes/
metag-dis.c 469 get_set_addr_str (char *buf, unsigned int buf_size, unsigned int size,
491 snprintf (buf, buf_size, "[%s]", base_reg);
498 snprintf (buf, buf_size, "[%s++]", base_reg);
500 snprintf (buf, buf_size, "[++%s]", base_reg);
507 snprintf (buf, buf_size, "[%s--]", base_reg);
509 snprintf (buf, buf_size, "[--%s]", base_reg);
519 snprintf (buf, buf_size, "[%s+#%d++]", base_reg, offset);
521 snprintf (buf, buf_size, "[%s++#%d]", base_reg, offset);
524 snprintf (buf, buf_size, "[%s+#%d]", base_reg, offset);
538 snprintf (buf, buf_size, "[%s+%s++]", base_reg, offset_reg)
    [all...]
  /external/webp/src/dec/
webp_dec.c 152 size_t buf_size; local
159 buf_size = *data_size;
171 *data_size = buf_size;
173 if (buf_size < CHUNK_HEADER_SIZE) { // Insufficient data.
192 // Note: This check must occur before the check 'buf_size < disk_chunk_size'
199 if (buf_size < disk_chunk_size) { // Insufficient data.
210 buf_size -= disk_chunk_size;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
bytesio.c 10 size_t buf_size; member in struct:__anon5399
63 size_t alloc = self->buf_size;
97 self->buf_size = alloc;
117 if ((size_t)self->pos + len > self->buf_size) {
814 res += self->buf_size;
  /external/mesa3d/src/gallium/drivers/r600/
r600_query.c 42 unsigned j, i, num_results, buf_size = 4096; local
50 PIPE_USAGE_STAGING, buf_size);
56 memset(results, 0, buf_size);
59 num_results = buf_size / (16 * ctx->max_db);
79 memset(results, 0, buf_size);

Completed in 1162 milliseconds

<<11121314151617181920>>