45 non_uniform_cell->layer_info=0;
46 non_uniform_cell->left_x=0;
47 non_uniform_cell->left_y=0;
48 non_uniform_cell->length=0;
49 non_uniform_cell->width=0;
50 non_uniform_cell->isChannel=0;
60 if (non_uniform_cell == NULL)
64 non_uniform_cell_destroy (non_uniform_cell) ;
66 free (non_uniform_cell) ;
73 dst->layer_info = src->layer_info;
74 dst->left_x = src->left_x;
75 dst->left_y = src->left_y;
76 dst->length = src->length;
77 dst->width = src->width;
78 dst->isChannel = src->isChannel;
84 return non_uniform_cell->layer_info == other->layer_info &&
85 non_uniform_cell->left_x == other->left_x &&
86 non_uniform_cell->left_y == other->left_y &&
87 non_uniform_cell->length == other->length &&
88 non_uniform_cell->width == other->width &&
89 non_uniform_cell->isChannel == other->isChannel;
94 fprintf(stream,
"%sLayer info: %d\n", prefix, non_uniform_cell->layer_info) ;