Home
last modified time | relevance | path

Searched refs:outty (Results 1 – 3 of 3) sorted by relevance

/external/compiler-rt/test/BlocksRuntime/
Dsmall-struct.c21 MiniStruct outty; in main() local
25 memset(&outty, 0x2A, sizeof(outty)); in main()
32 outty = copyStruct(inny); in main()
34 if ( &inny == &outty ) { in main()
38 if ( (inny.a != outty.a) || (inny.b != outty.b) ) { in main()
Dlarge-struct.c21 BobTheStruct outty; in main() local
26 memset(&outty, 0x2A, sizeof(outty)); in main()
35 outty = copyStruct(inny); in main()
37 if ( &inny == &outty ) { in main()
42 if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) { in main()
/external/clang/test/SemaCXX/
Dblocks-1.cpp12 BobTheStruct outty; in main() local
23 outty = copyStruct(inny); in main()
25 if ( &inny == &outty ) { in main()
29 if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) { in main()