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

1 2 3 4 5 6 7 8 91011>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
DspWindow.java 35 public DspWindow(int windowType, int size, int overlap) {
36 init(windowType, size, overlap);
43 public void init(int windowType, int size, int overlap) {
44 if (size > 0 && overlap > 0) {
46 mOverlap = overlap;
62 public static boolean fillWindow(DspBufferDouble r, int type, int overlap) {
65 if (overlap > size / 2) {
66 overlap = size / 2;
77 status = fillTriangular(r, overlap);
83 status = fillHamming(r, overlap);
    [all...]
  /external/valgrind/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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
mul-overlap.d 2 # error-output: mul-overlap.l
arm3-bad.l 2 .*arm3-bad.s:4: Error: Rn must not overlap other operands -- `swp r0,r1,\[r0\]'
3 .*arm3-bad.s:5: Error: Rn must not overlap other operands -- `swp r1,r0,\[r0\]'
  /external/valgrind/none/tests/s390x/
mvc.c 7 char overlap[]= "012345678901234567890"; variable
24 /* Destructive overlap #1 */
25 printf("------- Destructive overlap #1\n");
26 printf("before: |%s|\n", overlap);
28 ::"a" (overlap),"a" (overlap): "memory");
29 printf("after: |%s|\n", overlap);
31 /* Destructive overlap #2 */
32 printf("------- Destructive overlap #2\n");
40 /* Destructive overlap #3 *
    [all...]
mvc.stdout.exp 7 ------- Destructive overlap #1
10 ------- Destructive overlap #2
13 ------- Destructive overlap #3 (max length)
15 ------- Non-destructive overlap buf[0:4] = buf[10:14]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
s_tmp3dec_chan.h 88 int32 overlap[SUBBANDS_NUMBER*FILTERBANK_BANDS]; member in struct:__anon40199
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/icu/icu4c/source/common/
unisetspan.cpp 567 * with a partial overlap because the recursive algorithm would have tried
615 * with a partial overlap because the standard algorithm would have tried
618 * must be matched with a full overlap because the longest-match algorithm
643 // Consider strings; they may overlap with the span.
654 int32_t overlap=spanLengths[i]; local
655 if(overlap==ALL_CP_CONTAINED) {
662 // Try to match this string at pos-overlap..pos.
663 if(overlap>=LONG_SPAN) {
664 overlap=length16;
666 U16_BACK_1(s16, 0, overlap); // Length of the string minus the last code point
693 int32_t overlap=spanLengths[i]; local
818 int32_t overlap=spanBackLengths[i]; local
859 int32_t overlap=spanBackLengths[i]; local
986 int32_t overlap=spanUTF8Lengths[i]; local
1034 int32_t overlap=spanUTF8Lengths[i]; local
1166 int32_t overlap=spanBackUTF8Lengths[i]; local
1215 int32_t overlap=spanBackUTF8Lengths[i]; local
    [all...]
  /external/libese/libese/tests/
bitspec_unittests.cpp 37 } overlap; member in struct:TestSpec
58 .overlap = {
144 EXPECT_EQ(0, bs_get(kTestSpec.overlap.upper6, byte));
145 EXPECT_EQ(0, bs_get(kTestSpec.overlap.lower6, byte));
146 EXPECT_EQ(0, bs_get(kTestSpec.overlap.all8, byte));
148 EXPECT_EQ(0x3f, bs_get(kTestSpec.overlap.upper6, byte));
149 EXPECT_EQ(0x3f, bs_get(kTestSpec.overlap.lower6, byte));
150 EXPECT_EQ(0xff, bs_get(kTestSpec.overlap.all8, byte));
154 bs_assign(&byte, kTestSpec.overlap.lower6, i);
155 EXPECT_EQ((i & (0x3f << 2)) >> 2, bs_get(kTestSpec.overlap.upper6, byte))
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UnicodeSetStringSpan.java 300 * must be matched with a partial overlap
345 * must be matched with a partial overlap
348 * must be matched with a full overlap because the longest-match algorithm
390 // Consider strings; they may overlap with the span.
404 int overlap = spanLengths[i]; local
405 if (overlap == ALL_CP_CONTAINED) {
412 // Try to match this string at pos-overlap..pos.
413 if (overlap >= LONG_SPAN) {
414 overlap = length16;
416 overlap = string.offsetByCodePoints(overlap, -1); // Length of the string minus the last cod
444 int overlap = spanLengths[i]; local
674 int overlap = spanLengths[spanBackLengthsOffset + i]; local
715 int overlap = spanLengths[spanBackLengthsOffset + i]; local
    [all...]
  /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)
542 OVERLAPPED overlap; member in struct:wpa_global_dst
    [all...]
  /external/libopus/celt/
modes.h 54 int overlap; member in struct:OpusCustomMode
mdct.c 120 const opus_val16 *window, int overlap, int shift, int stride, int arch)
155 const kiss_fft_scalar * OPUS_RESTRICT xp1 = in+(overlap>>1);
156 const kiss_fft_scalar * OPUS_RESTRICT xp2 = in+N2-1+(overlap>>1);
158 const opus_val16 * OPUS_RESTRICT wp1 = window+(overlap>>1);
159 const opus_val16 * OPUS_RESTRICT wp2 = window+(overlap>>1)-1;
160 for(i=0;i<((overlap+3)>>2);i++)
171 wp2 = window+overlap-1;
172 for(;i<N4-((overlap+3)>>2);i++)
243 const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride, int arch)
265 kiss_fft_scalar * OPUS_RESTRICT yp = out+(overlap>>1)
    [all...]
mdct.h 67 const opus_val16 *window, int overlap,
70 /** Compute a backward MDCT (no scaling) and performs weighted overlap-add
75 int overlap, int shift, int stride, int arch);
84 int overlap, int shift, int stride, int arch);
94 int overlap, int shift, int stride, int arch);
  /external/libvpx/libvpx/vp8/decoder/
ec_types.h 24 int overlap; member in struct:__anon24690
  /external/libopus/celt/arm/
celt_ne10_mdct.c 48 int overlap, int shift, int stride, int arch)
76 const kiss_fft_scalar * OPUS_RESTRICT xp1 = in+(overlap>>1);
77 const kiss_fft_scalar * OPUS_RESTRICT xp2 = in+N2-1+(overlap>>1);
79 const opus_val16 * OPUS_RESTRICT wp1 = window+(overlap>>1);
80 const opus_val16 * OPUS_RESTRICT wp2 = window+(overlap>>1)-1;
81 for(i=0;i<((overlap+3)>>2);i++)
92 wp2 = window+overlap-1;
93 for(;i<N4-((overlap+3)>>2);i++)
162 int overlap, int shift, int stride, int arch)
201 opus_ifft(st, (kiss_fft_cpx *)f, (kiss_fft_cpx*)(out+(overlap>>1)), arch)
    [all...]
mdct_arm.h 43 const opus_val16 *window, int overlap,
48 const opus_val16 *window, int overlap,
  /external/dng_sdk/source/
dng_misc_opcodes.cpp 204 dng_rect dng_area_spec::Overlap (const dng_rect &tile) const
215 dng_rect overlap = fArea & tile; local
217 if (overlap.NotEmpty ())
220 overlap.t = fArea.t + ConvertUint32ToInt32(
221 RoundUpUint32ToMultiple(static_cast<uint32>(overlap.t - fArea.t),
223 overlap.l = fArea.l + ConvertUint32ToInt32(
224 RoundUpUint32ToMultiple(static_cast<uint32>(overlap.l - fArea.l),
227 if (overlap.NotEmpty ())
230 overlap.b = overlap.t + ((overlap.H () - 1) / fRowPitch) * fRowPitch + 1
406 dng_rect overlap = fAreaSpec.Overlap (dstArea); local
625 dng_rect overlap = fAreaSpec.Overlap (dstArea); local
987 dng_rect overlap = fAreaSpec.Overlap (dstArea); local
1193 dng_rect overlap = fAreaSpec.Overlap (dstArea); local
1373 dng_rect overlap = fAreaSpec.Overlap (dstArea); local
1550 dng_rect overlap = fAreaSpec.Overlap (dstArea); local
    [all...]
  /external/libopus/celt/mips/
mdct_mipsr1.h 61 const opus_val16 *window, int overlap, int shift, int stride, int arch)
98 const kiss_fft_scalar * OPUS_RESTRICT xp1 = in+(overlap>>1);
99 const kiss_fft_scalar * OPUS_RESTRICT xp2 = in+N2-1+(overlap>>1);
101 const opus_val16 * OPUS_RESTRICT wp1 = window+(overlap>>1);
102 const opus_val16 * OPUS_RESTRICT wp2 = window+(overlap>>1)-1;
103 for(i=0;i<((overlap+3)>>2);i++)
114 wp2 = window+overlap-1;
115 for(;i<N4-((overlap+3)>>2);i++)
187 const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride, int arch)
210 kiss_fft_scalar * OPUS_RESTRICT yp = out+(overlap>>1)
    [all...]
celt_mipsr1.h 59 const opus_val16 *window, int overlap, int arch)
91 /* If the filter didn't change, we don't need the overlap */
93 overlap=0;
95 for (i=0;i<overlap;i++)
129 OPUS_MOVE(y+overlap, x+overlap, N-overlap);
133 for (i=overlap;i<N;i++)
  /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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UnicodeSetStringSpan.java 296 * must be matched with a partial overlap
341 * must be matched with a partial overlap
344 * must be matched with a full overlap because the longest-match algorithm
386 // Consider strings; they may overlap with the span.
400 int overlap = spanLengths[i]; local
401 if (overlap == ALL_CP_CONTAINED) {
408 // Try to match this string at pos-overlap..pos.
409 if (overlap >= LONG_SPAN) {
410 overlap = length16;
412 overlap = string.offsetByCodePoints(overlap, -1); // Length of the string minus the last cod
440 int overlap = spanLengths[i]; local
670 int overlap = spanLengths[spanBackLengthsOffset + i]; local
711 int overlap = spanLengths[spanBackLengthsOffset + i]; local
    [all...]

Completed in 696 milliseconds

1 2 3 4 5 6 7 8 91011>>