Home
last modified time | relevance | path

Searched refs:range (Results 1 - 25 of 2827) sorted by relevance

12345678910>>...114

/base/print/print_fwk/test/unittest/fwk_inner_napi_test/
H A Dprint_range_test.cpp51 OHOS::Print::PrintRange range; in HWTEST_F() local
52 range.Reset(); in HWTEST_F()
53 EXPECT_FALSE(range.HasStartPage()); in HWTEST_F()
64 OHOS::Print::PrintRange range; in HWTEST_F() local
65 range.SetStartPage(6); in HWTEST_F()
66 EXPECT_EQ((uint32_t)6, range.GetStartPage()); in HWTEST_F()
77 OHOS::Print::PrintRange range; in HWTEST_F() local
78 range.SetEndPage(6); in HWTEST_F()
79 EXPECT_TRUE(range.HasEndPage()); in HWTEST_F()
90 OHOS::Print::PrintRange range; in HWTEST_F() local
103 OHOS::Print::PrintRange range; HWTEST_F() local
117 OHOS::Print::PrintRange range; HWTEST_F() local
133 OHOS::Print::PrintRange range; HWTEST_F() local
150 OHOS::Print::PrintRange range; HWTEST_F() local
167 OHOS::Print::PrintRange range; HWTEST_F() local
183 OHOS::Print::PrintRange range; HWTEST_F() local
199 OHOS::Print::PrintRange range; HWTEST_F() local
214 OHOS::Print::PrintRange range; HWTEST_F() local
233 OHOS::Print::PrintRange range; HWTEST_F() local
247 OHOS::Print::PrintRange range; HWTEST_F() local
261 OHOS::Print::PrintRange range; HWTEST_F() local
[all...]
/third_party/rust/crates/clap/src/builder/
H A Drange.rs21 /// Create a range
31 /// let range = ValueRange::new(5);
32 /// let range = ValueRange::new(5..10);
33 /// let range = ValueRange::new(5..=10);
34 /// let range = ValueRange::new(5..);
35 /// let range = ValueRange::new(..10);
36 /// let range = ValueRange::new(..=10);
42 /// let range = ValueRange::new(10..5); // Panics!
44 pub fn new(range: impl Into<Self>) -> Self { in new()
45 range in new()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_range.h25 * 1D integer range, capable of the union and intersection operations.
48 /* for the range to be consistent with multiple contexts: */
54 util_range_set_empty(struct util_range *range) in util_range_set_empty() argument
56 range->start = ~0; in util_range_set_empty()
57 range->end = 0; in util_range_set_empty()
62 util_range_add(struct pipe_resource *resource, struct util_range *range, in util_range_add() argument
65 if (start < range->start || end > range->end) { in util_range_add()
68 range->start = MIN2(start, range in util_range_add()
80 util_ranges_intersect(const struct util_range *range, unsigned start, unsigned end) util_ranges_intersect() argument
90 util_range_init(struct util_range *range) util_range_init() argument
97 util_range_destroy(struct util_range *range) util_range_destroy() argument
[all...]
/third_party/python/Lib/test/
H A Dtest_range.py47 self.assertEqual(list(range(3)), [0, 1, 2])
48 self.assertEqual(list(range(1, 5)), [1, 2, 3, 4])
49 self.assertEqual(list(range(0)), [])
50 self.assertEqual(list(range(-3)), [])
51 self.assertEqual(list(range(1, 10, 3)), [1, 4, 7])
52 self.assertEqual(list(range(5, -5, -3)), [5, 2, -1, -4])
58 self.assertEqual(list(range(a, a+2)), [a, a+1])
59 self.assertEqual(list(range(a+2, a, -1)), [a+2, a+1])
60 self.assertEqual(list(range(a+4, a, -2)), [a+4, a+2])
62 seq = list(range(
[all...]
H A Dtest_itertools.py50 for i in range(n):
69 return prod(range(1, n+1))
82 for proto in range(pickle.HIGHEST_PROTOCOL + 1)]
114 for i in range(take):
128 self.assertEqual(list(accumulate(range(10))), # one positional arg
130 self.assertEqual(list(accumulate(iterable=range(10))), # kw arg
134 list(accumulate(map(typ, range(10)))),
139 self.assertRaises(TypeError, accumulate, range(10), 5, 6) # too many args
141 self.assertRaises(TypeError, accumulate, x=range(10)) # unexpected kwd arg
153 for proto in range(pickl
[all...]
H A Dtest_opcache.py18 for i in range(1025):
45 for _ in range(1025):
51 for _ in range(1025):
66 for _ in range(1025):
83 for _ in range(1025):
88 for _ in range(1025):
103 for _ in range(1025):
108 for _ in range(1025):
118 for _ in range(1025):
128 for _ in range(102
[all...]
H A Dtest_dictcomps.py12 actual = {k: k + 10 for k in range(10)}
16 actual = {k: v for k in range(10) for v in range(10) if k == v}
24 actual = {k: None for k in range(10)}
34 actual = {k: v for v in range(10) for k in range(v * 9, v * 10)}
41 actual = {g: None for g in range(10)}
51 actual = {g: v for v in range(10) for g in range(v * 9, v * 10)}
61 actual = {k: g for k in range(1
[all...]
/third_party/selinux/libsepol/include/sepol/policydb/
H A Dcontext.h31 * identity, a role, a type and a MLS range.
37 mls_range_t range; member
42 mls_range_init(&c->range); in mls_context_init()
49 if (mls_range_cpy(&dst->range, &src->range) < 0) in mls_context_cpy()
56 * Sets both levels in the MLS range of 'dst' to the low level of 'src'.
62 dst->range.level[0].sens = src->range.level[0].sens; in mls_context_cpy_low()
63 rc = ebitmap_cpy(&dst->range.level[0].cat, &src->range in mls_context_cpy_low()
[all...]
/foundation/multimedia/av_codec/test/moduletest/vcodec/encoder/src/
H A Dconfigure_test.cpp93 OH_AVRange range; in HWTEST_F() local
94 memset_s(&range, sizeof(OH_AVRange), 0, sizeof(OH_AVRange)); in HWTEST_F()
97 ret = OH_AVCapability_GetVideoWidthRangeForHeight(capability, DEFAULT_HEIGHT, &range); in HWTEST_F()
106 (void)OH_AVFormat_SetIntValue(format, OH_MD_KEY_WIDTH, range.maxVal + 1); in HWTEST_F()
111 (void)OH_AVFormat_SetIntValue(format, OH_MD_KEY_WIDTH, range.minVal - 1); in HWTEST_F()
123 OH_AVRange range; in HWTEST_F() local
124 memset_s(&range, sizeof(OH_AVRange), 0, sizeof(OH_AVRange)); in HWTEST_F()
127 ret = OH_AVCapability_GetVideoWidthRangeForHeight(capability, DEFAULT_HEIGHT, &range); in HWTEST_F()
128 cout << "minval=" << range.minVal << " maxval=" << range in HWTEST_F()
156 OH_AVRange range; HWTEST_F() local
189 OH_AVRange range; HWTEST_F() local
222 OH_AVRange range; HWTEST_F() local
255 OH_AVRange range; HWTEST_F() local
288 OH_AVRange range; HWTEST_F() local
320 OH_AVRange range; HWTEST_F() local
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dcabac.h58 #define BRANCHLESS_GET_CABAC_UPDATE(ret, retq, low, range, tmp) \
60 "cmova %%ecx , "range" \n\t"\
66 #define BRANCHLESS_GET_CABAC_UPDATE(ret, retq, low, range, tmp) \
70 "sub %%ecx , "range" \n\t"\
71 "and "tmp" , "range" \n\t"\
72 "add %%ecx , "range" \n\t"\
80 #define BRANCHLESS_GET_CABAC(ret, retq, statep, low, lowword, range, rangeq, tmp, tmpbyte, byte, end, norm_off, lps_off, mlps_off, tables) \
82 "mov "range" , "tmp" \n\t"\
83 "and $0xC0 , "range" \n\t"\
84 "lea ("ret", "range",
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
H A DSubresourceStorageTests.cpp39 void Update(const SubresourceRange& range, F&& updateFunc) { in Update()
40 for (Aspect aspect : IterateEnumMask(range.aspects)) { in Update()
41 for (uint32_t layer = range.baseArrayLayer; in Update()
42 layer < range.baseArrayLayer + range.layerCount; layer++) { in Update()
43 for (uint32_t level = range.baseMipLevel; in Update()
44 level < range.baseMipLevel + range.levelCount; level++) { in Update()
45 SubresourceRange range = SubresourceRange::MakeSingle(aspect, layer, level); in Update() local
46 updateFunc(range, in Update()
57 SubresourceRange range = SubresourceRange::MakeSingle(aspect, layer, level); Merge() local
263 CallUpdateOnBoth(SubresourceStorage<T>* s, FakeStorage<T>* f, const SubresourceRange& range, F&& updateFunc) CallUpdateOnBoth() argument
285 SubresourceRange range = SubresourceRange::MakeSingle(Aspect::Color, 3, 2); TEST() local
299 SubresourceRange range = SubresourceRange::MakeSingle(Aspect::Stencil, 1, 2); TEST() local
320 SubresourceRange range = SubresourceRange::MakeSingle(Aspect::Depth, layer, level); TEST() local
401 SubresourceRange range = SubresourceRange::MakeSingle(Aspect::Color, 0, kLevels - 1); TEST() local
405 SubresourceRange range = SubresourceRange::MakeSingle(Aspect::Color, kLayers - 1, 0); TEST() local
452 SubresourceRange range = SubresourceRange::MakeFull(Aspect::Color, 2, 2); TEST() local
606 SubresourceRange range = SubresourceRange::MakeSingle(Aspect::Color, layer, level); TEST() local
636 SubresourceRange range = SubresourceRange::MakeSingle(Aspect::Color, 0, 1); TEST() local
660 SubresourceRange range = SubresourceRange::MakeSingle(Aspect::Color, 1, 1); TEST() local
[all...]
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_rob.c39 (*pg)->range.begin = begin; in ngtcp2_rob_gap_new()
40 (*pg)->range.end = end; in ngtcp2_rob_gap_new()
56 (*pd)->range.begin = offset; in ngtcp2_rob_data_new()
57 (*pd)->range.end = offset + chunk; in ngtcp2_rob_data_new()
80 rv = ngtcp2_ksl_insert(&rob->gapksl, NULL, &g->range, g); in ngtcp2_rob_init()
126 ngtcp2_range range = {offset, offset + len}; in rob_write_data() local
129 for (it = ngtcp2_ksl_lower_bound_compar(&rob->dataksl, &range, in rob_write_data()
138 if (d == NULL || offset < d->range.begin) { in rob_write_data()
145 rv = ngtcp2_ksl_insert(&rob->dataksl, &it, &d->range, d); in rob_write_data()
152 n = (size_t)ngtcp2_min((uint64_t)len, d->range in rob_write_data()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCodePointMap.java129 * @return the range value
134 * Sets the range. When using {@link #iterator()},
150 private Range range = new Range(); field in CodePointMap.RangeIterator
154 return -1 <= range.end && range.end < 0x10ffff; in hasNext()
159 if (getRange(range.end + 1, null, range)) { in next()
160 return range; in next()
308 * Returns the value for a code point as stored in the map, with range checking.
309 * Returns an implementation-defined error value if c is not in the range
354 getRange(int start, ValueFilter filter, Range range) getRange() argument
377 getRange(int start, RangeOption option, int surrogateValue, ValueFilter filter, Range range) getRange() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DCodePointMap.java119 * @return the range value
123 * Sets the range. When using {@link #iterator()},
138 private Range range = new Range(); field in CodePointMap.RangeIterator
142 return -1 <= range.end && range.end < 0x10ffff; in hasNext()
147 if (getRange(range.end + 1, null, range)) { in next()
148 return range; in next()
288 * Returns the value for a code point as stored in the map, with range checking.
289 * Returns an implementation-defined error value if c is not in the range
332 getRange(int start, ValueFilter filter, Range range) getRange() argument
354 getRange(int start, RangeOption option, int surrogateValue, ValueFilter filter, Range range) getRange() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dcabac_functions.h80 int shift= (uint32_t)(c->range - 0x100)>>31; in renorm_cabac_decoder_once()
81 c->range<<= shift; in renorm_cabac_decoder_once()
118 int RangeLPS= ff_h264_lps_range[2*(c->range&0xC0) + s]; in get_cabac_inline()
121 c->range -= RangeLPS; in get_cabac_inline()
122 lps_mask= ((c->range<<(CABAC_BITS+1)) - c->low)>>31; in get_cabac_inline()
124 c->low -= (c->range<<(CABAC_BITS+1)) & lps_mask; in get_cabac_inline()
125 c->range += (RangeLPS - c->range) & lps_mask; in get_cabac_inline()
131 lps_mask= ff_h264_norm_shift[c->range]; in get_cabac_inline()
132 c->range<< in get_cabac_inline()
150 int range; get_cabac_bypass() local
168 int range, mask; get_cabac_bypass_sign() local
[all...]
H A Drangecoder.h37 int range; member
53 * Terminates the range coder
65 while (c->range < 0x100) { in renorm_encoder()
83 c->range <<= 8; in renorm_encoder()
92 return 8 * x - av_log2(c->range); in get_rac_count()
97 int range1 = (c->range * (*state)) >> 8; in put_rac()
100 av_assert2(range1 < c->range); in put_rac()
103 c->range -= range1; in put_rac()
106 c->low += c->range - range1; in put_rac()
107 c->range in put_rac()
[all...]
/third_party/selinux/libsepol/src/
H A Dmls.c113 unsigned int i, l, len, range; in mls_compute_context_len() local
121 range = 0; in mls_compute_context_len()
124 p_sens_val_to_name[context->range.level[l].sens - in mls_compute_context_len()
127 ebitmap_for_each_bit(&context->range.level[l].cat, cnode, i) { in mls_compute_context_len()
129 if (range) { in mls_compute_context_len()
130 range++; in mls_compute_context_len()
136 range++; in mls_compute_context_len()
138 if (range > 1) in mls_compute_context_len()
143 range = 0; in mls_compute_context_len()
146 /* Handle case where last category is the end of range */ in mls_compute_context_len()
172 unsigned int i, l, range, wrote_sep; mls_sid_to_context() local
493 mls_range_set(context_struct_t * context, const mls_range_t * range) mls_range_set() argument
[all...]
/third_party/musl/Benchmark/musl/
H A Dlibc_string.cpp69 const size_t nbytes = state.range(0); in Bm_function_Memchr()
70 const size_t limitsize = state.range(1); in Bm_function_Memchr()
71 const size_t bmmemchrAlignment = state.range(2); in Bm_function_Memchr()
94 const char *test = strrchrtestsrc[state.range(0)]; in Bm_function_Strrchr()
95 const char ch = strrchrtesttag[state.range(0)]; in Bm_function_Strrchr()
102 // The selected range calculates the length
105 const size_t nbytes = state.range(0); in Bm_function_Strnlen()
106 const size_t limitsize = state.range(1); in Bm_function_Strnlen()
107 const size_t bmstrnlenAlignment = state.range(2); in Bm_function_Strnlen()
123 const size_t nbytes = bufferSizes[state.range( in Bm_function_Strlen_chk()
[all...]
/foundation/communication/netstack/test/unittest/tls_test/core/
H A Dtls_config_enhanced.test.cpp82 TransferRange range; in HWTEST_F() local
83 range.push_back({}); in HWTEST_F()
84 range.push_back({ in HWTEST_F()
88 range.push_back({ in HWTEST_F()
92 EXPECT_EQ(range.ToHeaderString(), "100-200, 300-400"); in HWTEST_F()
94 range = {}; in HWTEST_F()
95 EXPECT_EQ(range.ToHeaderString(), ""); in HWTEST_F()
118 TlsVersionRange range; in HWTEST_F() local
119 range = ConvertTlsVersion(TlsVersion::DEFAULT); in HWTEST_F()
120 EXPECT_EQ(range in HWTEST_F()
[all...]
/foundation/communication/netstack/test/unittest/tlssocket/core/
H A Dtls_config_enhanced.test.cpp82 TransferRange range; in HWTEST_F() local
83 range.push_back({}); in HWTEST_F()
84 range.push_back({ in HWTEST_F()
88 range.push_back({ in HWTEST_F()
92 EXPECT_EQ(range.ToHeaderString(), "100-200, 300-400"); in HWTEST_F()
94 range = {}; in HWTEST_F()
95 EXPECT_EQ(range.ToHeaderString(), ""); in HWTEST_F()
118 TlsVersionRange range; in HWTEST_F() local
119 range = ConvertTlsVersion(TlsVersion::DEFAULT); in HWTEST_F()
120 EXPECT_EQ(range in HWTEST_F()
[all...]
/third_party/backends/sanei/
H A Dsanei_constrain_value.c57 const SANE_Range *range; in sanei_check_value() local
79 range = opt->constraint.range; in sanei_check_value()
84 if (array[i] < range->min || array[i] > range->max) in sanei_check_value()
88 if (range->quant) in sanei_check_value()
91 (unsigned int) (array[i] - range->min + in sanei_check_value()
92 range->quant / 2) / range->quant; in sanei_check_value()
93 v = v * range in sanei_check_value()
167 const SANE_Range *range; sanei_constrain_value() local
[all...]
/third_party/node/deps/v8/src/compiler/backend/
H A Dregister-allocator.cc56 void LiveRangeBoundArray::Initialize(Zone* zone, TopLevelLiveRange* range) { in Initialize() argument
57 size_t max_child_count = range->GetMaxChildCount(); in Initialize()
64 for (LiveRange* i = range; i != nullptr; i = i->next(), ++curr, ++length_) { in Initialize()
110 // Both blocks are covered by the same range, so there is nothing to in FindConnectableSubranges()
136 TopLevelLiveRange* range = data_->live_ranges()[operand_index]; in ArrayFor()
137 DCHECK(range != nullptr && !range->IsEmpty()); in ArrayFor()
138 DCHECK_EQ(range->vreg(), operand_index); in ArrayFor()
141 array->Initialize(zone_, range); in ArrayFor()
486 // We cannot spill a live range tha in CanBeSpilled()
1053 const LiveRange* range = printable_range.range_; operator <<() local
1427 LiveRange* range = GetOrCreateLiveRangeFor(operand_index); ExistsUseWithoutDefinition() local
1471 AssignSpillRangeToLiveRange( TopLevelLiveRange* range, SpillMode spill_mode) AssignSpillRangeToLiveRange() argument
1674 TopLevelLiveRange* range = data()->GetOrCreateLiveRangeFor(output_vreg); MeetRegisterConstraintsForLastInstructionInBlock() local
1723 TopLevelLiveRange* range = data()->GetOrCreateLiveRangeFor(output_vreg); MeetConstraintsAfter() local
1729 TopLevelLiveRange* range = MeetConstraintsAfter() local
1776 TopLevelLiveRange* range = MeetConstraintsBefore() local
1931 TopLevelLiveRange* range = data()->GetOrCreateLiveRangeFor(operand_index); AddInitialIntervals() local
2078 TopLevelLiveRange* range = LiveRangeFor(operand, spill_mode); Define() local
2103 TopLevelLiveRange* range = LiveRangeFor(operand, spill_mode); Use() local
2174 TopLevelLiveRange* range = FixedLiveRangeFor(code, spill_mode); ProcessInstructions() local
2185 TopLevelLiveRange* range = FixedFPLiveRangeFor( ProcessInstructions() local
2198 TopLevelLiveRange* range = FixedFPLiveRangeFor( ProcessInstructions() local
2208 TopLevelLiveRange* range = FixedFPLiveRangeFor( ProcessInstructions() local
2219 TopLevelLiveRange* range = ProcessInstructions() local
2483 TopLevelLiveRange* range = data()->GetOrCreateLiveRangeFor(operand_index); ProcessLoopHeader() local
2553 TopLevelLiveRange* range = preassigned.first; BuildLiveRanges() local
2723 TryAddRange(LiveRange* range) TryAddRange() argument
2803 GetSplitPositionForInstruction( const LiveRange* range, int instruction_index) GetSplitPositionForInstruction() argument
2819 TopLevelLiveRange* range = data()->live_ranges()[i]; SplitAndSpillRangesDefinedByMemoryOperand() local
2857 SplitRangeAt(LiveRange* range, LifetimePosition pos) SplitRangeAt() argument
2875 SplitBetween(LiveRange* range, LifetimePosition start, LifetimePosition end) SplitBetween() argument
2926 FindOptimalSpillingPos( LiveRange* range, LifetimePosition pos, SpillMode spill_mode, LiveRange** begin_spill_out) FindOptimalSpillingPos() argument
2978 Spill(LiveRange* range, SpillMode spill_mode) Spill() argument
3049 MaybeUndoPreviousSplit(LiveRange* range) MaybeUndoPreviousSplit() argument
3153 AssignRegisterOnReload(LiveRange* range, int reg) AssignRegisterOnReload() argument
3201 TopLevelLiveRange* range = range_with_register.range; ReloadLiveRanges() local
3859 SetLiveRangeAssignedRegister(LiveRange* range, int reg) SetLiveRangeAssignedRegister() argument
3870 AddToActive(LiveRange* range) AddToActive() argument
3878 AddToInactive(LiveRange* range) AddToInactive() argument
3887 AddToUnhandled(LiveRange* range) AddToUnhandled() argument
3906 LiveRange* range = *it; ActiveToInactive() local
3919 LiveRange* range = *it; InactiveToHandled() local
3929 LiveRange* range = *it; InactiveToActive() local
4022 FindFreeRegistersForRange( LiveRange* range, base::Vector<LifetimePosition> positions) FindFreeRegistersForRange() argument
4407 LiveRange* range = *it; SplitAndSpillIntersecting() local
4452 LiveRange* range = *it; SplitAndSpillIntersecting() local
4482 TryReuseSpillForPhi(TopLevelLiveRange* range) TryReuseSpillForPhi() argument
4534 SpillAfter(LiveRange* range, LifetimePosition pos, SpillMode spill_mode) SpillAfter() argument
4540 SpillBetween(LiveRange* range, LifetimePosition start, LifetimePosition end, SpillMode spill_mode) SpillBetween() argument
4546 SpillBetweenUntil(LiveRange* range, LifetimePosition start, LifetimePosition until, LifetimePosition end, SpillMode spill_mode) SpillBetweenUntil() argument
4642 SpillRange* range = spill_ranges[i]; AssignSpillSlots() local
5102 CommitSpillsInDeferredBlocks( TopLevelLiveRange* range, LiveRangeBoundArray* array, Zone* temp_zone) CommitSpillsInDeferredBlocks() argument
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
H A DHuffmanEncoder.java31 private int range; field in HuffmanEncoder
42 public HuffmanEncoder(BitIOWriter bits, int range) { in HuffmanEncoder() argument
44 this.range = range; in HuffmanEncoder()
45 bitsUsed(range - 1); in HuffmanEncoder()
46 if (range > 256 && range < 512) { in HuffmanEncoder()
47 bitCount2 = bitsUsed(range - 257); in HuffmanEncoder()
51 symbolIndex = new short[range]; in HuffmanEncoder()
52 int limit = 2 * range; in HuffmanEncoder()
[all...]
/foundation/communication/netstack/frameworks/native/tls_socket/src/
H A Dtls_config_enhanced.cpp149 for (const auto &range : *this) { in ToHeaderString()
150 if (!range.from && !range.to) { in ToHeaderString()
153 std::string from = range.from ? std::to_string(range.from.value()) : ""; in ToHeaderString()
154 std::string to = range.to ? std::to_string(range.to.value()) : ""; in ToHeaderString()
206 TlsVersionRange range; in ConvertTlsVersion() local
208 return range; in ConvertTlsVersion()
211 range in ConvertTlsVersion()
[all...]
/foundation/multimedia/av_codec/test/unittest/codeclist_test/capi/
H A Dcodeclist_capi_mock.cpp68 OH_AVRange range; in GetEncoderBitrateRange() local
69 int32_t ret = OH_AVCapability_GetEncoderBitrateRange(codeclist_, &range); in GetEncoderBitrateRange()
74 retRange.minVal = range.minVal; in GetEncoderBitrateRange()
75 retRange.maxVal = range.maxVal; in GetEncoderBitrateRange()
95 OH_AVRange range; in GetEncoderQualityRange() local
96 int32_t ret = OH_AVCapability_GetEncoderQualityRange(codeclist_, &range); in GetEncoderQualityRange()
101 retRange.minVal = range.minVal; in GetEncoderQualityRange()
102 retRange.maxVal = range.maxVal; in GetEncoderQualityRange()
113 OH_AVRange range; in GetEncoderComplexityRange() local
114 int32_t ret = OH_AVCapability_GetEncoderComplexityRange(codeclist_, &range); in GetEncoderComplexityRange()
150 OH_AVRange range; GetAudioChannelsRange() local
198 OH_AVRange range; GetVideoWidthRangeForHeight() local
216 OH_AVRange range; GetVideoHeightRangeForWidth() local
234 OH_AVRange range; GetVideoWidthRange() local
252 OH_AVRange range; GetVideoHeightRange() local
279 OH_AVRange range; GetVideoFrameRateRange() local
297 OH_AVRange range; GetVideoFrameRateRangeForSize() local
[all...]

Completed in 16 milliseconds

12345678910>>...114