HomeSort by relevance Sort by last modified time
    Searched full:linesize (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
samplefmt.h 44 * and linesize is the buffer size, in bytes, for a single plane. All data
47 * linesize is the buffer size, in bytes, for the 1 plane.
150 * @param[out] linesize calculated linesize, may be NULL
157 int av_samples_get_buffer_size(int *linesize, int nb_channels, int nb_samples,
161 * Fill plane data pointers and linesize for samples with sample
168 * The value pointed to by linesize is set to the aligned size of each
180 * @param[out] linesize calculated linesize, may be NULL
190 int av_samples_fill_arrays(uint8_t **audio_data, int *linesize,
    [all...]
imgutils.h 64 * @param linesizes array to be filled with the linesize for each plane
75 * @param linesizes the array containing the linesize for each
105 * @param dst_linesize linesize for the image plane in dst
106 * @param src_linesize linesize for the image plane in src
144 * @param align the value used in src for linesize alignment
156 * @param[in] align the assumed linesize alignment
173 * @param align the assumed linesize alignment for dst
pixdesc.h 150 * @param linesize the array containing the linesizes of the image
161 void av_read_image_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4],
171 * @param linesize the array containing the linesizes of the image
178 void av_write_image_line(const uint16_t *src, uint8_t *data[4], const int linesize[4],
  /external/libvpx/libvpx/vpx_scale/mips/dspr2/
yv12extend_dspr2.c 31 uint32_t linesize; local
94 linesize = extend_left + extend_right + width;
97 memcpy(top_dst, top_src, linesize);
102 memcpy(bot_dst, bot_src, linesize);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/mips/dspr2/
yv12extend_dspr2.c 31 uint32_t linesize; local
94 linesize = extend_left + extend_right + width;
97 vpx_memcpy(top_dst, top_src, linesize);
102 vpx_memcpy(bot_dst, bot_src, linesize);
  /external/libvpx/libvpx/vp9/encoder/
vp9_extend.c 23 int i, linesize; local
47 linesize = extend_left + extend_right + w;
50 memcpy(dst_ptr1, src_ptr1, linesize);
55 memcpy(dst_ptr2, src_ptr2, linesize);
66 int i, linesize; local
92 linesize = extend_left + extend_right + w;
95 memcpy(dst_ptr1, src_ptr1, linesize * sizeof(src_ptr1[0]));
100 memcpy(dst_ptr2, src_ptr2, linesize * sizeof(src_ptr2[0]));
  /external/valgrind/coregrind/
m_cache.c 65 #define add_icache(level, size, assoc, linesize) \
68 VEX_CACHE_INIT(INSN_CACHE, level, size, linesize, assoc)); \
71 #define add_dcache(level, size, assoc, linesize) \
74 VEX_CACHE_INIT(DATA_CACHE, level, size, linesize, assoc)); \
77 #define add_ucache(level, size, assoc, linesize) \
80 VEX_CACHE_INIT(UNIFIED_CACHE, level, size, linesize, assoc)); \
91 #define add_I1(size, assoc, linesize) add_icache(1, size, assoc, linesize)
92 #define add_D1(size, assoc, linesize) add_dcache(1, size, assoc, linesize)
    [all...]
  /external/libvpx/libvpx/vp8/common/
extend.c 33 int linesize; local
59 linesize = el + er + w;
63 memcpy(dest_ptr1, src_ptr1, linesize);
69 memcpy(dest_ptr2, src_ptr2, linesize);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
extend.c 33 int linesize; local
59 linesize = el + er + w;
63 vpx_memcpy(dest_ptr1, src_ptr1, linesize);
69 vpx_memcpy(dest_ptr2, src_ptr2, linesize);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_extend.c 21 int i, linesize; local
45 linesize = extend_left + extend_right + w;
48 vpx_memcpy(dst_ptr1, src_ptr1, linesize);
53 vpx_memcpy(dst_ptr2, src_ptr2, linesize);
  /external/libvpx/libvpx/vpx_scale/generic/
yv12extend.c 27 const int linesize = extend_left + extend_right + width; local
53 memcpy(dst_ptr1, src_ptr1, linesize);
58 memcpy(dst_ptr2, src_ptr2, linesize);
69 const int linesize = extend_left + extend_right + width; local
96 memcpy(dst_ptr1, src_ptr1, linesize * sizeof(uint16_t));
101 memcpy(dst_ptr2, src_ptr2, linesize * sizeof(uint16_t));
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_StringIO.py 112 linesize = 2**26 # 64 MiB
113 lines = ['x' * (linesize - 1) + '\n'] * (size // linesize) + \
114 ['y' * (size % linesize)]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_StringIO.py 112 linesize = 2**26 # 64 MiB
113 lines = ['x' * (linesize - 1) + '\n'] * (size // linesize) + \
114 ['y' * (size % linesize)]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_StringIO.py 112 linesize = 2**26 # 64 MiB
113 lines = ['x' * (linesize - 1) + '\n'] * (size // linesize) + \
114 ['y' * (size % linesize)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_StringIO.py 112 linesize = 2**26 # 64 MiB
113 lines = ['x' * (linesize - 1) + '\n'] * (size // linesize) + \
114 ['y' * (size % linesize)]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
yv12extend.c 22 const int linesize = extend_left + extend_right + width; local
48 vpx_memcpy(dst_ptr1, src_ptr1, linesize);
53 vpx_memcpy(dst_ptr2, src_ptr2, linesize);
  /external/llvm/lib/Support/Unix/
Memory.inc 320 const size_t LineSize = 32;
322 const intptr_t Mask = ~(LineSize - 1);
324 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
326 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
330 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
  /external/autotest/client/profilers/powertop/src/
powertop.h 41 extern int linesize;
powertop.c 78 int linesize; variable
99 if (linehead == linesize)
100 lines = realloc (lines, (linesize ? (linesize *= 2) : (linesize = 64)) * sizeof (struct line));
118 if (linehead == linesize)
119 lines = realloc (lines, (linesize ? (linesize *= 2) : (linesize = 64)) * sizeof (struct line));
133 linehead = linesize = 0
    [all...]
  /system/extras/tests/pagingtest/
thrashing_test.c 11 #define LINESIZE 32
  /external/c-ares/
ares__get_hostent.c 41 size_t addrlen, linesize, naliases; local
57 while ((status = ares__read_line(fp, &line, &linesize)) == ARES_SUCCESS)
  /external/icu/icu4c/source/tools/gencnval/
gencnval.c 333 int32_t lineSize = 0;
351 if (lineSize == 0 || (lastLineSize > 0 && isspace((int)*lastLine))) {
352 uprv_strcpy(line + lineSize, lastLine);
353 lineSize += lastLineSize;
354 } else if (lineSize > 0) {
361 if (validParse || lineSize > 0) {
366 if (!standardTagsUsed && line[lineSize - 1] != '}') {
370 addOfficialTaggedStandards(line, lineSize);
384 lineSize = lastLineSize;
387 lineSize = 0
    [all...]
  /frameworks/rs/driver/
rsdAllocation.cpp 896 size_t lineSize = eSize * w;
898 stride = lineSize;
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
GLClientState.cpp 240 size_t linesize = pixelsize * width; local
241 size_t aligned_linesize = int(linesize / alignment) * alignment;
242 if (aligned_linesize < linesize) {
  /external/clang/lib/Rewrite/
Rewriter.cpp 79 unsigned lineSize = 0;
83 ++lineSize;
86 Buffer.erase(curLineStartOffs, lineSize + 1/* + '\n'*/);
87 AddReplaceDelta(curLineStartOffs, -(lineSize + 1/* + '\n'*/));

Completed in 379 milliseconds

1 2 3