projects
/
akaros.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add signal support to our basic thread0 scheduler
[akaros.git]
/
scripts
/
spatch
/
scalar.cocci
1
@@
2
typedef uint;
3
@@
4
-uint
5
+unsigned int
6
7
@@
8
typedef uvlong;
9
typedef uint64_t;
10
@@
11
-uvlong
12
+uint64_t
13
14
@@
15
typedef u64int;
16
@@
17
-u64int
18
+uint64_t
19
20
@@
21
typedef vlong;
22
typedef int64_t;
23
@@
24
-vlong
25
+int64_t
26
27
@@
28
typedef ulong;
29
typedef uint32_t;
30
@@
31
-ulong
32
+uint32_t
33
34
@@
35
typedef u32int;
36
@@
37
-u32int
38
+uint32_t
39
40
@@
41
typedef usize;
42
@@
43
-usize
44
+unsigned long
45
46
@@
47
typedef ushort;
48
typedef uint16_t;
49
@@
50
-ushort
51
+uint16_t
52
53
@@
54
typedef u16int;
55
@@
56
-u16int
57
+uint16_t
58
59
@@
60
typedef uchar;
61
typedef uint8_t;
62
@@
63
-uchar
64
+uint8_t
65
66
@@
67
typedef u8int;
68
@@
69
-u8int
70
+uint8_t
71
72
@@
73
typedef uintptr;
74
typedef uintptr_t;
75
@@
76
-uintptr
77
+uintptr_t
78