HomeSort by relevance Sort by last modified time
    Searched full:buffersize (Results 201 - 225 of 502) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsContextWin.cpp 50 int bufferSize = bmpInfo.bmWidthBytes * bmpInfo.bmHeight;
51 memset(bmpInfo.bmBits, 0, bufferSize);
ImageCGWin.cpp 70 int bufferSize = bmpInfo.bmWidthBytes * bmpInfo.bmHeight;
  /frameworks/base/core/java/com/android/internal/util/
ProcFileReader.java 47 public ProcFileReader(InputStream stream, int bufferSize) throws IOException {
49 mBuffer = new byte[bufferSize];
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
ProcFileReaderTest.java 173 private static ProcFileReader buildReader(String string, int bufferSize) throws IOException {
175 new ByteArrayInputStream(string.getBytes(Charsets.US_ASCII)), bufferSize);
  /hardware/libhardware_legacy/audio/
AudioHardwareGeneric.h 51 virtual size_t bufferSize() const { return 4096; }
85 virtual size_t bufferSize() const { return 320; }
  /libcore/luni/src/main/native/
libcore_icu_NativeCollation.cpp 150 jint bufferSize = U_COL_SAFECLONE_BUFFERSIZE;
151 UCollator* c = ucol_safeClone(toCollator(address), NULL, &bufferSize, &status);
  /packages/apps/Bluetooth/src/com/android/bluetooth/
Utils.java 151 public static void copyStream(InputStream is, OutputStream os, int bufferSize) throws IOException {
153 byte[] buffer = new byte[bufferSize];
  /development/ndk/platforms/android-14/samples/native-media/jni/
native-media-jni.c 172 size_t bufferSize = packetsRead * MPEG2_TS_PACKET_SIZE;
175 bufferSize /*dataLength*/,
302 size_t bufferSize = packetsThisBuffer * MPEG2_TS_PACKET_SIZE;
313 dataCache + i*BUFFER_SIZE, bufferSize, items /*pMsg*/,
318 dataCache + i*BUFFER_SIZE, bufferSize, NULL, 0);
  /hardware/msm7k/libgralloc/
gralloc.cpp 146 const size_t bufferSize = m->finfo.line_length * m->info.yres;
152 return gralloc_alloc_buffer(dev, bufferSize, newUsage, pHandle);
172 vaddr += bufferSize;
529 const size_t bufferSize = m->finfo.line_length * m->info.yres;
530 int index = (hnd->base - m->framebuffer->base) / bufferSize;
  /hardware/qcom/media/mm-video/vidc/vdec/test/
decoder_driver_test.c 453 unsigned int buffersize = 0; local
472 buffersize = decode_context->input_buffer.buffer_size;
473 buffersize = (buffersize + alignedsize) & (~alignedsize);
486 buffersize = decode_context->output_buffer.buffer_size;
487 buffersize = (buffersize + alignedsize) & (~alignedsize);
567 ptemp [i]->bufferaddr = mmap(NULL,clp2(buffersize),PROT_READ|PROT_WRITE,
577 ptemp [i]->buffer_len = buffersize;
578 ptemp [i]->mmaped_size = clp2 (buffersize);
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_main.cc 51 // --buffersize is the maximum allowable size of a target window.
53 DEFINE_uint64(buffersize, 1 << 20, // 1 MB
101 // will not be smaller than the --buffersize option. If the function fails,
177 // input_buffer_ will be the value specified by the --buffersize option.
180 // --buffersize bytes in length.
597 if (!GetCommandLineFlagInfoOrDie("buffersize").is_default &&
599 std::cerr << command_name << ": Option --buffersize cannot be 0"
  /external/open-vcdiff/src/
vcdiff_main.cc 51 // --buffersize is the maximum allowable size of a target window.
53 DEFINE_uint64(buffersize, 1 << 20, // 1 MB
102 // will not be smaller than the --buffersize option. If the function fails,
178 // input_buffer_ will be the value specified by the --buffersize option.
181 // --buffersize bytes in length.
601 if (!GetCommandLineFlagInfoOrDie("buffersize").is_default &&
603 std::cerr << command_name << ": Option --buffersize cannot be 0"
  /frameworks/base/libs/androidfw/
InputTransport.cpp 130 int bufferSize = SOCKET_BUFFER_SIZE;
131 setsockopt(sockets[0], SOL_SOCKET, SO_SNDBUF, &bufferSize, sizeof(bufferSize));
132 setsockopt(sockets[0], SOL_SOCKET, SO_RCVBUF, &bufferSize, sizeof(bufferSize));
133 setsockopt(sockets[1], SOL_SOCKET, SO_SNDBUF, &bufferSize, sizeof(bufferSize));
134 setsockopt(sockets[1], SOL_SOCKET, SO_RCVBUF, &bufferSize, sizeof(bufferSize));
    [all...]
  /external/clang/test/Analysis/
malloc.mm 121 #define BufferSize 1000
125 myBuffer = (UniChar *)malloc(BufferSize * sizeof(UniChar));
127 mutStr = CFStringCreateMutableWithExternalCharactersNoCopy(0, myBuffer, 0, BufferSize, kCFAllocatorNull); // expected-warning{{leak}}
  /external/webkit/Source/WebKit2/Platform/CoreIPC/mac/
ConnectionMac.cpp 151 size_t messageSize = machMessageSize(arguments->bufferSize(), numberOfPortDescriptors, numberOfOOLMemoryDescriptors);
158 attachments.append(Attachment(arguments->buffer(), arguments->bufferSize(), MACH_MSG_VIRTUAL_COPY, false));
213 memcpy(messageData, arguments->buffer(), arguments->bufferSize());
  /external/bison/lib/
quotearg.h 284 /* Place into buffer BUFFER (of size BUFFERSIZE) a quoted version of
289 If BUFFERSIZE is too small to store the output string, return the
290 value that would have been returned had BUFFERSIZE been large enough.
295 size_t quotearg_buffer (char *buffer, size_t buffersize,
  /external/chromium/net/tools/flip_server/
buffer_interface.h 22 virtual int BufferSize() const = 0;
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 335 unsigned BufferSize;
343 : Representation(0), Buffer(0), BufferSize(0), BufferCapacity(0) { }
457 BufferSize = 0;
466 return std::make_pair(Buffer, BufferSize);
  /external/skia/legacy/src/core/
SkBitmapProcState.h 96 int maxCountForBufferSize(size_t bufferSize) const;
  /external/sonivox/arm-fm-22k/lib_src/
eas_parser.h 45 EAS_I32 bufferSize;
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_parser.h 45 EAS_I32 bufferSize;
  /external/sonivox/arm-wt-22k/lib_src/
eas_parser.h 45 EAS_I32 bufferSize;
  /external/webkit/Tools/DumpRenderTree/chromium/
ImageDiff.cpp 376 const size_t bufferSize = PATH_MAX;
377 char stdinBuffer[bufferSize];
378 char firstName[bufferSize];
380 while (fgets(stdinBuffer, bufferSize, stdin)) {
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPlayer.h 42 virtual ssize_t bufferSize() const;
  /frameworks/av/services/camera/libcameraservice/camera2/
CallbackProcessor.cpp 324 size_t bufferSize = Camera2Client::calculateBufferSize(
329 if (bufferSize != currentBufferSize) {
331 mCallbackHeap = new Camera2Heap(bufferSize, kCallbackHeapCount,
368 memcpy(data, imgBuffer.data, bufferSize);

Completed in 1476 milliseconds

1 2 3 4 5 6 7 891011>>