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

1 2 3 4 5 6 7 891011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
mcd.h 78 IN ULONG BufferSize,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
tdiinfo.h 96 unsigned int BufferSize;
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderControl.cpp 43 static EGLint rcQueryEGLString(EGLenum name, void* buffer, EGLint bufferSize)
56 if (!buffer || len > bufferSize) {
64 static EGLint rcGetGLString(EGLenum name, void* buffer, EGLint bufferSize)
88 if (!buffer || len > bufferSize) {
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionOutputBuffer.java 66 protected void init(final OutputStream outstream, int buffersize, final HttpParams params) {
70 if (buffersize <= 0) {
77 this.buffer = new ByteArrayBuffer(buffersize);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSUtils.java 172 int tagNo, boolean isExplicit, int bufferSize) throws IOException
176 if (bufferSize != 0)
178 return octGen.getOctetOutputStream(new byte[bufferSize]);
  /external/chromium_org/net/tools/flip_server/
ring_buffer.cc 21 int RingBuffer::BufferSize() const { return buffer_size_; }
23 int RingBuffer::BytesFree() const { return BufferSize() - ReadableBytes(); }
27 bool RingBuffer::Full() const { return ReadableBytes() == BufferSize(); }
  /external/chromium_org/third_party/libxml/src/
trio.h 104 int trio_vsnprintf TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
106 int trio_snprintfv TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
110 int trio_vsnprintfcat TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
  /external/chromium_org/third_party/libxslt/libxslt/
trio.h 104 int trio_vsnprintf TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
106 int trio_snprintfv TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
110 int trio_vsnprintfcat TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
  /external/libxml2/
trio.h 104 int trio_vsnprintf TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
106 int trio_snprintfv TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
110 int trio_vsnprintfcat TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
  /external/llvm/test/CodeGen/PowerPC/
2008-04-23-CoalescerCrash.ll 13 define i32 @_Z14ProgramByWordsPvyy(i8* %buffer, i64 %Offset, i64 %bufferSize) nounwind {
75 %tmp256 = lshr i64 %bufferSize, 1 ; <i64> [#uses=1]
86 define i32 @_Z15ProgramByBlocksyy(i64 %Offset, i64 %bufferSize) nounwind {
  /libcore/luni/src/main/java/javax/crypto/
CipherInputStream.java 62 int bufferSize = Math.max(blockSize,
64 inputBuffer = new byte[bufferSize];
65 outputBuffer = new byte[bufferSize + ((blockSize > 1) ? 2 * blockSize : 0)];
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
dict_file_writing_utils.cpp 92 uint8_t bufferSize[SIZE_OF_BUFFER_SIZE_FIELD];
94 ByteArrayUtils::writeUintAndAdvancePosition(bufferSize, buffer->getTailPosition(),
96 if (fwrite(bufferSize, SIZE_OF_BUFFER_SIZE_FIELD, 1 /* count */, file) < 1) {
  /cts/tests/tests/media/src/android/media/cts/
MediaMuxerTest.java 191 int bufferSize = MAX_SAMPLE_SIZE;
195 ByteBuffer dstBuf = ByteBuffer.allocate(bufferSize);
358 int bufferSize = MAX_SAMPLE_SIZE;
359 ByteBuffer byteBufSrc = ByteBuffer.allocate(bufferSize);
360 ByteBuffer byteBufTest = ByteBuffer.allocate(bufferSize);
  /external/chromium_org/chrome/browser/prefs/tracked/
pref_hash_calculator_helper_win.cc 202 ULONG bufferSize = 15 * 1024;
207 std::vector<unsigned char> buffer(bufferSize);
212 adapterAddresses, &bufferSize);
214 buffer.resize(bufferSize);
218 adapterAddresses, &bufferSize);
  /external/llvm/include/llvm/MC/
MCSchedule.h 35 // Buffered resources (BufferSize != 0) may be consumed at some indeterminate
40 // Unbuffered resources (BufferSize == 0) always consume their resource some
45 int BufferSize;
49 && BufferSize == Other.BufferSize;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/
SDLMain.m 313 unsigned int bufferSize;
320 bufferSize = selfLen + aStringLen - aRange.length;
321 buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar));
339 result = [NSString stringWithCharacters:buffer length:bufferSize];
341 NSDeallocateMemoryPages(buffer, bufferSize);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/
SDLMain.m 313 unsigned int bufferSize;
320 bufferSize = selfLen + aStringLen - aRange.length;
321 buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar));
339 result = [NSString stringWithCharacters:buffer length:bufferSize];
341 NSDeallocateMemoryPages(buffer, bufferSize);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/
SDLMain.m 313 unsigned int bufferSize;
320 bufferSize = selfLen + aStringLen - aRange.length;
321 buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar));
339 result = [NSString stringWithCharacters:buffer length:bufferSize];
341 NSDeallocateMemoryPages(buffer, bufferSize);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/
SDLMain.m 313 unsigned int bufferSize;
320 bufferSize = selfLen + aStringLen - aRange.length;
321 buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar));
339 result = [NSString stringWithCharacters:buffer length:bufferSize];
341 NSDeallocateMemoryPages(buffer, bufferSize);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/
SDLMain.m 313 unsigned int bufferSize;
320 bufferSize = selfLen + aStringLen - aRange.length;
321 buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar));
339 result = [NSString stringWithCharacters:buffer length:bufferSize];
341 NSDeallocateMemoryPages(buffer, bufferSize);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/
SDLMain.m 313 unsigned int bufferSize;
320 bufferSize = selfLen + aStringLen - aRange.length;
321 buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar));
339 result = [NSString stringWithCharacters:buffer length:bufferSize];
341 NSDeallocateMemoryPages(buffer, bufferSize);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Application/
SDLMain.m 313 unsigned int bufferSize;
320 bufferSize = selfLen + aStringLen - aRange.length;
321 buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar));
339 result = [NSString stringWithCharacters:buffer length:bufferSize];
341 NSDeallocateMemoryPages(buffer, bufferSize);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/
SDLMain.m 313 unsigned int bufferSize;
320 bufferSize = selfLen + aStringLen - aRange.length;
321 buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar));
339 result = [NSString stringWithCharacters:buffer length:bufferSize];
341 NSDeallocateMemoryPages(buffer, bufferSize);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/
SDLMain.m 313 unsigned int bufferSize;
320 bufferSize = selfLen + aStringLen - aRange.length;
321 buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar));
339 result = [NSString stringWithCharacters:buffer length:bufferSize];
341 NSDeallocateMemoryPages(buffer, bufferSize);
  /external/qemu/distrib/sdl-1.2.15/src/main/macosx/
SDLMain.m 312 unsigned int bufferSize;
319 bufferSize = selfLen + aStringLen - aRange.length;
320 buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar));
338 result = [NSString stringWithCharacters:buffer length:bufferSize];
340 NSDeallocateMemoryPages(buffer, bufferSize);

Completed in 781 milliseconds

1 2 3 4 5 6 7 891011>>