Searched refs:bufferData (Results 1 - 12 of 12) sorted by relevance

/external/srec/shared/src/
H A DCircularBuffer.c53 unsigned char *bufferData = NULL; local
64 bufferData = ((unsigned char *) buffer) + sizeof(CircularBuffer);
71 memcpy(data, bufferData + buffer->readIdx, nbRead);
81 memcpy(((unsigned char *) data) + nbRead, bufferData + buffer->readIdx, toRead);
112 unsigned char *bufferData; local
125 bufferData = ((unsigned char*) buffer) + sizeof(CircularBuffer);
131 memcpy(bufferData + buffer->writeIdx, data, nbWritten);
141 memcpy(bufferData + buffer->writeIdx, ((unsigned char*) data) + nbWritten, toWrite);
/external/webkit/WebCore/platform/graphics/mac/
H A DFontCustomPlatformData.cpp61 RetainPtr<CFDataRef> bufferData(AdoptCF, buffer->createCFData());
62 RetainPtr<CGDataProviderRef> dataProvider(AdoptCF, CGDataProviderCreateWithCFData(bufferData.get()));
H A DGraphicsContext3DMac.cpp318 void GraphicsContext3D::bufferData(unsigned long target, int size, unsigned long usage) function in class:WebCore::GraphicsContext3D
323 void GraphicsContext3D::bufferData(unsigned long target, WebGLArray* array, unsigned long usage) function in class:WebCore::GraphicsContext3D
/external/webkit/WebKit/android/plugins/
H A DANPSoundInterface.cpp70 dst.bufferData = src->raw;
H A Dandroid_npapi.h704 void* bufferData; member in struct:ANPAudioBuffer
706 to "bufferData". On output, specifies the actual number of bytes that
707 the callback proc wrote into "bufferData".
/external/webkit/WebCore/html/canvas/
H A DWebGLRenderingContext.h79 void bufferData(unsigned long target, int size, unsigned long usage, ExceptionCode&);
80 void bufferData(unsigned long target, WebGLArray* data, unsigned long usage, ExceptionCode&);
H A DWebGLRenderingContext.cpp302 void WebGLRenderingContext::bufferData(unsigned long target, int size, unsigned long usage, ExceptionCode& ec) function in class:WebCore::WebGLRenderingContext
320 m_context->bufferData(target, size, usage);
324 void WebGLRenderingContext::bufferData(unsigned long target, WebGLArray* data, unsigned long usage, ExceptionCode& ec) function in class:WebCore::WebGLRenderingContext
342 m_context->bufferData(target, data, usage);
H A DWebGLRenderingContext.idl476 // void bufferData (in GLenum target, in GLsizei size, in GLenum usage);
477 // void bufferData (in GLenum target, in WebGLArray data, in GLenum usage);
478 [Custom] void bufferData() raises(DOMException);
/external/webkit/WebCore/platform/graphics/
H A DGraphicsContext3D.h435 void bufferData(unsigned long target, int size, unsigned long usage);
436 void bufferData(unsigned long target, WebGLArray* data, unsigned long usage);
/external/webkit/WebCore/bindings/js/
H A DJSWebGLRenderingContextCustom.cpp67 JSValue JSWebGLRenderingContext::bufferData(JSC::ExecState* exec, JSC::ArgList const& args) function in class:WebCore::JSWebGLRenderingContext
79 static_cast<WebGLRenderingContext*>(impl())->bufferData(target, count, usage, ec);
82 static_cast<WebGLRenderingContext*>(impl())->bufferData(target, array, usage, ec);
/external/webkit/WebCore/bindings/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp110 INC_STATS("DOM.WebGLRenderingContext.bufferData()");
113 // * bufferData(GLenum target, WebGLArray data, GLenum usage);
115 // * bufferData(GLenum target, GLsizeiptr size, GLenum usage);
137 context->bufferData(target, size, usage, exceptionCode);
141 context->bufferData(target, array, usage, exceptionCode);
/external/webkit/WebKit/chromium/src/
H A DGraphicsContext3D.cpp942 // LogMessagef(("bufferData: no buffer bound"));
993 // LogMessagef(("bufferData: no buffer bound"));
1338 void GraphicsContext3D::bufferData(unsigned long target, int size, unsigned long usage) function in class:WebCore::GraphicsContext3D
1343 void GraphicsContext3D::bufferData(unsigned long target, WebGLArray* array, unsigned long usage) function in class:WebCore::GraphicsContext3D
1456 // LogMessagef(("bufferData: no buffer bound"));

Completed in 71 milliseconds