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

1 2

  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
s_tmp3dec_chan.h 88 int32 overlap[SUBBANDS_NUMBER*FILTERBANK_BANDS]; member in struct:__anon16548
  /external/aac/libFDK/include/
mdct.h 117 } overlap; /**< Pointer to overlap memory */ member in struct:__anon1714
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/llvm/lib/CodeGen/
LiveIntervalUnion.h 36 overlap(const LiveRange &VRSeg, function in namespace:llvm
79 // Provide public access to the underlying map to allow overlap iteration.
  /external/webkit/Source/WebKit/android/jni/
PicturePile.cpp 245 // 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);
  /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/aac/libSBRdec/src/
lpp_tran.h 181 UCHAR overlap; /*!< Overlap size */ member in struct:__anon1775
226 const int 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/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/qemu/
os-win32.c 251 OVERLAPPED overlap; local
253 memset(&overlap, 0, sizeof(overlap));
263 &overlap, NULL);
  /external/webkit/Source/WebCore/platform/
Scrollbar.cpp 389 // 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/icu4c/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...]
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/valgrind/main/VEX/switchback/
switchback.c 895 static Bool overlap ( Addr64 start, UInt len, VexGuestExtents* vge ) function
906 return False; /* no overlap */
914 if (overlap(start, len, &trans_table[i])) {
  /external/wpa_supplicant_6/wpa_supplicant/
ctrl_iface_named_pipe.c 68 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.hEvent)
547 OVERLAPPED overlap; member in struct:wpa_global_dst
    [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)
541 OVERLAPPED overlap; member in struct:wpa_global_dst
    [all...]
  /external/icu4c/tools/makeconv/
genmbcs.c 593 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 */
763 * Overlap stage 3 blocks only in multiples of 16-entry blocks
767 for(overlap=0;
768 overlap<maxOverlap && stage3[newBlock-overlap-1]==0;
769 ++overlap) {}
771 overlap=(overlap/MBCS_STAGE_3_GRANULARITY)/maxCharLength
    [all...]
  /frameworks/base/core/java/android/net/
NetworkStatsHistory.java 317 final long overlap = Math.min(curEnd, end) - Math.max(curStart, start); local
318 if (overlap <= 0) continue;
321 final long fracRxBytes = rxBytes * overlap / duration;
322 final long fracRxPackets = rxPackets * overlap / duration;
323 final long fracTxBytes = txBytes * overlap / duration;
324 final long fracTxPackets = txPackets * overlap / duration;
325 final long fracOperations = operations * overlap / duration;
327 addLong(activeTime, i, overlap);
334 duration -= overlap;
496 final long overlap; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
BeanBag.java 233 public float overlap(Bean other) { method in class:BeanBag.Board.Bean
318 final float overlap = nv.overlap(nv2);
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js     [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 1025 SweepInterval overlap = *iter; local
    [all...]
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 159 int overlap = mGapStart - where; local
160 System.arraycopy(mText, where, mText, mGapStart + mGapLength - overlap, overlap);
162 int overlap = where - mGapStart; local
163 System.arraycopy(mText, where + mGapLength - overlap, mText, mGapStart, overlap);
765 * Return an array of the spans of the specified type that overlap
    [all...]
  /external/webkit/Source/WebCore/editing/
TextIterator.cpp 2189 size_t overlap = m_overlap; local
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
IconDetector.java 777 Set<String> overlap = nameIntersection(noDpiNames, entry.getValue()); local
    [all...]
  /external/chromium/chrome/browser/ui/views/frame/
browser_view.cc 1886 int overlap = StatusBubbleViews::kShadowThickness + local
    [all...]
  /external/valgrind/main/exp-sgcheck/
sg_main.c 88 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
    [all...]

Completed in 910 milliseconds

1 2