/frameworks/support/v4/api21/android/support/v4/widget/ |
PopupWindowCompatApi21.java | 44 Log.i(TAG, "Could not set overlap anchor field in PopupWindow", e); 54 Log.i(TAG, "Could not get overlap anchor field in PopupWindow", e);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
error_concealment.h | 22 /* Allocate memory for the overlap lists */ 25 /* Deallocate the overlap lists */
|
/prebuilts/go/darwin-x86/src/compress/flate/ |
copy.go | 8 // forward from the start, even if the dst and src overlap. 23 // There is some forward overlap. The destination
|
/prebuilts/go/linux-x86/src/compress/flate/ |
copy.go | 8 // forward from the start, even if the dst and src overlap. 23 // There is some forward overlap. The destination
|
/external/libopus/celt/ |
celt_decoder.c | 66 int overlap; member in struct:OpusCustomDecoder 91 celt_sig _decode_mem[1]; /* Size = channels*(DECODE_BUFFER_SIZE+mode->overlap) */ 108 + (channels*(DECODE_BUFFER_SIZE+mode->overlap)-1)*sizeof(celt_sig) 155 st->overlap = mode->overlap; 267 const int overlap = OVERLAP(mode); local 280 /* IMDCT on the interleaved the sub-frames, overlap-add is performed by the IMDCT */ 282 clt_mdct_backward(&mode->mdct, &X[b+c*N*B], out_mem[c]+N*b, mode->window, overlap, shift, B); 344 int overlap; local 698 int overlap; local [all...] |
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);
|
celt.c | 116 const opus_val16 *window, int overlap) 144 for (i=0;i<overlap;i++) 166 OPUS_MOVE(y+overlap, x+overlap, N-overlap);
|
/external/dng_sdk/source/ |
dng_image.cpp | 500 // Find the overlap with the image bounds. 502 dng_rect overlap = buffer.fArea & fBounds; local 506 if (overlap.NotEmpty ()) 511 temp.fArea = overlap; 513 temp.fData = buffer.DirtyPixel (overlap.t, 514 overlap.l, 523 if ((edgeOption != edge_none) && (overlap != buffer.fArea)) 692 dng_rect overlap = buffer.fArea & fBounds; local 694 if (overlap.NotEmpty ()) 699 temp.fArea = overlap; [all...] |
dng_gain_map.cpp | 550 dng_rect overlap = fAreaSpec.Overlap (dstArea); local 552 if (overlap.NotEmpty ()) 555 uint32 cols = overlap.W (); 567 for (int32 row = overlap.t; row < overlap.b; row += fAreaSpec.RowPitch ()) 570 real32 *dPtr = buffer.DirtyPixel_real32 (row, overlap.l, plane); 575 overlap.l,
|
/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)
|
/external/chromium-trace/catapult/tracing/tracing/extras/chrome/cc/ |
tile_coverage_rect.html | 16 * of the layer without overlap.
|
/external/skia/src/image/ |
SkReadPixelsRec.h | 35 * On false, leaves self unchanged, but indicates that it does not overlap src, or
|
/external/valgrind/memcheck/tests/solaris/ |
strlcpy.stderr.exp | 8 Source and destination overlap in strlcpy(0x........, 0x........, 11)
|
/prebuilts/go/darwin-x86/src/crypto/rc4/ |
rc4_asm.go | 12 // Dst and src may be the same slice but otherwise should not overlap.
|
/prebuilts/go/linux-x86/src/crypto/rc4/ |
rc4_asm.go | 12 // Dst and src may be the same slice but otherwise should not overlap.
|
/packages/apps/TV/src/com/android/tv/dvr/ |
DvrManager.java | 162 List<ScheduledRecording> overLap = mDataManager.getRecordingsThatOverlapWith(getPeriod(program)); 163 if (!overLap.isEmpty()) { 171 return overLap; 174 if (remove >= overLap.size()) { 177 overLap = overLap.subList(remove, overLap.size() - 1); 180 return overLap;
|
/frameworks/support/design/src/android/support/design/widget/ |
HeaderScrollingViewBehavior.java | 129 final int overlap = getOverlapPixelsForOffset(header); local 131 child.layout(out.left, out.top - overlap, out.right, out.bottom - overlap); 170 * Set the distance that this view should overlap any {@link AppBarLayout}. 179 * Returns the distance that this view should overlap any {@link AppBarLayout}.
|
/frameworks/base/core/java/android/net/ |
NetworkStatsHistory.java | 325 final long overlap = Math.min(curEnd, end) - Math.max(curStart, start); local 326 if (overlap <= 0) continue; 329 final long fracRxBytes = rxBytes * overlap / duration; 330 final long fracRxPackets = rxPackets * overlap / duration; 331 final long fracTxBytes = txBytes * overlap / duration; 332 final long fracTxPackets = txPackets * overlap / duration; 333 final long fracOperations = operations * overlap / duration; 335 addLong(activeTime, i, overlap); 342 duration -= overlap; 504 final long overlap; local [all...] |
/external/chromium-trace/catapult/tracing/tracing/ui/extras/highlighter/ |
vsync_highlighter_test.html | 58 // Left overlap. 71 // Right overlap. 84 // Both overlap.
|
/external/neven/Embedded/common/src/b_BasicEm/ |
Memory.h | 36 /** copies memory for src to dst (no overlap allowed); returns dstA 41 /** copies memory for src to dst (no overlap allowed), size is given in 16-bit words 47 /** copies memory for src to dst (no overlap allowed), size is given in 32-bit words
|
/frameworks/base/packages/Keyguard/res/values/ |
dimens.xml | 37 <!-- EmergencyCarrierArea overlap - amount to overlap the emergency button and carrier text.
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
Trie2Writable.java | 102 * does not overlap other index-2 blocks with the gap. 732 * - overlaps adjacent blocks as much as possible (if overlap==TRUE) 734 * - moves and overlaps blocks that overlap with multiple values in the overlap region 737 * - try to move and overlap blocks that are not already adjacent 741 int blockLength, overlap; local 793 /* look for maximum overlap (modulo granularity) with the previous, adjacent block */ 794 for(overlap=blockLength-UTRIE2_DATA_GRANULARITY; 795 overlap>0 && !equal_int(data, (newStart-overlap), start, overlap) 845 int i, start, newStart, movedStart, overlap; local [all...] |
/external/icu/icu4c/source/common/ |
utrie2_builder.cpp | 195 * does not overlap other index-2 blocks with the gap. 975 * - overlaps adjacent blocks as much as possible (if overlap==TRUE) 977 * - moves and overlaps blocks that overlap with multiple values in the overlap region 980 * - try to move and overlap blocks that are not already adjacent 985 int32_t blockLength, overlap; local 1091 int32_t i, start, newStart, movedStart, overlap; local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Trie2Writable.java | 100 * does not overlap other index-2 blocks with the gap. 730 * - overlaps adjacent blocks as much as possible (if overlap==TRUE) 732 * - moves and overlaps blocks that overlap with multiple values in the overlap region 735 * - try to move and overlap blocks that are not already adjacent 739 int blockLength, overlap; local 791 /* look for maximum overlap (modulo granularity) with the previous, adjacent block */ 792 for(overlap=blockLength-UTRIE2_DATA_GRANULARITY; 793 overlap>0 && !equal_int(data, (newStart-overlap), start, overlap) 843 int i, start, newStart, movedStart, overlap; local [all...] |
/external/libvpx/libvpx/vp8/decoder/ |
error_concealment.c | 69 /* Inserts a new overlap area value to the list of overlaps of a block */ 72 int overlap) 75 if (overlap <= 0) 77 /* Find and assign to the next empty overlap node in the list of overlaps. 84 overlaps[i].overlap = overlap; 90 /* Calculates the overlap area between two 4x4 squares, where the first 93 * properly handle squares which do not overlap. 107 /* Calculates the overlap area for all blocks in a macroblock at position 119 * overlapped by bmi and calculate and assign overlap for each of thos 161 const int overlap = block_overlap(new_row, new_col, local [all...] |