HomeSort by relevance Sort by last modified time
    Searched defs:out_size (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /external/libxml2/doc/examples/
testWriter.c 1149 int out_size; local
    [all...]
  /external/google-breakpad/src/client/
minidump_file_writer.cc 123 size_t out_size = sizeof(uint16_t) * out_count; local
124 result = mdstring->CopyIndexAfterObject(out_idx, out, out_size);
150 size_t out_size = sizeof(uint16_t) * out_count; local
151 result = mdstring->CopyIndexAfterObject(out_idx, out, out_size);
  /external/libbrillo/brillo/
data_encoding.cc 33 size_t out_size = modp_b64_encode(buffer.data(), local
36 return std::string{buffer.begin(), buffer.begin() + out_size};
  /external/libweave/src/
data_encoding.cc 36 size_t out_size = local
38 return std::string{buffer.begin(), buffer.begin() + out_size};
  /external/lzma/xz-embedded/
xz.h 132 * if out_pos is equal to out_size.
134 * out_size.
135 * @out_size: Size of the output buffer
147 size_t out_size; member in struct:xz_buf
xz_dec_bcj.c 53 size_t out_size; member in struct:xz_dec_bcj
403 copy_size = min_t(size_t, s->temp.filtered, b->out_size - b->out_pos);
449 if (s->temp.size < b->out_size - b->out_pos || s->temp.size == 0) {
478 if (b->out_pos + s->temp.size < b->out_size)
490 if (b->out_pos < b->out_size) {
494 s->out_size = b->out_size;
497 b->out_size = sizeof(s->temp.buf);
504 b->out_size = s->out_size;
    [all...]
  /external/elfutils/libelf/
elf_compress.c 102 size_t out_size = 2 * block; local
103 void *out_buf = malloc (out_size);
164 z.avail_out = out_size - used;
172 used += (out_size - used) - z.avail_out;
182 void *bigger = realloc (out_buf, out_size + block);
189 out_size += block;
  /external/libvncserver/client_examples/
vnc2mpg.c 173 int out_size, ret; local
207 out_size = avcodec_encode_video(c, video_outbuf, video_outbuf_size, picture_ptr);
209 if (out_size != 0) {
218 pkt.size= out_size;
  /frameworks/av/media/libstagefright/
SimpleDecodingSource.cpp 196 size_t out_ix, in_ix, out_offset, out_size; local
302 &out_ix, &out_offset, &out_size, &out_pts,
342 if (out_size == 0) {
348 if (mUsingSurface && out_size > 0) {
352 *buffer = new MediaBuffer(out_size);
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
bitmaptools.cc 125 int out_size = row_size * box.height(); local
126 unsigned char* out = new unsigned char[out_size];
135 WriteResponse(out, out_size);
  /system/extras/verity/
build_verity_tree.cpp 56 unsigned char *out, size_t *out_size)
70 if (out_size) {
71 *out_size = s;
78 unsigned char *out, size_t *out_size,
83 *out_size = 0;
87 *out_size += s;
333 size_t out_size; local
336 verity_tree_levels[i + 1], &out_size,
339 assert(div_round_up(out_size, block_size) == verity_tree_level_blocks[i + 1]);
341 assert(out_size == hash_size)
    [all...]
  /external/boringssl/src/crypto/bytestring/
bytestring_test.cc 299 size_t out_size; local
303 !CBB_finish(&cbb, &out_buf, &out_size) ||
305 out_size != 0) {
312 !CBB_finish(&cbb, &out_buf, &out_size) ||
314 out_size != 1 ||
325 size_t out_size; local
331 CBB_finish(&child, &out_buf, &out_size) ||
332 !CBB_finish(&cbb, &out_buf, &out_size)) {
337 return out_size == 1 && out_buf[0] == 0;
  /external/opencv3/3rdparty/libwebp/enc/
histogram.c 370 int out_size = in->size; local
386 for (iter = 0; iter < outer_iters && out_size >= min_cluster_size; ++iter) {
390 const int num_tries = (num_pairs < out_size) ? num_pairs : out_size;
395 const uint32_t idx1 = MyRand(&seed) % out_size;
397 const uint32_t diff = (tmp < 3) ? tmp : MyRand(&seed) % (out_size - 1);
398 const uint32_t idx2 = (idx1 + diff + 1) % out_size;
421 --out_size;
422 if (best_idx2 != out_size) {
423 out->histograms[best_idx2] = out->histograms[out_size];
    [all...]
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 137 int out_size; local
140 if (!output->Next(&out, &out_size)) {
143 EXPECT_GT(out_size, 0);
145 if (in_size <= out_size) {
147 output->BackUp(out_size - in_size);
151 memcpy(out, in, out_size);
152 in += out_size;
153 in_size -= out_size;
161 int out_size = size; local
170 return size - out_size;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
hs20_supplicant.c 262 size_t out_size; local
276 out_size = buf_len - 3 /* max base64 padding */;
277 if (size * 4 > out_size * 3)
278 size = out_size * 3 / 4;
  /device/huawei/angler/camera/QCamera2/HAL/
QCameraPostProc.cpp 422 size_t out_size; local
570 out_size = main_offset.frame_len;
573 out_size = sizeof(omx_jpeg_ouput_buf_t);
583 m_pJpegOutputMem[i] = malloc(out_size);
    [all...]
  /device/lge/bullhead/camera/QCamera2/HAL/
QCameraPostProc.cpp 422 size_t out_size; local
570 out_size = main_offset.frame_len;
573 out_size = sizeof(omx_jpeg_ouput_buf_t);
583 m_pJpegOutputMem[i] = malloc(out_size);
    [all...]
  /device/moto/shamu/camera/QCamera2/HAL/
QCameraPostProc.cpp 340 uint32_t out_size; local
483 out_size = main_offset.frame_len;
486 out_size = sizeof(omx_jpeg_ouput_buf_t);
496 m_pJpegOutputMem[i] = malloc(out_size);
    [all...]
  /external/opencv3/modules/videoio/src/
cap_ffmpeg_impl.hpp 1325 int out_size = avcodec_encode_video(c, outbuf, outbuf_size, picture); local
    [all...]
  /external/webrtc/talk/media/base/
videoframe_unittest.h 189 size_t out_size = cricket::VideoFrame::SizeOf(frame.GetWidth(), local
191 rtc::scoped_ptr<uint8_t[]> out(new uint8_t[out_size]);
192 frame.CopyToBuffer(out.get(), out_size);
193 return DumpSample(filename, out.get(), out_size);
770 size_t out_size = kWidth * kHeight * 2; local
771 rtc::scoped_ptr<uint8_t[]> outbuf(new uint8_t[out_size + kAlignment]);
775 EXPECT_EQ(out_size, frame1.ConvertToRgbBuffer(cricket::FOURCC_RGBP,
777 out_size, kWidth * 2));
778 EXPECT_TRUE(LoadFrame(out, out_size, cricket::FOURCC_RGBP,
786 size_t out_size = kWidth * kHeight * 2 local
802 size_t out_size = kWidth * kHeight * 2; local
1006 size_t out_size = 4; local
1043 size_t out_size = 10 * 4; local
1480 size_t out_size = astride * kHeight; local
1798 size_t out_size = kWidth * kHeight * 2; local
1864 size_t out_size = kWidth * kHeight * 3 \/ 2; local
1907 size_t out_size = cricket::VideoFrame::SizeOf(kWidth, kHeight); local
1912 size_t out_size = 3; local
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/test/
audio_processing_unittest.cc 1828 size_t out_size = ReadMessageBytesFromFile(out_file, &out_bytes); local
    [all...]
  /hardware/qcom/camera/QCamera2/HAL/
QCameraPostProc.cpp 473 size_t out_size; local
654 out_size = main_offset.frame_len;
658 out_size = sizeof(omx_jpeg_ouput_buf_t);
669 m_pJpegOutputMem[i] = malloc(out_size);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
fuse.h 500 __u32 out_size; member in struct:fuse_ioctl_in
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
fuse.h 536 __u32 out_size; member in struct:fuse_ioctl_in
  /toolchain/binutils/binutils-2.25/gas/
write.c 1353 int out_size; local
1456 int out_size; local
1489 int out_size; local
    [all...]

Completed in 1714 milliseconds

1 2 3 4 5 6 7