HomeSort by relevance Sort by last modified time
    Searched defs:put_buffer (Results 1 - 16 of 16) 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 135 static int put_buffer(struct cras_iodev *iodev, unsigned frames) function
204 iodev->put_buffer = put_buffer;
cras_hfp_iodev.c 170 static int put_buffer(struct cras_iodev *iodev, unsigned nwritten) function
249 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 375 static int put_buffer(struct cras_iodev *iodev, unsigned nwritten) function
491 iodev->put_buffer = put_buffer;
cras_bt_io.c 265 static int put_buffer(struct cras_iodev *iodev, unsigned nwritten) function
270 return dev->put_buffer(dev, nwritten);
338 iodev->put_buffer = put_buffer;
cras_iodev.h 109 * put_buffer - Marks a buffer from get_buffer as read/written.
190 int (*put_buffer)(struct cras_iodev *iodev, unsigned nwritten); member in struct:cras_iodev
cras_alsa_io.c 495 static int put_buffer(struct cras_iodev *iodev, unsigned nwritten) function
    [all...]
  /external/libmicrohttpd/src/testcurl/
test_large_put.c 59 static char *put_buffer; variable
77 memcpy (stream, &put_buffer[*pos], wrt);
120 if (0 == memcmp (upload_data, put_buffer, PUT_SIZE))
467 put_buffer = malloc (PUT_SIZE);
468 if (NULL == put_buffer) return 1;
469 memset (put_buffer, 1, PUT_SIZE);
474 free (put_buffer);
  /external/libmicrohttpd/src/testzzuf/
test_put_large.c 50 static char *put_buffer; variable
68 memcpy (stream, &put_buffer[*pos], wrt);
111 if (0 == memcmp (upload_data, put_buffer, PUT_SIZE))
372 put_buffer = malloc (PUT_SIZE);
373 memset (put_buffer, 1, PUT_SIZE);
377 free (put_buffer);
  /external/adhd/cras/src/tests/
bt_io_unittest.cc 79 d->put_buffer = put_buffer;
116 static int put_buffer(cras_iodev* iodev, function in class:__anon14129::BtIoBasicSuite
173 bt_iodev->put_buffer(bt_iodev, fr);
audio_thread_unittest.cc 99 iodev->put_buffer = put_buffer;
177 static int put_buffer(cras_iodev* iodev, unsigned int num) { function in class:StreamDeviceSuite
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 535 static int put_buffer(struct cras_iodev *iodev, unsigned int nframes) function in namespace:__anon14153
590 iodev.put_buffer = put_buffer;
652 iodev.put_buffer = put_buffer;
675 iodev.put_buffer = put_buffer;
724 iodev.put_buffer = put_buffer;
771 iodev.put_buffer = put_buffer
    [all...]
  /external/libjpeg-turbo/
jcphuff.c 38 size_t put_buffer; /* current bit-accumulation buffer */ member in struct:__anon25016
186 entropy->put_buffer = 0;
223 /* Only the right 24 bits of put_buffer are used; the valid bits are
225 * in one call, and we never retain more than 7 bits in put_buffer
234 register size_t put_buffer = (size_t) code; local
244 put_buffer &= (((size_t) 1)<<size) - 1; /* mask off any extra bits in code */
248 put_buffer <<= 24 - put_bits; /* align incoming bits */
250 put_buffer |= entropy->put_buffer; /* and merge with old buffer contents */
253 int c = (int) ((put_buffer >> 16) & 0xFF)
    [all...]
jchuff.c 70 size_t put_buffer; /* current bit-accumulation buffer */ member in struct:__anon25007
85 ((dest).put_buffer = (src).put_buffer, \
205 entropy->saved.put_buffer = 0;
348 c = (JOCTET)GETJOCTET(put_buffer >> put_bits); \
356 put_buffer = (put_buffer << size) | code; \
467 size_t put_buffer; int put_bits; local
470 put_buffer = state->cur.put_buffer;
513 size_t put_buffer; int put_bits; local
    [all...]

Completed in 493 milliseconds