HomeSort by relevance Sort by last modified time
    Searched refs:buf_size (Results 1 - 25 of 531) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
__memchr_chk.cpp 33 extern "C" void* __memchr_chk(const void* s, int c, size_t n, size_t buf_size) {
34 if (__predict_false(n > buf_size)) {
__memrchr_chk.cpp 33 extern "C" void* __memrchr_chk(const void* s, int c, size_t n, size_t buf_size) {
34 if (__predict_false(n > buf_size)) {
__pread64_chk.cpp 33 extern "C" ssize_t __pread64_chk(int fd, void* buf, size_t count, off64_t offset, size_t buf_size) {
34 if (__predict_false(count > buf_size)) {
__pread_chk.cpp 33 extern "C" ssize_t __pread_chk(int fd, void* buf, size_t count, off_t offset, size_t buf_size) {
34 if (__predict_false(count > buf_size)) {
__pwrite64_chk.cpp 34 size_t buf_size) {
35 if (__predict_false(count > buf_size)) {
__pwrite_chk.cpp 34 size_t buf_size) {
35 if (__predict_false(count > buf_size)) {
__read_chk.cpp 33 extern "C" ssize_t __read_chk(int fd, void* buf, size_t count, size_t buf_size) {
34 if (__predict_false(count > buf_size)) {
__readlink_chk.cpp 33 extern "C" ssize_t __readlink_chk(const char* path, char* buf, size_t size, size_t buf_size) {
34 if (__predict_false(size > buf_size)) {
__readlinkat_chk.cpp 33 extern "C" ssize_t __readlinkat_chk(int dirfd, const char* path, char* buf, size_t size, size_t buf_size) {
34 if (__predict_false(size > buf_size)) {
__write_chk.cpp 33 extern "C" ssize_t __write_chk(int fd, const void* buf, size_t count, size_t buf_size) {
34 if (__predict_false(count > buf_size)) {
__fread_chk.cpp 35 FILE * __restrict stream, size_t buf_size) {
42 if (__predict_false(total > buf_size)) {
__fwrite_chk.cpp 35 FILE * __restrict stream, size_t buf_size) {
42 if (__predict_false(total > buf_size)) {
  /frameworks/minikin/tests/
UnicodeUtils.h 17 void ParseUnicode(uint16_t* buf, size_t buf_size, const char* src, size_t* result_size,
  /system/update_engine/payload_generator/
bzip.cc 37 size_t buf_size = 40 + in.size() * 35 / 100;
38 out->resize(buf_size);
42 if (buf_size > std::numeric_limits<uint32_t>::max())
44 uint32_t data_size = buf_size;
61 buf_size *= 2;
62 out->resize(buf_size);
  /device/moto/shamu/camera/QCamera/stack/mm-camera-interface/inc/
mm_camera_sock.h 45 uint32_t buf_size,
51 uint32_t buf_size,
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/inc/
mm_camera_sock.h 45 uint32_t buf_size,
51 uint32_t buf_size,
  /frameworks/av/services/camera/libcameraservice/api1/client2/
Camera2Heap.h 29 Camera2Heap(size_t buf_size, uint_t num_buffers = 1,
31 mBufSize(buf_size),
33 mHeap = new MemoryHeapBase(buf_size * num_buffers, 0, name);
  /hardware/qcom/camera/QCamera2/stack/mm-camera-interface/inc/
mm_camera_sock.h 57 size_t buf_size,
63 size_t buf_size,
70 uint32_t buf_size,
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_windows.cc 31 void WriteMemoryProfile(char *buf, uptr buf_size, uptr nthread, uptr nlive) {
  /hardware/qcom/msm8996/kernel-headers/scsi/ufs/
ioctl.h 27 __u16 buf_size; member in struct:ufs_ioctl_query_data
  /hardware/qcom/msm8996/original-kernel-headers/scsi/ufs/
ioctl.h 16 * @buf_size: number of allocated bytes/data size on return
19 * Received: buffer and buf_size (available space for transfered data)
20 * Submitted: opcode, idn, length, buf_size
44 * buf_size. So we are updating buf_size to what exactly we have read.
46 __u16 buf_size; member in struct:ufs_ioctl_query_data
  /device/huawei/angler/camera/QCamera2/stack/mm-camera-interface/inc/
mm_camera_sock.h 53 size_t buf_size,
59 uint32_t buf_size,
  /device/lge/bullhead/camera/QCamera2/stack/mm-camera-interface/inc/
mm_camera_sock.h 53 size_t buf_size,
59 uint32_t buf_size,
  /external/vboot_reference/tests/
vb21_common_tests.c 259 uint32_t buf_size; local
283 buf_size = kbuf->c.total_size;
286 buf2 = malloc(buf_size);
287 memcpy(buf2, buf, buf_size);
292 TEST_SUCC(vb2_verify_keyblock(kbuf, buf_size, &pubk, &wb),
295 memcpy(buf, buf2, buf_size);
296 TEST_SUCC(vb2_verify_keyblock(kbuf, buf_size, &pubk2, &wb),
299 memcpy(buf, buf2, buf_size);
300 TEST_EQ(vb2_verify_keyblock(kbuf, buf_size, &pubk3, &wb),
304 memcpy(buf, buf2, buf_size);
386 uint32_t buf_size; local
    [all...]
  /external/libavc/test/encoder/
output.c 67 WORD32 buf_size; local
71 buf_size = ps_app_ctxt->s_get_buf_info_op.s_ive_op.au4_min_out_buf_size[0];
77 pu1_buf = (UWORD8 *)ih264a_aligned_malloc(16, buf_size);
82 buf_size);
86 ps_app_ctxt->as_output_buf[i].u4_buf_size = buf_size;

Completed in 503 milliseconds

1 2 3 4 5 6 7 8 91011>>