projects
/
akaros.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Pass the buf to block_append_extra()
[akaros.git]
/
scripts
/
scalar.cocci
1
@@
2
typedef uint;
3
@@
4
-uint
5
+unsigned int
6
7
@@
8
typedef u64;
9
typedef uint64_t;
10
@@
11
-u64
12
+uint64_t
13
14
@@
15
typedef s64;
16
typedef int64_t;
17
@@
18
-s64
19
+int64_t
20
21
@@
22
typedef u32;
23
typedef uint32_t;
24
@@
25
-u32
26
+uint32_t
27
28
@@
29
typedef usize;
30
@@
31
-usize
32
+unsigned long
33
34
@@
35
typedef s32;
36
typedef int32_t;
37
@@
38
- s32
39
+ int32_t
40
41
@@
42
typedef u16;
43
typedef uint16_t;
44
@@
45
-u16
46
+uint16_t
47
48
@@
49
typedef u8;
50
typedef uint8_t;
51
@@
52
-u8
53
+uint8_t
54
55
@@
56
typedef uintptr;
57
typedef uintptr_t;
58
@@
59
-uintptr
60
+uintptr_t
61
62