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

1 2 3 4 5 6 78 91011>>

  /art/runtime/native/
dalvik_system_VMDebug.cc 78 static void VMDebug_startMethodTracingDdmsImpl(JNIEnv*, jclass, jint bufferSize, jint flags,
80 Trace::Start("[DDMS]", -1, bufferSize, flags, true, samplingEnabled, intervalUs);
84 jobject javaFd, jint bufferSize, jint flags,
104 Trace::Start(traceFilename.c_str(), fd, bufferSize, flags, false, samplingEnabled, intervalUs);
108 jint bufferSize, jint flags,
114 Trace::Start(traceFilename.c_str(), -1, bufferSize, flags, false, samplingEnabled, intervalUs);
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusRegion.h 356 UINT bufferSize = 0;
358 SetStatus(DllExports::GdipGetRegionDataSize(nativeRegion, &bufferSize));
360 return bufferSize;
364 // bufferSize - how big the buffer is (should be at least as big as GetDataSize())
369 IN UINT bufferSize,
372 return SetStatus(DllExports::GdipGetRegionData(nativeRegion, buffer, bufferSize, sizeFilled));
  /external/bison/lib/
quotearg.c 228 /* Place into buffer BUFFER (of size BUFFERSIZE) a quoted version of
233 If BUFFERSIZE is too small to store the output string, return the
234 value that would have been returned had BUFFERSIZE been large enough.
237 This function acts like quotearg_buffer (BUFFER, BUFFERSIZE, ARG,
242 quotearg_buffer_restyled (char *buffer, size_t buffersize,
260 if (len < buffersize) \
645 if (len < buffersize)
652 return quotearg_buffer_restyled (buffer, buffersize, arg, argsize,
658 /* Place into buffer BUFFER (of size BUFFERSIZE) a quoted version of
663 If BUFFERSIZE is too small to store the output string, return th
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
coded_stream.cc 87 int backup_bytes = BufferSize() + buffer_size_after_limit_ + overflow_bytes_;
92 total_bytes_read_ -= BufferSize() + buffer_size_after_limit_;
181 const int original_buffer_size = BufferSize();
216 if (BufferSize() == 0 && !Refresh()) return false;
219 *size = BufferSize();
225 while ((current_buffer_size = BufferSize()) < size) {
251 while ((current_buffer_size = BufferSize()) < size) {
275 if (BufferSize() >= sizeof(*value)) {
292 if (BufferSize() >= sizeof(*value)) {
349 if (BufferSize() >= kMaxVarintBytes |
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
quotearg.c 171 /* Place into buffer BUFFER (of size BUFFERSIZE) a quoted version of
176 If BUFFERSIZE is too small to store the output string, return the
177 value that would have been returned had BUFFERSIZE been large enough.
180 This function acts like quotearg_buffer (BUFFER, BUFFERSIZE, ARG,
185 quotearg_buffer_restyled (char *buffer, size_t buffersize,
201 if (len < buffersize) \
557 if (len < buffersize)
564 return quotearg_buffer_restyled (buffer, buffersize, arg, argsize,
569 /* Place into buffer BUFFER (of size BUFFERSIZE) a quoted version of
574 If BUFFERSIZE is too small to store the output string, return th
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
SocketOutputBuffer.java 53 int buffersize,
61 // 'buffersize' as a hint in the weakest sense, and always use
  /external/chromium_org/base/win/
event_trace_controller.cc 16 prop->Wnode.BufferSize = sizeof(buffer_);
90 p.BufferSize = 16; // 16 K buffers.
  /external/chromium_org/cc/debug/
frame_rate_counter.cc 40 DCHECK_LT(n, ring_buffer_.BufferSize());
55 RecentFrameInterval(ring_buffer_.BufferSize() - 1);
  /external/opencv/cv/src/
cvoptflowbm.cpp 148 int bufferSize = cvAlign(blSize + 9,16);
169 blockA = (uchar *) cvAlloc( bufferSize * 3 );
173 blockB = blockA + bufferSize;
174 blockZ = blockB + bufferSize;
176 memset( blockZ, 0, bufferSize );
397 memset( blockA, 0, bufferSize );
398 memset( blockB, 0, bufferSize );
466 memset( blockB, 0, bufferSize );
  /frameworks/base/core/java/android/net/
BaseNetworkStateTracker.java 39 public static final String PROP_TCP_BUFFER_UNKNOWN = "net.tcp.buffersize.unknown";
40 public static final String PROP_TCP_BUFFER_WIFI = "net.tcp.buffersize.wifi";
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
InputStreamBuffer.java 35 * and you should set the <code>bufferSize</code> parameter to <code>10</code> in the constructor.
87 * @param bufferSize The initial size for the internal buffer. The buffer size should be
97 public InputStreamBuffer(final InputStream inputStream, int bufferSize,
100 if (bufferSize <= 0) {
102 String.format("Buffer size %d must be positive.", bufferSize));
104 bufferSize = leastPowerOf2(bufferSize);
105 mBuffer = new byte[bufferSize];
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
InputStreamBuffer.java 35 * and you should set the <code>bufferSize</code> parameter to <code>10</code> in the constructor.
87 * @param bufferSize The initial size for the internal buffer. The buffer size should be
97 public InputStreamBuffer(final InputStream inputStream, int bufferSize,
100 if (bufferSize <= 0) {
102 String.format("Buffer size %d must be positive.", bufferSize));
104 bufferSize = leastPowerOf2(bufferSize);
105 mBuffer = new byte[bufferSize];
  /hardware/libhardware_legacy/audio/
A2dpAudioInterface.h 87 virtual size_t bufferSize() const { return 512 * 20; }
90 virtual uint32_t latency() const { return ((1000*bufferSize())/frameSize())/sampleRate() + 200; }
AudioDumpInterface.h 47 virtual size_t bufferSize() const;
88 virtual size_t bufferSize() const;
AudioHardwareStub.h 34 virtual size_t bufferSize() const { return 4096; }
51 virtual size_t bufferSize() const { return 320; }
  /packages/apps/Email/src/com/android/email/mail/transport/
DiscourseLogger.java 36 public DiscourseLogger(int bufferSize) {
37 mBufferSize = bufferSize;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wmistr.h 10 ULONG BufferSize;
142 ULONG BufferSize;
  /cts/tests/tests/media/src/android/media/cts/
MediaPlayerFlakyNetworkTest.java 265 Socket socket, int buffersize, HttpParams params) throws IOException {
266 return createSessionOutputBuffer(socket, buffersize, params);
270 Socket socket, int buffersize, HttpParams params) throws IOException {
271 return new SocketOutputBuffer(socket, buffersize, params) {
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultClientConnection.java 168 int buffersize,
172 buffersize,
184 int buffersize,
188 buffersize,
  /external/chromium_org/net/tools/balsa/
simple_buffer.h 36 virtual int BufferSize() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/platform/network/
SocketStreamHandle.cpp 46 static const unsigned bufferSize = 100 * 1024 * 1024;
192 if (m_buffer.size() + length > bufferSize) {
206 if (m_buffer.size() + length - bytesWritten > bufferSize) {
258 ASSERT(m_buffer.size() - bytesWritten <= bufferSize);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessageLite.java 75 final int bufferSize =
78 CodedOutputStream.newInstance(output, bufferSize);
85 final int bufferSize = CodedOutputStream.computePreferredBufferSize(
88 CodedOutputStream.newInstance(output, bufferSize);
  /external/chromium_org/third_party/webrtc/modules/video_render/linux/
video_x11_channel.h 64 int GetWidthHeight(VideoType type, int bufferSize, int& width,
  /external/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessageLite.java 75 final int bufferSize =
78 CodedOutputStream.newInstance(output, bufferSize);
85 final int bufferSize = CodedOutputStream.computePreferredBufferSize(
88 CodedOutputStream.newInstance(output, bufferSize);
  /frameworks/av/drm/libdrmframework/plugins/passthru/src/
DrmPassthruPlugIn.cpp 95 const int bufferSize = licenseString.size();
97 data = new char[bufferSize];
98 memcpy(data, licenseString.string(), bufferSize);
99 const DrmBuffer* buffer = new DrmBuffer(data, bufferSize);

Completed in 947 milliseconds

1 2 3 4 5 6 78 91011>>