| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include "dss.h" |
| #include "rng64.h" |
| #include "dss.h" |
|
|
| |
|
|
| #define ADVANCE_STREAM(stream_id, num_calls) \ |
| advanceStream(stream_id, num_calls, 0) |
| #define ADVANCE_STREAM64(stream_id, num_calls) \ |
| advanceStream(stream_id, num_calls, 1) |
| #define MAX_COLOR 92 |
| long name_bits[MAX_COLOR / BITS_PER_LONG]; |
| extern seed_t Seed[]; |
| void fakeVStr(int nAvg, long nSeed, DSS_HUGE nCount); |
| void NthElement (DSS_HUGE N, DSS_HUGE *StartSeed); |
|
|
|
|
| void |
| advanceStream(int nStream, DSS_HUGE nCalls, int bUse64Bit) |
| { |
| if (bUse64Bit) |
| Seed[nStream].value = AdvanceRand64(Seed[nStream].value, nCalls); |
| else |
| NthElement(nCalls, &Seed[nStream].value); |
|
|
| #ifdef RNG_TEST |
| Seed[nStream].nCalls += nCalls; |
| #endif |
|
|
| return; |
| } |
|
|
| |
| |
| |
| |
| |
| |
|
|
| static DSS_HUGE Multiplier = 16807; |
| static DSS_HUGE Modulus = 2147483647; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| void NthElement (DSS_HUGE N, DSS_HUGE *StartSeed) |
| { |
| DSS_HUGE Z; |
| DSS_HUGE Mult; |
| static int ln=-1; |
| int i; |
|
|
| if ((verbose > 0) && ++ln % 1000 == 0) |
| { |
| i = ln % LN_CNT; |
| fprintf(stderr, "%c\b", lnoise[i]); |
| } |
| Mult = Multiplier; |
| Z = (DSS_HUGE) *StartSeed; |
| while (N > 0 ) |
| { |
| if (N % 2 != 0) |
| Z = (Mult * Z) % Modulus; |
| N = N / 2; |
| Mult = (Mult * Mult) % Modulus; |
| } |
| *StartSeed = Z; |
|
|
| return; |
| } |
|
|
|
|
| |
| void |
| fake_a_rnd(int min, int max, int column) |
| { |
| DSS_HUGE len; |
| DSS_HUGE itcount; |
|
|
| RANDOM(len, min, max, column); |
| if (len % 5L == 0) |
| itcount = len/5; |
| else |
| itcount = len/5 + 1L; |
| NthElement(itcount, &Seed[column].usage); |
| #ifdef RNG_TEST |
| Seed[column].nCalls += itcount; |
| #endif |
| return; |
| } |
|
|
|
|
| long |
| sd_part(int child, DSS_HUGE skip_count) |
| { |
| int i; |
| |
| for (i=P_MFG_SD; i<= P_CNTR_SD; i++) |
| ADVANCE_STREAM(i, skip_count); |
| |
| ADVANCE_STREAM(P_CMNT_SD, skip_count * 2); |
| ADVANCE_STREAM(P_NAME_SD, skip_count * 92); |
|
|
| return(0L); |
| } |
|
|
| long |
| sd_line(int child, DSS_HUGE skip_count) |
| { |
| int i,j; |
| |
| for (j=0; j < O_LCNT_MAX; j++) |
| { |
| for (i=L_QTY_SD; i<= L_RFLG_SD; i++) |
| |
| |
| |
| |
| |
| ADVANCE_STREAM(i, skip_count); |
| ADVANCE_STREAM(L_CMNT_SD, skip_count * 2); |
| } |
| |
| |
| if (child == 1) |
| { |
| ADVANCE_STREAM(O_ODATE_SD, skip_count); |
| ADVANCE_STREAM(O_LCNT_SD, skip_count); |
| } |
| |
| return(0L); |
| } |
|
|
| long |
| sd_order(int child, DSS_HUGE skip_count) |
| { |
| ADVANCE_STREAM(O_LCNT_SD, skip_count); |
| |
| |
| |
| |
| |
| ADVANCE_STREAM(O_CKEY_SD, skip_count); |
| ADVANCE_STREAM(O_CMNT_SD, skip_count * 2); |
| ADVANCE_STREAM(O_SUPP_SD, skip_count); |
| ADVANCE_STREAM(O_CLRK_SD, skip_count); |
| ADVANCE_STREAM(O_PRIO_SD, skip_count); |
| ADVANCE_STREAM(O_ODATE_SD, skip_count); |
|
|
| return (0L); |
| } |
|
|
| long |
| sd_psupp(int child, DSS_HUGE skip_count) |
| { |
| int j; |
| |
| for (j=0; j < SUPP_PER_PART; j++) |
| { |
| ADVANCE_STREAM(PS_QTY_SD, skip_count); |
| ADVANCE_STREAM(PS_SCST_SD, skip_count); |
| ADVANCE_STREAM(PS_CMNT_SD, skip_count * 2); |
| } |
|
|
| return(0L); |
| } |
|
|
| long |
| sd_cust(int child, DSS_HUGE skip_count) |
| { |
| |
| ADVANCE_STREAM(C_ADDR_SD, skip_count * 9); |
| ADVANCE_STREAM(C_CMNT_SD, skip_count * 2); |
| ADVANCE_STREAM(C_NTRG_SD, skip_count); |
| ADVANCE_STREAM(C_PHNE_SD, 3L * skip_count); |
| ADVANCE_STREAM(C_ABAL_SD, skip_count); |
| ADVANCE_STREAM(C_MSEG_SD, skip_count); |
| return(0L); |
| } |
|
|
| long |
| sd_supp(int child, DSS_HUGE skip_count) |
| { |
| ADVANCE_STREAM(S_NTRG_SD, skip_count); |
| ADVANCE_STREAM(S_PHNE_SD, 3L * skip_count); |
| ADVANCE_STREAM(S_ABAL_SD, skip_count); |
| ADVANCE_STREAM(S_ADDR_SD, skip_count * 9); |
| ADVANCE_STREAM(S_CMNT_SD, skip_count * 2); |
| ADVANCE_STREAM(BBB_CMNT_SD, skip_count); |
| ADVANCE_STREAM(BBB_JNK_SD, skip_count); |
| ADVANCE_STREAM(BBB_OFFSET_SD, skip_count); |
| ADVANCE_STREAM(BBB_TYPE_SD, skip_count); |
| |
| return(0L); |
| } |
|
|