blob: c3287fb679c8a0a2d257d2d85da35bce6b5843f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// file : cult/mm/new.ixx
// author : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2005-2010 Boris Kolpackov
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
namespace Cult
{
namespace MM
{
namespace Bits
{
inline
Void*
locate (Void const* p, KeyBase const& k) throw (Absent)
{
if (Void* bp = Block::locate (p)) p = bp;
Char* base (reinterpret_cast<Char*> (const_cast<Void*> (p)));
Offset* map (reinterpret_cast<Offset*> (base) - 1); // Map bottom.
while (map->key != 0)
{
if (map->key == &k)
{
return base - map->offset;
}
--map;
}
throw Absent ();
}
}
}
}
|