Rev 655 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 655 | Rev 1702 | ||
|---|---|---|---|
| Line 24... | Line 24... | ||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| - | 29 | /** @addtogroup mips32 |
|
| - | 30 | * @{ |
|
| - | 31 | */ |
|
| - | 32 | /** @file |
|
| - | 33 | */ |
|
| - | 34 | ||
| 29 | #ifndef __mips32_MEMSTR_H__ |
35 | #ifndef __mips32_MEMSTR_H__ |
| 30 | #define __mips32_MEMSTR_H__ |
36 | #define __mips32_MEMSTR_H__ |
| 31 | 37 | ||
| 32 | #define memcpy(dst, src, cnt) __builtin_memcpy((dst), (src), (cnt)) |
38 | #define memcpy(dst, src, cnt) __builtin_memcpy((dst), (src), (cnt)) |
| 33 | 39 | ||
| Line 35... | Line 41... | ||
| 35 | extern void memsetb(__address dst, size_t cnt, __u8 x); |
41 | extern void memsetb(__address dst, size_t cnt, __u8 x); |
| 36 | 42 | ||
| 37 | extern int memcmp(__address src, __address dst, int cnt); |
43 | extern int memcmp(__address src, __address dst, int cnt); |
| 38 | 44 | ||
| 39 | #endif |
45 | #endif |
| - | 46 | ||
| - | 47 | /** @} |
|
| - | 48 | */ |
|
| - | 49 | ||