HomeSort by relevance Sort by last modified time
    Searched refs:inny (Results 1 - 3 of 3) sorted by null

  /external/compiler-rt/test/BlocksRuntime/
large-struct.c 20 BobTheStruct inny; local
25 memset(&inny, 0xA5, sizeof(inny));
29 inny.ps[i] = i * i * i;
30 inny.qs[i] = -i * i * i;
35 outty = copyStruct(inny);
37 if ( &inny == &outty ) {
42 if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) {
small-struct.c 20 MiniStruct inny; local
24 memset(&inny, 0xA5, sizeof(inny));
27 inny.a = 12;
28 inny.b = 42;
32 outty = copyStruct(inny);
34 if ( &inny == &outty ) {
38 if ( (inny.a != outty.a) || (inny.b != outty.b) ) {
  /external/clang/test/SemaCXX/
blocks-1.cpp 11 BobTheStruct inny; local
17 inny.ps[i] = i * i * i;
18 inny.qs[i] = -i * i * i;
23 outty = copyStruct(inny);
25 if ( &inny == &outty ) {
29 if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) {

Completed in 110 milliseconds