OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inny
(Results
1 - 3
of
3
) sorted by null
/external/compiler-rt/BlocksRuntime/tests/
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
12
BobTheStruct
inny
;
local
18
inny
.ps[i] = i * i * i;
19
inny
.qs[i] = -i * i * i;
24
outty = copyStruct(
inny
);
26
if ( &
inny
== &outty ) {
30
if ( (
inny
.ps[i] != outty.ps[i]) || (
inny
.qs[i] != outty.qs[i]) ) {
Completed in 154 milliseconds