HomeSort by relevance Sort by last modified time
    Searched full:min_buffer_size (Results 1 - 7 of 7) sorted by null

  /external/webp/src/dec/
buffer.c 38 #define MIN_BUFFER_SIZE(WIDTH, HEIGHT, STRIDE) \
56 const uint64_t y_size = MIN_BUFFER_SIZE(width, height, y_stride);
57 const uint64_t u_size = MIN_BUFFER_SIZE(uv_width, uv_height, u_stride);
58 const uint64_t v_size = MIN_BUFFER_SIZE(uv_width, uv_height, v_stride);
59 const uint64_t a_size = MIN_BUFFER_SIZE(width, height, a_stride);
77 const uint64_t size = MIN_BUFFER_SIZE(width, height, stride);
84 #undef MIN_BUFFER_SIZE
  /external/webrtc/talk/app/webrtc/test/
fakeaudiocapturemodule_unittest.cc 124 const size_t min_buffer_size = min(audio_buffer_size, rec_buffer_bytes_); local
125 memcpy(audio_buffer, rec_buffer_, min_buffer_size);
126 return min_buffer_size;
  /external/libvncserver/libvncclient/
zrle.c 90 int min_buffer_size = rw * rh * (REALBPP / 8) * 2; local
98 if ( client->raw_buffer_size < min_buffer_size) {
106 client->raw_buffer_size = min_buffer_size;
  /external/libevent/
evbuffer-internal.h 53 #define MIN_BUFFER_SIZE 512
55 #define MIN_BUFFER_SIZE 1024
ChangeLog     [all...]
buffer.c 168 to_alloc = MIN_BUFFER_SIZE;
    [all...]
  /system/extras/ANRdaemon/
ANRdaemon.cpp 66 static const int min_buffer_size = 16; variable
538 else if (atoi(optarg) < min_buffer_size)

Completed in 456 milliseconds