| 739 | streamHeader.Add(0x00000000); // reserved |
| 740 | } |
| 741 | void ProduceFunction() |
| 742 | { |
| 743 | //---------------- for binary code ---------------- |
| 744 | streamProcessedFunctions.AddRange(streamFunctionHeader); |
| 745 | streamFunctionHeader.Clear(); |
| 746 | |
| 747 | streamProcessedFunctions.AddRange(streamFunctionVariable); |
| 748 | streamFunctionVariable.Clear(); |
| 749 | |
| 750 | streamProcessedFunctions.AddRange(streamFunctionBody); |
| 751 | streamFunctionBody.Clear(); |
| 752 | |
| 753 | //---------------- for text code ---------------- |
| 754 | sbTextFunctionDefinitions |
| 755 | << sbTextFunctionHeader.ToString() |
| 756 | << sbTextFunctionVariable.ToString() |
| 757 | << sbTextFunctionBody.ToString(); |
| 758 | sbTextFunctionHeader.Clear(); |
| 759 | sbTextFunctionVariable.Clear(); |
| 760 | sbTextFunctionBody.Clear(); |
| 761 | } |
| 762 | List<unsigned int> ProduceWordStream(int IDBound) |
| 763 | { |
| 764 | streamHeader[3] = IDBound + 5; |
no test coverage detected