mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 17:21:59 +03:00
5c9f8e36a1
* Fix symbom mangling
* Revert "Fix symbom mangling"
This reverts commit 6481e80155
.
* Fix typo
* [RefC] Add missed prims of setBuffer* .
* [ fix ] formatting
* [ re #2609 ] Use 'UInt' instead of 'Word'
More descriptive/to the point / Less assumed knowledge.
There are no *LE suffixes for UInt8, since endianness is to do with
multiple bytes and UInt8 is a single one.
Co-authored-by: Guillaume Allais <guillaume.allais@ens-lyon.org>
Co-authored-by: Thomas E. Hansen <teh6@st-andrews.ac.uk>
68 lines
3.1 KiB
C
68 lines
3.1 KiB
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct {
|
|
int size;
|
|
char data[];
|
|
} Buffer;
|
|
|
|
void *newBuffer(int bytes);
|
|
|
|
int getBufferSize(void *buffer);
|
|
|
|
void setBufferUIntLE(void *buffer, int loc, uint64_t val, size_t len);
|
|
#define setBufferUInt8(b, l, v) \
|
|
do { \
|
|
setBufferUIntLE(b, l, (uint64_t)v, 1); \
|
|
} while (0)
|
|
#define setBufferUInt16LE(b, l, v) \
|
|
do { \
|
|
setBufferUIntLE(b, l, (uint64_t)v, 2); \
|
|
} while (0)
|
|
#define setBufferUInt32LE(b, l, v) \
|
|
do { \
|
|
setBufferUIntLE(b, l, (uint64_t)v, 4); \
|
|
} while (0)
|
|
#define setBufferUInt64LE(b, l, v) \
|
|
do { \
|
|
setBufferUIntLE(b, l, (uint64_t)v, 8); \
|
|
} while (0)
|
|
|
|
#define setBufferByte(b, l, v) \
|
|
do { \
|
|
setBufferUIntLE(b, l, (uint64_t)v, 1); \
|
|
} while (0)
|
|
#define setBufferInt16LE(b, l, v) \
|
|
do { \
|
|
setBufferUIntLE(b, l, (uint64_t)v, 2); \
|
|
} while (0)
|
|
#define setBufferInt32LE(b, l, v) \
|
|
do { \
|
|
setBufferUIntLE(b, l, (uint64_t)v, 4); \
|
|
} while (0)
|
|
#define setBufferInt64LE(b, l, v) \
|
|
do { \
|
|
setBufferUIntLE(b, l, (uint64_t)v, 8); \
|
|
} while (0)
|
|
|
|
void setBufferDouble(void *buffer, int loc, double val);
|
|
void setBufferString(void *buffer, int loc, char *str);
|
|
|
|
void copyBuffer(void *from, int start, int len, void *to, int loc);
|
|
|
|
uint64_t getBufferUIntLE(void *buffer, int loc, size_t len);
|
|
#define getBufferUInt8(b, l) ((uint8_t)getBufferUIntLE(b, l, 1))
|
|
#define getBufferUInt16LE(b, l) ((uint16_t)getBufferUIntLE(b, l, 2))
|
|
#define getBufferUInt32LE(b, l) ((uint32_t)getBufferUIntLE(b, l, 4))
|
|
#define getBufferUInt64LE(b, l) ((uint64_t)getBufferUIntLE(b, l, 8))
|
|
|
|
#define getBufferByte(b, l) ((int64_t)getBufferUIntLE(b, l, 1))
|
|
#define getBufferInt16LE(b, l) ((int64_t)getBufferUIntLE(b, l, 2))
|
|
#define getBufferInt32LE(b, l) ((int64_t)getBufferUIntLE(b, l, 4))
|
|
#define getBufferInt64LE(b, l) ((int64_t)getBufferUIntLE(b, l, 8))
|
|
double getBufferDouble(void *buffer, int loc);
|
|
char *getBufferString(void *buffer, int loc, int len);
|