Searched defs:overlap (Results 1 - 25 of 31) sorted by relevance

12

/external/aac/libFDK/include/
H A Dmdct.h117 } overlap; /**< Pointer to overlap memory */ member in struct:__anon150
123 int ov_offset; /**< overlap time data fill level */
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.
190 * \brief Copy overlap tim
[all...]
/external/aac/libFDK/src/
H A Dmdct.cpp100 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
99 mdct_init( H_MDCT hMdct, FIXP_DBL *overlap, INT overlapBufferSize ) argument
[all...]
/external/aac/libSBRdec/src/
H A Dlpp_tran.h181 UCHAR overlap; /*!< Overlap size */ member in struct:__anon211
226 const int overlap);
H A Dsbr_dec.cpp119 /* 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,
724 createSbrDec(SBR_CHANNEL * hSbrChannel, HANDLE_SBR_HEADER_DATA hHeaderData, TRANSPOSER_SETTINGS *pSettings, const int downsampleFac, const UINT qmfFlags, const UINT flags, const int overlap, int chan) argument
[all...]
H A Denv_extr.cpp160 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) )
1315 int overlap, /*!< Amount of overlap QMF time slots */
1339 if (overlap < 0 || overlap > (
1313 checkFrameInfo(FRAME_INFO * pFrameInfo, int numberOfTimeSlots, int overlap, int timeStep) argument
[all...]
/external/bsdiff/
H A Dbsdiff.c206 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/llvm/lib/CodeGen/
H A DLiveIntervalUnion.h36 overlap(const LiveRange &VRSeg, function in namespace:llvm
79 // Provide public access to the underlying map to allow overlap iteration.
/external/openfst/src/include/fst/
H A Dinterval-set.h300 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
[all...]
/external/qemu/
H A Dos-win32.c251 OVERLAPPED overlap; local
253 memset(&overlap, 0, sizeof(overlap));
263 &overlap, NULL);
/external/webkit/Source/WebKit/android/jni/
H A DPicturePile.cpp245 // Don't count the base surface as an overlap
253 ALOGV("Exceeds overlap count");
254 IntRect overlap = inval; local
256 overlap.unite(m_pile[overlaps[i]].area);
259 float overlapArea = overlap.width() * overlap.height();
262 overlap = IntRect(0, 0, m_size.width(), m_size.height());
263 appendToPile(overlap, inval);
/external/webkit/Source/WebCore/platform/
H A DScrollbar.cpp389 // Get our window resizer rect and see if we overlap. Adjust to avoid the overlap
398 int overlap = rect.maxX() - resizerRect.x(); local
399 if (overlap > 0 && resizerRect.maxX() >= rect.maxX()) {
400 adjustedRect.setWidth(rect.width() - overlap);
404 int overlap = rect.maxY() - resizerRect.y(); local
405 if (overlap > 0 && resizerRect.maxY() >= rect.maxY()) {
406 adjustedRect.setHeight(rect.height() - overlap);
/external/wpa_supplicant_6/wpa_supplicant/
H A Dctrl_iface_named_pipe.c68 OVERLAPPED overlap; member in struct:wpa_ctrl_dst
96 LPOVERLAPPED overlap);
103 LPOVERLAPPED overlap);
153 dst->overlap.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
154 if (dst->overlap.hEvent == NULL) {
160 eloop_register_event(dst->overlap.hEvent,
161 sizeof(dst->overlap.hEvent),
187 if (ConnectNamedPipe(dst->pipe, &dst->overlap)) {
204 if (SetEvent(dst->overlap.hEvent))
232 if (dst->overlap
260 ctrl_iface_write_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
352 ctrl_iface_read_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
547 OVERLAPPED overlap; member in struct:wpa_global_dst
691 global_iface_write_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
768 global_iface_read_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface_named_pipe.c62 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
254 ctrl_iface_write_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
346 ctrl_iface_read_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
541 OVERLAPPED overlap; member in struct:wpa_global_dst
685 global_iface_write_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
762 global_iface_read_completed(DWORD err, DWORD bytes, LPOVERLAPPED overlap) argument
[all...]
/external/icu4c/common/
H A Dunisetspan.cpp563 * 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); // Lengt
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...]
H A Dutrie.c580 * - overlaps adjacent blocks as much as possible (if overlap==TRUE)
582 * - moves and overlaps blocks that overlap with multiple values in the overlap region
585 * - try to move and overlap blocks that are not already adjacent
588 utrie_compact(UNewTrie *trie, UBool overlap, UErrorCode *pErrorCode) { argument
636 overlap ? UTRIE_DATA_GRANULARITY : UTRIE_DATA_BLOCK_LENGTH))
650 if(overlap && start>=overlapStart) {
651 /* look for maximum overlap (modulo granularity) with the previous, adjacent block */
660 /* some overlap */
669 /* no overlap, jus
[all...]
H A Dutrie2_builder.c197 * 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
1040 /* look for maximum overlap (modulo granularity) with the previous, adjacent block */
1041 for(overlap=blockLength-UTRIE2_DATA_GRANULARITY;
1042 overlap>0 && !equal_uint32(trie->data+(newStart-overlap), tri
1093 int32_t i, start, newStart, movedStart, overlap; local
[all...]
/external/icu4c/test/intltest/
H A Dsrchtest.cpp376 errln("Error following match starting at %d (overlap:%d) found at %d (len:%d); expected <NO MATCH>",
393 errln("Error following match starting at %d (overlap: %d) found at %d (len:%d); expected %d (len:%d)\n",
426 errln("Error preceding match starting at %d (overlap: %d) found at %d (len:%d); expected <NO MATCH>\n",
445 errln("Error preceding match starting at %d (overlap: %d) found at %d (len:%d); expected %d (len:%d)\n",
571 USearchAttributeValue overlap)
602 strsrch->setAttribute(USEARCH_OVERLAP, overlap, status);
988 errln("Error at overlap test number %d", count);
995 errln("Error at non overlap test number %d", count);
1020 errln("Error setting overlap option");
1031 errln("Error setting overlap optio
569 assertEqualWithAttribute(const SearchData *search, USearchAttributeValue canonical, USearchAttributeValue overlap) argument
[all...]
/external/icu4c/tools/makeconv/
H A Dgenmbcs.c593 min=newBlock-nextOffset; /* minimum block start with overlap */
627 min=newBlock-nextOffset; /* minimum block start with overlap */
685 uint32_t blockSize, newTop, i, nextOffset, newBlock, min, overlap, maxOverlap; local
723 min=newBlock-nextOffset; /* minimum block start with overlap */
767 for(overlap=0;
768 overlap<maxOverlap && stage3[newBlock-overlap-1]==0;
769 ++overlap) {}
771 overlap=(overlap/MBCS_STAGE_3_GRANULARIT
[all...]
/external/valgrind/main/VEX/switchback/
H A Dswitchback.c895 static Bool overlap ( Addr64 start, UInt len, VexGuestExtents* vge ) function
906 return False; /* no overlap */
914 if (overlap(start, len, &trans_table[i])) {
/external/icu4c/test/cintltst/
H A Dusrchtst.c457 log_err("Error following match starting at %d (overlap:%d) found at %d (len:%d); expected <NO MATCH>\n",
475 log_err("Error following match starting at %d (overlap: %d) found at %d (len:%d); expected %d (len:%d)\n",
508 log_err("Error preceding match starting at %d (overlap: %d) found at %d (len:%d); expected <NO MATCH>\n",
527 log_err("Error preceding match starting at %d (overlap: %d) found at %d (len:%d); expected %d (len:%d)\n",
614 USearchAttributeValue overlap)
631 usearch_setAttribute(strsrch, USEARCH_OVERLAP, overlap, &status);
865 log_err("Error at overlap test number %d\n", count);
872 log_err("Error at non overlap test number %d\n", count);
900 log_err("Error setting overlap option\n");
910 log_err("Error setting overlap optio
612 assertEqualWithAttribute(const SearchData search, USearchAttributeValue canonical, USearchAttributeValue overlap) argument
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Dprototype-1.6.0.3.js4182 // caches x/y coordinate pair to use with overlap
4210 overlap: function(mode, element) {
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnPathProcessor.cpp1023 // Now see exactly which triangles overlap this one
1025 SweepInterval overlap = *iter; local
1027 if (event.interval().data()->segment != overlap.data()->segment) {
1028 // See whether the triangles actually overlap
1030 overlap.data()->triangle)) {
1035 seg = overlap.data()->segment;
/external/webkit/Source/WebCore/editing/
H A DTextIterator.cpp2185 // Matches that start in the overlap area are only tentative.
2189 size_t overlap = m_overlap; local
2196 overlap = min(size - 1, max(overlap, size - wordBoundaryContextStart));
2198 memcpy(m_buffer.data(), m_buffer.data() + size - overlap, overlap * sizeof(UChar));
2199 m_prefixLength -= min(m_prefixLength, size - overlap);
2200 m_buffer.shrink(overlap);
/external/valgrind/main/exp-sgcheck/
H A Dsg_main.c88 if there is any overlap. Redundant paranoia with casting is there
331 /* If there are any blocks which overlap and have the same
1125 Bool overlap = False; local
1132 overlap = del_GlobalTree_range(giTree, a, len);
1147 if (!overlap)
1662 partial overlap case, it can't be the case that both
1663 [ea] and [ea+szB-1] overlap the same block, since if
1665 partial overlap; rather it would simply fall inside
1714 [ea,ea+szB) (right?) That implies they must overlap at
/external/chromium/chrome/browser/ui/views/frame/
H A Dbrowser_view.cc1886 int overlap = StatusBubbleViews::kShadowThickness + local
1888 int x = -overlap;
1893 gfx::Point origin(-overlap, contents_height - height + overlap);

Completed in 441 milliseconds

12