StackAlloc align v2
Posted to
tcl
by miguel at Tue Mar 18 16:08:42 GMT 2008
view raw
static inline int
OFFSET(
void *ptr)
{
int mask, i;
mask = TCL_ALLOCALIGN-1;
ptr++;
for
(i=1; (((intptr_t)ptr) & mask); i++, ptr++) {}
return
i;
}
Comments
Posted by jenglish at Tue Mar 18 16:44:24 GMT 2008
[text]
[code]
No good. Can't do arithmetic on (void *)s.
No good. Can't do arithmetic on (void *)s.
Recent Posts
tcl by mookie
3 days ago
tcl by oldlaptop
8 days ago
tcl by rhobart
20 days ago
tcl by rhobart
20 days ago
tcl by rhobart
21 days ago
tcl by Bradipo
21 days ago
tcl by rhobart
21 days ago
tcl by sssc
25 days ago
tcl by mookie
41 days ago
tcl by JMN
49 days ago
Submit
New paste
Documentation
From Jabber
Comments
Posted by jenglish at Tue Mar 18 16:44:24 GMT 2008 [text] [code]
No good. Can't do arithmetic on (void *)s.