Deleted Added
sdiff udiff text old ( 11990:5fad911cc326 ) new ( 12065:e3e51756dfef )
full compact
1/*
2 * Copyright (c) 2012, 2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

--- 331 unchanged lines hidden (view full) ---

342 bits(a, xorHighBit, xorHighBit - intlvBits + 1)) ==
343 intlvMatch;
344 }
345 }
346 return false;
347 }
348
349 /**
350 * Less-than operator used to turn an STL map into a binary search
351 * tree of non-overlapping address ranges.
352 *
353 * @param r Range to compare with
354 * @return true if the start address is less than that of the other range
355 */
356 bool operator<(const AddrRange& r) const
357 {

--- 44 unchanged lines hidden ---