/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
TreeMultiset.java | 124 this.range = GeneralRange.all(comparator); 128 private TreeMultiset(GeneralRange<E> range, Reference<Node<E>> root) { 129 super(range.comparator()); 130 this.range = range; 139 private transient final GeneralRange<E> range; field in class:TreeMultiset 164 return Ints.checkedCast(BstRangeOps.totalInRange(distinctAggregate(), range, root)); 170 return Ints.saturatedCast(BstRangeOps.totalInRange(sizeAggregate(), range, root)); 177 if (range.contains(e)) { 211 checkArgument(range.contains(element)) [all...] |
/external/v8/src/ |
lithium-allocator.h | 218 // live range that owns it. The interval must contain the position. 299 // Returns use position in this live range that follows both start 301 // Modifies internal state of live range! 305 // range and which follows both start and last processed use position 306 // Modifies internal state of live range! 310 // range and which follows both start and last processed use position 311 // Modifies internal state of live range! 314 // Can this live range be spilled at this position. 317 // Split this live range at the given position which must follow the start of 318 // the range [all...] |
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
EditorClientQt.cpp | 48 #include "Range.h" 73 static QString dumpRange(WebCore::Range *range) 75 if (!range) 79 QString str = QString::fromLatin1("range from %1 of %2 to %3 of %4") 80 .arg(range->startOffset(code)).arg(dumpPath(range->startContainer(code))) 81 .arg(range->endOffset(code)).arg(dumpPath(range->endContainer(code))); 94 bool EditorClientQt::shouldDeleteRange(Range* range [all...] |
/external/clang/utils/ABITest/ |
Enumeration.py | 139 for i in range(W): 174 bounds = [maxElement**i for i in range(1, maxSize+1)] 201 active = range(len(bounds)) 231 a = [[' ' for x in range(10)] for y in range(10)] 232 b = [[' ' for x in range(10)] for y in range(10)] 233 for i in range(min(W*H,40)): 251 a = [[' ' for x in range(15)] for y in range(15) [all...] |
/external/llvm/test/MC/ARM/ |
diagnostics.s | 12 @ Out of range shift immediate values. 26 @ CHECK-ERRORS: error: immediate shift value out of range 29 @ CHECK-ERRORS: error: immediate shift value out of range 32 @ CHECK-ERRORS: error: immediate shift value out of range 35 @ CHECK-ERRORS: error: immediate shift value out of range 38 @ CHECK-ERRORS: error: immediate shift value out of range 41 @ CHECK-ERRORS: error: immediate shift value out of range 44 @ CHECK-ERRORS: error: immediate shift value out of range 47 @ CHECK-ERRORS: error: immediate shift value out of range 51 @ Out of range 16-bit immediate on BKP [all...] |
/external/libvpx/vp8/encoder/arm/armv5te/ |
boolhuff_armv5te.asm | 53 sub r7, r5, #1 ; range-1 56 mul r4, r4, r7 ; ((range-1) * probability) 59 add r4, r7, r4, lsr #8 ; 1 + (((range-1) * probability) >> 8) 62 subne r4, r5, r4 ; if (bit) range = range-split 64 ; Counting the leading zeros is used to normalize range. 71 lsl r5, r4, r6 ; range <<= shift 130 sub r7, r5, #1 ; range-1 132 mov r4, r7, lsl #7 ; ((range-1) * 128) 135 add r4, r7, r4, lsr #8 ; 1 + (((range-1) * 128) >> 8 [all...] |
vp8_packtokens_armv5.asm | 68 sub r7, r5, #1 ; range-1 74 mul r4, r4, r7 ; ((range-1) * pp[i>>1])) 82 add r4, r7, r4, lsr #8 ; 1 + (((range-1) * pp[i>>1]) >> 8) 85 subcs r4, r5, r4 ; if (bb) range = range-split 87 ; Counting the leading zeros is used to normalize range. 94 lsl r5, r4, r6 ; range <<= shift 173 sub r7, r5, #1 ; range-1 175 mul r4, r4, r7 ; (range-1) * pp[i>>1] 180 add r4, r7, r4, lsr #8 ; split = 1 + (((range-1) * pp[i>>1]) >> 8 [all...] |
/external/clang/include/clang/Edit/ |
Commit.h | 74 bool insertFromRange(SourceLocation loc, CharSourceRange range, 77 bool insertWrap(StringRef before, CharSourceRange range, StringRef after); 79 bool remove(CharSourceRange range); 81 bool replace(CharSourceRange range, StringRef text); 82 bool replaceWithInner(CharSourceRange range, CharSourceRange innerRange); 122 bool canRemoveRange(CharSourceRange range, FileOffset &Offs, unsigned &Len);
|
/external/webkit/Source/WebCore/editing/ |
FormatBlockCommand.cpp | 33 #include "Range.h" 67 RefPtr<Range> range = Range::create(document(), start, endOfSelection); local 74 && (end == endOfBlock(end) || isNodeVisiblyContainedWithin(refNode, range.get())) 98 Element* FormatBlockCommand::elementForFormatBlockCommand(Range* range) 100 if (!range) 104 Node* commonAncestor = range->commonAncestorContainer(ec); 111 Element* rootEditableElement = range->startContainer()->rootEditableElement() [all...] |
/external/webkit/Tools/DumpRenderTree/win/ |
EditingDelegate.h | 48 /* [in] */ IDOMRange *range, 53 /* [in] */ IDOMRange *range, 59 /* [in] */ IDOMRange *range, 65 /* [in] */ IDOMRange *range, 71 /* [in] */ IDOMRange *range, 85 /* [in] */ IDOMRange *range,
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
omxVCM4P2_DecodePadMV_PVOP.c | 96 OMX_S16 high, low, range; local 136 range = ( 64 * scaleFactor); 210 /* Checking the range and keeping it within the limits */ 213 pDstMVCurMB[iBlk].dx += range; 217 pDstMVCurMB[iBlk].dx -= range; 222 pDstMVCurMB[iBlk].dy += range; 226 pDstMVCurMB[iBlk].dy -= range;
|
/external/guava/guava/src/com/google/common/collect/ |
GeneralRange.java | 32 * {@link Range}, this allows the use of an arbitrary comparator. This is designed for use in the 35 * <p>Whenever possible, use {@code Range} instead, which is better supported. 42 * Converts a Range to a GeneralRange. 44 static <T extends Comparable> GeneralRange<T> from(Range<T> range) { 46 T lowerEndpoint = range.hasLowerBound() ? range.lowerEndpoint() : null; 47 BoundType lowerBoundType = range.hasLowerBound() ? range.lowerBoundType() : OPEN; 50 T upperEndpoint = range.hasUpperBound() ? range.upperEndpoint() : null 85 static <T> GeneralRange<T> range(Comparator<? super T> comparator, @Nullable T lower, method in class:GeneralRange [all...] |
/external/llvm/lib/DebugInfo/ |
DWARFDebugAranges.h | 22 struct Range { 23 explicit Range(uint64_t lo = -1ULL, uint64_t hi = -1ULL, 46 static bool SortedOverlapCheck(const Range &curr_range, 47 const Range &next_range, uint32_t n) { 53 bool contains(const Range &range) const { 54 return LoPC <= range.LoPC && range.HiPC() <= HiPC(); 58 uint64_t LoPC; // Start of address range 59 uint32_t Length; // End of address range (not including this address [all...] |
/external/proguard/src/proguard/obfuscate/ |
MappingPrinter.java | 137 * Returns the line number range of the given class member, followed by a 138 * colon, or just an empty String if no range is available. 142 String range = programMember.getLineNumberRange(programClass); local 143 return range != null ? 144 (range + ":") :
|
/external/proguard/src/proguard/shrink/ |
UsagePrinter.java | 167 * Returns the line number range of the given class member, followed by a 168 * colon, or just an empty String if no range is available. 172 String range = programMember.getLineNumberRange(programClass); local 173 return range != null ? 174 (range + ":") :
|
/external/stlport/test/eh/ |
TestClass.h | 55 static inline unsigned int get_random(unsigned range = UINT_MAX); 154 inline unsigned int TestClass::get_random( unsigned range ) 156 return random_number( range );
|
/bionic/libc/kernel/common/linux/netfilter_ipv4/ |
ip_queue.h | 44 size_t range; member in struct:ipq_mode_msg
|
/development/ndk/platforms/android-3/include/linux/netfilter_ipv4/ |
ip_queue.h | 35 size_t range; member in struct:ipq_mode_msg
|
/development/tools/axl/ |
chewperf.py | 16 for x in range(len(rawLines)): 72 for x in range(top): 77 window = [0 for x in range(5)] 79 for x in range(len(buckets.items())):
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
StackAddrEscapeChecker.cpp | 48 SourceRange range; local 58 range = CL->getSourceRange(); 63 range = ARE->getSourceRange(); 70 range = BD->getSourceRange(); 77 range = VR->getDecl()->getSourceRange(); 82 range = TOR->getExpr()->getSourceRange(); 88 return range; 105 SourceRange range = GenName(os, R, C.getSourceManager()); local 109 if (range.isValid()) 110 report->addRange(range); 225 SourceRange range = GenName(os, cb.V[i].second, local [all...] |
/external/e2fsprogs/resize/ |
extent.c | 146 float range; local 167 range = 0; 169 range = 1; 171 range = ((float) (old_loc - lowval)) / 173 if (range > 0.9) 174 range = 0.9; 175 if (range < 0.1) 176 range = 0.1; 178 mid = low + ((int) (range * (high-low)));
|
/external/easymock/src/org/easymock/internal/ |
IMocksControlState.java | 44 void times(Range range);
|
/external/iptables/include/net/netfilter/ |
nf_nat.h | 32 /* Single range specification. */ 51 struct nf_nat_range range[1]; member in struct:nf_nat_multi_range_compat
|
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/ |
Utilities.js | 37 function range(n) { function
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/ |
ip_queue.h | 35 size_t range; member in struct:ipq_mode_msg
|