OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cell_in
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/native_client_sdk/src/examples/demo/life/
life.c
39
uint8_t*
cell_in
;
member in struct:__anon13524
89
free(g_Context.
cell_in
);
93
g_Context.
cell_in
= (uint8_t*) malloc(size);
98
g_Context.
cell_in
[index] = rand() & 1;
116
if (!g_Context.
cell_in
) return;
119
g_Context.
cell_in
[x - 1 + y * width] = 1;
120
g_Context.
cell_in
[x + 1 + y * width] = 1;
121
g_Context.
cell_in
[x + (y - 1) * width] = 1;
122
g_Context.
cell_in
[x + (y + 1) * width] = 1;
203
if (g_Context.
cell_in
== NULL || g_Context.cell_out == NULL
[
all
...]
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/life/
life.c
42
uint8_t*
cell_in
;
member in struct:__anon13533
96
free(g_Context.
cell_in
);
100
g_Context.
cell_in
= (uint8_t*) malloc(size);
105
g_Context.
cell_in
[index] = rand() & 1;
123
if (!g_Context.
cell_in
) return;
126
g_Context.
cell_in
[x - 1 + y * width] = 1;
127
g_Context.
cell_in
[x + 1 + y * width] = 1;
128
g_Context.
cell_in
[x + (y - 1) * width] = 1;
129
g_Context.
cell_in
[x + (y + 1) * width] = 1;
203
if (g_Context.
cell_in
== NULL || g_Context.cell_out == NULL
[
all
...]
Completed in 89 milliseconds