Home
last modified time | relevance | path

Searched refs:rangeA (Results 1 – 5 of 5) sorted by relevance

/external/exoplayer/tree/library/dash/src/test/java/com/google/android/exoplayer2/source/dash/manifest/
DRangedUriTest.java35 RangedUri rangeA = new RangedUri(FULL_URI, 0, 10); in merge() local
38 assertMerge(rangeA, rangeB, expected, null); in merge()
43 RangedUri rangeA = new RangedUri(FULL_URI, 0, 10); in mergeUnbounded() local
46 assertMerge(rangeA, rangeB, expected, null); in mergeUnbounded()
52 RangedUri rangeA = new RangedUri(FULL_URI, 0, 10); in nonMerge() local
54 assertNonMerge(rangeA, rangeB, null); in nonMerge()
57 rangeA = new RangedUri(FULL_URI, 0, 10); in nonMerge()
59 assertNonMerge(rangeA, rangeB, null); in nonMerge()
62 rangeA = new RangedUri(FULL_URI, 0, 11); in nonMerge()
64 assertNonMerge(rangeA, rangeB, null); in nonMerge()
[all …]
/external/OpenCL-CTS/test_conformance/images/
Dcommon.cpp148 size_t random_in_ranges(size_t minimum, size_t rangeA, size_t rangeB, MTdata d) in random_in_ranges() argument
150 if (rangeB < rangeA) rangeA = rangeB; in random_in_ranges()
151 if (rangeA < minimum) return rangeA; in random_in_ranges()
152 return (size_t)random_in_range((int)minimum, (int)rangeA - 1, d); in random_in_ranges()
Dcommon.h51 size_t random_in_ranges(size_t minimum, size_t rangeA, size_t rangeB, MTdata d);
/external/deqp/modules/gles3/functional/
Des3fShaderPrecisionTests.cpp182 … char* op, EvalFunc evalFunc, glu::Precision precision, const tcu::Vec2& rangeA, const tcu::Vec2& …
215 … char* op, EvalFunc evalFunc, glu::Precision precision, const tcu::Vec2& rangeA, const tcu::Vec2& … in ShaderFloatPrecisionCase() argument
220 , m_rangeA (rangeA) in ShaderFloatPrecisionCase()
436 …EvalFunc evalFunc, glu::Precision precision, int bits, const tcu::IVec2& rangeA, const tcu::IVec2&…
467 …EvalFunc evalFunc, glu::Precision precision, int bits, const tcu::IVec2& rangeA, const tcu::IVec2&… in ShaderIntPrecisionCase() argument
473 , m_rangeA (rangeA) in ShaderIntPrecisionCase()
630 …EvalFunc evalFunc, glu::Precision precision, int bits, const tcu::UVec2& rangeA, const tcu::UVec2&…
661 …EvalFunc evalFunc, glu::Precision precision, int bits, const tcu::UVec2& rangeA, const tcu::UVec2&… in ShaderUintPrecisionCase() argument
667 , m_rangeA (rangeA) in ShaderUintPrecisionCase()
860 tcu::Vec2 rangeA; in init() member
[all …]
/external/llvm-project/mlir/lib/Dialect/Linalg/IR/
DLinalgOps.cpp1390 auto rangeA = llvm::make_range(a.begin(), a.end()); in INSTANTIATE_WEIGHTED_POOLING_INPUT_INDEX() local
1392 auto concatRanges = llvm::concat<const AffineExpr>(rangeA, rangeB); in INSTANTIATE_WEIGHTED_POOLING_INPUT_INDEX()