HomeSort by relevance Sort by last modified time
    Searched defs:put_buffer (Results 1 - 14 of 14) sorted by null

  /external/libxcam/xcore/
x3a_image_process_center.cpp 108 X3aImageProcessCenter::put_buffer (SmartPtr<VideoBuffer> &buf) function in class:XCam::X3aImageProcessCenter
  /external/adhd/cras/src/server/
cras_empty_iodev.c 138 static int put_buffer(struct cras_iodev *iodev, unsigned frames) function
208 iodev->put_buffer = put_buffer;
cras_hfp_iodev.c 171 static int put_buffer(struct cras_iodev *iodev, unsigned nwritten) function
252 iodev->put_buffer = put_buffer;
test_iodev.c 108 static int put_buffer(struct cras_iodev *iodev, unsigned frames) function
204 iodev->put_buffer = put_buffer;
cras_a2dp_iodev.c 376 static int put_buffer(struct cras_iodev *iodev, unsigned nwritten) function
493 iodev->put_buffer = put_buffer;
cras_bt_io.c 271 static int put_buffer(struct cras_iodev *iodev, unsigned nwritten) function
276 return dev->put_buffer(dev, nwritten);
345 iodev->put_buffer = put_buffer;
cras_iodev.h 116 * put_buffer - Marks a buffer from get_buffer as read/written.
212 int (*put_buffer)(struct cras_iodev *iodev, unsigned nwritten); member in struct:cras_iodev
cras_alsa_io.c 525 static int put_buffer(struct cras_iodev *iodev, unsigned nwritten) function
    [all...]
  /external/adhd/cras/src/tests/
bt_io_unittest.cc 82 d->put_buffer = put_buffer;
125 static int put_buffer(cras_iodev* iodev, function in class:__anon15176::BtIoBasicSuite
187 bt_iodev->put_buffer(bt_iodev, fr);
audio_thread_unittest.cc 105 iodev->put_buffer = put_buffer;
183 static int put_buffer(cras_iodev* iodev, unsigned int num) { function in class:StreamDeviceSuite
    [all...]
audio_thread_unittest_obsolete.cc 84 iodev_.put_buffer = put_buffer;
185 static int put_buffer(cras_iodev* iodev, function in class:ReadStreamSuite
514 iodev_.put_buffer = put_buffer;
613 static int put_buffer(cras_iodev* iodev, function in class:WriteStreamSuite
1170 static int put_buffer(cras_iodev* iodev, function in class:AddStreamSuite
1586 static int put_buffer(cras_iodev* iodev, function in class:ActiveDevicesSuite
    [all...]
iodev_unittest.cc 552 static int put_buffer(struct cras_iodev *iodev, unsigned int nframes) function in namespace:__anon15203
607 iodev.put_buffer = put_buffer;
669 iodev.put_buffer = put_buffer;
692 iodev.put_buffer = put_buffer;
741 iodev.put_buffer = put_buffer;
788 iodev.put_buffer = put_buffer
    [all...]
  /external/libjpeg-turbo/
jchuff.c 69 size_t put_buffer; /* current bit-accumulation buffer */ member in struct:__anon28811
84 ((dest).put_buffer = (src).put_buffer, \
204 entropy->saved.put_buffer = 0;
348 c = (JOCTET)GETJOCTET(put_buffer >> put_bits); \
356 put_buffer = (put_buffer << size) | code; \
466 size_t put_buffer; int put_bits; local
469 put_buffer = state->cur.put_buffer;
512 size_t put_buffer; int put_bits; local
    [all...]
jcphuff.c 93 size_t put_buffer; /* current bit-accumulation buffer */ member in struct:__anon28820
283 entropy->put_buffer = 0;
321 /* Only the right 24 bits of put_buffer are used; the valid bits are
323 * in one call, and we never retain more than 7 bits in put_buffer
332 register size_t put_buffer = (size_t)code; local
342 put_buffer &= (((size_t)1) << size) - 1; /* mask off any extra bits in code */
346 put_buffer <<= 24 - put_bits; /* align incoming bits */
348 put_buffer |= entropy->put_buffer; /* and merge with old buffer contents */
351 int c = (int)((put_buffer >> 16) & 0xFF)
    [all...]

Completed in 1837 milliseconds