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

  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
s_tmp3dec_chan.h 88 int32 overlap[SUBBANDS_NUMBER*FILTERBANK_BANDS]; member in struct:__anon9421
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/utils/
utils.h 276 BOOL overlap; member in struct:__anon16900
  /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/webkit/WebCore/platform/
Scrollbar.cpp 411 // Get our window resizer rect and see if we overlap. Adjust to avoid the overlap
420 int overlap = rect.right() - resizerRect.x(); local
421 if (overlap > 0 && resizerRect.right() >= rect.right()) {
422 adjustedRect.setWidth(rect.width() - overlap);
426 int overlap = rect.bottom() - resizerRect.y(); local
427 if (overlap > 0 && resizerRect.bottom() >= rect.bottom()) {
428 adjustedRect.setHeight(rect.height() - overlap);
  /external/chromium/third_party/icu/source/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/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/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)
546 OVERLAPPED overlap; member in struct:wpa_global_dst
    [all...]
  /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/chromium/third_party/icu/source/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...]
  /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...]
  /external/webkit/SunSpider/tests/parse-only/
prototype-1.6.0.3.js     [all...]
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 161 int overlap = mGapStart - where; local
164 mText, mGapStart + mGapLength - overlap, overlap);
166 int overlap = where - mGapStart; local
168 System.arraycopy(mText, where + mGapLength - overlap,
169 mText, mGapStart, overlap);
706 * Return an array of the spans of the specified type that overlap
    [all...]
  /external/sqlite/dist/
sqlite3.c 108811 float overlap = 0.0; local
108908 float overlap = 0.0; local
109330 float overlap; local
    [all...]

Completed in 563 milliseconds