1 /* $NetBSD: citrus_region.h,v 1.7 2008/02/09 14:56:20 junyoung Exp $ */
2 /* $DragonFly: src/lib/libc/citrus/citrus_region.h,v 1.3 2008/04/10 10:21:01 hasso Exp $ */
5 * Copyright (c)2003 Citrus Project,
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 #ifndef _CITRUS_REGION_H_
32 #define _CITRUS_REGION_H_
34 struct _citrus_region
{
41 _citrus_region_init(struct _citrus_region
*r
, void *h
, size_t sz
)
48 static __inline
void *
49 _citrus_region_head(const struct _citrus_region
*r
)
54 static __inline
size_t
55 _citrus_region_size(const struct _citrus_region
*r
)
61 _citrus_region_check(const struct _citrus_region
*r
, size_t ofs
, size_t sz
)
63 return r
->r_size
>= ofs
+ sz
? 0 : -1;
66 static __inline
void *
67 _citrus_region_offset(const struct _citrus_region
*r
, size_t pos
)
69 return (void *)((uint8_t *)r
->r_head
+ pos
);
72 static __inline
uint8_t
73 _citrus_region_peek8(const struct _citrus_region
*r
, size_t pos
)
75 return *(uint8_t *)_citrus_region_offset(r
, pos
);
78 static __inline
uint16_t
79 _citrus_region_peek16(const struct _citrus_region
*r
, size_t pos
)
82 memcpy(&val
, _citrus_region_offset(r
, pos
), 2);
86 static __inline
uint32_t
87 _citrus_region_peek32(const struct _citrus_region
*r
, size_t pos
)
90 memcpy(&val
, _citrus_region_offset(r
, pos
), 4);
95 _citrus_region_get_subregion(struct _citrus_region
*subr
,
96 const struct _citrus_region
*r
,
97 size_t ofs
, size_t sz
)
99 if (_citrus_region_check(r
, ofs
, sz
))
101 _citrus_region_init(subr
, _citrus_region_offset(r
, ofs
), sz
);