/usr/include/seqan/index/pump_extender7.h is in seqan-dev 1.3-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 | // ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2010, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of Knut Reinert or the FU Berlin nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL KNUT REINERT OR THE FU BERLIN BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
// ==========================================================================
// Author: David Weese <david.weese@fu-berlin.de>
// ==========================================================================
#ifndef SEQAN_HEADER_PUMP_EXTENDER7_H
#define SEQAN_HEADER_PUMP_EXTENDER7_H
namespace SEQAN_NAMESPACE_MAIN
{
//namespace SEQAN_NAMESPACE_PIPELINING
//{
//////////////////////////////////////////////////////////////////////////////
template <typename TCompression = void>
struct Extender7;
template <typename TTextInput, typename TNameInput, typename TCompression >
struct Pipe< Bundle2< TTextInput, TNameInput >, Extender7<TCompression> >
{
typedef typename Size<Pipe>::Type SizeType;
typedef typename Value<TTextInput>::Type TextInType;
typedef typename Value<TNameInput>::Type NameInType;
typedef Tuple<TextInType, 4, TCompression> X4Tuple;
typedef Tuple<TextInType, 5, TCompression> X5Tuple;
typedef Tuple<TextInType, 6, TCompression> X6Tuple;
typedef Tuple<typename NameInType::T2, 3> NTuple;
typedef Triple<SizeType, NTuple, X6Tuple, Compressed> OutType0;
typedef Triple<SizeType, NTuple, X6Tuple, Compressed> OutType3;
typedef Triple<SizeType, NTuple, X4Tuple, Compressed> OutType5;
typedef Triple<SizeType, NTuple, X5Tuple, Compressed> OutType6;
typedef Triple<SizeType, NTuple, X6Tuple, Compressed> OutType124;
// pipeline interfaces to ease specialization
typedef Pipe< void, AbstractSource< OutType0, SizeType > > Out0;
typedef Pipe< void, AbstractSource< OutType3, SizeType > > Out3;
typedef Pipe< void, AbstractSource< OutType5, SizeType > > Out5;
typedef Pipe< void, AbstractSource< OutType6, SizeType > > Out6;
typedef Pipe< void, AbstractSource< OutType124, SizeType > > Out124;
};
//////////////////////////////////////////////////////////////////////////////
// little copy helper
// which is needed for bitpacked structs (no =sign possible)
template <typename Dest, typename Ofs, typename Src>
static finline Src const cp___(Dest &dst, Ofs const ofs, Src const src) {
return dst.i3.assignValueAt(ofs, src);
}
template < typename TTextInput, typename TNameInput,
typename TOut0, typename TOut3, typename TOut5, typename TOut6, typename TOut124 >
static bool _skew7Extend(TTextInput &textIn, TNameInput &nameIn,
TOut0 &out0, TOut3 &out3, TOut5 &out5, TOut6 &out6, TOut124 &out124)
{
resize(out0, length(textIn) / 7);
resize(out3, (length(textIn) + 4) / 7);
resize(out5, (length(textIn) + 2) / 7);
resize(out6, (length(textIn) + 1) / 7);
resize(out124, length(nameIn));
if (!(
beginRead(textIn) &&
beginRead(nameIn) &&
beginWrite(out0) &&
beginWrite(out3) &&
beginWrite(out5) &&
beginWrite(out6) &&
beginWrite(out124))) return false;
// not necessary, but this hides an 'uninitialized' warning...
typename Value<TOut0>::Type o0;
typename Value<TOut124>::Type o1;
o1.i1 = typename Value<typename Value<TOut124>::Type, 1>::Type();
o1.i2 = typename Value<typename Value<TOut124>::Type, 2>::Type();
o1.i3 = typename Value<typename Value<TOut124>::Type, 3>::Type();
typename Value<TOut124>::Type o2 = o1;
typename Value<TOut3>::Type o3;
typename Value<TOut124>::Type o4 = o1;
typename Value<TOut5>::Type o5;
typename Value<TOut6>::Type o6;
o0.i1 = typename Value<typename Value<TOut0>::Type, 1>::Type();
o0.i2 = typename Value<typename Value<TOut0>::Type, 2>::Type();
o0.i3 = typename Value<typename Value<TOut0>::Type, 3>::Type();
o3.i1 = typename Value<typename Value<TOut3>::Type, 1>::Type();
o3.i2 = typename Value<typename Value<TOut3>::Type, 2>::Type();
o3.i3 = typename Value<typename Value<TOut3>::Type, 3>::Type();
o5.i1 = typename Value<typename Value<TOut5>::Type, 1>::Type();
o5.i2 = typename Value<typename Value<TOut5>::Type, 2>::Type();
o5.i3 = typename Value<typename Value<TOut5>::Type, 3>::Type();
o6.i1 = typename Value<typename Value<TOut6>::Type, 1>::Type();
o6.i2 = typename Value<typename Value<TOut6>::Type, 2>::Type();
o6.i3 = typename Value<typename Value<TOut6>::Type, 3>::Type();
typename Size<TTextInput>::Type p = length(textIn);
unsigned r = (unsigned)(p % 7);
// BEGIN I: PREFILL
switch (r) {
case 6:
/* 6 */ cp___(o6,0, *textIn); ++textIn; o6.i1 = p--;
case 5:
/* 5 */ cp___(o5,0,cp___(o6,1, *textIn)); ++textIn; o5.i1 = p--;
case 4:
/* 4 */ o4.i2[0] = o5.i2[0] = o6.i2[0] = (*nameIn).i2; ++nameIn; o4.i1 = p--;
cp___(o4,0,cp___(o5,1,cp___(o6,2, *textIn))); ++textIn;
case 3:
/* 3 */ cp___(o3,0,cp___(o4,1,cp___(o5,2,cp___(o6,3, *textIn)))); ++textIn; o3.i1 = p--;
case 2:
/* 2 */ o2.i2[0] = o3.i2[0] = o4.i2[1] = o5.i2[1] = o6.i2[1] = (*nameIn).i2; ++nameIn; o2.i1 = p--;
cp___(o2,0,cp___(o3,1,cp___(o4,2,cp___(o5,3,cp___(o6,4, *textIn))))); ++textIn;
case 1:
/* 1 */ o1.i2[0] = o2.i2[1] = o3.i2[1] = o4.i2[2] = o5.i2[2] = o6.i2[2] = (*nameIn).i2; ++nameIn; o1.i1 = p--;
cp___(o1,0,cp___(o2,1,cp___(o3,2, *textIn))); ++textIn;
if (r >= 6) push(out6, o6);
if (r >= 5) push(out5, o5);
if (r >= 4) push(out124, o4);
case 0:;
}
// BEGIN II: PREFILL And PUSH FULLY FILLED TRIPLES
if (!eof(nameIn)) {
/* 0 */ cp___(o0,0,cp___(o1,1,cp___(o2,2,cp___(o3,3, *textIn)))); ++textIn; o0.i1 = p--;
/* 6 */ cp___(o0,1,cp___(o1,2,cp___(o2,3,cp___(o3,4, cp___(o6,0, *textIn))))); ++textIn; o6.i1 = p--;
/* 5 */ cp___(o0,2,cp___(o1,3,cp___(o2,4,cp___(o3,5, cp___(o5,0,cp___(o6,1, *textIn)))))); ++textIn; o5.i1 = p--;
/* 4 */ o0.i2[0] = o1.i2[1] = o2.i2[2] = o3.i2[2] = o4.i2[0] = o5.i2[0] = o6.i2[0] = (*nameIn).i2; ++nameIn; o4.i1 = p--;
cp___(o0,3,cp___(o1,4, cp___(o4,0,cp___(o5,1,cp___(o6,2, *textIn))))); ++textIn;
if (r >= 3) push(out3, o3);
if (r >= 2) push(out124, o2);
/* 3 */ cp___(o0,4,cp___(o1,5, cp___(o3,0,cp___(o4,1,cp___(o5,2,cp___(o6,3, *textIn)))))); ++textIn; o3.i1 = p--;
/* 2 */ o0.i2[1] = o1.i2[2] = o2.i2[0] = o3.i2[0] = o4.i2[1] = o5.i2[1] = o6.i2[1] = (*nameIn).i2; ++nameIn; o2.i1 = p--;
cp___(o0,5, cp___(o2,0,cp___(o3,1,cp___(o4,2,cp___(o5,3,cp___(o6,4, *textIn)))))); ++textIn;
if (r >= 1) push(out124, o1);
/* 1 */ o0.i2[2] = o1.i2[0] = o2.i2[1] = o3.i2[1] = o4.i2[2] = o5.i2[2] = o6.i2[2] = (*nameIn).i2; ++nameIn; o1.i1 = p--;
cp___(o1,0,cp___(o2,1,cp___(o3,2, *textIn))); ++textIn;
push(out0, o0);
push(out6, o6);
push(out5, o5);
push(out124, o4);
r = 7;
}
// MAIN Loop: PUSH FULLY FILLED TRIPLES
while (!eof(nameIn)) {
/* 0 */ cp___(o0,0,cp___(o1,1,cp___(o2,2,cp___(o3,3, *textIn)))); ++textIn; o0.i1 -= 7;
/* 6 */ cp___(o0,1,cp___(o1,2,cp___(o2,3,cp___(o3,4, cp___(o6,0, *textIn))))); ++textIn; o6.i1 -= 7;
/* 5 */ cp___(o0,2,cp___(o1,3,cp___(o2,4,cp___(o3,5, cp___(o5,0,cp___(o6,1, *textIn)))))); ++textIn; o5.i1 -= 7;
/* 4 */ o0.i2[0] = o1.i2[1] = o2.i2[2] = o3.i2[2] = o4.i2[0] = o5.i2[0] = o6.i2[0] = (*nameIn).i2; ++nameIn; o4.i1 -= 7;
cp___(o0,3,cp___(o1,4, cp___(o4,0,cp___(o5,1,cp___(o6,2, *textIn))))); ++textIn;
push(out3, o3);
push(out124, o2);
/* 3 */ cp___(o0,4,cp___(o1,5, cp___(o3,0,cp___(o4,1,cp___(o5,2,cp___(o6,3, *textIn)))))); ++textIn; o3.i1 -= 7;
/* 2 */ o0.i2[1] = o1.i2[2] = o2.i2[0] = o3.i2[0] = o4.i2[1] = o5.i2[1] = o6.i2[1] = (*nameIn).i2; ++nameIn; o2.i1 -= 7;
cp___(o0,5, cp___(o2,0,cp___(o3,1,cp___(o4,2,cp___(o5,3,cp___(o6,4, *textIn)))))); ++textIn;
push(out124, o1);
/* 1 */ o0.i2[2] = o1.i2[0] = o2.i2[1] = o3.i2[1] = o4.i2[2] = o5.i2[2] = o6.i2[2] = (*nameIn).i2; ++nameIn; o1.i1 -= 7;
cp___(o1,0,cp___(o2,1,cp___(o3,2, *textIn))); ++textIn;
push(out0, o0);
push(out6, o6);
push(out5, o5);
push(out124, o4);
}
// END: FLUSH PARTIALLY FILLED TRIPLES
{
/* 0 */ cp___(o1,1,cp___(o2,2,cp___(o3,3, 0)));
/* 6 */ cp___(o1,2,cp___(o2,3,cp___(o3,4, 0)));
/* 5 */ cp___(o1,3,cp___(o2,4,cp___(o3,5, 0)));
/* 4 */ o1.i2[1] = o2.i2[2] = o3.i2[2] = 0;
cp___(o1,4, 0);
if (r >= 3) push(out3, o3);
if (r >= 2) push(out124, o2);
/* 3 */ cp___(o1,5, 0);
/* 2 */ o1.i2[2] = 0;
if (r >= 1) push(out124, o1);
}
endWrite(out124);
endWrite(out6);
endWrite(out5);
endWrite(out3);
endWrite(out0);
endRead(nameIn);
endRead(textIn);
return false;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TPair, typename TCompression = void>
struct Extender7Multi;
template <typename TTextInput, typename TNameInput, typename TPair, typename TCompression >
struct Pipe< Bundle2< TTextInput, TNameInput >, Extender7Multi<TPair, TCompression> >
{
typedef typename Size<Pipe>::Type SizeType;
typedef typename Value<TTextInput>::Type TextInType;
typedef typename Value<TNameInput>::Type NameInType;
typedef Tuple<TextInType, 4, TCompression> X4Tuple;
typedef Tuple<TextInType, 5, TCompression> X5Tuple;
typedef Tuple<TextInType, 6, TCompression> X6Tuple;
typedef Tuple<typename NameInType::T2, 3> NTuple;
typedef Triple<TPair, NTuple, X6Tuple, Compressed> OutType0;
typedef Triple<TPair, NTuple, X6Tuple, Compressed> OutType3;
typedef Triple<TPair, NTuple, X4Tuple, Compressed> OutType5;
typedef Triple<TPair, NTuple, X5Tuple, Compressed> OutType6;
typedef Triple<TPair, NTuple, X6Tuple, Compressed> OutType124;
// pipeline interfaces to ease specialization
typedef Pipe< void, AbstractSource< OutType0, SizeType > > Out0;
typedef Pipe< void, AbstractSource< OutType3, SizeType > > Out3;
typedef Pipe< void, AbstractSource< OutType5, SizeType > > Out5;
typedef Pipe< void, AbstractSource< OutType6, SizeType > > Out6;
typedef Pipe< void, AbstractSource< OutType124, SizeType > > Out124;
};
//////////////////////////////////////////////////////////////////////////////
template < typename TTextInput, typename TLimitsString, typename TNameInput,
typename TOut0, typename TOut3, typename TOut5, typename TOut6, typename TOut124 >
static bool _skew7ExtendMulti(
TTextInput &textIn, TLimitsString const &limits,
TNameInput &nameIn1, TNameInput &nameIn2, TNameInput &nameIn4,
TOut0 &out0, TOut3 &out3, TOut5 &out5, TOut6 &out6, TOut124 &out124)
{
typedef typename Value<TLimitsString>::Type TSize;
typename Iterator<TLimitsString const>::Type it = begin(limits), itEnd = end(limits);
if (it == itEnd) return true;
{
TSize n0 = 0, n3 = 0, n5 = 0, n6 = 0, n124 = 0;
// count the numbers of septets in residue class 1, 2, and 4
TSize size;
TSize old = *it; ++it;
while (it != itEnd) {
size = *it - old;
old = *it;
n0 += size / 7;
n3 += (size + 4) / 7;
n5 += (size + 2) / 7;
n6 += (size + 1) / 7;
n124 += (size + 6) / 7 + (size + 5) / 7 + (size + 3) / 7;
++it;
}
resize(out0, n0);
resize(out3, n3);
resize(out5, n5);
resize(out6, n6);
resize(out124, n124);
}
if (!(
beginRead(textIn) &&
beginRead(nameIn1) &&
beginRead(nameIn2) &&
beginRead(nameIn4) &&
beginWrite(out0) &&
beginWrite(out3) &&
beginWrite(out5) &&
beginWrite(out6) &&
beginWrite(out124))) return false;
// not necessary, but this hides an 'uninitialized' warning...
typename Value<TOut0>::Type o0;
typename Value<TOut124>::Type o1;
o1.i1 = typename Value<typename Value<TOut124>::Type, 1>::Type();
o1.i2 = typename Value<typename Value<TOut124>::Type, 2>::Type();
o1.i3 = typename Value<typename Value<TOut124>::Type, 3>::Type();
typename Value<TOut124>::Type o2 = o1;
typename Value<TOut3>::Type o3;
typename Value<TOut124>::Type o4 = o1;
typename Value<TOut5>::Type o5;
typename Value<TOut6>::Type o6;
o0.i1 = typename Value<typename Value<TOut0>::Type, 1>::Type();
o0.i2 = typename Value<typename Value<TOut0>::Type, 2>::Type();
o0.i3 = typename Value<typename Value<TOut0>::Type, 3>::Type();
o3.i1 = typename Value<typename Value<TOut3>::Type, 1>::Type();
o3.i2 = typename Value<typename Value<TOut3>::Type, 2>::Type();
o3.i3 = typename Value<typename Value<TOut3>::Type, 3>::Type();
o5.i1 = typename Value<typename Value<TOut5>::Type, 1>::Type();
o5.i2 = typename Value<typename Value<TOut5>::Type, 2>::Type();
o5.i3 = typename Value<typename Value<TOut5>::Type, 3>::Type();
o6.i1 = typename Value<typename Value<TOut6>::Type, 1>::Type();
o6.i2 = typename Value<typename Value<TOut6>::Type, 2>::Type();
o6.i3 = typename Value<typename Value<TOut6>::Type, 3>::Type();
it = begin(limits);
TSize rounds, cur;
TSize old = *it; ++it;
typedef typename Value<TOut0>::Type::T1 TPair;
PairIncrementer_<TPair, TLimitsString> p;
setHost(p, limits);
while (it != itEnd) {
cur = *it; ++it;
unsigned r = (unsigned)((cur - old) % 7);
rounds = (cur - old) / 7;
old = cur;
// BEGIN I: PREFILL
switch (r) {
case 6:
/* 6 */ cp___(o6,0, *textIn); ++textIn; o6.i1 = p; ++p;
case 5:
/* 5 */ cp___(o5,0,cp___(o6,1, *textIn)); ++textIn; o5.i1 = p; ++p;
case 4:
/* 4 */ o4.i2[0] = o5.i2[0] = o6.i2[0] = (*nameIn4).i2; ++nameIn4; o4.i1 = p; ++p;
cp___(o4,0,cp___(o5,1,cp___(o6,2, *textIn))); ++textIn;
case 3:
/* 3 */ cp___(o3,0,cp___(o4,1,cp___(o5,2,cp___(o6,3, *textIn)))); ++textIn; o3.i1 = p; ++p;
case 2:
/* 2 */ o2.i2[0] = o3.i2[0] = o4.i2[1] = o5.i2[1] = o6.i2[1] = (*nameIn2).i2; ++nameIn2; o2.i1 = p; ++p;
cp___(o2,0,cp___(o3,1,cp___(o4,2,cp___(o5,3,cp___(o6,4, *textIn))))); ++textIn;
case 1:
/* 1 */ o1.i2[0] = o2.i2[1] = o3.i2[1] = o4.i2[2] = o5.i2[2] = o6.i2[2] = (*nameIn1).i2; ++nameIn1; o1.i1 = p; ++p;
cp___(o1,0,cp___(o2,1,cp___(o3,2, *textIn))); ++textIn;
if (r >= 6) push(out6, o6);
if (r >= 5) push(out5, o5);
if (r >= 4) push(out124, o4);
case 0:;
}
// BEGIN II: PREFILL And PUSH FULLY FILLED TRIPLES
if (rounds != 0) {
/* 0 */ cp___(o0,0,cp___(o1,1,cp___(o2,2,cp___(o3,3, *textIn)))); ++textIn; o0.i1 = p; ++p;
/* 6 */ cp___(o0,1,cp___(o1,2,cp___(o2,3,cp___(o3,4, cp___(o6,0, *textIn))))); ++textIn; o6.i1 = p; ++p;
/* 5 */ cp___(o0,2,cp___(o1,3,cp___(o2,4,cp___(o3,5, cp___(o5,0,cp___(o6,1, *textIn)))))); ++textIn; o5.i1 = p; ++p;
/* 4 */ o0.i2[0] = o1.i2[1] = o2.i2[2] = o3.i2[2] = o4.i2[0] = o5.i2[0] = o6.i2[0] = (*nameIn4).i2; ++nameIn4; o4.i1 = p; ++p;
cp___(o0,3,cp___(o1,4, cp___(o4,0,cp___(o5,1,cp___(o6,2, *textIn))))); ++textIn;
if (r >= 3) push(out3, o3);
if (r >= 2) push(out124, o2);
/* 3 */ cp___(o0,4,cp___(o1,5, cp___(o3,0,cp___(o4,1,cp___(o5,2,cp___(o6,3, *textIn)))))); ++textIn; o3.i1 = p; ++p;
/* 2 */ o0.i2[1] = o1.i2[2] = o2.i2[0] = o3.i2[0] = o4.i2[1] = o5.i2[1] = o6.i2[1] = (*nameIn2).i2; ++nameIn2; o2.i1 = p; ++p;
cp___(o0,5, cp___(o2,0,cp___(o3,1,cp___(o4,2,cp___(o5,3,cp___(o6,4, *textIn)))))); ++textIn;
if (r >= 1) push(out124, o1);
/* 1 */ o0.i2[2] = o1.i2[0] = o2.i2[1] = o3.i2[1] = o4.i2[2] = o5.i2[2] = o6.i2[2] = (*nameIn1).i2; ++nameIn1; o1.i1 = p; ++p;
cp___(o1,0,cp___(o2,1,cp___(o3,2, *textIn))); ++textIn;
push(out0, o0);
push(out6, o6);
push(out5, o5);
push(out124, o4);
r = 7;
--rounds;
}
// MAIN Loop: PUSH FULLY FILLED TRIPLES
while (rounds != 0) {
/* 0 */ cp___(o0,0,cp___(o1,1,cp___(o2,2,cp___(o3,3, *textIn)))); ++textIn; o0.i1 = p; ++p;
/* 6 */ cp___(o0,1,cp___(o1,2,cp___(o2,3,cp___(o3,4, cp___(o6,0, *textIn))))); ++textIn; o6.i1 = p; ++p;
/* 5 */ cp___(o0,2,cp___(o1,3,cp___(o2,4,cp___(o3,5, cp___(o5,0,cp___(o6,1, *textIn)))))); ++textIn; o5.i1 = p; ++p;
/* 4 */ o0.i2[0] = o1.i2[1] = o2.i2[2] = o3.i2[2] = o4.i2[0] = o5.i2[0] = o6.i2[0] = (*nameIn4).i2; ++nameIn4; o4.i1 = p; ++p;
cp___(o0,3,cp___(o1,4, cp___(o4,0,cp___(o5,1,cp___(o6,2, *textIn))))); ++textIn;
push(out3, o3);
push(out124, o2);
/* 3 */ cp___(o0,4,cp___(o1,5, cp___(o3,0,cp___(o4,1,cp___(o5,2,cp___(o6,3, *textIn)))))); ++textIn; o3.i1 = p; ++p;
/* 2 */ o0.i2[1] = o1.i2[2] = o2.i2[0] = o3.i2[0] = o4.i2[1] = o5.i2[1] = o6.i2[1] = (*nameIn2).i2; ++nameIn2; o2.i1 = p; ++p;
cp___(o0,5, cp___(o2,0,cp___(o3,1,cp___(o4,2,cp___(o5,3,cp___(o6,4, *textIn)))))); ++textIn;
push(out124, o1);
/* 1 */ o0.i2[2] = o1.i2[0] = o2.i2[1] = o3.i2[1] = o4.i2[2] = o5.i2[2] = o6.i2[2] = (*nameIn1).i2; ++nameIn1; o1.i1 = p; ++p;
cp___(o1,0,cp___(o2,1,cp___(o3,2, *textIn))); ++textIn;
push(out0, o0);
push(out6, o6);
push(out5, o5);
push(out124, o4);
--rounds;
}
// END: FLUSH PARTIALLY FILLED TRIPLES
{
/* 0 */ cp___(o1,1,cp___(o2,2,cp___(o3,3, 0)));
/* 6 */ cp___(o1,2,cp___(o2,3,cp___(o3,4, 0)));
/* 5 */ cp___(o1,3,cp___(o2,4,cp___(o3,5, 0)));
/* 4 */ o1.i2[1] = o2.i2[2] = o3.i2[2] = 0;
cp___(o1,4, 0);
if (r >= 3) push(out3, o3);
if (r >= 2) push(out124, o2);
/* 3 */ cp___(o1,5, 0);
/* 2 */ o1.i2[2] = 0;
if (r >= 1) push(out124, o1);
}
}
endWrite(out124);
endWrite(out6);
endWrite(out5);
endWrite(out3);
endWrite(out0);
endRead(nameIn4);
endRead(nameIn2);
endRead(nameIn1);
endRead(textIn);
return false;
}
//}
}
#endif
|