OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testPointerIndirection
(Results
1 - 2
of
2
) sorted by null
/frameworks/compile/libbcc/tests/data/src/
expr-ansi.c
25
void
testPointerIndirection
(){ int a, b; a = &b; b = 17; printf("*%d = %d =?= %d\n", a, * (int*) a, b); }
54
testPointerIndirection
();
expr.c
25
testPointerIndirection
(){ int a, b; a = &b; b = 17; printf("*%d = %d =?= %d\n", a, * (int*) a, b); }
54
testPointerIndirection
();
Completed in 36 milliseconds