HomeSort by relevance Sort by last modified time
    Searched refs:range (Results 51 - 75 of 3230) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/vp9/encoder/
vp9_writer.h 24 unsigned int range; member in struct:__anon28783
41 unsigned int range = br->range; local
45 split = 1 + (((range - 1) * probability) >> 8);
47 range = split;
51 range = br->range - split;
54 shift = vp9_norm[range];
56 range <<= shift;
83 br->range = range
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
boolhuff.h 32 unsigned int range; member in struct:__anon39766
70 unsigned int range = br->range; local
85 split = 1 + (((range - 1) * probability) >> 8);
87 range = split;
92 range = br->range - split;
95 shift = vp8_norm[range];
97 range <<= shift;
129 br->range = range
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_writer.h 24 unsigned int range; member in struct:__anon39871
41 unsigned int range = br->range; local
45 split = 1 + (((range - 1) * probability) >> 8);
47 range = split;
51 range = br->range - split;
54 shift = vp9_norm[range];
56 range <<= shift;
83 br->range = range
    [all...]
  /external/chromium_org/v8/tools/testrunner/local/
pool_unittest.py 19 for result in pool.imap_unordered(Run, [[x] for x in range(0, 10)]):
21 self.assertEquals(set(range(0, 10)), results)
26 for result in pool.imap_unordered(Run, [[x] for x in range(0, 12)]):
29 expect = set(range(0, 12))
36 for result in pool.imap_unordered(Run, [[x] for x in range(0, 10)]):
40 self.assertEquals(set(range(0, 10) + range(20, 30) + range(40, 50)),
  /external/clang/include/clang/Edit/
EditsReceiver.h 26 virtual void replace(CharSourceRange range, StringRef text) = 0;
28 virtual void remove(CharSourceRange range);
  /external/guava/guava/src/com/google/common/collect/
BstRangeOps.java 34 * to the specified range. Assumes that the tree satisfies the binary search ordering property
35 * relative to {@code range.comparator()}.
38 BstAggregate<? super N> aggregate, GeneralRange<K> range, @Nullable N root) {
40 checkNotNull(range);
41 if (root == null || range.isEmpty()) {
45 if (range.hasLowerBound()) {
46 total -= totalBeyondRangeToSide(aggregate, range, LEFT, root);
48 if (range.hasUpperBound()) {
49 total -= totalBeyondRangeToSide(aggregate, range, RIGHT, root);
54 // Returns total value strictly to the specified side of the specified range
    [all...]
  /external/libcxx/test/iterators/iterator.range/
Android.mk 17 test_makefile := external/libcxx/test/iterators/iterator.range/Android.mk
19 test_name := iterators/iterator.range/begin-end
  /external/qemu/include/qemu/
range.h 11 * - this can not represent a full 0 to ~0x0LL range.
14 /* A structure representing a range of addresses. */
15 struct Range {
16 uint64_t begin; /* First byte of the range, or 0 if empty. */
17 uint64_t end; /* 1 + the last byte. 0 if range empty or ends at ~0x0LL. */
20 static inline void range_extend(Range *range, Range *extend_by)
25 if (!range->begin && !range->end)
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_PersistentDataBlockService.cpp 49 uint64_t range[2]; local
53 range[0] = 0;
54 range[1] = len;
56 if (range[1] == 0)
59 ret = ioctl(fd, BLKSECDISCARD, &range);
62 range[0] = 0;
63 range[1] = len;
64 ret = ioctl(fd, BLKDISCARD, &range);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/detail/
str_types.hpp 1 // Boost.Range library
8 // For more information, see http://www.boost.org/libs/range/
14 #include <boost/range/size_type.hpp>
15 #include <boost/range/iterator.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/
difference_type.hpp 1 // Boost.Range library
8 // For more information, see http://www.boost.org/libs/range/
18 #include <boost/range/config.hpp>
19 #include <boost/range/iterator.hpp>
reverse_iterator.hpp 1 // Boost.Range library
8 // For more information, see http://www.boost.org/libs/range/
18 #include <boost/range/config.hpp>
19 #include <boost/range/iterator.hpp>
value_type.hpp 1 // Boost.Range library
8 // For more information, see http://www.boost.org/libs/range/
18 #include <boost/range/config.hpp>
19 #include <boost/range/iterator.hpp>
22 //#include <boost/range/detail/value_type.hpp>
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
editdistance.py 34 distances = [array(unsignedShort, (0,) * (len(str2) + 1)) for i in range(0, len(str1) + 1)]
36 for i in range(1, len(str1) + 1):
39 for j in range(1, len(str2) + 1):
42 for i in range(0, len(str1)):
43 for j in range(0, len(str2)):
  /external/chromium_org/third_party/angle/src/libGLESv2/
Float16ToFloat32.py 28 elif i in range(1, 31):
34 elif i in range(33, 63):
58 for i in range(0, 2048):
63 for i in range(0, 64):
68 for i in range(0, 64):
  /external/replicaisland/src/com/replica/replicaisland/
Lerp.java 26 final float range = target - start; local
28 value = start + (range * percent);
42 final float range = target - start; local
46 value = start + ((range / 2.0f) * percent * percent * percent);
51 value = start + ((range / 2.0f) *
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
concept.hpp 15 #include <boost/range/iterator_range.hpp>
16 #include <boost/range/begin.hpp>
17 #include <boost/range/end.hpp>
30 the range specified by starting and ending iterators.
38 typedef iterator_range<IteratorT> range; typedef in struct:boost::algorithm::FinderConcept
46 range r;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_reader.h 38 unsigned int range; member in struct:__anon16778
60 unsigned int range; local
61 unsigned int split = (r->range * prob + (256 - prob)) >> CHAR_BIT;
71 range = split;
74 range = r->range - split;
80 register unsigned int shift = vp9_norm[range];
81 range <<= shift;
87 r->range = range;
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkAdvancedTypefaceMetrics.cpp 40 SkAdvancedTypefaceMetrics::AdvanceMetric<Data>* range) {
46 SkAdvancedTypefaceMetrics::AdvanceMetric<int16_t>* range) {
47 SkASSERT(range);
49 int expectedAdvanceCount = range->fEndId - range->fStartId + 1;
50 if (range->fAdvance.count() < expectedAdvanceCount) {
55 if (range->fAdvance[i] != kDontCareAdvance &&
56 range->fAdvance[i] != kInvalidAdvance &&
57 range->fAdvance[i] != 0) {
58 range->fEndId = range->fStartId + i
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
dboolhuff.h 47 unsigned int range; member in struct:__anon28664
69 unsigned int range; local
71 split = 1 + (((br->range - 1) * probability) >> 8);
81 range = split;
85 range = br->range - split;
91 register unsigned int shift = vp8_norm[range];
92 range <<= shift;
98 br->range = range;
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_reader.h 36 unsigned int range; member in struct:__anon28730
52 unsigned int range; local
53 unsigned int split = (r->range * prob + (256 - prob)) >> CHAR_BIT;
63 range = split;
66 range = r->range - split;
72 register unsigned int shift = vp9_norm[range];
73 range <<= shift;
79 r->range = range;
    [all...]
  /external/skia/src/core/
SkAdvancedTypefaceMetrics.cpp 40 SkAdvancedTypefaceMetrics::AdvanceMetric<Data>* range) {
46 SkAdvancedTypefaceMetrics::AdvanceMetric<int16_t>* range) {
47 SkASSERT(range);
49 int expectedAdvanceCount = range->fEndId - range->fStartId + 1;
50 if (range->fAdvance.count() < expectedAdvanceCount) {
55 if (range->fAdvance[i] != kDontCareAdvance &&
56 range->fAdvance[i] != kInvalidAdvance &&
57 range->fAdvance[i] != 0) {
58 range->fEndId = range->fStartId + i
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
dboolhuff.h 47 unsigned int range; member in struct:__anon39754
69 unsigned int range; local
71 split = 1 + (((br->range - 1) * probability) >> 8);
81 range = split;
85 range = br->range - split;
91 register unsigned int shift = vp8_norm[range];
92 range <<= shift;
98 br->range = range;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_reader.h 36 unsigned int range; member in struct:__anon39820
52 unsigned int range; local
53 unsigned int split = (r->range * prob + (256 - prob)) >> CHAR_BIT;
63 range = split;
66 range = r->range - split;
72 register unsigned int shift = vp9_norm[range];
73 range <<= shift;
79 r->range = range;
    [all...]
  /external/stlport/test/unit/
ctype_facets_test.cpp 43 //is range
75 char range[] = "abAc123 ."; local
76 const char *rbeg = range;
77 const char *rend = range + sizeof(range);
95 char range[] = "abAc123 ."; local
96 const char *rbeg = range;
97 const char *rend = range + sizeof(range);
120 //toupper range
122 char range[] = "abAc1"; local
137 char range[] = "ABaC1"; local
150 char range[] = "ABaC1"; local
163 char range[] = "ABaC1"; local
219 wchar_t range[] = L"abAc123 ."; local
239 wchar_t range[] = L"abAc123 ."; local
266 wchar_t range[] = L"abAc1"; local
281 wchar_t range[] = L"ABaC1"; local
294 char range[] = "ABaC1"; local
308 wchar_t range[] = L"ABaC1"; local
    [all...]

Completed in 1436 milliseconds

1 23 4 5 6 7 8 91011>>