newtree           210 scripts/gcc-plugins/randomize_layout_plugin.c static void performance_shuffle(tree *newtree, unsigned long length, ranctx *prng_state)
newtree           217 scripts/gcc-plugins/randomize_layout_plugin.c 	partition_struct(newtree, length, (struct partition_group *)&size_group, &num_groups);
newtree           229 scripts/gcc-plugins/randomize_layout_plugin.c 			if (DECL_BIT_FIELD_TYPE(newtree[i]))
newtree           233 scripts/gcc-plugins/randomize_layout_plugin.c 			if (DECL_BIT_FIELD_TYPE(newtree[randnum]))
newtree           235 scripts/gcc-plugins/randomize_layout_plugin.c 			tmp = newtree[i];
newtree           236 scripts/gcc-plugins/randomize_layout_plugin.c 			newtree[i] = newtree[randnum];
newtree           237 scripts/gcc-plugins/randomize_layout_plugin.c 			newtree[randnum] = tmp;
newtree           242 scripts/gcc-plugins/randomize_layout_plugin.c static void full_shuffle(tree *newtree, unsigned long length, ranctx *prng_state)
newtree           249 scripts/gcc-plugins/randomize_layout_plugin.c 		tmp = newtree[i];
newtree           250 scripts/gcc-plugins/randomize_layout_plugin.c 		newtree[i] = newtree[randnum];
newtree           251 scripts/gcc-plugins/randomize_layout_plugin.c 		newtree[randnum] = tmp;
newtree           256 scripts/gcc-plugins/randomize_layout_plugin.c static void shuffle(const_tree type, tree *newtree, unsigned long length)
newtree           285 scripts/gcc-plugins/randomize_layout_plugin.c 		performance_shuffle(newtree, length, &prng_state);
newtree           287 scripts/gcc-plugins/randomize_layout_plugin.c 		full_shuffle(newtree, length, &prng_state);
newtree           325 scripts/gcc-plugins/randomize_layout_plugin.c 	tree newtree[num_fields];
newtree           360 scripts/gcc-plugins/randomize_layout_plugin.c 		newtree[i] = field;
newtree           368 scripts/gcc-plugins/randomize_layout_plugin.c 	if (is_flexible_array(newtree[num_fields - 1])) {
newtree           373 scripts/gcc-plugins/randomize_layout_plugin.c 	shuffle(type, (tree *)newtree, shuffle_length);
newtree           380 scripts/gcc-plugins/randomize_layout_plugin.c 	TREE_CHAIN(list) = newtree[0];
newtree           392 scripts/gcc-plugins/randomize_layout_plugin.c 		TREE_CHAIN(newtree[i]) = newtree[i+1];
newtree           393 scripts/gcc-plugins/randomize_layout_plugin.c 	TREE_CHAIN(newtree[num_fields - 1]) = NULL_TREE;