HomeSort by relevance Sort by last modified time
    Searched refs:range (Results 176 - 200 of 3229) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/lldb/include/lldb/Target/
ThreadPlanStepInRange.h 31 const AddressRange &range,
36 const AddressRange &range,
82 const AddressRange &range,
87 const AddressRange &range,
  /external/mesa3d/src/glsl/builtins/tools/
generate_matrixCompMultGLSL.py 12 for i in range(x):
generate_outerProductGLSL.py 10 for i in range(x):
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
formatter.hpp 15 #include <boost/range/iterator_range.hpp>
16 #include <boost/range/begin.hpp>
17 #include <boost/range/end.hpp>
18 #include <boost/range/const_iterator.hpp>
  /packages/apps/Launcher2/
fill_screens.py 61 for s in range(SCREENS):
62 for x in range(ROWS):
63 for y in range(COLUMNS):
70 for z in range(15):
  /packages/apps/Launcher3/
fill_screens.py 61 for s in range(SCREENS):
62 for x in range(ROWS):
63 for y in range(COLUMNS):
70 for z in range(15):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_array_in_pointer.py 32 for i in range(4):
35 values = [c.pvalues[i].val for i in range(4)]
52 for i in range(4):
55 values = [ptr[i].val for i in range(4)]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
this.py 25 for i in range(26):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_array_in_pointer.py 32 for i in range(4):
35 values = [c.pvalues[i].val for i in range(4)]
52 for i in range(4):
55 values = [ptr[i].val for i in range(4)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
this.py 25 for i in range(26):
  /external/chromium_org/third_party/skia/tests/
NameAllocatorTest.cpp 136 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/iptables/extensions/
libipt_NETMAP.c 57 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];
libip6t_NETMAP.c 39 struct nf_nat_range *range = cb->data; local
43 range->flags |= NF_NAT_RANGE_MAP_IPS;
45 range->min_addr.ip6[i] = cb->val.haddr.ip6[i] &
47 range->max_addr.ip6[i] = range->min_addr.ip6[i] |
libxt_iprange.c 31 "[!] --src-range ip[-ip] Match source IP in the specified range\n"
32 "[!] --dst-range ip[-ip] Match destination IP in the specified range\n");
36 {.name = "src-range", .id = O_SRC_RANGE, .type = XTTYPE_STRING,
38 {.name = "dst-range", .id = O_DST_RANGE, .type = XTTYPE_STRING,
44 iprange_parse_spec(const char *from, const char *to, union nf_inet_addr *range,
52 memset(range, 0, sizeof(union nf_inet_addr) * 2);
60 range[i].in6 = *ia6;
68 range[i].in = *ia4
99 union nf_inet_addr range[2]; local
    [all...]
  /external/skia/tests/
NameAllocatorTest.cpp 136 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) {
  /pdk/apps/CameraITS/tests/scene1/
test_param_noise_reduction.py 60 for j in range(3):
66 for i in range(3):
78 for j in range(3):
86 for j in range(3):
87 pylab.plot(range(3), variances[j], "rgb"[j])
94 for j in range(3):
95 for i in range(1,3):
  /external/chromium_org/base/metrics/
sample_vector.cc 66 if (min == bucket_ranges_->range(index) &&
67 max == bucket_ranges_->range(index + 1)) {
74 } else if (min > bucket_ranges_->range(index)) {
75 // Sample is larger than current bucket range. Try next.
78 // Sample is smaller than current bucket range. We scan buckets from
92 CHECK_GE(value, bucket_ranges_->range(0));
93 CHECK_LT(value, bucket_ranges_->range(bucket_count));
103 if (bucket_ranges_->range(mid) <= value)
109 DCHECK_LE(bucket_ranges_->range(mid), value);
110 CHECK_GT(bucket_ranges_->range(mid + 1), value)
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/utils/
rijndael.py 58 for i in range(255):
65 for i in range(1, 255):
75 box = [[0] * 8 for i in range(256)]
77 for i in range(2, 256):
79 for t in range(8):
85 cox = [[0] * 8 for i in range(256)]
86 for i in range(256):
87 for t in range(8):
89 for j in range(8):
95 for i in range(256)
    [all...]
python_aes.py 27 for x in range(len(plaintextBytes)//16):
31 for y in range(16):
38 for y in range(16):
54 for x in range(len(ciphertextBytes)//16):
61 for y in range(16):
  /external/chromium_org/third_party/WebKit/Source/web/
FindInPageCoordinates.cpp 35 #include "core/dom/Range.h"
131 FloatRect findInPageRectFromRange(Range* range)
133 if (!range || !range->firstNode())
136 return findInPageRectFromAbsoluteRect(RenderObject::absoluteBoundingBoxRectForRange(range), range->firstNode()->renderer());
  /external/chromium_org/ui/views/controls/
styled_label.cc 89 return range.start() < other.range.start();
117 void StyledLabel::AddStyleRange(const gfx::Range& range,
119 DCHECK(!range.is_reversed());
120 DCHECK(!range.is_empty());
121 DCHECK(gfx::Range(0, text_.size()).Contains(range));
123 // Insert the new range in sorted order.
125 new_range.push_front(StyleRange(range, style_info))
    [all...]
styled_label.h 15 #include "ui/gfx/range/range.h"
32 // Parameters that define label style for a styled label's text range.
37 // Creates a range style info with default values for link.
40 // The font style that will be applied to the range. Should be a bitmask of
44 // The text color for the range.
47 // Tooltip for the range.
50 // If set, the whole range will be put on a single line.
53 // If set, the range will be created as a link.
68 // Marks the given range within |text_| with style defined by |style_info|
108 gfx::Range range; member in struct:views::StyledLabel::StyleRange
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/
end.hpp 1 // Boost.Range library
8 // For more information, see http://www.boost.org/libs/range/
18 #include <boost/range/config.hpp>
21 #include <boost/range/detail/end.hpp>
24 #include <boost/range/detail/implementation_help.hpp>
25 #include <boost/range/iterator.hpp>
26 #include <boost/range/const_iterator.hpp>
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapUtility.java 63 * sequence-range = sequence-number ":" sequence-number
64 * sequence-set = (sequence-number / sequence-range) *("," sequence-set)
81 // range
93 * Expand the given number range into a list of individual numbers. If the range is not valid,
97 * sequence-range = sequence-number ":" sequence-number
98 * sequence-set = (sequence-number / sequence-range) *("," sequence-set)
101 public static String[] getImapRangeValues(String range) {
104 if (range != null) {
105 int colonPos = range.indexOf(':')
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugArangeSet.cpp 72 // The current range ends at or exceeds the start of the next address range.
82 // Discontiguous address range, just proceed to the next one.
96 // Add a range descriptor and keep things sorted so we can easily
100 DWARFDebugArangeSet::AddDescriptor(const DWARFDebugArangeSet::Descriptor& range)
104 m_arange_descriptors.push_back(range);
109 DescriptorIter pos = lower_bound(m_arange_descriptors.begin(), end, range, DescriptorLessThan);
110 const dw_addr_t range_end_addr = range.end_address();
114 if (range.address < pos->address)
119 m_arange_descriptors.insert(pos, range);
    [all...]

Completed in 634 milliseconds

1 2 3 4 5 6 78 91011>>