HomeSort by relevance Sort by last modified time
    Searched defs:Buffer (Results 126 - 150 of 266) sorted by null

1 2 3 4 56 7 8 91011

  /frameworks/av/include/media/
AudioRecord.h 42 EVENT_MORE_DATA = 0, // Request to read available data from buffer.
47 EVENT_OVERRUN = 1, // Buffer overrun occurred.
56 /* Client should declare Buffer on the stack and pass address to obtainBuffer()
60 class Buffer
84 * invokes the callback when a new buffer becomes available or various conditions occur.
90 * - EVENT_MORE_DATA: pointer to AudioRecord::Buffer struct. The callback must not read
141 * frameCount: Minimum size of track PCM buffer in frames. This defines the
150 * frames are ready in record track output buffer.
211 * This includes the latency due to AudioRecord buffer size,
323 /* Obtains a buffer of up to "audioBuffer->frameCount" full frames
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
afilter.h 49 PVOID Buffer;
  /external/chromium_org/media/cast/test/utility/
udp_proxy.cc 44 // Roughly emulates a buffer inside a device.
45 // If the buffer is full, packets are dropped.
47 class Buffer : public PacketPipe {
49 Buffer(size_t buffer_size, double max_megabits_per_second)
75 base::Bind(&Buffer::ProcessBuffer, weak_factory_.GetWeakPtr()),
94 base::WeakPtrFactory<Buffer> weak_factory_;
98 return scoped_ptr<PacketPipe>(new Buffer(buffer_size, bandwidth)).Pass();
340 // This represents the buffer on the sender.
342 BuildPipe(&pipe, new Buffer(256 << 10, 20));
344 // This represents the buffer on the router
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i830_context.h 120 GLuint Buffer[I830_DEST_SETUP_SIZE];
i915_context.h 221 GLuint Buffer[I915_DEST_SETUP_SIZE];
  /external/clang/include/clang/Frontend/
FrontendOptions.h 84 llvm::MemoryBuffer *Buffer;
93 FrontendInputFile() : Buffer(nullptr), Kind(IK_None) { }
95 : File(File.str()), Buffer(nullptr), Kind(Kind), IsSystem(IsSystem) { }
96 FrontendInputFile(llvm::MemoryBuffer *buffer, InputKind Kind,
98 : Buffer(buffer), Kind(Kind), IsSystem(IsSystem) { }
103 bool isEmpty() const { return File.empty() && Buffer == nullptr; }
105 bool isBuffer() const { return Buffer != nullptr; }
113 return Buffer;
ASTUnit.h 188 std::vector<char> Buffer;
196 Buffer.assign(begin, end);
200 void clear() { Buffer.clear(); File = nullptr; NumLines = 0; }
202 size_t size() const { return Buffer.size(); }
203 bool empty() const { return Buffer.empty(); }
205 const char *getBufferStart() const { return &Buffer[0]; }
243 createForMemoryBuffer(const llvm::MemoryBuffer *Buffer);
266 /// preamble, with both their buffer size and their modification time.
272 /// \brief When non-NULL, this is the buffer used to store the contents of
277 /// \brief When non-NULL, this is the buffer used to store th
    [all...]
  /external/clang/lib/CodeGen/
EHScopeStack.h 263 /// The start of the scope-stack buffer, i.e. the allocated pointer
264 /// for the buffer. All of these pointers are either simultaneously
268 /// The end of the buffer.
271 /// The first valid entry in the buffer.
314 void *Buffer = pushCleanup(Kind, sizeof(T));
315 Cleanup *Obj = new(Buffer) T();
322 void *Buffer = pushCleanup(Kind, sizeof(T));
323 Cleanup *Obj = new(Buffer) T(a0);
330 void *Buffer = pushCleanup(Kind, sizeof(T));
331 Cleanup *Obj = new(Buffer) T(a0, a1)
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 125 GlobalModuleIndex::GlobalModuleIndex(llvm::MemoryBuffer *Buffer,
127 : Buffer(Buffer), IdentifierIndex(),
246 std::unique_ptr<llvm::MemoryBuffer> Buffer = std::move(BufferOrErr.get());
249 llvm::BitstreamReader Reader((const unsigned char *)Buffer->getBufferStart(),
250 (const unsigned char *)Buffer->getBufferEnd());
263 return std::make_pair(new GlobalModuleIndex(Buffer.release(), Cursor),
497 std::unique_ptr<llvm::MemoryBuffer> Buffer;
499 Buffer.reset(FileMgr.getBufferForFile(File, &ErrorStr, /*isVolatile=*/true));
500 if (!Buffer) {
    [all...]
  /external/llvm/include/llvm/Support/
GCOV.h 58 GCOVBuffer(MemoryBuffer *B) : Buffer(B), Cursor(0) {}
60 /// readGCNOFormat - Check GCNO signature is valid at the beginning of buffer.
62 StringRef File = Buffer->getBuffer().slice(0, 4);
71 /// readGCDAFormat - Check GCDA signature is valid at the beginning of buffer.
73 StringRef File = Buffer->getBuffer().slice(0, 4);
84 StringRef VersionStr = Buffer->getBuffer().slice(Cursor, Cursor+4);
102 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
115 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
128 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
141 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4)
    [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 664 uint8_t Buffer[8];
665 unsigned Len = encodeULEB128(filterIterator->first, Buffer);
666 Table.insert(Table.end(), Buffer, Buffer + Len);
812 // Extract the ULEB128 encoded Opcode to a buffer.
813 uint8_t Buffer[8], *p = Buffer;
815 assert((p - Buffer) <= (ptrdiff_t)sizeof(Buffer)
818 unsigned Opc = decodeULEB128(Buffer);
    [all...]
  /external/lzma/Java/SevenZip/
LzmaBench.java 63 public byte[] Buffer = null;
68 Buffer = new byte[bufferSize];
93 Buffer[Pos++] = (byte)(RG.GetRnd(8));
108 Buffer[Pos] = Buffer[Pos - Rep0];
146 public MyOutputStream(byte[] buffer)
148 _buffer = buffer;
176 public MyInputStream(byte[] buffer, int size)
178 _buffer = buffer;
323 crc.Update(rg.Buffer, 0, rg.BufferSize);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i830_context.h 120 GLuint Buffer[I830_DEST_SETUP_SIZE];
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsps2.c 333 static char Buffer[2048];
336 strncpy(Buffer, txt, 2047);
337 Buffer[2047] = 0;
338 for (pt = Buffer; *pt; pt++)
341 return Buffer;
    [all...]
  /frameworks/av/include/private/media/
AudioTrackShared.h 38 // clear: track is ready when buffer full
39 #define CBLK_INVALID 0x04 // track buffer invalidated by AudioFlinger, need to re-create
46 #define CBLK_BUFFER_END 0x80 // set by server when the position reaches end of buffer if not looping
56 // in continuously incrementing frame units, take modulo buffer size, which must be a power of 2
153 struct Buffer {
154 size_t mFrameCount; // number of frames available in this buffer
186 // Obtain a buffer with filled frames (reading) or empty frames (writing).
191 // buffer->mFrameCount should be initialized to maximum number of desired frames,
193 // buffer->mNonContig is unused.
194 // buffer->mRaw is unused
    [all...]
  /frameworks/av/services/audioflinger/
PlaybackTracks.h 32 void *buffer,
42 void dump(char* buffer, size_t size, bool active);
62 void setAuxBuffer(int EffectId, int32_t *buffer);
64 void setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
86 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer,
182 TimedBuffer(const sp<IMemory>& buffer, int64_t pts);
183 const sp<IMemory>& buffer() const { return mBuffer; } function in class:TimedTrack::TimedBuffer
197 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer
    [all...]
  /hardware/intel/img/psb_video/src/
tng_jpegES.h 43 IMG_ERR_NOBUFFERAVAILABLE = 4, //!< No buffer was available
57 IMG_UINT8 *Buffer; /*!< Ptr to the bitstream buffer */
58 IMG_UINT32 Offset; /*!< Offset in the bitstream buffer */
115 BUFFER_FREE = 1, //!< Buffer is not locked
116 HW_LOCK, //!< Buffer is locked by hardware
117 SW_LOCK, //!< Buffer is locked by software
118 NOTDEVICEMEMORY, //!< Buffer is not a device memory buffer
123 void* pMemInfo; //!< Pointer to the memory handle for the buffer
    [all...]
  /external/deqp/modules/glshared/
glsLongStressCase.cpp 24 * confusing way, such as the "redundant buffer
611 * \brief Buffer object helper class
613 * Each Buffer owns a GL buffer object that is created when the Buffer
615 * convenience interface functions to e.g. upload buffer data to the GL.
621 class Buffer
624 Buffer (void);
625 ~Buffer (void);
644 Buffer (const Buffer&); // Not allowed
    [all...]
  /external/chromium_org/cc/test/
test_web_graphics_context_3d.h 96 virtual GLboolean isBuffer(GLuint buffer);
226 virtual void bindBuffer(GLenum target, GLuint buffer);
366 struct Buffer {
367 Buffer();
368 ~Buffer();
375 DISALLOW_COPY_AND_ASSIGN(Buffer);
396 base::ScopedPtrHashMap<unsigned, Buffer> buffers;
  /external/chromium_org/third_party/libjingle/source/talk/base/
testutils.h 192 char buffer[1024]; local
193 size_t len = vsprintfn(buffer, sizeof(buffer), format, args);
194 ASSERT(len < sizeof(buffer) - 1);
196 QueueData(buffer, len);
234 virtual StreamResult Read(void* buffer, size_t buffer_len,
244 memcpy(buffer, &readable_data_[0], count);
280 typedef std::vector<char> Buffer;
281 Buffer readable_data_, written_data_;
312 char buffer[1024] local
444 char buffer[1024*64]; local
502 char* buffer = STACK_ARRAY(char, buffer_size); local
512 char* buffer = STACK_ARRAY(char, buffer_size); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_context.h 94 /**< buffer or no buffers. */
146 GLubyte *Buffer;
175 GLubyte *Buffer; /**< The malloc'd memory for buffer */
177 /** These fields are only valid while buffer is mapped for rendering */
291 * Used to buffer N GL_POINTS, instead of rendering one by one.
300 /** Buffer for saving the sampled texture colors.
  /external/chromium_org/third_party/webrtc/base/
testutils.h 175 char buffer[1024]; local
176 size_t len = vsprintfn(buffer, sizeof(buffer), format, args);
177 ASSERT(len < sizeof(buffer) - 1);
179 QueueData(buffer, len);
217 virtual StreamResult Read(void* buffer, size_t buffer_len,
227 memcpy(buffer, &readable_data_[0], count);
263 typedef std::vector<char> Buffer;
264 Buffer readable_data_, written_data_;
295 char buffer[1024] local
427 char buffer[1024*64]; local
485 char* buffer = STACK_ARRAY(char, buffer_size); local
495 char* buffer = STACK_ARRAY(char, buffer_size); local
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 789 SmallVector<char, 128> Buffer;
Module.h 63 /// bools indicating whether this was an overridden buffer or if it was
161 /// \brief The memory buffer that stores the data associated with
163 std::unique_ptr<llvm::MemoryBuffer> Buffer;
254 /// This pointer points into a memory buffer, where the on-disk hash
314 /// This pointer points into a memory buffer, where the on-disk hash
  /external/clang/lib/AST/
ExprCXX.cpp 597 void *Buffer = C.Allocate(sizeof(CXXStaticCastExpr)
600 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
608 void *Buffer =
610 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize);
622 void *Buffer = C.Allocate(sizeof(CXXDynamicCastExpr)
625 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
633 void *Buffer =
635 return new (Buffer) CXXDynamicCastExpr(EmptyShell(), PathSize);
679 void *Buffer =
682 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L
1119 void *buffer = C.Allocate(size, llvm::alignOf<ExprWithCleanups>()); local
1132 void *buffer = C.Allocate(size, llvm::alignOf<ExprWithCleanups>()); local
    [all...]

Completed in 2487 milliseconds

1 2 3 4 56 7 8 91011