Changeset a4fb8d60 in mainline
- Timestamp:
- 2017-10-10T18:58:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 04ba110
- Parents:
- 33f86a3
- Location:
- kernel
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/include/arch/types.h
r33f86a3 ra4fb8d60 56 56 } fncptr_t; 57 57 58 #define INTN_C(c) INT32_C(c)59 #define UINTN_C(c) UINT32_C(c)60 61 58 #define PRIdn PRId32 /**< Format for native_t. */ 62 59 #define PRIun PRIu32 /**< Format for sysarg_t. */ -
kernel/arch/amd64/include/arch/types.h
r33f86a3 ra4fb8d60 53 53 } fncptr_t; 54 54 55 #define INTN_C(c) INT64_C(c)56 #define UINTN_C(c) UINT64_C(c)57 58 55 #define PRIdn PRId64 /**< Format for native_t. */ 59 56 #define PRIun PRIu64 /**< Format for sysarg_t. */ -
kernel/arch/arm32/include/arch/types.h
r33f86a3 ra4fb8d60 60 60 } fncptr_t; 61 61 62 #define INTN_C(c) INT32_C(c)63 #define UINTN_C(c) UINT32_C(c)64 65 62 #define PRIdn PRId32 /**< Format for native_t. */ 66 63 #define PRIun PRIu32 /**< Format for sysarg_t. */ -
kernel/arch/ia32/include/arch/types.h
r33f86a3 ra4fb8d60 53 53 } fncptr_t; 54 54 55 #define INTN_C(c) INT32_C(c)56 #define UINTN_C(c) UINT32_C(c)57 58 55 #define PRIdn PRId32 /**< Format for native_t. */ 59 56 #define PRIun PRIu32 /**< Format for sysarg_t. */ -
kernel/arch/ia64/include/arch/types.h
r33f86a3 ra4fb8d60 55 55 } __attribute__((may_alias)) fncptr_t; 56 56 57 #define INTN_C(c) INT64_C(c)58 #define UINTN_C(c) UINT64_C(c)59 60 57 #define PRIdn PRId64 /**< Format for native_t. */ 61 58 #define PRIun PRIu64 /**< Format for sysarg_t. */ -
kernel/arch/mips32/include/arch/types.h
r33f86a3 ra4fb8d60 53 53 } fncptr_t; 54 54 55 #define INTN_C(c) INT32_C(c)56 #define UINTN_C(c) UINT32_C(c)57 58 55 #define PRIdn PRId32 /**< Format for native_t. */ 59 56 #define PRIun PRIu32 /**< Format for sysarg_t. */ -
kernel/arch/ppc32/include/arch/types.h
r33f86a3 ra4fb8d60 53 53 } fncptr_t; 54 54 55 #define INTN_C(c) INT32_C(c)56 #define UINTN_C(c) UINT32_C(c)57 58 55 #define PRIdn PRId32 /**< Format for native_t. */ 59 56 #define PRIun PRIu32 /**< Format for sysarg_t. */ -
kernel/arch/riscv64/include/arch/types.h
r33f86a3 ra4fb8d60 53 53 } fncptr_t; 54 54 55 #define INTN_C(c) INT64_C(c)56 #define UINTN_C(c) UINT64_C(c)57 58 55 #define PRIdn PRId64 /**< Format for native_t. */ 59 56 #define PRIun PRIu64 /**< Format for sysarg_t. */ -
kernel/arch/sparc64/include/arch/types.h
r33f86a3 ra4fb8d60 55 55 typedef uint8_t asi_t; 56 56 57 #define INTN_C(c) INT64_C(c)58 #define UINTN_C(c) UINT64_C(c)59 60 57 #define PRIdn PRId64 /**< Format for native_t. */ 61 58 #define PRIun PRIu64 /**< Format for sysarg_t. */ -
kernel/test/print/print2.c
r33f86a3 ra4fb8d60 62 62 TPRINTF("Real output: [%td] [%tu] [%tx] [%ti] [%to]\n\n", d, neg_d, neg_d, d, neg_d); 63 63 64 sysarg_t nat = UINTN_C(0x12345678);64 sysarg_t nat = 0x12345678; 65 65 66 66 TPRINTF("Testing printf(\"%%#" PRIx64 " %%#" PRIx32 " %%#" PRIx16 " %%#" PRIx8 " %%#" PRIxn " %%#" PRIx64 " %%s\", (uint64_t) UINT64_C(0x1234567887654321), (uint32_t) UINT32_C(0x12345678), (uint16_t) UINT16_C(0x1234), (uint8_t) UINT8_C(0x12), nat, (uint64_t) UINT64_C(0x1234567887654321), \"Lovely string\"):\n");
Note:
See TracChangeset
for help on using the changeset viewer.