pike.git/
src/
encode.c
Branch:
Tag:
Non-build tags
All tags
No tags
2016-04-09
2016-04-09 16:47:42 by Martin Nilsson <nilsson@fastmail.com>
30f5b2f89165e6700c65eb5a9707bbe6464895dd (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
8.1
unsigned INT64 -> UINT64
1993:
num=e; \ } else { \ num = 0; \
-
while(e-->=0) num = ((
unsigned INT64
)num<<8) \
+
while(e-->=0) num = ((
UINT64
)num<<8)
\
+ (GETC()+1); \ num += MAX_SMALL - 1; \ } \
2065:
INT32 what, e; \ INT64 num; \ DECODE("decode_number"); \
-
X=(what & TAG_MASK) | ((
unsigned INT64
)num<<4);
\
+
X=(what & TAG_MASK) | ((
UINT64
)num<<4); \
EDB(5, fprintf(stderr, "%*s ==>%ld\n", \ data->depth, "", (long) X)); \ }while(0) \