/frameworks/av/media/libeffects/dynamicsproc/dsp/ |
D | RDsp.h | 66 static void fillTriangular(T &v, size_t overlap) { in fillTriangular() argument 70 if (overlap > 0) { in fillTriangular() 71 for (; i < overlap; i++) { in fillTriangular() 72 v[i] = (2.0 * i + 1) / (2 * overlap); in fillTriangular() 77 for (; i < size - overlap; i++) { in fillTriangular() 82 if (overlap > 0) { in fillTriangular() 84 v[i] = (2.0 * (size - i) - 1) / (2 * overlap); in fillTriangular() 90 static void fillHamming(T &v, size_t overlap) { in fillHamming() argument 92 const size_t twoOverlap = 2 * overlap; in fillHamming() 94 if (overlap > 0) { in fillHamming() [all …]
|
/frameworks/base/core/java/android/net/ |
D | NetworkStatsHistory.java | 363 final long overlap = Math.min(curEnd, end) - Math.max(curStart, start); in recordData() local 364 if (overlap <= 0) continue; in recordData() 367 final long fracRxBytes = rxBytes * overlap / duration; in recordData() 368 final long fracRxPackets = rxPackets * overlap / duration; in recordData() 369 final long fracTxBytes = txBytes * overlap / duration; in recordData() 370 final long fracTxPackets = txPackets * overlap / duration; in recordData() 371 final long fracOperations = operations * overlap / duration; in recordData() 373 addLong(activeTime, i, overlap); in recordData() 380 duration -= overlap; in recordData() 567 final long overlap = overlapEnd - overlapStart; in getValues() local [all …]
|
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
D | pvmp3_imdct_synth.cpp | 217 int32 overlap[SUBBANDS_NUMBER*FILTERBANK_BANDS], in pvmp3_imdct_synth() 244 int32 * history = overlap + (band * FILTERBANK_BANDS); in pvmp3_imdct_synth() 335 int32 * history = overlap + (band * FILTERBANK_BANDS); in pvmp3_imdct_synth() 370 pv_memset(history, 0, FILTERBANK_BANDS*sizeof(*overlap)); in pvmp3_imdct_synth()
|
D | s_tmp3dec_chan.h | 88 int32 overlap[SUBBANDS_NUMBER*FILTERBANK_BANDS]; member
|
D | pvmp3_imdct_synth.h | 85 int32 overlap[SUBBANDS_NUMBER*FILTERBANK_BANDS],
|
D | pvmp3_mdct_6.h | 93 void pvmp3_mdct_6(int32 vec[], int32 *overlap);
|
D | pvmp3_mdct_18.h | 96 void pvmp3_mdct_6(int32 vec[], int32 *overlap);
|
D | pvmp3_framedecoder.cpp | 482 pChVars[ch]->overlap, in pvmp3_framedecoder() 796 pv_memset((void*)pChVars[ LEFT]->overlap, in pvmp3_resetDecoder() 798 SUBBANDS_NUMBER*FILTERBANK_BANDS*sizeof(pChVars[ LEFT]->overlap[0])); in pvmp3_resetDecoder() 801 pv_memset((void*)pChVars[ RIGHT]->overlap, in pvmp3_resetDecoder() 803 SUBBANDS_NUMBER*FILTERBANK_BANDS*sizeof(pChVars[ RIGHT]->overlap[0])); in pvmp3_resetDecoder()
|
/frameworks/base/core/java/android/text/ |
D | SpannableStringBuilder.java | 174 int overlap = mGapStart - where; in moveGapTo() local 175 System.arraycopy(mText, where, mText, mGapStart + mGapLength - overlap, overlap); in moveGapTo() 177 int overlap = where - mGapStart; in moveGapTo() local 178 System.arraycopy(mText, where + mGapLength - overlap, mText, mGapStart, overlap); in moveGapTo()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | StackScrollAlgorithm.java | 710 float overlap = ambientState.getTopPadding() in updateChildZValue() local 712 childrenOnTop += Math.min(1.0f, overlap / childViewState.height); in updateChildZValue()
|
/frameworks/base/core/java/android/widget/ |
D | ListPopupWindow.java | 1311 public void setOverlapAnchor(boolean overlap) { in setOverlapAnchor() argument 1313 mOverlapAnchor = overlap; in setOverlapAnchor()
|
/frameworks/base/core/java/android/app/ |
D | FragmentTransition.java | 1142 boolean overlap = true; in mergeTransitions() 1144 overlap = isPop ? inFragment.getAllowReturnTransitionOverlap() : in mergeTransitions() 1153 if (overlap) { in mergeTransitions()
|
/frameworks/hardware/interfaces/stats/1.0/ |
D | types.hal | 60 * Values prefixed by different hardwareTypes overlap.
|
/frameworks/base/tools/aapt2/ |
D | readme.md | 70 rewritten IDs to not overlap with the base.
|
/frameworks/native/cmds/surfacereplayer/replayer/ |
D | README.md | 252 handling when **BufferUpdates** should be scheduled, making sure that they don't overlap.
|
/frameworks/ml/nn/tools/api/ |
D | NeuralNetworks.t | 484 * <p>An output buffer or memory region must not overlap with any
|