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

12 3 4 5

  /external/chromium_org/third_party/opus/src/celt/
modes.c 361 /* Overlap must be divisible by 4 */
362 mode->overlap = ((mode->shortMdctSize>>2)<<2);
368 window = (opus_val16*)opus_alloc(mode->overlap*sizeof(opus_val16));
373 for (i=0;i<mode->overlap;i++)
374 window[i] = Q15ONE*sin(.5*M_PI* sin(.5*M_PI*(i+.5)/mode->overlap) * sin(.5*M_PI*(i+.5)/mode->overlap));
376 for (i=0;i<mode->overlap;i++)
377 window[i] = MIN32(32767,floor(.5+32768.*sin(.5*M_PI* sin(.5*M_PI*(i+.5)/mode->overlap) * sin(.5*M_PI*(i+.5)/mode->overlap))));
celt_encoder.c 60 int overlap; member in struct:OpusCustomEncoder
118 /* +MAX_PERIOD/2 to make space for overlap */
122 celt_sig in_mem[1]; /* Size = channels*mode->overlap */
138 + (channels*mode->overlap-1)*sizeof(celt_sig) /* celt_sig in_mem[channels*mode->overlap]; */
185 st->overlap = mode->overlap;
413 const int overlap = OVERLAP(mode); local
432 clt_mdct_forward(&mode->mdct, in+c*(B*N+overlap)+b*N, &out[b+c*N*B], mode->window, overlap, shift, B)
1289 int overlap; local
    [all...]
celt_lpc.c 227 int overlap,
241 celt_assert(overlap>=0);
242 if (overlap == 0)
248 for (i=0;i<overlap;i++)
  /external/aac/libSBRdec/src/
sbr_dec.h 126 mixed among overlap and current slots. */
197 const int overlap,
lpp_tran.cpp 227 const int lastSlotOffs, /*!< Number of overlap-slots into next frame */
274 autoCorrLength = pSettings->nCols + pSettings->overlap;
338 Take old slope length qmf slot source values out of (overlap)qmf buffer
341 for(i=0;i<pSettings->nCols+pSettings->overlap;i++){
347 /* pSettings->overlap is always even */
348 FDK_ASSERT((pSettings->overlap & 1) == 0);
350 for(i=0;i<((pSettings->overlap+pSettings->nCols)>>1);i++) {
362 dynamicScale = fixMin(dynamicScale, getScalefactor(lowBandReal, LPC_ORDER+pSettings->overlap) + ovLowBandShift);
363 dynamicScale = fixMin(dynamicScale, getScalefactor(&lowBandReal[LPC_ORDER+pSettings->overlap], pSettings->nCols) + lowBandShift);
365 dynamicScale = fixMin(dynamicScale, getScalefactor(lowBandImag, LPC_ORDER+pSettings->overlap) + ovLowBandShift)
    [all...]
sbr_dec.cpp 119 /* Number of QMF timeslots in the overlap buffer: */
121 for(slot=0; slot<hSbrDec->LppTrans.pSettings->overlap; slot++) {
143 int halflen = (noCols >> 1) + hSbrDec->LppTrans.pSettings->overlap;
144 int totCols = noCols + hSbrDec->LppTrans.pSettings->overlap;
146 /* Number of QMF timeslots in the overlap buffer: */
148 for(slot=0; slot<hSbrDec->LppTrans.pSettings->overlap; slot++) {
269 static overlap buffer is required for each channel. Du to in-place
337 /* Number of QMF timeslots in the overlap buffer: */
338 ov_len = hSbrDec->LppTrans.pSettings->overlap;
530 hSbrDec->LppTrans.pSettings->overlap,
    [all...]
env_extr.h 289 const int overlap
297 const int overlap);
env_extr.cpp 160 static int checkFrameInfo (FRAME_INFO *pFrameInfo, int numberOfTimeSlots, int overlap, int timeStep);
482 const int overlap
510 if ( !checkFrameInfo (&hFrameData->frameInfo, hHeaderData->numberTimeSlots, overlap, hHeaderData->timeStep) )
561 const int overlap )
591 if ( !checkFrameInfo (&hFrameDataLeft->frameInfo, hHeaderData->numberTimeSlots, overlap, hHeaderData->timeStep) )
602 if ( !checkFrameInfo (&hFrameDataRight->frameInfo, hHeaderData->numberTimeSlots, overlap, hHeaderData->timeStep) )
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
srchtest.h 50 USearchAttributeValue overlap);
  /external/icu4c/test/intltest/
srchtest.h 50 USearchAttributeValue overlap);
  /external/qemu/
os-win32.c 251 OVERLAPPED overlap; local
253 memset(&overlap, 0, sizeof(overlap));
263 &overlap, NULL);
  /external/openfst/src/include/fst/
interval-set.h 300 bool overlap = false; // point in both intervals_ and intervals local
303 if (it1->end <= it2->begin) { // no overlap - it1 first
306 } else if (it2->end <= it1->begin) { // no overlap - it2 first
310 overlap = true;
315 overlap = true;
319 overlap = true;
321 } else { // strict overlap
324 overlap = true;
326 if (only1 == true && only2 == true && overlap == true)
334 return only1 == true && only2 == true && overlap == true
    [all...]
  /external/chromium_org/third_party/icu/source/common/
utrie2_builder.c 197 * does not overlap other index-2 blocks with the gap.
977 * - overlaps adjacent blocks as much as possible (if overlap==TRUE)
979 * - moves and overlaps blocks that overlap with multiple values in the overlap region
982 * - try to move and overlap blocks that are not already adjacent
987 int32_t blockLength, overlap; local
1093 int32_t i, start, newStart, movedStart, overlap; local
    [all...]
  /external/icu4c/common/
utrie2_builder.cpp 197 * does not overlap other index-2 blocks with the gap.
977 * - overlaps adjacent blocks as much as possible (if overlap==TRUE)
979 * - moves and overlaps blocks that overlap with multiple values in the overlap region
982 * - try to move and overlap blocks that are not already adjacent
987 int32_t blockLength, overlap; local
1093 int32_t i, start, newStart, movedStart, overlap; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRTree.cpp 197 // root's child pointers do point to leaves, so minimize overlap increase
205 int32_t overlap = 0; local
209 // overlap, but computing overlaps is expensive and omitting it doesn't seem to
211 overlap += get_overlap(expandedBounds, root->child(j)->fBounds);
214 if (overlap < minOverlapIncrease || (overlap == minOverlapIncrease &&
217 minOverlapIncrease = overlap;
276 int32_t overlap = get_overlap(r1, r2); local
279 if (overlap < minOverlap || (overlap == minOverlap && area < minArea))
    [all...]
  /external/skia/src/core/
SkRTree.cpp 197 // root's child pointers do point to leaves, so minimize overlap increase
205 int32_t overlap = 0; local
209 // overlap, but computing overlaps is expensive and omitting it doesn't seem to
211 overlap += get_overlap(expandedBounds, root->child(j)->fBounds);
214 if (overlap < minOverlapIncrease || (overlap == minOverlapIncrease &&
217 minOverlapIncrease = overlap;
276 int32_t overlap = get_overlap(r1, r2); local
279 if (overlap < minOverlap || (overlap == minOverlap && area < minArea))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.cpp 488 // Get our window resizer rect and see if we overlap. Adjust to avoid the overlap
497 int overlap = rect.maxX() - resizerRect.x(); local
498 if (overlap > 0 && resizerRect.maxX() >= rect.maxX()) {
499 adjustedRect.setWidth(rect.width() - overlap);
503 int overlap = rect.maxY() - resizerRect.y(); local
504 if (overlap > 0 && resizerRect.maxY() >= rect.maxY()) {
505 adjustedRect.setHeight(rect.height() - overlap);
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_imdct_synth.cpp 39 int32 overlap[], Pointer to overlap values of current channel
53 The first half of the output values are added to the stored overlap
56 output values is stored for overlap with the next data granule.
217 int32 overlap[SUBBANDS_NUMBER*FILTERBANK_BANDS],
244 int32 * history = overlap + (band * FILTERBANK_BANDS);
285 /* next iteration overlap */
295 /* next iteration overlap */
335 int32 * history = overlap + (band * FILTERBANK_BANDS);
370 pv_memset(history, 0, FILTERBANK_BANDS*sizeof(*overlap));
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
sandbox_file_stream_writer.cc 34 int64 overlap = file_size - file_offset; local
35 if (kint64max - overlap > quota)
36 quota += overlap;
  /external/chromium_org/courgette/third_party/
bsdiff_create.cc 358 // If the extended scans overlap, pick a position in the overlap region
361 int overlap = (lastscan + lenf) - (scan - lenb); local
364 for (int i = 0; i < overlap; i++) {
365 if (newbuf[lastscan + lenf - overlap + i] ==
366 old[lastpos + lenf - overlap + i]) score++;
371 lenf += lens - overlap;
  /external/chromium_org/chrome/browser/ui/panels/
panel_drag_controller.cc 27 // The minimum distance and overlap (in pixels) between two panels such that
37 // Check for no overlap.
41 // Check for complete overlap.
48 // Compute the overlap part.
54 // Check for no overlap.
58 // Check for complete overlap.
65 // Compute the overlap part.
689 int overlap; local
692 overlap = GetVerticalOverlap(potential_dragging_bounds, panel_bounds);
693 if (overlap > kGluePanelsOverlapThreshold)
    [all...]
  /bootable/recovery/applypatch/
bsdiff.c 233 off_t overlap,Ss,lens; local
321 overlap=(lastscan+lenf)-(scan-lenb);
323 for(i=0;i<overlap;i++) {
324 if(new[lastscan+lenf-overlap+i]==
325 old[lastpos+lenf-overlap+i]) s++;
331 lenf+=lens-overlap;
  /external/bsdiff/
bsdiff.c 206 off_t overlap,Ss,lens; local
312 overlap=(lastscan+lenf)-(scan-lenb);
314 for(i=0;i<overlap;i++) {
315 if(new[lastscan+lenf-overlap+i]==
316 old[lastpos+lenf-overlap+i]) s++;
322 lenf+=lens-overlap;
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobsdiff.c 342 off_t overlap,Ss,lens; local
456 overlap=(lastscan+lenf)-(scan-lenb);
458 for(i=0;i<overlap;i++) {
459 if(new[lastscan+lenf-overlap+i]==
460 old[lastpos+lenf-overlap+i]) s++;
466 lenf+=lens-overlap;
  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 35 overlap(const LiveRange &VRSeg, function in namespace:llvm
76 // Provide public access to the underlying map to allow overlap iteration.

Completed in 1564 milliseconds

12 3 4 5