HomeSort by relevance Sort by last modified time
    Searched full:overlap (Results 101 - 125 of 1652) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libopus/celt/
modes.c 361 /* Overlap must be divisible by 4 */
362 mode->overlap = ((mode->shortMdctSize>>2)<<2);
368 window = (opus_val16*)opus_alloc(mode->overlap*sizeof(opus_val16));
373 for (i=0;i<mode->overlap;i++)
374 window[i] = Q15ONE*sin(.5*M_PI* sin(.5*M_PI*(i+.5)/mode->overlap) * sin(.5*M_PI*(i+.5)/mode->overlap));
376 for (i=0;i<mode->overlap;i++)
377 window[i] = MIN32(32767,floor(.5+32768.*sin(.5*M_PI* sin(.5*M_PI*(i+.5)/mode->overlap) * sin(.5*M_PI*(i+.5)/mode->overlap))));
celt_lpc.h 52 const opus_val16 *window, int overlap, int lag, int n, int arch);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntervalSet.java 91 * If overlap, combine ranges. For example,
121 // if we bump up against or overlap next, merge
166 // if we bump up against or overlap next, merge
271 * Intervals may have to be broken up when ranges in this overlap
335 // might overlap with it
336 // The stuff to the right might overlap with next "theirs".
357 // CASE 4: non proper overlap
359 // overlap, but not properly contained
367 // therefore could overlap with next of mine so don't
421 // move this iterator looking for interval that might overlap
    [all...]
  /external/aac/libSBRdec/src/
lpp_tran.cpp 227 const int lastSlotOffs, /*!< Number of overlap-slots into next frame */
274 autoCorrLength = pSettings->nCols + pSettings->overlap;
338 Take old slope length qmf slot source values out of (overlap)qmf buffer
341 for(i=0;i<pSettings->nCols+pSettings->overlap;i++){
347 /* pSettings->overlap is always even */
348 FDK_ASSERT((pSettings->overlap & 1) == 0);
350 for(i=0;i<((pSettings->overlap+pSettings->nCols)>>1);i++) {
362 dynamicScale = fixMin(dynamicScale, getScalefactor(lowBandReal, LPC_ORDER+pSettings->overlap) + ovLowBandShift);
363 dynamicScale = fixMin(dynamicScale, getScalefactor(&lowBandReal[LPC_ORDER+pSettings->overlap], pSettings->nCols) + lowBandShift);
365 dynamicScale = fixMin(dynamicScale, getScalefactor(lowBandImag, LPC_ORDER+pSettings->overlap) + ovLowBandShift)
    [all...]
  /external/valgrind/none/tests/s390x/
mvcl.c 202 /* Test 4: len1 > len2, no buffer overlap */
208 /* Test 5: len1 < len2, no buffer overlap */
214 /* Test 6: len1 > len2, non-destructive overlap */
219 /* Test 7: len1 < len2, non-destructive overlap */
224 /* Test 8: Misc checks for testing destructive overlap
242 /* Test 9: More checks for testing destructive overlap
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
vc1parse_common_defs.h 119 /** This enumeration defines the conditional overlap flag as defined in CONDOVER
172 uint8_t OVERLAP;
380 unsigned OVERLAP:1;
409 unsigned OVERLAP:1;
450 unsigned OVERLAP:1;
475 unsigned OVERLAP:1;
  /external/fio/lib/
prio_tree.c 24 * i.e., selecting a set of stored intervals (vmas) that overlap with (map) a
27 * intervals (vmas) that overlap (map) with the input interval X (the set of
291 * overlap with the input interval X [radix_index, heap_index]. The enumeration
294 * 'm' is the number of prio_tree_nodes that overlap the interval X.
386 static inline int overlap(struct prio_tree_iter *iter, function
419 if (overlap(iter, r_index, h_index))
447 if (overlap(iter, r_index, h_index))
461 if (overlap(iter, r_index, h_index))
  /external/skia/tests/
DrawTextTest.cpp 29 Checks that all overlap is the same and that all non-overlap on the
FontHostStreamTest.cpp 33 Checks that all overlap is the same and that all non-overlap on the
PathOpsAngleIdeas.cpp 158 0 if no overlap cw
159 1 if no overlap ccw
441 int overlap = quadHullsOverlap(reporter, quad1, quad2); local
442 bool realMatchesOverlap = realOverlap == overlap || SK_ScalarPI - fabs(a2s - a1s) < 0.002;
443 if (realOverlap != overlap) {
450 if (oldSchoolOverlap != (overlap < 0)) {
451 overlap = quadHullsOverlap(reporter, quad1, quad2); // set a breakpoint and debug if assert fires
452 REPORTER_ASSERT(reporter, oldSchoolOverlap == (overlap < 0));
461 if (overlap >= 0) {
462 // verify that hulls really don't overlap
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
MethodImplementation.java 61 * Try blocks may overlap freely, and do not need to be strictly nested, as in java. This is a more relaxed
62 * requirement than specified by the dex format, where try blocks may not overlap, and must be specified in
  /system/core/include/memtrack/
memtrack.h 107 * should not overlap with graphics memory) instead of graphics memory.
117 * should not overlap with graphics memory) instead of graphics memory.
  /art/test/148-multithread-gc-annotations/src/
MovingGCThread.java 44 // no overlap.
  /external/chromium-trace/catapult/dashboard/dashboard/
associate_alerts.py 104 revision ranges don't overlap.
206 """Checks whether two revision ranges overlap.
208 Note, sharing an endpoint is considered overlap for this function.
215 True if there is any overlap, False otherwise.
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
timeline_based_metric_unittest.py 26 # Test cases with overlap on one side
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/
timeline_interaction_record.py 163 simply use them to compute the overlap.
180 Hence, we use a heuristic to compute the overlap (see
212 # uniformly. The overlap duration in thread time is then computed by
213 # multiplying the overlap wall-time duration of timeline_slice and the
  /external/clang/include/clang/Driver/
Options.h 23 /// Flags specifically for clang options. Must not overlap with
  /external/llvm/test/CodeGen/PowerPC/
tls-store2.ll 7 ; longer overlap.
  /external/llvm/test/CodeGen/X86/
pr11985.ll 5 ;;; store overlap with the second load and second store respectively.
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
NewLayersActivity.java 71 canvas.drawText("This is a very long string to overlap between layers and framebuffer",
  /prebuilts/go/darwin-x86/src/crypto/x509/
root_darwin_test.go 60 t.Errorf("insufficent overlap between cgo and non-cgo roots; want at least %d, have %d", want, have)
  /prebuilts/go/linux-x86/src/crypto/x509/
root_darwin_test.go 60 t.Errorf("insufficent overlap between cgo and non-cgo roots; want at least %d, have %d", want, have)
  /system/core/libcutils/
sockets.cpp 43 // sockaddr_in and sockaddr_in6 always overlap the port field.
  /system/security/keystore/include/keystore/
keystore.h 22 // note state values overlap with ResponseCode for the purposes of the state() API
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionTest.java 241 // 2. union rectangle overlap this region
368 // 2. subtract rectangle overlap this region
399 // 2. intersect rectangle overlap this region
431 // 2. union rectangle overlap this region
466 // 2. xor rectangle overlap this region
500 // 2. reverse difference rectangle overlap this region
533 // subtract rectangle overlap this region
591 // 2. subtract rectangle overlap this region
621 // 2. intersect rectangle overlap this region
652 // 2. union rectangle overlap this regio
    [all...]

Completed in 1640 milliseconds

1 2 3 45 6 7 8 91011>>