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

1 2 3 4 5 6 7 8 910

  /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...]
  /external/valgrind/none/tests/s390x/
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]
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...]
  /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\]'
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
s_tmp3dec_chan.h 88 int32 overlap[SUBBANDS_NUMBER*FILTERBANK_BANDS]; member in struct:__anon28208
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 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/libopus/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
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_lpc.h 52 const opus_val16 *window, int overlap, int lag, int n, int arch);
  /external/icu/android_icu4j/src/main/java/android/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...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UnicodeSetStringSpan.java 292 * must be matched with a partial overlap
337 * must be matched with a partial overlap
340 * must be matched with a full overlap because the longest-match algorithm
382 // Consider strings; they may overlap with the span.
396 int overlap = spanLengths[i]; local
397 if (overlap == ALL_CP_CONTAINED) {
404 // Try to match this string at pos-overlap..pos.
405 if (overlap >= LONG_SPAN) {
406 overlap = length16;
408 overlap = string.offsetByCodePoints(overlap, -1); // Length of the string minus the last cod
436 int overlap = spanLengths[i]; local
666 int overlap = spanLengths[spanBackLengthsOffset + i]; local
707 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/libvpx/libvpx/vp8/decoder/
ec_types.h 26 int overlap; member in struct:__anon17142
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
ec_types.h 26 int overlap; member in struct:__anon30619
  /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/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/aac/libFDK/include/
mdct.h 117 } overlap; /**< Pointer to overlap memory */ member in struct:__anon6303
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/valgrind/memcheck/tests/solaris/
strlcpy.stderr.exp 8 Source and destination overlap in strlcpy(0x........, 0x........, 11)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
24k-triple-stores-7.s 13 # overlap (same word)
41 # overlap (same hword)
69 # overlap (same dword)

Completed in 656 milliseconds

1 2 3 4 5 6 7 8 910