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

1 2

  /external/pdfium/core/fxcodec/codec/
codec_int.h 26 : src_data(data), src_size(size), offset(0) {}
28 OPJ_SIZE_T src_size; member in struct:DecodeData
fx_codec_a85_unittest.cpp 17 uint32_t src_size = 4; local
24 EXPECT_FALSE(pEncoders->A85Encode(src_buf, src_size, &dest_buf, nullptr));
25 EXPECT_FALSE(pEncoders->A85Encode(src_buf, src_size, nullptr, &dest_size));
27 EXPECT_FALSE(pEncoders->A85Encode(nullptr, src_size, &dest_buf, &dest_size));
35 uint32_t src_size = 8; local
42 EXPECT_TRUE(pEncoders->A85Encode(src_buf, src_size, &dest_buf, &dest_size));
60 uint32_t src_size = 5; local
68 pEncoders->A85Encode(src_buf_1leftover, src_size, &dest_buf, &dest_size));
78 src_size++;
84 pEncoders->A85Encode(src_buf_2leftover, src_size, &dest_buf, &dest_size))
117 uint32_t src_size = 8; local
190 uint32_t src_size = 131; local
    [all...]
fx_codec_rle_unittest.cpp 18 uint32_t src_size = 4; local
26 pEncoders->RunLengthEncode(src_buf, src_size, &dest_buf, nullptr));
28 pEncoders->RunLengthEncode(src_buf, src_size, nullptr, &dest_size));
31 pEncoders->RunLengthEncode(nullptr, src_size, &dest_buf, &dest_size));
38 uint32_t src_size = 1; local
45 pEncoders->RunLengthEncode(src_buf, src_size, &dest_buf, &dest_size));
66 uint32_t src_size = 10; local
75 pEncoders->RunLengthEncode(src_buf_1, src_size, &dest_buf, &dest_size));
79 ASSERT_EQ(src_size, decoded_size);
80 for (uint32_t i = 0; i < src_size; i++
135 uint32_t src_size = 260; local
    [all...]
fx_codec_jpx_opj.cpp 33 if (!srcData || !srcData->src_data || srcData->src_size == 0) {
37 if (srcData->offset >= srcData->src_size) {
40 OPJ_SIZE_T bufferLength = srcData->src_size - srcData->offset;
51 if (!srcData || !srcData->src_data || srcData->src_size == 0) {
55 if (srcData->offset >= srcData->src_size) {
58 OPJ_SIZE_T bufferLength = srcData->src_size - srcData->offset;
67 if (!srcData || !srcData->src_data || srcData->src_size == 0) {
83 srcData->offset = srcData->src_size;
92 std::min(srcData->offset + checkedNbBytes, srcData->src_size);
99 if (!srcData || !srcData->src_data || srcData->src_size == 0)
734 DecodeData srcData(const_cast<unsigned char*>(src_data), src_size); local
    [all...]
  /external/lz4/examples/
simple_buffer.c 41 const size_t src_size = strlen(src) + 1; local
43 const size_t max_dst_size = LZ4_compressBound(src_size);
51 return_value = LZ4_compress_default(src, compressed_data, src_size, max_dst_size);
68 // *new_src location of size src_size since we know that value.
69 char *new_src = malloc(src_size);
74 return_value = LZ4_decompress_safe(compressed_data, new_src, compressed_data_size, src_size);
86 if (memcmp(src, new_src, src_size) != 0)
compress_functions.c 115 const size_t src_size,
132 rv = LZ4_compress_default(src, dst, src_size, max_dst_size);
139 LZ4_compress_default(src, dst, src_size, max_dst_size);
145 rv = LZ4_compress_fast(src, dst, src_size, max_dst_size, acceleration);
152 LZ4_compress_fast(src, dst, src_size, max_dst_size, acceleration);
158 rv = LZ4_compress_fast_extState(&state, src, dst, src_size, max_dst_size, acceleration);
165 LZ4_compress_fast_extState(&state, src, dst, src_size, max_dst_size, acceleration);
174 // //rv = LZ4_compress_generic_wrapper(&state, src, dst, src_size, max_dst_size, notLimited, byU16, noDict, noDictIssue, acceleration);
175 // LZ4_compress_generic_wrapper(&state, src, dst, src_size, max_dst_size, acceleration);
183 // //LZ4_compress_generic_wrapper(&state, src, dst, src_size, max_dst_size, notLimited, byU16, noDict, noDictIssue, acceleration)
248 const size_t src_size = strlen(src) + 1; local
    [all...]
  /external/libevent/
bufferevent_pair.c 154 size_t src_size, dst_size; local
185 src_size = evbuffer_get_length(src->output);
191 if (src_size <= src->wm_write.low) {
  /system/extras/boot_control_copy/
boot_control_copy.c 138 uint64_t src_size, dst_size; local
167 src_fd = boot_info_open_partition(src_name, &src_size, O_RDONLY);
180 if (src_size != dst_size) {
184 src_size, dst_size);
190 if (!copy_data(src_fd, dst_fd, src_size)) {
  /art/runtime/base/
bit_vector.cc 148 // Update src_size to how many cells we actually care about: where the bit is + 1.
149 uint32_t src_size = BitsToWords(highest_bit + 1); local
152 if (storage_size_ < src_size) {
161 for (uint32_t idx = 0; idx < src_size; idx++) {
218 uint32_t src_size = src->storage_size_; local
221 unsigned int min_size = (storage_size_ > src_size) ? src_size : storage_size_;
  /bootable/recovery/tests/component/
updater_test.cpp 140 size_t src_size = src_content.size(); local
145 std::vector<std::string>{ "EMMC", src_file, std::to_string(src_size), src_hash }, ":");
151 std::vector<std::string>{ "EMMC", src_file, std::to_string(src_size - 1), src_hash,
152 std::to_string(src_size + 1), src_hash },
159 android::base::Join(std::vector<std::string>{ "EMMC", src_file, std::to_string(src_size - 1),
160 src_hash, std::to_string(src_size), src_hash,
161 std::to_string(src_size + 1), src_hash },
  /external/opencv/cv/src/
cvsamplers.cpp 89 CvSize src_size, CvSize win_size,
107 if( ip.x + win_size.width < src_size.width )
111 rect.width = src_size.width - ip.x - 1;
128 if( ip.y + win_size.height < src_size.height )
132 rect.height = src_size.height - ip.y - 1;
148 ( const srctype* src, int src_step, CvSize src_size, \
174 if( 0 <= ip.x && ip.x + win_size.width < src_size.width && \
175 0 <= ip.y && ip.y + win_size.height < src_size.height ) \
220 sizeof(*src), src_size, win_size,ip, &r); \
267 ( const srctype* src, int src_step, CvSize src_size, \
546 CvSize src_size, dst_size; local
816 CvSize src_size, dst_size; local
    [all...]
cvpyramids.cpp 496 icvPyrDownBorder_##flavor##_CnR( const arrtype *src, int src_step, CvSize src_size,
1041 CvSize src_size, src_size2, dst_size; local
    [all...]
cvpyrsegmentation.cpp 1836 CvSize src_size, dst_size; local
    [all...]
  /external/pdfium/core/fxge/win32/
cfx_psrenderer.cpp 306 uint32_t src_size,
311 *output_size = src_size;
313 if (src_size < 1024) {
318 uint32_t dest_size = src_size;
321 pEncoders->GetFlateModule()->Encode(src_buf, src_size, &dest_buf,
327 pEncoders->GetBasicModule()->RunLengthEncode(src_buf, src_size,
332 if (dest_size < src_size) {
391 uint32_t src_size = height * pitch; local
392 uint8_t* src_buf = FX_Alloc(uint8_t, src_size);
  /toolchain/binutils/binutils-2.25/opcodes/
aarch64-opc.h 338 int src_size = 0, dst_size = 0;
344 src_size = aarch64_get_qualifier_esize (opcode->qualifiers_list[0][1]);
345 if (src_size == dst_size && src_size == 0)
348 if (dst_size == 0 || dst_size == src_size << 1)
334 int src_size = 0, dst_size = 0; local
  /bionic/libc/kernel/uapi/rdma/
rdma_user_cm.h 115 __u16 src_size; member in struct:rdma_ucm_resolve_addr
157 __u16 src_size; member in struct:rdma_ucm_query_addr_resp
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 383 SIZE_T src_size = REAL(strlen)(src); local
385 CHECK_UNPOISONED_STRING(src + src_size, 0);
388 CopyShadowAndOrigin(dest + dest_size, src, src_size + 1, &stack);
    [all...]
  /external/kernel-headers/original/uapi/rdma/
rdma_user_cm.h 126 __u16 src_size; member in struct:rdma_ucm_resolve_addr
165 __u16 src_size; member in struct:rdma_ucm_query_addr_resp
  /external/pdfium/core/fpdfapi/edit/
fpdf_edit_create.cpp 479 uint32_t src_size);
490 uint32_t src_size)
492 if (src_size == 0)
497 m_dwSize = src_size;
500 m_dwSize = pHandler->EncryptGetSize(objnum, 0, src_data, src_size);
502 pHandler->EncryptContent(objnum, 0, src_data, src_size, m_pData, m_dwSize);
1480 uint32_t src_size = (uint32_t)(uintptr_t)m_Pos; local
    [all...]
  /external/pdfium/core/fpdfapi/render/
cpdf_dibsource.cpp 161 FX_SAFE_UINT32 src_size =
163 if (!src_size.IsValid())
167 m_pStreamAcc->LoadAllData(pStream, false, src_size.ValueOrDie(), true);
274 FX_SAFE_UINT32 src_size = local
276 if (!src_size.IsValid()) {
280 m_pStreamAcc->LoadAllData(pStream, false, src_size.ValueOrDie(), true);
524 uint32_t src_size = m_pStreamAcc->GetSize(); local
527 m_pDecoder = FPDFAPI_CreateFaxDecoder(src_data, src_size, m_Width, m_Height,
531 src_data, src_size, m_Width, m_Height, m_nComponents, m_bpc, pParams);
536 ->CreateRunLengthDecoder(src_data, src_size, m_Width
    [all...]
  /external/opencv/cvaux/src/
cvepilines.cpp 2112 CvSize src_size ; local
    [all...]
  /external/webrtc/talk/app/webrtc/java/jni/
peerconnection_jni.cc 1974 size_t src_size = jni->GetDirectBufferCapacity(j_src_buffer); local
    [all...]
  /hardware/intel/img/psb_video/src/hwdefs/
dxva_cmdseq_msg.h 158 uint32_t src_size; member in struct:fw_slice_header_extract_msg
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
omx_vdec.cpp 9088 unsigned int src_size = 0, destination_size = 0; local
    [all...]
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
omx_vdec.cpp 9338 unsigned int src_size = 0, destination_size = 0; local
    [all...]

Completed in 863 milliseconds

1 2