- Timestamp:
- 2017-10-24T04:54:05Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b639d56
- Parents:
- 9ddcb0b
- Location:
- boot
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/include/types.h
r9ddcb0b r002fd5f 37 37 #define BOOT_arm32_TYPES_H 38 38 39 #include < arch/common.h>39 #include <_bits/all.h> 40 40 41 41 #define TASKMAP_MAX_RECORDS 32 42 42 #define BOOTINFO_TASK_NAME_BUFLEN 32 43 44 typedef uint32_t size_t;45 typedef uint32_t uintptr_t;46 47 typedef uint32_t pfn_t;48 49 typedef int32_t ptrdiff_t;50 43 51 44 typedef struct { -
boot/arch/ia64/include/types.h
r9ddcb0b r002fd5f 30 30 #define BOOT_ia64_TYPES_H_ 31 31 32 #include < arch/common.h>32 #include <_bits/all.h> 33 33 34 34 #define TASKMAP_MAX_RECORDS 32 35 35 #define BOOTINFO_TASK_NAME_BUFLEN 32 36 36 #define MEMMAP_ITEMS 128 37 38 typedef uint64_t size_t;39 typedef uint64_t sysarg_t;40 typedef uint64_t uintptr_t;41 42 typedef int64_t ptrdiff_t;43 37 44 38 typedef struct { -
boot/arch/mips32/include/types.h
r9ddcb0b r002fd5f 30 30 #define BOOT_mips32_TYPES_H_ 31 31 32 #include < arch/common.h>32 #include <_bits/all.h> 33 33 34 34 #define TASKMAP_MAX_RECORDS 32 35 35 #define CPUMAP_MAX_RECORDS 32 36 36 #define BOOTINFO_TASK_NAME_BUFLEN 32 37 38 typedef uint32_t size_t;39 typedef uint32_t uintptr_t;40 41 typedef int32_t ptrdiff_t;42 37 43 38 typedef struct { -
boot/arch/ppc32/include/types.h
r9ddcb0b r002fd5f 30 30 #define BOOT_ppc32_TYPES_H_ 31 31 32 #include < arch/common.h>32 #include <_bits/all.h> 33 33 34 34 #define TASKMAP_MAX_RECORDS 32 35 35 #define BOOTINFO_TASK_NAME_BUFLEN 32 36 37 typedef uint32_t size_t;38 typedef uint32_t uintptr_t;39 typedef uint32_t sysarg_t;40 typedef int32_t native_t;41 42 typedef int32_t ptrdiff_t;43 36 44 37 typedef struct { -
boot/arch/riscv64/include/types.h
r9ddcb0b r002fd5f 30 30 #define BOOT_riscv64_TYPES_H_ 31 31 32 #include < arch/common.h>32 #include <_bits/all.h> 33 33 34 34 #define MEMMAP_MAX_RECORDS 32 35 35 #define TASKMAP_MAX_RECORDS 32 36 36 #define BOOTINFO_TASK_NAME_BUFLEN 32 37 38 typedef uint64_t size_t;39 typedef uint64_t uintptr_t;40 41 typedef int64_t ptrdiff_t;42 37 43 38 typedef struct { -
boot/arch/sparc64/include/types.h
r9ddcb0b r002fd5f 30 30 #define BOOT_sparc64_TYPES_H_ 31 31 32 #include < arch/common.h>32 #include <_bits/all.h> 33 33 34 34 #define TASKMAP_MAX_RECORDS 32 35 35 #define BOOTINFO_TASK_NAME_BUFLEN 32 36 37 typedef uint64_t size_t;38 typedef uint64_t uintptr_t;39 typedef uint64_t sysarg_t;40 typedef int64_t native_t;41 42 typedef int64_t ptrdiff_t;43 36 44 37 typedef struct { -
boot/generic/include/stddef.h
r9ddcb0b r002fd5f 33 33 #define BOOT_STDDEF_H_ 34 34 35 #include <arch/common.h>36 35 #include <arch/types.h> 37 36 -
boot/generic/include/stdint.h
r9ddcb0b r002fd5f 33 33 #define BOOT_STDINT_H_ 34 34 35 #include <arch/common.h>36 35 #include <arch/types.h> 37 38 #define INT8_MIN INT8_C(0x80)39 #define INT8_MAX INT8_C(0x7F)40 41 #define UINT8_MIN UINT8_C(0)42 #define UINT8_MAX UINT8_C(0xFF)43 44 #define INT16_MIN INT16_C(0x8000)45 #define INT16_MAX INT16_C(0x7FFF)46 47 #define UINT16_MIN UINT16_C(0)48 #define UINT16_MAX UINT16_C(0xFFFF)49 50 #define INT32_MIN INT32_C(0x80000000)51 #define INT32_MAX INT32_C(0x7FFFFFFF)52 53 #define UINT32_MIN UINT32_C(0)54 #define UINT32_MAX UINT32_C(0xFFFFFFFF)55 56 #define INT64_MIN INT64_C(0x8000000000000000)57 #define INT64_MAX INT64_C(0x7FFFFFFFFFFFFFFF)58 59 #define UINT64_MIN UINT64_C(0)60 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF)61 36 62 37 #endif -
boot/generic/src/str.c
r9ddcb0b r002fd5f 104 104 105 105 /** Check the condition if wchar_t is signed */ 106 #ifdef WCHAR_IS_UNSIGNED106 #ifdef __WCHAR_UNSIGNED__ 107 107 #define WCHAR_SIGNED_CHECK(cond) (true) 108 108 #else
Note:
See TracChangeset
for help on using the changeset viewer.