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

<<21222324252627282930>>

  /system/bt/stack/hid/
hidd_conn.cc 895 uint16_t buf_size; local
910 buf_size = HID_CONTROL_BUF_SIZE;
915 buf_size = HID_CONTROL_BUF_SIZE;
918 buf_size = HID_INTERRUPT_BUF_SIZE;
925 p_buf = (BT_HDR*)osi_malloc(buf_size);
hidh_conn.cc 874 uint16_t buf_size; local
898 buf_size = HID_CONTROL_BUF_SIZE;
902 buf_size = HID_INTERRUPT_BUF_SIZE;
915 p_buf = (BT_HDR*)osi_malloc(buf_size);
923 p_buf = (BT_HDR*)osi_malloc(buf_size);
    [all...]
  /external/dnsmasq/src/
helper.c 51 static size_t bytes_in_buf = 0, buf_size = 0; variable
322 if (size > buf_size)
335 buf_size = size;
  /external/libchrome/base/test/
multiprocess_test_android.cc 327 size_t buf_size = sizeof(StartProcessRequest) + serialised_extra.size(); local
328 request.header.size = buf_size;
329 std::unique_ptr<char[]> buffer(new char[buf_size]);
  /external/syslinux/gpxe/src/drivers/net/
mtnic.h 267 u32 buf_size; /* ring buffer size in bytes */ member in struct:mtnic_ring
326 u32 buf_size; /* ring size in bytes */ member in struct:mtnic_cq
354 u32 buf_size; /* EQ size in bytes */ member in struct:mtnic_eq
  /external/vixl/test/aarch32/
test-simulator-cond-rd-operand-imm16-t32.cc 47 #define BUF_SIZE (4096)
52 #define SETUP() MacroAssembler masm(BUF_SIZE)
68 MacroAssembler masm(BUF_SIZE); \
  /external/wpa_supplicant_8/src/utils/
common.h 468 int wpa_snprintf_hex_sep(char *buf, size_t buf_size, const u8 *data, size_t len,
470 int wpa_snprintf_hex(char *buf, size_t buf_size, const u8 *data, size_t len);
471 int wpa_snprintf_hex_uppercase(char *buf, size_t buf_size, const u8 *data,
  /external/bison/darwin-lib/
stdlib.h 885 (unsigned int seed, char *buf, size_t buf_size)
889 (unsigned int seed, char *buf, size_t buf_size));
    [all...]
  /external/bison/linux-lib/
stdlib.h 885 (unsigned int seed, char *buf, size_t buf_size)
889 (unsigned int seed, char *buf, size_t buf_size));
    [all...]
  /frameworks/minikin/tests/unittest/
LayoutUtilsTest.cpp 25 const size_t BUF_SIZE = 256U;
26 uint16_t buf[BUF_SIZE];
30 ParseUnicode(buf, BUF_SIZE, query_str, &size, &expected_breakpoint);
37 const size_t BUF_SIZE = 256U;
38 uint16_t buf[BUF_SIZE];
42 ParseUnicode(buf, BUF_SIZE, query_str, &size, &expected_breakpoint);
  /external/avb/libavb/
avb_util.c 172 size_t buf_size,
184 if (combined_len > buf_size - 1) {
  /external/esd/include/
esd.h 323 int esd_audio_write( void *buffer, int buf_size );
324 int esd_audio_read( void *buffer, int buf_size );
  /external/llvm/test/Transforms/IndVarSimplify/
2007-06-06-DeleteDanglesPtr.ll 14 define i32 @smc_decode_frame(%struct.AVCodecContext* %avctx, i8* %data, i32* %data_size, i8* %buf, i32 %buf_size) {
53 ret i32 %buf_size
  /external/opencv/cxcore/src/
cxmatmul.cpp 1012 int buf_size = d_size.width*d_size.height*CV_ELEM_SIZE(type); local
    [all...]
  /external/swiftshader/third_party/LLVM/test/Transforms/IndVarSimplify/
2007-06-06-DeleteDanglesPtr.ll 14 define i32 @smc_decode_frame(%struct.AVCodecContext* %avctx, i8* %data, i32* %data_size, i8* %buf, i32 %buf_size) {
53 ret i32 %buf_size
  /external/vboot_reference/host/lib21/
host_key.c 343 uint32_t buf_size = sizeof(*key) + sizeof(struct vb2_guid) + local
349 key = calloc(1, buf_size);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
esd.h 325 int esd_audio_write( void *buffer, int buf_size );
326 int esd_audio_read( void *buffer, int buf_size );
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
esd.h 325 int esd_audio_write( void *buffer, int buf_size );
326 int esd_audio_read( void *buffer, int buf_size );
  /system/libufdt/include/
libufdt.h 299 * buf_size.
308 int ufdt_to_fdt(const struct ufdt *tree, void *buf, int buf_size);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cPickle.c 350 Py_ssize_t buf_size; member in struct:Picklerobject
379 Py_ssize_t buf_size; member in struct:Unpicklerobject
483 if (!( self->buf_size )) return 0;
485 self->buf_size);
490 if (self->buf_size && n > WRITE_BUF_SIZE - self->buf_size) {
501 memcpy(self->write_buf + self->buf_size, s, n);
502 self->buf_size += n;
520 self->buf_size = 0;
530 if (self->buf_size == 0) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cPickle.c 352 int buf_size; member in struct:Picklerobject
381 int buf_size; member in struct:Unpicklerobject
486 if (!( self->buf_size )) return 0;
488 self->buf_size);
493 if (self->buf_size && (n + self->buf_size) > WRITE_BUF_SIZE) {
504 memcpy(self->write_buf + self->buf_size, s, n);
505 self->buf_size += n;
523 self->buf_size = 0;
533 if (self->buf_size == 0) {
    [all...]
  /bionic/libc/kernel/uapi/linux/
blktrace_api.h 141 __u32 buf_size; member in struct:blk_user_trace_setup
  /development/ndk/platforms/android-21/include/linux/
blktrace_api.h 141 __u32 buf_size; member in struct:blk_user_trace_setup
  /device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpegdec.c 130 &lbuffer_info, p_params->src_main_buf[i].buf_size,
321 p_params->src_main_buf[p_jobparams->src_index].buf_size;
579 p_params->dest_buf[p_jobparams->dst_index].buf_size;
606 1, &lbuffer_info, p_params->dest_buf[i].buf_size,
  /device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/test/
mm_jpeg_test.c 248 LOGE("input file size is %zu buf_size %zu",
348 p_params->src_main_buf[i].buf_size = p_obj->input[i].size;
359 p_params->src_thumb_buf[i].buf_size = p_obj->input[i].size;
399 p_params->dest_buf[i].buf_size = p_obj->output[i].size;

Completed in 1807 milliseconds

<<21222324252627282930>>