HomeSort by relevance Sort by last modified time
    Searched refs:buffers (Results 51 - 75 of 365) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
multibuf.h 134 int nbuffers; /* Number of buffers */
135 Multibuffer *buffers; /* Buffers */ member in struct:__anon25318
169 int max_buffers; /* most buffers for this visual */
170 int depth; /* depth of buffers to be created */
193 Multibuffer* /* buffers */
204 Multibuffer* /* buffers */,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
multibuf.h 134 int nbuffers; /* Number of buffers */
135 Multibuffer *buffers; /* Buffers */ member in struct:__anon26830
169 int max_buffers; /* most buffers for this visual */
170 int depth; /* depth of buffers to be created */
193 Multibuffer* /* buffers */
204 Multibuffer* /* buffers */,
  /development/tools/emulator/system/camera/
EmulatedFakeCamera2.h 99 buffer_handle_t *buffers);
222 Buffers *mNextBuffers;
237 Buffers *buffers);
260 Buffers *buffers; member in struct:android::EmulatedFakeCamera2::ReadoutThread::InFlightQueue
273 Buffers *mBuffers;
EmulatedCamera2.cpp 143 buffer_handle_t *buffers) {
273 buffer_handle_t *buffers) {
277 buffers);
  /frameworks/base/core/jni/
android_hardware_Camera.cpp 76 void clearCallbackBuffers_l(JNIEnv *env, Vector<jbyteArray> *buffers);
78 jbyteArray getCallbackBuffer(JNIEnv *env, Vector<jbyteArray> *buffers, size_t bufferSize);
102 bool mManualBufferMode; // Whether to use application managed buffers.
197 JNIEnv* env, Vector<jbyteArray>* buffers, size_t bufferSize)
202 if (!buffers->isEmpty()) {
203 ALOGV("Using callback buffer from queue of length %d", buffers->size());
204 jbyteArray globalBuffer = buffers->itemAt(0);
205 buffers->removeAt(0);
245 ALOGV("Out of buffers, clearing callback!");
372 // of buffers for throttling
    [all...]
android_opengl_GLES11.cpp 380 /* void glDeleteBuffers ( GLsizei n, const GLuint *buffers ) */
389 GLuint *buffers = (GLuint *) 0; local
394 _exceptionMessage = "buffers == null";
412 buffers = buffers_base + offset;
416 (GLuint *)buffers
429 /* void glDeleteBuffers ( GLsizei n, const GLuint *buffers ) */
439 GLuint *buffers = (GLuint *) 0; local
441 buffers = (GLuint *)getPointer(_env, buffers_buf, &_array, &_remaining, &_bufferOffset);
448 if (buffers == NULL) {
450 buffers = (GLuint *) (_buffersBase + _bufferOffset)
493 GLuint *buffers = (GLuint *) 0; local
543 GLuint *buffers = (GLuint *) 0; local
    [all...]
  /system/core/libpixelflinger/
picker.cpp 44 new_needs.n |= GGL_BUILD_NEEDS(c->state.buffers.color.format, CB_FORMAT);
50 uint32_t n = GGL_BUILD_NEEDS(c->state.buffers.color.format, CB_FORMAT);
57 const GGLFormat& cbf = c->formats[ c->state.buffers.color.format ];
raster.cpp 59 surface_t* cb = &(c->state.buffers.color);
156 const GGLSurface& cbSurface = c->state.buffers.color.s;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
DB_Results.java 292 StringBuffer[] buffers = new StringBuffer[10]; field in class:DB_Results.LogWriter
298 if (++this.depth >= this.buffers.length) {
300 System.arraycopy(this.buffers, 0, this.buffers= new StringBuffer[this.depth+10], 0, this.depth);
302 StringBuffer buffer = this.buffers[this.depth];
303 if (this.buffers[this.depth] == null) buffer = this.buffers[this.depth] = new StringBuffer();
311 this.buffers[this.depth].append(log);
318 print(this.buffers[i].toString());
326 this.buffers = new StringBuffer[10]
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H264TrackImpl.java 309 private ByteBuffer createSample(List<byte[]> buffers) {
311 for (int i = 0; i < buffers.size(); i++) {
312 outsize += buffers.get(i).length + 4;
317 for (int i = 0; i < buffers.size(); i++) {
318 bb.putInt(buffers.get(i).length);
319 bb.put(buffers.get(i));
  /external/openssl/android.testssl/
testssl 73 echo test sslv2/sslv3 with both client and server authentication and small client buffers
76 echo test sslv2/sslv3 with both client and server authentication and small server buffers
79 echo test sslv2/sslv3 with both client and server authentication and small client and server buffers
  /frameworks/av/media/libstagefright/
MediaCodec.cpp 305 status_t MediaCodec::getInputBuffers(Vector<sp<ABuffer> > *buffers) const {
308 msg->setPointer("buffers", buffers);
314 status_t MediaCodec::getOutputBuffers(Vector<sp<ABuffer> > *buffers) const {
317 msg->setPointer("buffers", buffers);
570 ALOGV("%s buffers allocated",
578 Vector<BufferInfo> *buffers = &mPortBuffers[portIndex]; local
599 buffers->push_back(info);
604 // We're always allocating output buffers afte
1256 Vector<BufferInfo> *buffers = &mPortBuffers[portIndex]; local
1283 Vector<BufferInfo> *buffers = &mPortBuffers[portIndex]; local
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/sink/
TunnelRenderer.cpp 55 virtual void setBuffers(const Vector<sp<IMemory> > &buffers);
97 const Vector<sp<IMemory> > &buffers) {
98 mBuffers = buffers;
  /cts/suite/audio_quality/lib/src/task/
TaskProcess.cpp 52 // Allocate Buffers and Values to pass to builtin functions
57 UniquePtr<UniqueBuffer, DefaultDelete<UniqueBuffer[]> > & buffers,
75 buffers.reset(new UniqueBuffer[N]);
76 if (buffers.get() == NULL) {
83 UniqueBuffer* buffersPtr = buffers.get();
  /frameworks/base/media/jni/
android_media_MediaCodec.cpp 206 Vector<sp<ABuffer> > buffers; local
210 ? mCodec->getInputBuffers(&buffers)
211 : mCodec->getOutputBuffers(&buffers);
239 buffers.size(), byteBufferClass, NULL);
241 for (size_t i = 0; i < buffers.size(); ++i) {
242 const sp<ABuffer> &buffer = buffers.itemAt(i);
697 jobjectArray buffers; local
698 status_t err = codec->getBuffers(env, input, &buffers);
701 return buffers;
  /frameworks/native/opengl/tools/glgen/specs/gles11/
checks.spec 5 glDeleteBuffers check buffers n
9 glGenBuffers check buffers n
  /frameworks/wilhelm/tests/sandbox/
playbq.c 43 short *buffers; variable
44 SLuint32 byteOrder; // desired to use for PCM buffers
80 short *buffer = &buffers[framesPerBuffer * sfinfo.channels * which];
173 fprintf(stderr, " -n# number of buffers (default 2)\n");
237 buffers = (short *) malloc(framesPerBuffer * sfinfo.channels * sizeof(short) * numBuffers);
375 // loop until EOF or no more buffers
377 short *buffer = &buffers[framesPerBuffer * sfinfo.channels * which];
  /development/tools/emulator/system/camera/fake-pipeline2/
JpegCompressor.cpp 40 status_t JpegCompressor::start(Buffers *buffers,
53 mBuffers = buffers;
80 // Find source and target buffers. Assumes only one buffer matches
96 ALOGE("%s: Unable to find buffers for JPEG source/destination",
  /external/mesa3d/docs/
MESA_resize_buffers.spec 60 reallocating depth, stencil, alpha and accumulation buffers.
  /frameworks/av/include/media/stagefright/
MediaCodec.h 106 status_t getInputBuffers(Vector<sp<ABuffer> > *buffers) const;
107 status_t getOutputBuffers(Vector<sp<ABuffer> > *buffers) const;
  /external/qemu/android/
hw-qemud.c     [all...]
  /frameworks/native/opengl/libagl/
state.cpp 370 int index = c->rasterizer.state.buffers.color.format;
376 int index = c->rasterizer.state.buffers.color.format;
382 int index = c->rasterizer.state.buffers.color.format;
388 int index = c->rasterizer.state.buffers.color.format;
410 params[0] = c->rasterizer.state.buffers.depth.format ? 0 : 16;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 29 ; * [in] pSrcMVLeftMB pointers to the motion vector buffers of the
32 ; * [in] pSrcMVUpperMB pointers to the motion vector buffers of the
35 ; * [in] pSrcMVUpperRightMB pointers to the motion vector buffers of the
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 29 ; * [in] pSrcMVLeftMB pointers to the motion vector buffers of the
32 ; * [in] pSrcMVUpperMB pointers to the motion vector buffers of the
35 ; * [in] pSrcMVUpperRightMB pointers to the motion vector buffers of the
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
multibufst.h 58 CARD16 maxBuffers B16; /* maximum supported buffers */
156 } xMbufDisplayImageBuffersReq; /* followed by list of buffers */
261 Multibuffer left B32; /* associated buffers */
390 int numMultibuffer; /* count of buffers */
402 MultibufferPtr buffers; /* array of numMultibuffer buffers */ member in struct:_Multibuffers
413 * per display-image-buffers request data.
456 ((pMBWindow)->buffers + (pMBWindow)->displayedMultibuffer)
479 int numMultibuffer; /* count of buffers */
480 mbufBufferPtr buffers; /* array of (numMultibuffer) buffers * member in struct:_mbufWindow
    [all...]

Completed in 3493 milliseconds

1 23 4 5 6 7 8 91011>>