Searched defs:range (Results 101 - 125 of 658) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_reader.h38 unsigned int range; member in struct:__anon13140
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/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_writer.h24 unsigned int range; member in struct:__anon13210
36 unsigned int range = br->range; local
40 split = 1 + (((range - 1) * probability) >> 8);
42 range = split;
46 range = br->range - split;
49 shift = vp9_norm[range];
51 range <<= shift;
78 br->range
[all...]
/external/chromium_org/third_party/skia/tests/
H A DNameAllocatorTest.cpp136 static const GrGLuint range = 32; local
137 GrGLNameAllocator allocator(1, 1 + range);
138 for (GrGLuint i = 1; i <= range; ++i) {
143 // Test freeing names out of range.
149 for (GrGLuint i = 1; i <= range/2; i += 2) {
152 for (GrGLuint i = 1; i <= range/2; i += 2) {
156 for (GrGLuint i = 1; i <= range/2; ++i) {
160 for (GrGLuint i = 1; i <= range/2; ++i) {
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dstacktrace_unittest.cc53 // Expected function [start,end] range.
76 // Adjust function range from __builtin_return_address.
82 printf("Adjusting range from %p..%p to %p..%p\n", \
101 void CheckRetAddrIsInFunction(void *ret_addr, const AddressRange &range) argument
103 CHECK_GE(ret_addr, range.start);
104 CHECK_LE(ret_addr, range.end);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dstacktrace_unittest.cc53 // Expected function [start,end] range.
76 // Adjust function range from __builtin_return_address.
82 printf("Adjusting range from %p..%p to %p..%p\n", \
101 void CheckRetAddrIsInFunction(void *ret_addr, const AddressRange &range) argument
103 CHECK_GE(ret_addr, range.start);
104 CHECK_LE(ret_addr, range.end);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dcb_search_core.c24 int16_t range, /* (i) Search range */
50 for (i=0;i<range;i++) {
57 maxW32 = WebRtcSpl_MaxAbsValueW32(cDot, range);
66 for (i=0;i<range;i++) {
95 for (i=0;i<range;i++) {
106 *bestIndex = WebRtcSpl_MaxIndexW32(Crit, range);
22 WebRtcIlbcfix_CbSearchCore( int32_t *cDot, int16_t range, int16_t stage, int16_t *inverseEnergy, int16_t *inverseEnergyShift, int32_t *Crit, int16_t *bestIndex, int32_t *bestCrit, int16_t *bestCritSh) argument
/external/chromium_org/tools/clang/empty_string/
H A DEmptyStringConverter.cpp130 clang::CharSourceRange range = local
132 replacements_->insert(Replacement(*result.SourceManager, range, ""));
156 // source range for the parenthesis. We do this because the matched expression
158 clang::SourceRange range = call->getParenOrBraceRange(); local
159 if (range.isValid()) {
/external/chromium_org/ui/gfx/
H A Dbreak_list.h13 #include "ui/gfx/range/range.h"
20 // Each break stores the start position and value of its associated range.
24 // The value of the terminal break applies to the range [break.first, max_).
25 // The value of other breaks apply to the range [break.first, (break+1).first).
42 // Adjust the breaks to apply |value| over the supplied |range|.
43 void ApplyValue(T value, const Range& range);
53 // Get the range of the supplied break; returns the break's start position and
86 void BreakList<T>::ApplyValue(T value, const Range& range) { argument
87 if (!range
[all...]
/external/chromium_org/ui/gfx/range/
H A Drange.cc5 #include "ui/gfx/range/range.h"
60 bool Range::Intersects(const Range& range) const {
61 return IsValid() && range.IsValid() &&
62 !(range.GetMax() < GetMin() || range.GetMin() >= GetMax());
65 bool Range::Contains(const Range& range) const {
66 return IsValid() && range.IsValid() &&
67 GetMin() <= range.GetMin() && range
84 operator <<(std::ostream& os, const Range& range) argument
[all...]
/external/fio/
H A Dtickmarks.c96 double graphmin, graphmax; /* graph range min and max */
97 double range, x; local
101 range = nicenum(max - min, 0);
102 d = nicenum(range / (nticks - 1), 1);
128 printf("Testing range %g - %g\n", x, y);
/external/freetype/src/autofit/
H A Dafglobal.c167 AF_Script_UniRange range; local
174 * Scan all Unicode points in the range and set the corresponding
183 for ( range = script_class->script_uni_ranges;
184 range->first != 0;
185 range++ )
187 FT_ULong charcode = range->first;
202 if ( gindex == 0 || charcode > range->last )
/external/guava/guava/src/com/google/common/collect/
H A DContiguousSet.java92 * Returns a range, closed on both ends, whose endpoints are the minimum and maximum values
93 * contained in this set. This is equivalent to {@code range(CLOSED, CLOSED)}.
97 public abstract Range<C> range(); method in class:ContiguousSet
100 * Returns the minimal range with the given boundary types for which all values in this set are
101 * {@linkplain Range#contains(Comparable) contained} within the range.
105 * range {@code [1..Integer.MAX_VALUE]} then {@code set.range(CLOSED, OPEN)} must return
110 public abstract Range<C> range(BoundType lowerBoundType, BoundType upperBoundType); method in class:ContiguousSet
114 return range().toString();
/external/guava/guava-tests/test/com/google/common/collect/
H A DBstRangeOpsTest.java97 long count = BstRangeOps.totalInRange(countAggregate, GeneralRange.range(
124 GeneralRange<Character> range = GeneralRange.all(Ordering.natural());
125 assertEquals(0, BstRangeOps.totalInRange(countAggregate, range, empty));
209 GeneralRange.range(Ordering.natural(), 'c', OPEN, 'f', CLOSED);
213 GeneralRange.range(Ordering.natural(), 'a', CLOSED, 'h', OPEN);
236 SimpleNode d, GeneralRange<Character> range, String expected) {
238 BstRangeOps.minusRange(range, balancePolicy, nodeFactory, d), expected);
235 testTraversalAfterClearingRangeIs( SimpleNode d, GeneralRange<Character> range, String expected) argument
/external/ipsec-tools/src/racoon/
H A Dsecurity.c206 * configured range for a policy rule.
208 * char *range Range
209 * return: 1 if the sl is within the range
210 * 0 if the sl is not within the range or an error
215 within_range(security_context_t sl, security_context_t range) argument
224 if (!*range) /* This policy doesn't have security context */
231 * Get the sids for the sl and range contexts
240 rtn = avc_context_to_sid(range, &rangesid);
244 "sid for range context (%s).\n", range);
[all...]
/external/iptables/extensions/
H A Dlibip6t_REDIRECT.c28 " Port (range) to map to.\n"
40 parse_ports(const char *arg, struct nf_nat_range *range) argument
45 range->flags |= NF_NAT_RANGE_PROTO_SPECIFIED;
53 range->min_proto.tcp.port
54 = range->max_proto.tcp.port
65 range->min_proto.tcp.port = htons(port);
66 range->max_proto.tcp.port = htons(maxport);
77 struct nf_nat_range *range = (void *)(*cb->target)->data; local
95 parse_ports(cb->arg, range);
97 range
109 const struct nf_nat_range *range = (const void *)target->data; local
123 const struct nf_nat_range *range = (const void *)target->data; local
[all...]
H A Dlibipt_NETMAP.c57 struct nf_nat_ipv4_range *range = &mr->range[0]; local
60 range->flags |= NF_NAT_RANGE_MAP_IPS;
61 range->min_ip = cb->val.haddr.ip & cb->val.hmask.ip;
62 range->max_ip = range->min_ip | ~cb->val.hmask.ip;
69 const struct nf_nat_ipv4_range *r = &mr->range[0];
H A Dlibipt_SAME.c39 /* Parses range of IPs */
40 static void parse_to(const char *orig_arg, struct nf_nat_ipv4_range *range) argument
48 range->flags |= NF_NAT_RANGE_MAP_IPS;
58 range->min_ip = ip->s_addr;
66 range->max_ip = ip->s_addr;
68 if (range->min_ip > range->max_ip)
69 xtables_error(PARAMETER_PROBLEM, "Bad IP range \"%s-%s\"\n",
87 parse_to(cb->arg, &mr->range[mr->rangesize]);
95 mr->range[coun
[all...]
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dnf_nat.h26 struct nf_nat_ipv4_range range[1]; member in struct:nf_nat_ipv4_multi_range_compat
/external/libvpx/libvpx/vp8/decoder/
H A Ddboolhuff.h47 unsigned int range; member in struct:__anon24862
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/vp8/encoder/
H A Dboolhuff.h32 unsigned int range; member in struct:__anon24874
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
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_reader.h36 unsigned int range; member in struct:__anon24928
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/libvpx/libvpx/vp9/encoder/
H A Dvp9_writer.h24 unsigned int range; member in struct:__anon24981
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
[all...]
/external/lldb/source/Core/
H A DVMRange.cpp32 VMRange::ContainsRange(const VMRange::collection& coll, const VMRange& range) argument
34 RangeInRangeUnaryPredicate in_range_predicate(range);
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableArray.cpp58 CFCMutableArray::GetCountOfValue(CFRange range, const void *value) const argument
62 return ::CFArrayGetCountOfValue (array, range, value);
/external/lldb/source/Symbol/
H A DUnwindTable.cpp93 AddressRange range; local
94 if (!sc.GetAddressRange(eSymbolContextFunction | eSymbolContextSymbol, 0, false, range) || !range.GetBaseAddress().IsValid())
97 if (m_eh_frame == NULL || !m_eh_frame->GetAddressRange (addr, range))
103 FuncUnwindersSP func_unwinder_sp(new FuncUnwinders(*this, m_assembly_profiler, range));
104 m_unwinds.insert (insert_pos, std::make_pair(range.GetBaseAddress().GetFileAddress(), func_unwinder_sp));
120 AddressRange range; local
121 if (!sc.GetAddressRange(eSymbolContextFunction | eSymbolContextSymbol, 0, false, range) || !range.GetBaseAddress().IsValid())
124 if (m_eh_frame == NULL || !m_eh_frame->GetAddressRange (addr, range))
[all...]

Completed in 524 milliseconds

1234567891011>>