OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:piece_def
(Results
1 - 4
of
4
) sorted by null
/prebuilts/go/darwin-x86/test/bench/shootout/
meteor-contest.c
90
char
piece_def
[10][4] = {
variable
233
piece_def
[piece][i] = rotate(
piece_def
[piece][i]);
240
piece_def
[piece][i] = flip(
piece_def
[piece][i]);
246
cell[1] = shift(cell[0],
piece_def
[piece][0]);
247
cell[2] = shift(cell[1],
piece_def
[piece][1]);
248
cell[3] = shift(cell[2],
piece_def
[piece][2]);
249
cell[4] = shift(cell[3],
piece_def
[piece][3]);
254
return (!out_of_bounds(cell[0],
piece_def
[piece][0]) &
[
all
...]
meteor-contest.go
104
var
piece_def
= [10][4]int8{
var
247
piece_def
[piece][i] = rotate(
piece_def
[piece][i])
254
piece_def
[piece][i] = flip(
piece_def
[piece][i])
262
cell[i] = shift(cell[i-1],
piece_def
[piece][i-1])
268
return !out_of_bounds(cell[0],
piece_def
[piece][0]) &&
269
!out_of_bounds(cell[1],
piece_def
[piece][1]) &&
270
!out_of_bounds(cell[2],
piece_def
[piece][2]) &&
271
!out_of_bounds(cell[3],
piece_def
[piece][3]
[
all
...]
/prebuilts/go/linux-x86/test/bench/shootout/
meteor-contest.c
90
char
piece_def
[10][4] = {
variable
233
piece_def
[piece][i] = rotate(
piece_def
[piece][i]);
240
piece_def
[piece][i] = flip(
piece_def
[piece][i]);
246
cell[1] = shift(cell[0],
piece_def
[piece][0]);
247
cell[2] = shift(cell[1],
piece_def
[piece][1]);
248
cell[3] = shift(cell[2],
piece_def
[piece][2]);
249
cell[4] = shift(cell[3],
piece_def
[piece][3]);
254
return (!out_of_bounds(cell[0],
piece_def
[piece][0]) &
[
all
...]
meteor-contest.go
104
var
piece_def
= [10][4]int8{
var
247
piece_def
[piece][i] = rotate(
piece_def
[piece][i])
254
piece_def
[piece][i] = flip(
piece_def
[piece][i])
262
cell[i] = shift(cell[i-1],
piece_def
[piece][i-1])
268
return !out_of_bounds(cell[0],
piece_def
[piece][0]) &&
269
!out_of_bounds(cell[1],
piece_def
[piece][1]) &&
270
!out_of_bounds(cell[2],
piece_def
[piece][2]) &&
271
!out_of_bounds(cell[3],
piece_def
[piece][3]
[
all
...]
Completed in 404 milliseconds