HomeSort by relevance Sort by last modified time
    Searched refs:Buffer (Results 226 - 250 of 971) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/ots/src/
prep.cc 13 Buffer table(data, length);
vhea.cc 17 Buffer table(data, length);
vmtx.cc 17 Buffer table(data, length);
layout.cc 47 bool ParseLangSysTable(ots::Buffer *subtable, const uint32_t tag,
83 ots::Buffer subtable(data, length);
140 ots::Buffer subtable(data, length);
177 ots::Buffer subtable(data, length);
257 ots::Buffer subtable(data, length);
298 ots::Buffer subtable(data, length);
341 ots::Buffer subtable(data, length);
378 ots::Buffer subtable(data, length);
432 bool ParseLookupRecord(ots::Buffer *subtable, const uint16_t num_glyphs,
452 ots::Buffer subtable(data, length)
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 354 char FmtBuf[100] = "", Buffer[1000] = "";
370 memcpy(Buffer, "%", 2); break;
372 sprintf(Buffer, FmtBuf, uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
388 sprintf(Buffer, FmtBuf, Args[ArgNo++].IntVal.getZExtValue());
390 sprintf(Buffer, FmtBuf,uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
393 sprintf(Buffer, FmtBuf, Args[ArgNo++].DoubleVal); break;
395 sprintf(Buffer, FmtBuf, (void*)GVTOP(Args[ArgNo++])); break;
397 sprintf(Buffer, FmtBuf, (char*)GVTOP(Args[ArgNo++])); break;
402 size_t Len = strlen(Buffer);
403 memcpy(OutputBuffer, Buffer, Len + 1)
    [all...]
  /external/mesa3d/src/mesa/main/
feedback.h 50 ctx->Feedback.Buffer[ctx->Feedback.Count] = token;
  /frameworks/av/media/libstagefright/codecs/common/include/
voType.h 163 * General data buffer, used as input or output.
166 VO_PBYTE Buffer; /*!< Buffer pointer */
167 VO_U32 Length; /*!< Buffer size in byte */
168 VO_S64 Time; /*!< The time of the buffer */
187 VO_PTR memData; /*!<a pointer to VO_MEM_OPERATOR or a preallocated buffer */
  /frameworks/av/services/audioflinger/
TrackBase.h 42 // where to allocate the data buffer
46 ALLOC_PIPE, // do not allocate; use the pipe buffer
47 ALLOC_LOCAL, // allocate a local buffer
48 ALLOC_NONE, // do not allocate:use the buffer passed to TrackBase constructor
64 void *buffer,
84 void* buffer() const { return mBuffer; } function in class:TrackBase
96 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts) = 0;
97 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wmilib.h 51 OUT PUCHAR Buffer OPTIONAL);
62 IN OUT PUCHAR Buffer);
71 IN PUCHAR Buffer);
81 IN PUCHAR Buffer);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mschapp.h 25 UCHAR Buffer[(256 *2) + 4 ];
dbgeng.h 137 STDMETHOD(GetCommand)(THIS_ PSTR Buffer,ULONG BufferSize,PULONG CommandSize) PURE;
139 STDMETHOD(GetOffsetExpression)(THIS_ PSTR Buffer,ULONG BufferSize,PULONG ExpressionSize) PURE;
210 STDMETHOD(GetKernelConnectionOptions)(THIS_ PSTR Buffer,ULONG BufferSize,PULONG OptionsSize) PURE;
247 STDMETHOD(GetOutputLinePrefix)(THIS_ PSTR Buffer,ULONG BufferSize,PULONG PrefixSize) PURE;
249 STDMETHOD(GetIdentity)(THIS_ PSTR Buffer,ULONG BufferSize,PULONG IdentitySize) PURE;
281 STDMETHOD(GetKernelConnectionOptions)(THIS_ PSTR Buffer,ULONG BufferSize,PULONG OptionsSize) PURE;
318 STDMETHOD(GetOutputLinePrefix)(THIS_ PSTR Buffer,ULONG BufferSize,PULONG PrefixSize) PURE;
320 STDMETHOD(GetIdentity)(THIS_ PSTR Buffer,ULONG BufferSize,PULONG IdentitySize) PURE;
343 STDMETHOD(GetKernelConnectionOptions)(THIS_ PSTR Buffer,ULONG BufferSize,PULONG OptionsSize) PURE;
380 STDMETHOD(GetOutputLinePrefix)(THIS_ PSTR Buffer,ULONG BufferSize,PULONG PrefixSize) PURE
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 358 /// addTemplateParams - Add template parameters in buffer.
359 void addTemplateParams(DIE &Buffer, DIArray TParams);
425 void constructSubprogramArguments(DIE &Buffer, DIArray Args);
446 void constructTypeDIE(DIE &Buffer, DICompositeType CTy);
463 void constructTypeDIE(DIE &Buffer, DIBasicType BTy);
466 void constructTypeDIE(DIE &Buffer, DIDerivedType DTy);
469 void constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy);
472 void constructArrayTypeDIE(DIE &Buffer, DICompositeType CTy);
475 void constructEnumTypeDIE(DIE &Buffer, DICompositeType CTy);
478 void constructMemberDIE(DIE &Buffer, DIDerivedType DT)
    [all...]
  /cts/suite/audio_quality/test/
AudioPlayTestCommon.h 29 #include <audio/Buffer.h>
37 android::sp<Buffer> mBuffer;
  /external/chromium_org/content/test/ppapi/
ppapi_browsertest.cc 39 TEST_PPAPI_IN_PROCESS(Buffer)
40 TEST_PPAPI_OUT_OF_PROCESS(Buffer)
  /external/chromium_org/gpu/command_buffer/client/
mapped_memory.h 14 #include "gpu/command_buffer/common/buffer.h"
25 scoped_refptr<gpu::Buffer> shm,
51 // Allocates a block of memory. If the buffer is out of directly available
112 scoped_refptr<gpu::Buffer> shm_;
  /external/chromium_org/sandbox/win/src/
handle_dispatcher.cc 63 BYTE buffer[sizeof(OBJECT_TYPE_INFORMATION) + 32 * sizeof(wchar_t)]; local
65 reinterpret_cast<OBJECT_TYPE_INFORMATION*>(buffer);
66 ULONG size = sizeof(buffer) - sizeof(wchar_t);
73 type_info->Name.Buffer[type_info->Name.Length / sizeof(wchar_t)] = L'\0';
76 params[HandleTarget::NAME] = ParamPickerMake(type_info->Name.Buffer);
  /external/llvm/unittests/LineEditor/
LineEditor.cpp 49 std::vector<LineEditor::Completion> operator()(StringRef Buffer,
51 EXPECT_TRUE(Buffer.empty());
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL11Ext.java 129 java.nio.Buffer pointer
143 java.nio.Buffer pointer
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
Buffer.java 27 public class Buffer {
28 private static final String LOGTAG = "Buffer";
34 public Buffer(Bitmap bitmap) {
  /external/chromium_org/gpu/command_buffer/service/
vertex_attrib_manager.cc 46 Buffer* buffer,
54 buffer_ = buffer;
63 void VertexAttrib::Unbind(Buffer* buffer) {
64 if (buffer_.get() == buffer) {
135 void VertexAttribManager::SetElementArrayBuffer(Buffer* buffer) {
136 element_array_buffer_ = buffer;
151 void VertexAttribManager::Unbind(Buffer* buffer)
200 Buffer* buffer = attrib->buffer(); local
245 Buffer* buffer = attrib->buffer(); local
    [all...]
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 330 /// \brief Buffer used to store source-location information for the
333 /// Note that we explicitly manage the buffer (rather than using a
336 char *Buffer;
338 /// \brief The size of the buffer used to store source-location information
342 /// \brief The capacity of the buffer used to store source-location
348 : Representation(nullptr), Buffer(nullptr), BufferSize(0),
358 free(Buffer);
440 return NestedNameSpecifierLoc(Representation, Buffer).getSourceRange();
456 return NestedNameSpecifierLoc(Representation, Buffer);
466 /// \brief Retrieve the underlying buffer
    [all...]
  /external/clang/lib/AST/
RawCommentList.cpp 176 const char *Buffer = SM.getBufferData(Loc1Info.first, &Invalid).data();
184 switch (Buffer[I]) {
203 (Buffer[I + 1] == '\n' || Buffer[I + 1] == '\r') &&
204 Buffer[I] != Buffer[I + 1])
  /external/clang/test/Analysis/
taint-generic.c 34 int Buffer[BUFSIZE];
39 Buffer[n] = 1; // expected-warning {{Out of bound memory access }}
46 Buffer[m] = 1; // expected-warning {{Out of bound memory access }}
53 Buffer[m] = 1; // expected-warning {{Out of bound memory access }}
62 Buffer[m] = 1; // expected-warning {{Out of bound memory access }}
73 Buffer[m] = 1; //expected-warning {{Out of bound memory access (index is tainted)}}
111 char buffer[156]; local
117 sprintf(buffer, "/bin/mail %s < /tmp/email", addr);
118 system(buffer); // expected-warning {{Untrusted data is passed to a system call}}
143 int *buf1 = (int*)malloc(ts*sizeof(int)); // expected-warning {{Untrusted data is used to specify the buffer size}
163 char buffer[100]; local
    [all...]
  /external/llvm/lib/IR/
GCOV.cpp 29 /// readGCNO - Read GCNO buffer.
30 bool GCOVFile::readGCNO(GCOVBuffer &Buffer) {
31 if (!Buffer.readGCNOFormat()) return false;
32 if (!Buffer.readGCOVVersion(Version)) return false;
34 if (!Buffer.readInt(Checksum)) return false;
36 if (!Buffer.readFunctionTag()) break;
38 if (!GFun->readGCNO(Buffer, Version))
47 /// readGCDA - Read GCDA buffer. It is required that readGCDA() can only be
49 bool GCOVFile::readGCDA(GCOVBuffer &Buffer) {
51 if (!Buffer.readGCDAFormat()) return false
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 40 delete Buffer.getPointer();
46 return Buffer.getPointer() ? Buffer.getPointer()->getBufferSize() : 0;
49 /// Returns the kind of memory used to back the memory buffer for
52 assert(Buffer.getPointer());
55 if (!Buffer.getPointer())
58 llvm::MemoryBuffer *buf = Buffer.getPointer();
64 /// scratch buffer. If the ContentCache encapsulates a source file, that
67 return Buffer.getPointer() ? (unsigned) Buffer.getPointer()->getBufferSize(
    [all...]

Completed in 1145 milliseconds

1 2 3 4 5 6 7 8 91011>>