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

1 2 3 4 5

  /external/valgrind/main/memcheck/tests/
overlap.stderr.exp 1 Source and destination overlap in memcpy(0x........, 0x........, 21)
3 by 0x........: main (overlap.c:40)
5 Source and destination overlap in memcpy(0x........, 0x........, 21)
7 by 0x........: main (overlap.c:42)
9 Source and destination overlap in strncpy(0x........, 0x........, 21)
11 by 0x........: main (overlap.c:45)
13 Source and destination overlap in strncpy(0x........, 0x........, 21)
15 by 0x........: main (overlap.c:47)
17 Source and destination overlap in strcpy(0x........, 0x........)
19 by 0x........: main (overlap.c:54
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
ec_types.h 22 int overlap; member in struct:__anon23945
error_concealment.c 70 /* Inserts a new overlap area value to the list of overlaps of a block */
73 int overlap)
76 if (overlap <= 0)
78 /* Find and assign to the next empty overlap node in the list of overlaps.
85 overlaps[i].overlap = overlap;
91 /* Calculates the overlap area between two 4x4 squares, where the first
94 * properly handle squares which do not overlap.
108 /* Calculates the overlap area for all blocks in a macroblock at position
120 * overlapped by bmi and calculate and assign overlap for each of thos
162 const int overlap = block_overlap(new_row, new_col, local
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
s_tmp3dec_chan.h 88 int32 overlap[SUBBANDS_NUMBER*FILTERBANK_BANDS]; member in struct:__anon32441
pvmp3_imdct_synth.h 85 int32 overlap[SUBBANDS_NUMBER*FILTERBANK_BANDS],
pvmp3_mdct_6.h 93 void pvmp3_mdct_6(int32 vec[], int32 *overlap);
pvmp3_mdct_18.h 96 void pvmp3_mdct_6(int32 vec[], int32 *overlap);
  /external/chromium_org/third_party/icu/source/common/
unisetspan.cpp 563 * with a partial overlap because the recursive algorithm would have tried
611 * with a partial overlap because the standard algorithm would have tried
614 * must be matched with a full overlap because the longest-match algorithm
639 // Consider strings; they may overlap with the span.
650 int32_t overlap=spanLengths[i]; local
651 if(overlap==ALL_CP_CONTAINED) {
658 // Try to match this string at pos-overlap..pos.
659 if(overlap>=LONG_SPAN) {
660 overlap=length16;
662 U16_BACK_1(s16, 0, overlap); // Length of the string minus the last code point
689 int32_t overlap=spanLengths[i]; local
814 int32_t overlap=spanBackLengths[i]; local
855 int32_t overlap=spanBackLengths[i]; local
982 int32_t overlap=spanUTF8Lengths[i]; local
1030 int32_t overlap=spanUTF8Lengths[i]; local
1162 int32_t overlap=spanBackUTF8Lengths[i]; local
1211 int32_t overlap=spanBackUTF8Lengths[i]; local
    [all...]
  /external/icu4c/common/
unisetspan.cpp 565 * with a partial overlap because the recursive algorithm would have tried
613 * with a partial overlap because the standard algorithm would have tried
616 * must be matched with a full overlap because the longest-match algorithm
641 // Consider strings; they may overlap with the span.
652 int32_t overlap=spanLengths[i]; local
653 if(overlap==ALL_CP_CONTAINED) {
660 // Try to match this string at pos-overlap..pos.
661 if(overlap>=LONG_SPAN) {
662 overlap=length16;
664 U16_BACK_1(s16, 0, overlap); // Length of the string minus the last code point
691 int32_t overlap=spanLengths[i]; local
816 int32_t overlap=spanBackLengths[i]; local
857 int32_t overlap=spanBackLengths[i]; local
984 int32_t overlap=spanUTF8Lengths[i]; local
1032 int32_t overlap=spanUTF8Lengths[i]; local
1164 int32_t overlap=spanBackUTF8Lengths[i]; local
1213 int32_t overlap=spanBackUTF8Lengths[i]; local
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
mdct.h 62 const opus_val16 *window, int overlap, int shift, int stride);
64 /** Compute a backward MDCT (no scaling) and performs weighted overlap-add
68 const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride);
modes.h 42 #ifndef OVERLAP
43 #define OVERLAP(mode) ((mode)->overlap)
62 int overlap; member in struct:OpusCustomMode
celt_lpc.h 51 int _celt_autocorr(const opus_val16 *x, opus_val32 *ac, const opus_val16 *window, int overlap, int lag, int n);
mdct.c 106 const opus_val16 *window, int overlap, int shift, int stride)
131 const kiss_fft_scalar * OPUS_RESTRICT xp1 = in+(overlap>>1);
132 const kiss_fft_scalar * OPUS_RESTRICT xp2 = in+N2-1+(overlap>>1);
134 const opus_val16 * OPUS_RESTRICT wp1 = window+(overlap>>1);
135 const opus_val16 * OPUS_RESTRICT wp2 = window+(overlap>>1)-1;
136 for(i=0;i<((overlap+3)>>2);i++)
147 wp2 = window+overlap-1;
148 for(;i<N4-((overlap+3)>>2);i++)
212 const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride)
252 opus_ifft(l->kfft[shift], (kiss_fft_cpx *)f2, (kiss_fft_cpx *)(out+(overlap>>1)))
    [all...]
celt_decoder.c 66 int overlap; member in struct:OpusCustomDecoder
91 celt_sig _decode_mem[1]; /* Size = channels*(DECODE_BUFFER_SIZE+mode->overlap) */
108 + (channels*(DECODE_BUFFER_SIZE+mode->overlap)-1)*sizeof(celt_sig)
155 st->overlap = mode->overlap;
267 const int overlap = OVERLAP(mode); local
280 /* IMDCT on the interleaved the sub-frames, overlap-add is performed by the IMDCT */
282 clt_mdct_backward(&mode->mdct, &X[b+c*N*B], out_mem[c]+N*b, mode->window, overlap, shift, B);
344 int overlap; local
697 int overlap; local
    [all...]
celt.c 116 const opus_val16 *window, int overlap)
144 for (i=0;i<overlap;i++)
166 OPUS_MOVE(y+overlap, x+overlap, N-overlap);
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_named_pipe.c 62 OVERLAPPED overlap; member in struct:wpa_ctrl_dst
90 LPOVERLAPPED overlap);
97 LPOVERLAPPED overlap);
147 dst->overlap.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
148 if (dst->overlap.hEvent == NULL) {
154 eloop_register_event(dst->overlap.hEvent,
155 sizeof(dst->overlap.hEvent),
181 if (ConnectNamedPipe(dst->pipe, &dst->overlap)) {
198 if (SetEvent(dst->overlap.hEvent))
226 if (dst->overlap.hEvent)
541 OVERLAPPED overlap; member in struct:wpa_global_dst
    [all...]
  /external/aac/libFDK/src/
mdct.cpp 100 FIXP_DBL *overlap,
103 hMdct->overlap.freq = overlap;
104 //FDKmemclear(overlap, overlapBufferSize*sizeof(FIXP_DBL));
166 FDKmemcpy(output, hMdct->overlap.time, buffered_samples*sizeof(FIXP_DBL));
186 FDKmemcpy(pTimeData, hMdct->overlap.time, nt*sizeof(FIXP_DBL));
189 pOvl = hMdct->overlap.freq + hMdct->ov_size - 1;
232 * If the previous transform block is big enough, enlarge previous window overlap,
233 * if not, then shrink current window overlap.
280 pOvl = hMdct->overlap.freq + hMdct->ov_size - 1
    [all...]
  /external/chromium_org/third_party/opus/src/celt/dump_modes/
dump_modes.c 89 fprintf(file, "#ifndef DEF_WINDOW%d\n", mode->overlap);
90 fprintf(file, "#define DEF_WINDOW%d\n", mode->overlap);
91 fprintf (file, "static const opus_val16 window%d[%d] = {\n", mode->overlap, mode->overlap);
92 for (j=0;j<mode->overlap;j++)
207 fprintf(file, "static const CELTMode mode%d_%d_%d = {\n", mode->Fs, mdctSize, mode->overlap);
209 fprintf(file, "%d,\t/* overlap */\n", mode->overlap);
232 fprintf(file, "window%d,\t/* window */\n", mode->overlap);
251 fprintf(file, "&mode%d_%d_%d,\n", mode->Fs, mdctSize, mode->overlap);
261 int overlap = 0; local
    [all...]
  /external/aac/libFDK/include/
mdct.h 117 } overlap; /**< Pointer to overlap memory */ member in struct:__anon2559
123 int ov_offset; /**< overlap time data fill level */
124 int ov_size; /**< Overlap buffer size in words */
134 * \param overlap pointer to FIXP_DBL overlap buffer.
135 * \param overlapBufferSize size in FIXP_DBLs of the given overlap buffer.
139 FIXP_DBL *overlap,
151 * \param fr right overlap window slope length
152 * \param wrs pointer to the right side overlap window coefficients
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elfmanysym.asm 260 .overlap:
266 .overlap:
277 .overlap:
294 .overlap:
300 .overlap:
307 .overlap:
318 .overlap:
  /external/chromium_org/ui/gfx/
break_list_unittest.cc 94 std::vector<std::pair<size_t, bool> > overlap; local
95 overlap.push_back(std::pair<size_t, bool>(0, true));
96 overlap.push_back(std::pair<size_t, bool>(2, false));
97 overlap.push_back(std::pair<size_t, bool>(3, true));
98 overlap.push_back(std::pair<size_t, bool>(6, false));
99 overlap.push_back(std::pair<size_t, bool>(7, true));
100 EXPECT_TRUE(breaks.EqualsForTesting(overlap));
  /external/aac/libSBRdec/src/
lpp_tran.h 181 UCHAR overlap; /*!< Overlap size */ member in struct:__anon2620
226 const int overlap);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
multisect5.asm 19 section sect8 follows=sect7 valign=16 ; NASM bug - sect7 and sect8 overlap
  /external/chromium_org/ui/views/controls/
styled_label.cc 252 // Lay out the views to overlap by 1 pixel to compensate for their border
254 const int overlap = 1; local
256 DCHECK_EQ(line_height, view_size.height() - 2 * overlap);
259 gfx::Point(GetInsets().left() + x - overlap,
260 GetInsets().top() + line * line_height - overlap),
264 x += view_size.width() - 2 * overlap;
  /frameworks/base/core/java/android/net/
NetworkStatsHistory.java 323 final long overlap = Math.min(curEnd, end) - Math.max(curStart, start); local
324 if (overlap <= 0) continue;
327 final long fracRxBytes = rxBytes * overlap / duration;
328 final long fracRxPackets = rxPackets * overlap / duration;
329 final long fracTxBytes = txBytes * overlap / duration;
330 final long fracTxPackets = txPackets * overlap / duration;
331 final long fracOperations = operations * overlap / duration;
333 addLong(activeTime, i, overlap);
340 duration -= overlap;
502 final long overlap; local
    [all...]

Completed in 420 milliseconds

1 2 3 4 5