HomeSort by relevance Sort by last modified time
    Searched refs:buffer (Results 1251 - 1275 of 5558) sorted by null

<<51525354555657585960>>

  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/linux/mtd/
blktrans.h 43 unsigned long block, char *buffer);
45 unsigned long block, char *buffer);
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/mtd/
blktrans.h 43 unsigned long block, char *buffer);
45 unsigned long block, char *buffer);
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/mtd/
blktrans.h 43 unsigned long block, char *buffer);
45 unsigned long block, char *buffer);
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/mtd/
blktrans.h 43 unsigned long block, char *buffer);
45 unsigned long block, char *buffer);
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/mtd/
blktrans.h 43 unsigned long block, char *buffer);
45 unsigned long block, char *buffer);
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/mtd/
blktrans.h 43 unsigned long block, char *buffer);
45 unsigned long block, char *buffer);
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/mtd/
blktrans.h 43 unsigned long block, char *buffer);
45 unsigned long block, char *buffer);
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/mtd/
blktrans.h 43 unsigned long block, char *buffer);
45 unsigned long block, char *buffer);
  /system/media/audio_utils/include/audio_utils/
resampler.h 45 * get a new buffer of data:
46 * as input: buffer->frame_count is the number of frames requested
47 * as output: buffer->frame_count is the number of frames returned
48 * buffer->raw points to data returned
51 struct resampler_buffer *buffer);
53 * release a consumed buffer of data:
54 * as input: buffer->frame_count is the number of frames released
55 * buffer->raw points to data released
58 struct resampler_buffer *buffer);
68 * resample input from buffer provider and output at most *outFrameCount to out buffer
    [all...]
  /external/bison/src/
print.c 392 if (column + strlen(buffer) > (End)) \
394 fprintf (out, "%s\n ", buffer); \
396 buffer[0] = 0; \
405 char buffer[90];
419 buffer[0] = 0;
423 sprintf (buffer, " (%d)", i);
430 sprintf (buffer + strlen (buffer), " %d", r);
433 fprintf (out, "%s\n", buffer);
458 buffer[0] = 0
403 char buffer[90]; local
    [all...]
  /external/harfbuzz_ng/src/
hb-uniscribe.cc 236 hb_buffer_t *buffer,
255 char *scratch = (char *) buffer->get_scratch_buffer (&scratch_size);
268 for (unsigned int i = 0; i < buffer->len; i++) {
269 hb_codepoint_t c = buffer->info[i].codepoint;
270 buffer->info[i].utf16_index() = chars_len;
312 bidi_state.uBidiLevel = HB_DIRECTION_IS_FORWARD (buffer->props.direction) ? 0 : 1;
335 OPENTYPE_TAG language_tag = hb_uint32_swap (hb_ot_tag_from_language (buffer->props.language));
339 bool backward = HB_DIRECTION_IS_BACKWARD (buffer->props.direction);
369 buffer->ensure (buffer->allocated * 2)
    [all...]
  /external/icu4c/test/intltest/
strtest.cpp 357 char buffer[20]; local
358 buffer[4] = '!';
359 SimpleByteSink sink(buffer);
362 if(!(sink.length() == 4 && 0 == memcmp("abcz", buffer, 4) && buffer[4] == '!')) {
380 errln("ByteSink.GetAppendBuffer() did not properly return the scratch buffer");
386 char buffer[20]; // < 26 for the test code to work local
387 buffer[3] = '!';
388 CheckedArrayByteSink sink(buffer, (int32_t)sizeof(buffer));
513 char *buffer = chStr.getAppendBuffer(5, 10, appendCapacity, errorCode); local
    [all...]
  /external/v8/src/
flags.cc 198 StringStream buffer(&string_allocator);
201 buffer.Add("%s", (*flag->bool_variable() ? "true" : "false"));
204 buffer.Add("%d", *flag->int_variable());
207 buffer.Add("%f", FmtElm(*flag->float_variable()));
211 buffer.Add("%s", str ? str : "NULL");
217 buffer.Add("%s", args[0]);
219 buffer.Add(" %s", args[i]);
225 return buffer.ToCString();
242 StringStream buffer(&string_allocator);
244 buffer.Add("--%s", f->name())
    [all...]
mark-compact.h 260 void DeallocateBuffer(SlotsBuffer* buffer);
276 // if element of slots buffer is less than NUMBER_OF_SLOT_TYPES then it
313 static int SizeOfChain(SlotsBuffer* buffer) {
314 if (buffer == NULL) return 0;
315 return static_cast<int>(buffer->idx_ +
316 (buffer->chain_length_ - 1) * kNumberOfElements);
328 SlotsBuffer* buffer,
330 while (buffer != NULL) {
332 buffer->UpdateSlotsWithFilter(heap);
334 buffer->UpdateSlots(heap)
353 SlotsBuffer* buffer = *buffer_address; local
    [all...]
  /frameworks/av/services/audioflinger/
Tracks.cpp 136 // written to buffer (other flags are cleared)
194 void AudioFlinger::ThreadBase::TrackBase::releaseBuffer(AudioBufferProvider::Buffer* buffer)
198 (void) mTeeSink->write(buffer->raw, buffer->frameCount);
202 buffer->raw = NULL;
203 mStepCount = buffer->frameCount;
206 buffer->frameCount = 0;
240 "TrackBase::getBuffer buffer out of range:\n"
299 sp<IMemory>* buffer) {
    [all...]
  /cts/suite/audio_quality/lib/src/task/
TaskInput.cpp 64 android::sp<Buffer> buffer(new Buffer(bufferSize, bufferSize, localDevice));
65 if (buffer.get() == NULL) {
66 LOGE("buffer alloc failed");
73 if (!hw->startPlaybackOrRecord(buffer)) {
79 mBuffer = buffer;
95 mBuffer->changeToMono(Buffer::EKeepCh0);
99 LOGE("cannot register/update buffer %s", mId.string());
  /dalvik/tools/
deadcode.py 7 def SplitSections(buffer):
8 """Spin through the input buffer looking for section header lines.
25 result = headerPattern.search(buffer, start)
30 sections[sectionName] = buffer[anchor]
36 sections[sectionName] = buffer[anchor:result.start()]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLFace.java 76 public void putIndices(ShortBuffer buffer) {
82 // push triangles into the buffer
85 buffer.put(v0.index);
86 buffer.put(v1.index);
87 buffer.put(vn.index);
  /device/generic/goldfish/camera/
EmulatedQemuCameraDevice.h 83 /* Gets current preview fame into provided buffer.
87 status_t getCurrentPreviewFrame(void* buffer);
  /external/apache-http/src/org/apache/http/io/
SessionInputBuffer.java 39 * Session input buffer for blocking connections.
55 int readLine(CharArrayBuffer buffer) throws IOException;
SessionOutputBuffer.java 39 * Session output buffer for blocking connections.
57 void writeLine(CharArrayBuffer buffer) throws IOException;
  /external/chromium/base/debug/
debugger_win.cc 21 const wchar_t* value_name, wchar_t* buffer, int* len) {
31 reinterpret_cast<BYTE*>(buffer), &buffer_size);
33 // Make sure the buffer is NULL terminated.
34 buffer[*len - 1] = 0;
35 *len = lstrlen(buffer);
  /external/chromium/base/
sync_socket_posix.cc 90 size_t SyncSocket::Send(const void* buffer, size_t length) {
92 const char* charbuffer = static_cast<const char*>(buffer);
97 size_t SyncSocket::Receive(void* buffer, size_t length) {
99 char* charbuffer = static_cast<char*>(buffer);
  /external/chromium/net/disk_cache/
mapped_file.h 32 void* buffer() const { function in class:disk_cache::MappedFile
47 void* buffer_; // Address of the memory mapped buffer.
  /external/dropbear/
common-runopts.c 28 #include "buffer.h"
39 buffer *buf;

Completed in 6095 milliseconds

<<51525354555657585960>>