file
stringlengths 18
26
| data
stringlengths 3
1.04M
|
---|---|
the_stack_data/125008.c | /*
File: minHeap.c
Desc: Program showing various operations on a binary min heap
Modified by me, original implementation by Robin Thomas at
https://github.com/robin-thomas/min-heap/blob/master/minHeap.c
*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <assert.h>
#define LCHILD(x) 2 * x + 1
#define RCHILD(x) 2 * x + 2
#define PARENT(x) (x - 1) / 2
typedef struct node {
float data;
int idx;
} node;
typedef struct minHeap {
int size;
int maxSize;
node *elem;
} minHeap;
/*
Function to initialize the min heap with size = 0, maxsize = maxSize
*/
struct minHeap * initMinHeap(int maxSize) {
struct minHeap *hp;
hp = (struct minHeap*) malloc(sizeof(struct minHeap));
hp->size = 0;
hp->maxSize = maxSize;
hp->elem = (node*)malloc(sizeof(node) * maxSize);
return hp;
}
/*
Function to swap data within two nodes of the min heap using pointers
*/
void swap(node *n1, node *n2) {
node temp = *n1;
*n1 = *n2;
*n2 = temp;
}
/*
Heapify function is used to make sure that the heap property is never violated
In case of deletion of a node, or creating a min heap from an array, heap property
may be violated. In such cases, heapify function can be called to make sure that
heap property is never violated
*/
void heapify(minHeap *hp, int i) {
int smallest = (LCHILD(i) < hp->size && hp->elem[LCHILD(i)].data < hp->elem[i].data) ? LCHILD(i) : i;
if (RCHILD(i) < hp->size && hp->elem[RCHILD(i)].data < hp->elem[smallest].data) {
smallest = RCHILD(i);
}
if (smallest != i) {
swap(&(hp->elem[i]), &(hp->elem[smallest]));
heapify(hp, smallest);
}
}
/*
Function to insert a node into the min heap
*/
void insertNode(minHeap *hp, float data, int idx) {
assert(hp->size < hp->maxSize);
node nd;
nd.data = data;
nd.idx = idx;
int i = (hp->size)++;
while (i && nd.data < hp->elem[PARENT(i)].data) {
hp->elem[i] = hp->elem[PARENT(i)];
i = PARENT(i);
}
hp->elem[i] = nd;
}
/*
Function to delete a node from the min heap
It shall remove the root node, and place the last node in its place
and then call heapify function to make sure that the heap property
is never violated
*/
void deleteNode(minHeap *hp) {
if (hp->size) {
// printf("Deleting node %d\n\n", hp->elem[0].data) ;
hp->elem[0] = hp->elem[--(hp->size)];
heapify(hp, 0);
}
else {
printf("\nMin Heap is empty!\n");
free(hp->elem);
}
}
/*
Function to get maximum node from a min heap
The maximum node shall always be one of the leaf nodes. So we shall recursively
move through both left and right child, until we find their maximum nodes, and
compare which is larger. It shall be done recursively until we get the maximum
node
*/
int getMaxNode(minHeap *hp, int i) {
if (LCHILD(i) >= hp->size) {
return hp->elem[i].data;
}
int l = getMaxNode(hp, LCHILD(i));
int r = getMaxNode(hp, RCHILD(i));
if (l >= r) {
return l;
}
else {
return r;
}
}
float getMinNode(minHeap *hp) {
return hp->elem[0].data;
}
/*
Function to clear the memory allocated for the min heap
*/
void deleteMinHeap(minHeap *hp) {
free(hp->elem);
}
/*
Function to display all the nodes in the min heap by doing a preorder traversal
*/
void preorderTraversal(minHeap *hp, int i) {
printf("%f ", hp->elem[i].data);
printf("%d ", hp->elem[i].idx);
if (LCHILD(i) < hp->size) {
preorderTraversal(hp, LCHILD(i));
}
if (RCHILD(i) < hp->size) {
preorderTraversal(hp, RCHILD(i));
}
}
|
the_stack_data/293625.c | /*
* just in case someone does not include stdio.h
*/
#include <stdio.h>
#undef putc
int
putc(int c, FILE *f)
{
return fputc(c, f);
}
|
the_stack_data/54824867.c | #include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
typedef struct {
double x, y;
int label;
} Example2D;
typedef struct
{
double x,y;
} vec2;
double dist(vec2 a, vec2 b) {
double dx = a.x - b.x;
double dy = a.y - b.y;
return sqrt(dx * dx + dy * dy);
}
double dSNR(double x) {
return 1.0/pow(10.0,x/10.0);
}
double randUniform(double a, double b) {
return (rand() % RAND_MAX / (double) RAND_MAX) * (b - a) + a;
}
double normalRandom(double mean, double variance)
{
double v1, v2, s, rv1=0.0, rv2=0.0;
do
{
rv1 = rand() % RAND_MAX / (double) RAND_MAX;
rv2 = rand() % RAND_MAX / (double) RAND_MAX;
v1 = 2.0 * rv1 - 1.0;
v2 = 2.0 * rv2 - 1.0;
s = v1 * v1 + v2 * v2;
} while (s > 1.0) ;
double result = sqrt(-2 * log(s) / s) * v1;
return mean + sqrt(variance) * result;
}
void classifyXORData(int numSamples, double noise, Example2D* points)
{
// AWG Noise Variance = Signal / 10^(SNRdB/10)
double dNoise = dSNR(noise);
// Standard deviation of the signal
double stdSignal = 5.0;
for (int i = 0; i < numSamples; i++)
{
double x = randUniform(-stdSignal, stdSignal);
double padding = -0.3;
if (x += x > 0) padding = -padding; // Padding.
double y = randUniform(-stdSignal, stdSignal);
if (y += y > 0) padding = -padding;
double varianceSignal = stdSignal*stdSignal;
double noiseX = normalRandom(0, varianceSignal*dNoise);
double noiseY = normalRandom(0, varianceSignal*dNoise);
int label = -1;
if (x * y > 0) label = 1;
points[i].x = x;
points[i].y = y;
points[i].label = label;
}
}
void classifyTwoGaussData(int numSamples, double noise, Example2D* points)
{
double cx = 2.0, cy = 2.0;
double variance = 0.5;
// AWG Noise Variance = Signal / 10^(SNRdB/10)
double dNoise = dSNR(noise);
int label = 1;
for (int i = 0; i < numSamples/2; i++)
{
double noiseX = normalRandom(0, variance*dNoise);
double noiseY = normalRandom(0, variance*dNoise);
double signalX = normalRandom(cx, variance);
double signalY = normalRandom(cy, variance);
double x = signalX + noiseX;
double y = signalY + noiseY;
points[i].x = x;
points[i].y = y;
points[i].label = label;
}
cx = -cx;
cy = -cy;
label = -label;
for (int i = numSamples/2; i < numSamples; i++)
{
double noiseX = normalRandom(0, variance*dNoise);
double noiseY = normalRandom(0, variance*dNoise);
double signalX = normalRandom(cx, variance);
double signalY = normalRandom(cy, variance);
double x = signalX + noiseX;
double y = signalY + noiseY;
points[i].x = x;
points[i].y = y;
points[i].label = label;
}
}
void classifyCircleData(int numSamples, double noise, Example2D* points)
{
// AWG Noise Variance = Signal / 10^(SNRdB/10)
double dNoise = dSNR(noise);
double radius = 5.0;
// Generate positive points inside the circle.
for (int i = 0; i < numSamples / 2; i++)
{
double r = randUniform(0, radius * 0.5);
// We assume r^2 as the variance of the Signal
double r2 = r*r;
double angle = randUniform(0, 2 * M_PI);
double x = r * sin(angle);
double y = r * cos(angle);
double noiseX = normalRandom(0, 1/radius*dNoise);
double noiseY = normalRandom(0, 1/radius*dNoise);
x += noiseX;
y += noiseY;
int label = 1;
points[i].x = x;
points[i].y = y;
points[i].label = label;
}
// Generate negative points outside the circle.
for (int i = numSamples/2; i < numSamples; i++)
{
double r = randUniform(radius * 0.7, radius);
// We assume r^2 as the variance of the Signal
double rr2 = r*r;
double angle = randUniform(0, 2 * M_PI);
double x = r * sin(angle);
double y = r * cos(angle);
double noiseX = normalRandom(0, 1/radius*dNoise);
double noiseY = normalRandom(0, 1/radius*dNoise);
x += noiseX;
y += noiseY;
int label = -1;
points[i].x = x;
points[i].y = y;
points[i].label = label;
}
}
void classifySpiralData(int numSamples, double noise, Example2D* points)
{
// AWG Noise Variance = Signal / 10^(SNRdB/10)
double dNoise = dSNR(noise);
int n = numSamples / 2;
double deltaT = 0.0;
int label = 1;
for (int i = 0; i < numSamples/2; i++)
{
double r = (double) i / (double) n * 5.0;
double r2 = r*r;
double t = 1.75 * (double) i / (double) n * 2.0 * M_PI + deltaT;
double noiseX = normalRandom(0, r*dNoise);
double noiseY = normalRandom(0, r*dNoise);
double x = r * sin(t) + noiseX;
double y = r * cos(t) + noiseY;
points[i].x = x;
points[i].y = y;
points[i].label = label;
}
deltaT = M_PI;
label = -label;
for (int i = 0; i < numSamples/2; i++)
{
double r = (double) i / (double) n * 5.0;
double r2 = r*r;
double t = 1.75 * (double) i / (double) n * 2.0 * M_PI + deltaT;
double noiseX = normalRandom(0.0, r*dNoise);
double noiseY = normalRandom(0.0, r*dNoise);
double x = r * sin(t) + noiseX;
double y = r * cos(t) + noiseY;
points[i+n].x = x;
points[i+n].y = y;
points[i+n].label = label;
}
}
void helpMsg(char* fname)
{
printf("Usage: %s [numSamples] [SNR_dB] [out_filename] [option]\n", fname);
printf("Options:\n");
printf("1 - Two Gaussian\n");
printf("2 - XOR\n");
printf("3 - Circle\n");
printf("4 - Spiral\n");
}
int main(int argc, char **argv)
{
srand(time(0));
if (argc < 4) {
helpMsg(argv[0]);
exit(-1);
}
int numSamples = atoi(argv[1]);
double noise = atof(argv[2]);
FILE *fp = fopen(argv[3], "w");
int choice = atoi(argv[4]);
Example2D* points = (Example2D*) calloc(numSamples, sizeof(Example2D));
switch (choice)
{
case 1:
classifyTwoGaussData(numSamples, noise, points);
break;
case 2:
classifyXORData(numSamples, noise, points);
break;
case 3:
classifyCircleData(numSamples, noise, points);
break;
case 4:
classifySpiralData(numSamples, noise, points);
break;
default:
helpMsg(argv[0]);
exit(-1);
}
// write the points to file
for (int i = 0; i < numSamples; i++)
{
//printf("%15.10f\t%15.10f\t%15.10f\n", points[i].x, points[i].y, points[i].label);
fprintf(fp, "%15.10f,%15.10f,%d\n", points[i].x, points[i].y, points[i].label);
}
fclose(fp);
free(points);
return 0;
}
|
the_stack_data/89201270.c | #include <stdio.h>
int main(){
int x[10], cont=0;
while(cont<10){
scanf("%d", &x[cont]);
cont++;
}
cont=0;
while(cont<10){
if(x[cont]<=0){
x[cont]=1;
}
cont++;
}
cont=0;
while(cont<10){
printf("X[%d] = %d\n", cont, x[cont]);
cont++;
}
return 0;
}
|
the_stack_data/34512306.c | #include <stdio.h>
int main() {
int a, b, prod;
scanf("%d%d", &a, &b);
prod = (a*b);
printf("PROD = %d\n", prod);
return 0;
} |
the_stack_data/846852.c | #include <stdio.h>
int main()
{
int a,b,c,d,x,y;
scanf("%d%d%d%d", &a, &x, &b, &y);
if(a==y && b==y && y==x)
{
c=x-y;
d=24+a-b;
printf("O JOGO DUROU %d HORA(S) E %d MINUTO(S)\n", d, c);
}
else if(a==b && y>x)
{
c=y-x;
d=a-b;
printf("O JOGO DUROU %d HORA(S) E %d MINUTO(S)\n", d, c);
}
else if(a==b && x>y)
{
c=60-x+y;
d=24-a+b-1;
printf("O JOGO DUROU %d HORA(S) E %d MINUTO(S)\n", d, c);
}
else if(x==y && a<b)
{
c=0;
d=b-a;
printf("O JOGO DUROU %d HORA(S) E %d MINUTO(S)\n", d, c);
}
else if(x==y && a>b)
{
c=0;
d=24-a+b;
printf("O JOGO DUROU %d HORA(S) E %d MINUTO(S)\n", d, c);
}
else if(b>a && y>x)
{
c=y-x;
d=b-a;
printf("O JOGO DUROU %d HORA(S) E %d MINUTO(S)\n", d, c);
}
else if(a<b && x>y)
{
c=60-x+y;
d=b-a-1;
printf("O JOGO DUROU %d HORA(S) E %d MINUTO(S)\n", d, c);
}
else if(a>b && x<y)
{
c=y-x;
d=24-a-1+b;
printf("O JOGO DUROU %d HORA(S) E %d MINUTO(S)\n", d, c);
}
else if(a>b && x>y)
{
c=60+y-x;
d=24+b-a-1;
printf("O JOGO DUROU %d HORA(S) E %d MINUTO(S)\n", d, c);
}
return 0;
} |
the_stack_data/12638987.c | #include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
struct point {
double x, y;
};
double drand() {
return ((double) rand() / (RAND_MAX));
}
struct point random_element(struct point *array, size_t n) {
return array[rand() % (int)n];
}
void chaos_game(struct point *in, size_t in_n, struct point *out,
size_t out_n) {
struct point cur_point = {drand(), drand()};
for (size_t i = 0; i < out_n; ++i) {
out[i] = cur_point;
struct point tmp = random_element(in, in_n);
cur_point.x = 0.5 * (cur_point.x + tmp.x);
cur_point.y = 0.5 * (cur_point.y + tmp.y);
}
}
int main() {
const int point_count = 10000;
struct point shape_points [3] = {{0.0,0.0}, {0.5,sqrt(0.75)}, {1.0,0.0}};
struct point out_points[point_count];
srand(time(NULL));
chaos_game(shape_points, 3, out_points, point_count);
FILE *fp = fopen("sierpinksi.dat", "w+");
for (int i = 0; i < point_count; ++i) {
fprintf(fp, "%f\t%f\n", out_points[i].x, out_points[i].y);
}
fclose(fp);
return 0;
}
|
the_stack_data/192330064.c | /* { dg-require-effective-target int32plus } */
/* { dg-require-effective-target alloca } */
/* Ensure that we deallocate X when branching back before its
declaration. */
void *volatile p;
int
main (void)
{
int n = 0;
lab:;
int x[n % 1000 + 1];
x[0] = 1;
x[n % 1000] = 2;
p = x;
n++;
if (n < 1000000)
goto lab;
return 0;
}
|
the_stack_data/150655.c | #include <stdio.h>
int global_var = 10;
int
main()
{
printf("Set a breakpoint here: %d.\n", global_var);
global_var = 20;
printf("We should have stopped on the previous line: %d.\n", global_var);
global_var = 30;
return 0;
}
|
the_stack_data/678618.c | #include <stdio.h>
#include <stdlib.h>
int sort_c(int *arr, int len);
int init_array(int argc, char **argv, int *arr) {
int i;
for (i = 1; i < argc; i++) {
arr[i - 1] = atoi(argv[i]);
}
return i - 1;
}
void print_array(char *prefix, int *arr, int len) {
printf("%s", prefix);
for (int i = 0; i < len; i++) {
printf(" %d", arr[i]);
}
printf("\n");
}
int main(int argc, char **argv) {
const int MAX_ARGS = 33;
int arr[MAX_ARGS];
if (argc < 2 || argc > MAX_ARGS) {
printf("usage: sort up to 32 integers\n");
exit(-1);
}
int len = init_array(argc, argv, arr);
sort_c(arr, len);
print_array("C:", arr, len);
/* TODO
init_array(argc, argv, arr);
sort_s(arr, len);
print_array("Asm:", arr, len);
*/
return 0;
}
|
the_stack_data/636894.c | #include <stdio.h>
int sum( int num );
int sum( int num ){
int result=0;
do{
result+=num;
num--;
}while(num>0);
return result;
}
int main(){
int num;
printf("input: ");
scanf("%d",&num);
printf("%d\n",sum(num));
return 0;
}
|
the_stack_data/310407.c | // Problem Link: https://www.hackerrank.com/contests/projecteuler/challenges/euler001/problem
#include <stdio.h>
int main(){
int t;
scanf("%d",&t);
for(int a0 = 0; a0 < t; a0++){
long n;
scanf("%ld",&n);
long k, sum=0;
k = (n-1)/3;
sum = sum + 3*k*(k+1)/2;
k = (n-1)/5;
sum = sum + 5*k*(k+1)/2;
k = (n-1)/15;
sum = sum - 15*k*(k+1)/2;
printf("%ld\n", sum);
}
return 0;
}
|
the_stack_data/76701550.c | #include <stdio.h>
#include <string.h>
int main() {
int i, n, max= 0;
char a[10], b[10];
char N=a[0];
scanf("%s%s",a, b);
n = strlen(a);
for(i=1;i<n;i++){
if(a[i]>N) {
N=a[i];
max=i;
}
}
//printf("%d",i);
for(i=0;i<n;i++){
printf("%c", a[i]);
if(i==max)
printf("%s",b);
}
return 0;
}
|
the_stack_data/54826534.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
unsigned char a[27] = {85, 178, 135, 153, 154, 103, 106, 112, 113, 157, 143, 125,
99, 97, 158, 173, 73, 102, 152, 142, 165, 131, 122, 94, 86, 102, 151};
char b[27] = {47, 29, 14, 25, 67, 104, 15, 103, 115, 84, 41, 86,
39, 10, 20, 52, 63, 102, 99, 82, 9, 81, 98, 75, 72, 60, 25};
int check(const char* pass)
{
char buffer[27];
if (strlen(pass) != sizeof(buffer))
return 0;
memcpy(buffer, pass, sizeof(buffer));
for (int i = 0; i < sizeof(buffer); i++)
buffer[i] ^= a[i];
for (int i = 0; i < sizeof(buffer); i++)
buffer[i] -= b[i];
for (int i = 0; i < sizeof(buffer); i++)
buffer[i] += b[sizeof(buffer) - (i + 1)];
int sum = 0;
for (int i = 0; i < sizeof(buffer); i++)
sum += (int)(unsigned char)buffer[i];
if (sum == 0)
return 1;
return 0;
}
int main(int argc, char* argv[])
{
if (argc < 2)
{
printf("Password required\n");
return 1;
}
if (check(argv[1]))
{
printf("Password accepted!\n");
return 0;
}
else
{
printf("Wrong.\n");
return 1;
}
}
|
the_stack_data/845689.c | // ==============================================================
// File generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC
// Version: 2018.2
// Copyright (C) 1986-2018 Xilinx, Inc. All Rights Reserved.
//
// ==============================================================
#ifndef __linux__
#include "xstatus.h"
#include "xparameters.h"
#include "xgcd.h"
extern XGcd_Config XGcd_ConfigTable[];
XGcd_Config *XGcd_LookupConfig(u16 DeviceId) {
XGcd_Config *ConfigPtr = NULL;
int Index;
for (Index = 0; Index < XPAR_XGCD_NUM_INSTANCES; Index++) {
if (XGcd_ConfigTable[Index].DeviceId == DeviceId) {
ConfigPtr = &XGcd_ConfigTable[Index];
break;
}
}
return ConfigPtr;
}
int XGcd_Initialize(XGcd *InstancePtr, u16 DeviceId) {
XGcd_Config *ConfigPtr;
Xil_AssertNonvoid(InstancePtr != NULL);
ConfigPtr = XGcd_LookupConfig(DeviceId);
if (ConfigPtr == NULL) {
InstancePtr->IsReady = 0;
return (XST_DEVICE_NOT_FOUND);
}
return XGcd_CfgInitialize(InstancePtr, ConfigPtr);
}
#endif
|
the_stack_data/215768513.c | #include <stdio.h>
int remaining(int n, int k) {
int r, i = 0;
for (i = 1; i < n; i++)
r = (r + k) % i;
return r;
}
int main(){
int n, x, y, j, num, pulo;
while(1){
scanf("%d",&n);
if(n == 0) break;
y = 1;
for(;;){
if(remaining(n,y) != 11) y++;
else break;
}
printf("%d\n",y);
}
return 0;
}
|
the_stack_data/18886723.c | #include <stdio.h>
int main(void)
{
char str1[] = "gawsie";
char str2[] = "bletonis";
int i = 0;
char *ps;
for (ps = str1; *ps != '\0'; ps++)
{
if ( *ps == 'a' || *ps == 'e')
putchar(*ps);
else
(*ps)--;
putchar(*ps);
}
putchar('\n');
while (str2[i] != '\0')
{
printf("%c", i % 3 ? str2[i] : '*');
++i;
}
return 0;
} |
the_stack_data/190768907.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#define BUFSIZE 16
void vuln() {
char buf[16];
printf("Can you ROP your way out of this?\n");
return gets(buf);
}
int main(int argc, char **argv){
setvbuf(stdout, NULL, _IONBF, 0);
// Set the gid to the effective gid
// this prevents /bin/sh from dropping the privileges
gid_t gid = getegid();
setresgid(gid, gid, gid);
vuln();
}
|
the_stack_data/81320.c | #include <stdio.h>
int main () {
int X, Y;
do{
scanf("%d %d", &X, &Y);
if(X != Y){
if(X > Y){
printf("Decrescente\n");
}
else{
printf("Crescente\n");
}
}
}while(X != Y);
} |
the_stack_data/1117006.c | #ifndef __clang__
unsigned char __builtin_subcb(unsigned char, unsigned char, unsigned char, unsigned char *);
#endif
int main(int argc, const char **argv) {
unsigned char carryout, res;
res = __builtin_subcb((unsigned char)0x0, (unsigned char)0x0, 0, &carryout);
if (res != 0x0 || carryout != 0) {
return -1;
}
res = __builtin_subcb((unsigned char)0xFF, (unsigned char)0x0, 0, &carryout);
if (res != 0xFF || carryout != 0) {
return -1;
}
res = __builtin_subcb((unsigned char)0x0, (unsigned char)0xFF, 0, &carryout);
if (res != 0x01 || carryout != 1) {
return -1;
}
res = __builtin_subcb((unsigned char)0xFF, (unsigned char)0x1, 0, &carryout);
if (res != 0xFE || carryout != 0) {
return -1;
}
res = __builtin_subcb((unsigned char)0x1, (unsigned char)0xFF, 0, &carryout);
if (res != 0x2 || carryout != 1) {
return -1;
}
res = __builtin_subcb((unsigned char)0xFF, (unsigned char)0xFF, 0, &carryout);
if (res != 0x0 || carryout != 0) {
return -1;
}
res = __builtin_subcb((unsigned char)0x8F, (unsigned char)0x0F, 0, &carryout);
if (res != 0x80 || carryout != 0) {
return res;
}
res = __builtin_subcb((unsigned char)0x0, (unsigned char)0xFE, 1, &carryout);
if (res != 0x1 || carryout != 1) {
return -1;
}
res = __builtin_subcb((unsigned char)0x0, (unsigned char)0xFF, 1, &carryout);
if (res != 0x0 || carryout != 1) {
return -1;
}
res = __builtin_subcb((unsigned char)0xFE, (unsigned char)0x0, 1, &carryout);
if (res != 0xFD || carryout != 0) {
return -1;
}
res = __builtin_subcb((unsigned char)0xFE, (unsigned char)0xFE, 1, &carryout);
if (res != 0xFF || carryout != 1) {
return res;
}
res = __builtin_subcb((unsigned char)0xFE, (unsigned char)0xFF, 0, &carryout);
if (res != 0xFF || carryout != 1) {
return res;
}
res = __builtin_subcb((unsigned char)0xFE, (unsigned char)0xFF, 1, &carryout);
if (res != 0xFE || carryout != 1) {
return res;
}
res = __builtin_subcb((unsigned char)0xFF, (unsigned char)0x0, 1, &carryout);
if (res != 0xFE || carryout != 0) {
return -1;
}
res = __builtin_subcb((unsigned char)0xFF, (unsigned char)0xFF, 1, &carryout);
if (res != 0xFF || carryout != 1) {
return -1;
}
res = __builtin_subcb((unsigned char)0x0F, (unsigned char)0x1, 0, &carryout);
if (res != 0x0E || carryout != 0) {
return -1;
}
res = __builtin_subcb((unsigned char)0x0F, (unsigned char)0x1, 1, &carryout);
if (res != 0x0D || carryout != 0) {
return -1;
}
return 0;
}
|
the_stack_data/101995.c | /*********************************************************************
* Filename: C_Prime.Number.c
* Author: Javier Montenegro (javiermontenegro.github.io)
* Copyright: @2019
* Details: this gist is a example of prime assert algorithm in ANSI C
*********************************************************************/
#include <stdio.h>
#include <time.h>
int fn(int x);
int fn(int a)
{
int c;
for (c = 2 ; c <= a - 1 ; c++)
{
if ( a%c == 0 )
return 0;
}//End for
if ( c == a )
return 1;
}//End fn
int main()
{
int number;
printf("Enter number:\n");
scanf("%d", &number);
printf("------------\n");
clock_t start = clock();
if (fn(number))
printf("%d Is a prime number.\n", number);
else
printf("%d Is NOT a prime number.\n", number);
clock_t end = clock();
double time_spent = (double)(end - start) / CLOCKS_PER_SEC;
printf("\nTime spent: %f\n", time_spent);
return 0;
}//End main
|
the_stack_data/211080476.c | // RUN: %clang -target mipsel-unknown-linux -O3 -S -o - -emit-llvm %s | FileCheck %s -check-prefix=O32
// RUN: %clang -target mips64el-unknown-linux -O3 -S -mabi=n64 -o - -emit-llvm %s | FileCheck %s -check-prefix=N64
// vectors larger than 16-bytes are returned via the hidden pointer argument.
// N64/N32 returns vectors whose size is equal to or smaller than 16-bytes in
// integer registers.
typedef float v4sf __attribute__ ((__vector_size__ (16)));
typedef double v4df __attribute__ ((__vector_size__ (32)));
typedef int v4i32 __attribute__ ((__vector_size__ (16)));
// O32: define void @test_v4sf(<4 x float>* noalias nocapture sret
// N64: define { i64, i64 } @test_v4sf
v4sf test_v4sf(float a) {
return (v4sf){0.0f, a, 0.0f, 0.0f};
}
// O32: define void @test_v4df(<4 x double>* noalias nocapture sret
// N64: define void @test_v4df(<4 x double>* noalias nocapture sret
v4df test_v4df(double a) {
return (v4df){0.0, a, 0.0, 0.0};
}
// O32 returns integer vectors whose size is equal to or smaller than 16-bytes
// in integer registers.
//
// O32: define { i32, i32, i32, i32 } @test_v4i32
// N64: define { i64, i64 } @test_v4i32
v4i32 test_v4i32(int a) {
return (v4i32){0, a, 0, 0};
}
|
the_stack_data/1039735.c | #include <pthread.h>
int count;
void* thread(void *arg) {
count = count + 1;
return NULL;
}
void main() {
pthread_t t;
count = 0;
pthread_create(&t, NULL, thread, NULL);
pthread_create(&t, NULL, thread, NULL);
assert(count <= 2);
}
|
the_stack_data/122015322.c | /*
* Copyright (c) 2017, 2018, Oracle and/or its affiliates.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. 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.
*
* 3. Neither the name of the copyright holder 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 THE
* COPYRIGHT HOLDER OR CONTRIBUTORS 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.
*/
int main() {
int i;
int res = 0;
goto L1;
for (i = 0; i < 10; i++) {
L2:
res++;
goto L3;
return 42;
L3:
if (i > 100) {
L1:
i = 0;
goto L2;
break;
}
}
return res;
}
|
the_stack_data/115766700.c | #include <stdio.h>
#include <stdlib.h>
struct node {
int data;
struct node *next;
} *head;
void initialize(){
head = NULL;
}
void insert(int num) {
struct node* newNode = (struct node*) malloc(sizeof(struct node));
newNode->data = num;
newNode->next = head;
head = newNode;
printf("Inserted Element : %d\n", num);
}
void printAlternateNodes(struct node *head) {
int counter = 0;
printf("\nPrinting Alernate nodes of Linked List\n");
while(head != NULL) {
if (counter%2 == 0) {
printf(" %d ", head->data);
}
counter++;
head = head->next;
}
}
void printLinkedList(struct node *nodePtr) {
while (nodePtr != NULL) {
printf("%d", nodePtr->data);
nodePtr = nodePtr->next;
if(nodePtr != NULL)
printf("-->");
}
}
int main() {
initialize();
insert(7);
insert(6);
insert(5);
insert(4);
insert(3);
insert(2);
insert(1);
printf("\nLinked List\n");
printLinkedList(head);
printAlternateNodes(head);
return 0;
}
|
the_stack_data/687212.c | #include<stdio.h>
#define MAXN 10000
typedef struct Stack
{
int date[MAXN];
int top;
} Stack;
struct BL
{
int date;
int ischar;
} a[1000];
Stack s1;
#define Stack_Init(X) (X.top = -1)
#define IsEmpty(X) (X.top == -1)
#define push(S, tmp) (S.date[++S.top] = tmp)
#define pop(S) (S.date[S.top--])
#define top(S) (S.date[S.top])
int main()
{
char tmp;
int i=0,j,num=0,t,t1,t2;
Stack_Init(s1);
char str[1000];
gets(str);
char* pt = str;
while (tmp = *pt, pt++)
{
if (tmp==0)
{
if (num)
{
a[i].date=num;
a[i++].ischar=0;
}
break;
}
if (tmp>='0'&&tmp<='9') num=num*10+tmp-48;
else
{
if (num)
{
a[i].date=num;
num=0;
a[i++].ischar=0;
}
if (tmp=='(') push(s1,tmp);
else if (tmp==')')
{
while (top(s1)!='(')
{
t=pop(s1);
a[i].date=t;
a[i++].ischar=1;
}
pop(s1);
}
else if (tmp=='+'||tmp=='-')
{
while (IsEmpty(s1)!=1&&top(s1)!='(')
{
t=pop(s1);
a[i].date=t;
a[i++].ischar=1;
}
push(s1,tmp);
}
else if (tmp=='*'||tmp=='/')
{
while (IsEmpty(s1)!=1&&(top(s1)!='+'&&top(s1)!='-')&&top(s1)!='(')
{
t=pop(s1);
a[i].date=t;
a[i++].ischar=1;
}
push(s1,tmp);
}
}
}
while (IsEmpty(s1)!=1)
{
t=pop(s1);
a[i].date=t;
a[i++].ischar=1;
}
for (j=0; j<i; j++) {
if (a[j].ischar) {
t1 = pop(s1);
t2 = pop(s1);
if (a[j].date == '*') {
t1 = t2 * t1;
push(s1, t1);
}
if (a[j].date == '/') {
t1 = t2 / t1;
push(s1, t1);
}
if (a[j].date == '+') {
t1 = t2 + t1;
push(s1, t1);
}
if (a[j].date == '-') {
t1 = t2 - t1;
push(s1, t1);
}
} else {
push(s1, a[j].date);
}
}
printf("%d",top(s1));
return 0;
} |
the_stack_data/46120.c | #include <unistd.h>
#include <string.h>
#include <sys/syscall.h>
const char greeting [] = "hello world!\n";
int main(){
// write(1,greeting,13);
syscall(SYS_write,1,greeting,13);
} |
the_stack_data/187643407.c | #include <stdio.h>
int stack[100];
char ops[3]={'(','{','['};
char cps[3]={')','}',']'};
// ๊ดํธ๋ค ์ฌ์ด์ ๋ถ์ด์์ง๋ ์๊ณ ์ฌ๋ ๊ดํธ ๋ซ๋ ๊ดํธ ์ฌ์ด ๊ฐ๊ฒฉ ์ผ์ ํ ๊ฒ๋ ์๋์ด์ ascii ์ฝ๋๋ฅผ ์ฐ๋ ๊ฒ์ ์๋ฏธ๊ฐ ์์ ๋ฏ
int main(){
int N, i;
} |
the_stack_data/61666.c | # include <stdio.h>
# include <stdlib.h>
int main()
{
int index = 1;
while (index <= 9){
printf("%d\n", index);
index++;
}
printf("\n");
int spnk = 9;
do {
printf("%d\n", spnk);
spnk++;
}while (spnk <= 9);
/* yang kedua ini menecek angka dulu baru
melakukan pengulangan */
return 0;
}
/*
ini tentang while loop
merupakan sebuah struktur dalam bahasa C
yang megulang kondisi sampai hal yang di inginkan
pengulangan
*/ |
the_stack_data/73574063.c | /* Generated by re2c 1.0.3 */
#line 1 "../gpr.re2c"
// generated parser support file. -*- mode: C -*-
// command line: wisitoken-bnf-generate.exe --generate LR1 Ada_Emacs re2c PROCESS gpr.wy
//
// Copyright (C) 2013 - 2019 Free Software Foundation, Inc.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 3, or (at
// your option) any later version.
//
// This software is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
typedef struct wisi_lexer
{
unsigned char* buffer; // input text, in utf-8 encoding
unsigned char* buffer_last; // last byte in buffer
unsigned char* cursor; // current byte
unsigned char* byte_token_start; // byte position at start of current token
size_t char_pos; // character position of current character
size_t char_token_start; // character position at start of current token
int line; // 1 indexed
int line_token_start; // line at start of current token
unsigned char* marker; // saved cursor
size_t marker_pos; // saved character position
size_t marker_line; // saved line
unsigned char* context; // saved cursor
size_t context_pos; // saved character position
int context_line; // saved line
int verbosity;
} wisi_lexer;
#define YYCTYPE unsigned char
#define NO_ERROR 0
#define ERROR_unrecognized_character 1
wisi_lexer* gpr_new_lexer
(unsigned char* input, size_t length, int verbosity)
{
wisi_lexer* result = malloc (sizeof (wisi_lexer));
result->buffer = input;
result->buffer_last = input + length - 1;
result->cursor = input;
result->byte_token_start = input;
result->char_pos = 1;
result->char_token_start = 1;
result->line = (*result->cursor == 0x0A) ? 2 : 1;
result->line_token_start = result->line;
result->verbosity = verbosity;
return result;
}
void
gpr_free_lexer(wisi_lexer** lexer)
{
free(*lexer);
*lexer = 0;
}
void
gpr_reset_lexer(wisi_lexer* lexer)
{
lexer->cursor = lexer->buffer;
lexer->char_pos = 1;
lexer->line = (*lexer->cursor == 0x0A) ? 2 : 1;
}
static void debug(wisi_lexer* lexer, int state, unsigned char ch)
{
if (lexer->verbosity > 0)
{
if (ch < ' ')
printf ("lexer: %d, 0x%x\n", state, ch);
else
printf ("lexer: %d, '%c' 0x%x\n", state, ch, ch);
}
}
#define YYDEBUG(state, ch) debug(lexer, state, ch)
#define YYCURSOR lexer->cursor
#define YYPEEK() (lexer->cursor <= lexer->buffer_last) ? *lexer->cursor : 4
#define DO_COUNT ((*lexer->cursor & 0xC0) != 0xC0) && (*lexer->cursor != 0x0D)
static void skip(wisi_lexer* lexer)
{
if (lexer->cursor <= lexer->buffer_last)
{
++lexer->cursor;
if (DO_COUNT) ++lexer->char_pos;
if (lexer->cursor <= lexer->buffer_last)
if (*lexer->cursor == 0x0A) ++lexer->line;
}
}
#define YYSKIP() skip(lexer)
#define YYBACKUP() lexer->marker = lexer->cursor; lexer->marker_pos = lexer->char_pos;lexer->marker_line = lexer->line
#define YYRESTORE() lexer->cursor = lexer->marker; lexer->char_pos = lexer->marker_pos;lexer->line = lexer->marker_line
#define YYBACKUPCTX() lexer->context = lexer->cursor; lexer->context_pos = lexer->char_pos;lexer->context_line = lexer->line
#define YYRESTORECTX() lexer->cursor = lexer->context; lexer->char_pos = lexer->context_pos;lexer->line = lexer->context_line
int gpr_next_token
(wisi_lexer* lexer,
int* id,
size_t* byte_position,
size_t* byte_length,
size_t* char_position,
size_t* char_length,
int* line_start)
{
int status = NO_ERROR;
*id = -1;
if (lexer->cursor > lexer->buffer_last)
{
*id = 39;
*byte_position = lexer->buffer_last - lexer->buffer + 1;
*byte_length = 0;
*char_position = lexer->char_token_start;
*char_length = 0;
*line_start = lexer->line;
return status;
}
lexer->byte_token_start = lexer->cursor;
lexer->char_token_start = lexer->char_pos;
if (*lexer->cursor == 0x0A)
lexer->line_token_start = lexer->line-1;
else
lexer->line_token_start = lexer->line;
while (*id == -1 && status == 0)
{
#line 147 "../gpr_re2c.c"
{
YYCTYPE yych;
unsigned int yyaccept = 0;
YYDEBUG(0, *YYCURSOR);
yych = YYPEEK ();
switch (yych) {
case 0x04: goto yy4;
case '\t':
case ' ': goto yy6;
case '\n': goto yy8;
case '\r': goto yy10;
case '"': goto yy11;
case '&': goto yy12;
case '\'': goto yy14;
case '(': goto yy16;
case ')': goto yy18;
case ',': goto yy20;
case '-': goto yy22;
case '.': goto yy23;
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9': goto yy25;
case ':': goto yy28;
case ';': goto yy30;
case '=': goto yy32;
case 'A':
case 'a': goto yy33;
case 'B':
case 'D':
case 'G':
case 'H':
case 'J':
case 'K':
case 'M':
case 'Q':
case 'V':
case 'X':
case 'Y':
case 'Z':
case 'b':
case 'd':
case 'g':
case 'h':
case 'j':
case 'k':
case 'm':
case 'q':
case 'v':
case 'x':
case 'y':
case 'z': goto yy35;
case 'C':
case 'c': goto yy37;
case 'E':
case 'e': goto yy38;
case 'F':
case 'f': goto yy39;
case 'I':
case 'i': goto yy40;
case 'L':
case 'l': goto yy41;
case 'N':
case 'n': goto yy42;
case 'O':
case 'o': goto yy43;
case 'P':
case 'p': goto yy44;
case 'R':
case 'r': goto yy45;
case 'S':
case 's': goto yy46;
case 'T':
case 't': goto yy47;
case 'U':
case 'u': goto yy48;
case 'W':
case 'w': goto yy49;
case '|': goto yy50;
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF: goto yy52;
case 0xE0: goto yy53;
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF: goto yy54;
case 0xF0: goto yy55;
case 0xF1:
case 0xF2:
case 0xF3: goto yy56;
case 0xF4: goto yy57;
default: goto yy2;
}
yy2:
YYDEBUG(2, YYPEEK ());
YYSKIP ();
yy3:
YYDEBUG(3, YYPEEK ());
#line 235 "../gpr.re2c"
{status = ERROR_unrecognized_character; continue;}
#line 293 "../gpr_re2c.c"
yy4:
YYDEBUG(4, YYPEEK ());
YYSKIP ();
YYDEBUG(5, YYPEEK ());
#line 233 "../gpr.re2c"
{*id = 39; continue;}
#line 300 "../gpr_re2c.c"
yy6:
YYDEBUG(6, YYPEEK ());
YYSKIP ();
YYDEBUG(7, YYPEEK ());
#line 188 "../gpr.re2c"
{ lexer->byte_token_start = lexer->cursor;
lexer->char_token_start = lexer->char_pos;
if (*lexer->cursor == 0x0A)
lexer->line_token_start = lexer->line-1;
else
lexer->line_token_start = lexer->line;
continue; }
#line 313 "../gpr_re2c.c"
yy8:
YYDEBUG(8, YYPEEK ());
YYSKIP ();
YYDEBUG(9, YYPEEK ());
#line 195 "../gpr.re2c"
{*id = 1; continue;}
#line 320 "../gpr_re2c.c"
yy10:
YYDEBUG(10, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case '\n': goto yy8;
default: goto yy3;
}
yy11:
YYDEBUG(11, YYPEEK ());
yyaccept = 0;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case ' ':
case '!':
case '"':
case '#':
case '$':
case '%':
case '&':
case '\'':
case '(':
case ')':
case '*':
case '+':
case ',':
case '-':
case '.':
case '/':
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case ':':
case ';':
case '<':
case '=':
case '>':
case '?':
case '@':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '[':
case '\\':
case ']':
case '^':
case '_':
case '`':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case '{':
case '|':
case '}':
case '~':
case 0x7F:
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy59;
default: goto yy3;
}
yy12:
YYDEBUG(12, YYPEEK ());
YYSKIP ();
YYDEBUG(13, YYPEEK ());
#line 221 "../gpr.re2c"
{*id = 27; continue;}
#line 491 "../gpr_re2c.c"
yy14:
YYDEBUG(14, YYPEEK ());
YYSKIP ();
YYDEBUG(15, YYPEEK ());
#line 227 "../gpr.re2c"
{*id = 33; continue;}
#line 498 "../gpr_re2c.c"
yy16:
YYDEBUG(16, YYPEEK ());
YYSKIP ();
YYDEBUG(17, YYPEEK ());
#line 208 "../gpr.re2c"
{*id = 14; continue;}
#line 505 "../gpr_re2c.c"
yy18:
YYDEBUG(18, YYPEEK ());
YYSKIP ();
YYDEBUG(19, YYPEEK ());
#line 215 "../gpr.re2c"
{*id = 21; continue;}
#line 512 "../gpr_re2c.c"
yy20:
YYDEBUG(20, YYPEEK ());
YYSKIP ();
YYDEBUG(21, YYPEEK ());
#line 224 "../gpr.re2c"
{*id = 30; continue;}
#line 519 "../gpr_re2c.c"
yy22:
YYDEBUG(22, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case '-': goto yy69;
default: goto yy3;
}
yy23:
YYDEBUG(23, YYPEEK ());
YYSKIP ();
YYDEBUG(24, YYPEEK ());
#line 225 "../gpr.re2c"
{*id = 31; continue;}
#line 534 "../gpr_re2c.c"
yy25:
YYDEBUG(25, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
YYDEBUG(26, YYPEEK ());
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9': goto yy25;
default: goto yy27;
}
yy27:
YYDEBUG(27, YYPEEK ());
#line 230 "../gpr.re2c"
{*id = 36; continue;}
#line 557 "../gpr_re2c.c"
yy28:
YYDEBUG(28, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case '=': goto yy72;
default: goto yy29;
}
yy29:
YYDEBUG(29, YYPEEK ());
#line 222 "../gpr.re2c"
{*id = 28; continue;}
#line 570 "../gpr_re2c.c"
yy30:
YYDEBUG(30, YYPEEK ());
YYSKIP ();
YYDEBUG(31, YYPEEK ());
#line 228 "../gpr.re2c"
{*id = 34; continue;}
#line 577 "../gpr_re2c.c"
yy32:
YYDEBUG(32, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case '>': goto yy74;
default: goto yy3;
}
yy33:
YYDEBUG(33, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'B':
case 'b': goto yy76;
case 'G':
case 'g': goto yy77;
case 'T':
case 't': goto yy78;
default: goto yy36;
}
yy34:
YYDEBUG(34, YYPEEK ());
#line 231 "../gpr.re2c"
{*id = 37; continue;}
#line 605 "../gpr_re2c.c"
yy35:
YYDEBUG(35, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
yy36:
YYDEBUG(36, YYPEEK ());
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z': goto yy35;
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF: goto yy80;
case 0xE0: goto yy81;
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF: goto yy82;
case 0xF0: goto yy83;
case 0xF1:
case 0xF2:
case 0xF3: goto yy84;
case 0xF4: goto yy85;
default: goto yy34;
}
yy37:
YYDEBUG(37, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy86;
case 'O':
case 'o': goto yy87;
default: goto yy36;
}
yy38:
YYDEBUG(38, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'N':
case 'n': goto yy88;
case 'X':
case 'x': goto yy89;
default: goto yy36;
}
yy39:
YYDEBUG(39, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'O':
case 'o': goto yy90;
default: goto yy36;
}
yy40:
YYDEBUG(40, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'S':
case 's': goto yy91;
default: goto yy36;
}
yy41:
YYDEBUG(41, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'I':
case 'i': goto yy93;
default: goto yy36;
}
yy42:
YYDEBUG(42, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'U':
case 'u': goto yy94;
default: goto yy36;
}
yy43:
YYDEBUG(43, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'T':
case 't': goto yy95;
default: goto yy36;
}
yy44:
YYDEBUG(44, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy96;
case 'R':
case 'r': goto yy97;
default: goto yy36;
}
yy45:
YYDEBUG(45, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy98;
default: goto yy36;
}
yy46:
YYDEBUG(46, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'T':
case 't': goto yy99;
default: goto yy36;
}
yy47:
YYDEBUG(47, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'Y':
case 'y': goto yy100;
default: goto yy36;
}
yy48:
YYDEBUG(48, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'S':
case 's': goto yy101;
default: goto yy36;
}
yy49:
YYDEBUG(49, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'H':
case 'h': goto yy102;
case 'I':
case 'i': goto yy103;
default: goto yy36;
}
yy50:
YYDEBUG(50, YYPEEK ());
YYSKIP ();
YYDEBUG(51, YYPEEK ());
#line 229 "../gpr.re2c"
{*id = 35; continue;}
#line 888 "../gpr_re2c.c"
yy52:
YYDEBUG(52, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy35;
default: goto yy3;
}
yy53:
YYDEBUG(53, YYPEEK ());
yyaccept = 0;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy80;
default: goto yy3;
}
yy54:
YYDEBUG(54, YYPEEK ());
yyaccept = 0;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy80;
default: goto yy3;
}
yy55:
YYDEBUG(55, YYPEEK ());
yyaccept = 0;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy82;
default: goto yy3;
}
yy56:
YYDEBUG(56, YYPEEK ());
yyaccept = 0;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy82;
default: goto yy3;
}
yy57:
YYDEBUG(57, YYPEEK ());
yyaccept = 0;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F: goto yy82;
default: goto yy3;
}
yy58:
YYDEBUG(58, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
yy59:
YYDEBUG(59, YYPEEK ());
switch (yych) {
case ' ':
case '!':
case '#':
case '$':
case '%':
case '&':
case '\'':
case '(':
case ')':
case '*':
case '+':
case ',':
case '-':
case '.':
case '/':
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case ':':
case ';':
case '<':
case '=':
case '>':
case '?':
case '@':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '[':
case '\\':
case ']':
case '^':
case '_':
case '`':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case '{':
case '|':
case '}':
case '~':
case 0x7F: goto yy58;
case '"': goto yy61;
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF: goto yy63;
case 0xE0: goto yy64;
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF: goto yy65;
case 0xF0: goto yy66;
case 0xF1:
case 0xF2:
case 0xF3: goto yy67;
case 0xF4: goto yy68;
default: goto yy60;
}
yy60:
YYDEBUG(60, YYPEEK ());
YYRESTORE ();
switch (yyaccept) {
case 0: goto yy3;
case 1: goto yy34;
case 2: goto yy62;
case 3: goto yy71;
case 4: goto yy79;
case 5: goto yy92;
case 6: goto yy115;
case 7: goto yy118;
case 8: goto yy128;
case 9: goto yy134;
case 10: goto yy139;
case 11: goto yy146;
case 12: goto yy148;
case 13: goto yy150;
case 14: goto yy169;
case 15: goto yy178;
case 16: goto yy181;
case 17: goto yy183;
case 18: goto yy185;
case 19: goto yy187;
case 20: goto yy190;
case 21: goto yy194;
case 22: goto yy196;
case 23: goto yy198;
case 24: goto yy208;
default: goto yy213;
}
yy61:
YYDEBUG(61, YYPEEK ());
yyaccept = 2;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '"': goto yy58;
default: goto yy62;
}
yy62:
YYDEBUG(62, YYPEEK ());
#line 232 "../gpr.re2c"
{*id = 38; continue;}
#line 1430 "../gpr_re2c.c"
yy63:
YYDEBUG(63, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy58;
default: goto yy60;
}
yy64:
YYDEBUG(64, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy63;
default: goto yy60;
}
yy65:
YYDEBUG(65, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy63;
default: goto yy60;
}
yy66:
YYDEBUG(66, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy65;
default: goto yy60;
}
yy67:
YYDEBUG(67, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy65;
default: goto yy60;
}
yy68:
YYDEBUG(68, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F: goto yy65;
default: goto yy60;
}
yy69:
YYDEBUG(69, YYPEEK ());
yyaccept = 3;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
YYDEBUG(70, YYPEEK ());
switch (yych) {
case 0x00:
case 0x01:
case 0x02:
case 0x03:
case 0x04:
case 0x05:
case 0x06:
case 0x07:
case 0x08:
case '\t':
case '\v':
case '\f':
case '\r':
case 0x0E:
case 0x0F:
case 0x10:
case 0x11:
case 0x12:
case 0x13:
case 0x14:
case 0x15:
case 0x16:
case 0x17:
case 0x18:
case 0x19:
case 0x1A:
case 0x1B:
case 0x1C:
case 0x1D:
case 0x1E:
case 0x1F:
case ' ':
case '!':
case '"':
case '#':
case '$':
case '%':
case '&':
case '\'':
case '(':
case ')':
case '*':
case '+':
case ',':
case '-':
case '.':
case '/':
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case ':':
case ';':
case '<':
case '=':
case '>':
case '?':
case '@':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '[':
case '\\':
case ']':
case '^':
case '_':
case '`':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case '{':
case '|':
case '}':
case '~':
case 0x7F: goto yy69;
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF: goto yy104;
case 0xE0: goto yy105;
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF: goto yy106;
case 0xF0: goto yy107;
case 0xF1:
case 0xF2:
case 0xF3: goto yy108;
case 0xF4: goto yy109;
default: goto yy71;
}
yy71:
YYDEBUG(71, YYPEEK ());
#line 196 "../gpr.re2c"
{*id = 2; continue;}
#line 1953 "../gpr_re2c.c"
yy72:
YYDEBUG(72, YYPEEK ());
YYSKIP ();
YYDEBUG(73, YYPEEK ());
#line 223 "../gpr.re2c"
{*id = 29; continue;}
#line 1960 "../gpr_re2c.c"
yy74:
YYDEBUG(74, YYPEEK ());
YYSKIP ();
YYDEBUG(75, YYPEEK ());
#line 226 "../gpr.re2c"
{*id = 32; continue;}
#line 1967 "../gpr_re2c.c"
yy76:
YYDEBUG(76, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'S':
case 's': goto yy110;
default: goto yy36;
}
yy77:
YYDEBUG(77, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'G':
case 'g': goto yy111;
default: goto yy36;
}
yy78:
YYDEBUG(78, YYPEEK ());
yyaccept = 4;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy79;
}
yy79:
YYDEBUG(79, YYPEEK ());
#line 198 "../gpr.re2c"
{*id = 4; continue;}
#line 2117 "../gpr_re2c.c"
yy80:
YYDEBUG(80, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy35;
default: goto yy60;
}
yy81:
YYDEBUG(81, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy80;
default: goto yy60;
}
yy82:
YYDEBUG(82, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy80;
default: goto yy60;
}
yy83:
YYDEBUG(83, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy82;
default: goto yy60;
}
yy84:
YYDEBUG(84, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy82;
default: goto yy60;
}
yy85:
YYDEBUG(85, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F: goto yy82;
default: goto yy60;
}
yy86:
YYDEBUG(86, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'S':
case 's': goto yy112;
default: goto yy36;
}
yy87:
YYDEBUG(87, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'N':
case 'n': goto yy113;
default: goto yy36;
}
yy88:
YYDEBUG(88, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'D':
case 'd': goto yy114;
default: goto yy36;
}
yy89:
YYDEBUG(89, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'T':
case 't': goto yy116;
default: goto yy36;
}
yy90:
YYDEBUG(90, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'R':
case 'r': goto yy117;
default: goto yy36;
}
yy91:
YYDEBUG(91, YYPEEK ());
yyaccept = 5;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy92;
}
yy92:
YYDEBUG(92, YYPEEK ());
#line 207 "../gpr.re2c"
{*id = 13; continue;}
#line 2630 "../gpr_re2c.c"
yy93:
YYDEBUG(93, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'B':
case 'b': goto yy119;
default: goto yy36;
}
yy94:
YYDEBUG(94, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'L':
case 'l': goto yy120;
default: goto yy36;
}
yy95:
YYDEBUG(95, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'H':
case 'h': goto yy121;
default: goto yy36;
}
yy96:
YYDEBUG(96, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'C':
case 'c': goto yy122;
default: goto yy36;
}
yy97:
YYDEBUG(97, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'O':
case 'o': goto yy123;
default: goto yy36;
}
yy98:
YYDEBUG(98, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'N':
case 'n': goto yy124;
default: goto yy36;
}
yy99:
YYDEBUG(99, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy125;
default: goto yy36;
}
yy100:
YYDEBUG(100, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'P':
case 'p': goto yy126;
default: goto yy36;
}
yy101:
YYDEBUG(101, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy127;
default: goto yy36;
}
yy102:
YYDEBUG(102, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy129;
default: goto yy36;
}
yy103:
YYDEBUG(103, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'T':
case 't': goto yy130;
default: goto yy36;
}
yy104:
YYDEBUG(104, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy69;
default: goto yy60;
}
yy105:
YYDEBUG(105, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy104;
default: goto yy60;
}
yy106:
YYDEBUG(106, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy104;
default: goto yy60;
}
yy107:
YYDEBUG(107, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy106;
default: goto yy60;
}
yy108:
YYDEBUG(108, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F:
case 0x90:
case 0x91:
case 0x92:
case 0x93:
case 0x94:
case 0x95:
case 0x96:
case 0x97:
case 0x98:
case 0x99:
case 0x9A:
case 0x9B:
case 0x9C:
case 0x9D:
case 0x9E:
case 0x9F:
case 0xA0:
case 0xA1:
case 0xA2:
case 0xA3:
case 0xA4:
case 0xA5:
case 0xA6:
case 0xA7:
case 0xA8:
case 0xA9:
case 0xAA:
case 0xAB:
case 0xAC:
case 0xAD:
case 0xAE:
case 0xAF:
case 0xB0:
case 0xB1:
case 0xB2:
case 0xB3:
case 0xB4:
case 0xB5:
case 0xB6:
case 0xB7:
case 0xB8:
case 0xB9:
case 0xBA:
case 0xBB:
case 0xBC:
case 0xBD:
case 0xBE:
case 0xBF: goto yy106;
default: goto yy60;
}
yy109:
YYDEBUG(109, YYPEEK ());
YYSKIP ();
yych = YYPEEK ();
switch (yych) {
case 0x80:
case 0x81:
case 0x82:
case 0x83:
case 0x84:
case 0x85:
case 0x86:
case 0x87:
case 0x88:
case 0x89:
case 0x8A:
case 0x8B:
case 0x8C:
case 0x8D:
case 0x8E:
case 0x8F: goto yy106;
default: goto yy60;
}
yy110:
YYDEBUG(110, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'T':
case 't': goto yy131;
default: goto yy36;
}
yy111:
YYDEBUG(111, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'R':
case 'r': goto yy132;
default: goto yy36;
}
yy112:
YYDEBUG(112, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy133;
default: goto yy36;
}
yy113:
YYDEBUG(113, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'F':
case 'f': goto yy135;
default: goto yy36;
}
yy114:
YYDEBUG(114, YYPEEK ());
yyaccept = 6;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy115;
}
yy115:
YYDEBUG(115, YYPEEK ());
#line 202 "../gpr.re2c"
{*id = 8; continue;}
#line 3253 "../gpr_re2c.c"
yy116:
YYDEBUG(116, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy136;
default: goto yy36;
}
yy117:
YYDEBUG(117, YYPEEK ());
yyaccept = 7;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy118;
}
yy118:
YYDEBUG(118, YYPEEK ());
#line 206 "../gpr.re2c"
{*id = 12; continue;}
#line 3392 "../gpr_re2c.c"
yy119:
YYDEBUG(119, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'R':
case 'r': goto yy137;
default: goto yy36;
}
yy120:
YYDEBUG(120, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'L':
case 'l': goto yy138;
default: goto yy36;
}
yy121:
YYDEBUG(121, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy140;
default: goto yy36;
}
yy122:
YYDEBUG(122, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'K':
case 'k': goto yy141;
default: goto yy36;
}
yy123:
YYDEBUG(123, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'J':
case 'j': goto yy142;
default: goto yy36;
}
yy124:
YYDEBUG(124, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy143;
default: goto yy36;
}
yy125:
YYDEBUG(125, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'N':
case 'n': goto yy144;
default: goto yy36;
}
yy126:
YYDEBUG(126, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy145;
default: goto yy36;
}
yy127:
YYDEBUG(127, YYPEEK ());
yyaccept = 8;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy128;
}
yy128:
YYDEBUG(128, YYPEEK ());
#line 218 "../gpr.re2c"
{*id = 24; continue;}
#line 3608 "../gpr_re2c.c"
yy129:
YYDEBUG(129, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'N':
case 'n': goto yy147;
default: goto yy36;
}
yy130:
YYDEBUG(130, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'H':
case 'h': goto yy149;
default: goto yy36;
}
yy131:
YYDEBUG(131, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'R':
case 'r': goto yy151;
default: goto yy36;
}
yy132:
YYDEBUG(132, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy152;
default: goto yy36;
}
yy133:
YYDEBUG(133, YYPEEK ());
yyaccept = 9;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy134;
}
yy134:
YYDEBUG(134, YYPEEK ());
#line 200 "../gpr.re2c"
{*id = 6; continue;}
#line 3780 "../gpr_re2c.c"
yy135:
YYDEBUG(135, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'I':
case 'i': goto yy153;
default: goto yy36;
}
yy136:
YYDEBUG(136, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'N':
case 'n': goto yy154;
case 'R':
case 'r': goto yy155;
default: goto yy36;
}
yy137:
YYDEBUG(137, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy156;
default: goto yy36;
}
yy138:
YYDEBUG(138, YYPEEK ());
yyaccept = 10;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy139;
}
yy139:
YYDEBUG(139, YYPEEK ());
#line 210 "../gpr.re2c"
{*id = 16; continue;}
#line 3943 "../gpr_re2c.c"
yy140:
YYDEBUG(140, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'R':
case 'r': goto yy157;
default: goto yy36;
}
yy141:
YYDEBUG(141, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy158;
default: goto yy36;
}
yy142:
YYDEBUG(142, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy159;
default: goto yy36;
}
yy143:
YYDEBUG(143, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'M':
case 'm': goto yy160;
default: goto yy36;
}
yy144:
YYDEBUG(144, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'D':
case 'd': goto yy161;
default: goto yy36;
}
yy145:
YYDEBUG(145, YYPEEK ());
yyaccept = 11;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy146;
}
yy146:
YYDEBUG(146, YYPEEK ());
#line 217 "../gpr.re2c"
{*id = 23; continue;}
#line 4126 "../gpr_re2c.c"
yy147:
YYDEBUG(147, YYPEEK ());
yyaccept = 12;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy148;
}
yy148:
YYDEBUG(148, YYPEEK ());
#line 219 "../gpr.re2c"
{*id = 25; continue;}
#line 4254 "../gpr_re2c.c"
yy149:
YYDEBUG(149, YYPEEK ());
yyaccept = 13;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy150;
}
yy150:
YYDEBUG(150, YYPEEK ());
#line 220 "../gpr.re2c"
{*id = 26; continue;}
#line 4382 "../gpr_re2c.c"
yy151:
YYDEBUG(151, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy162;
default: goto yy36;
}
yy152:
YYDEBUG(152, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'G':
case 'g': goto yy163;
default: goto yy36;
}
yy153:
YYDEBUG(153, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'G':
case 'g': goto yy164;
default: goto yy36;
}
yy154:
YYDEBUG(154, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'D':
case 'd': goto yy165;
default: goto yy36;
}
yy155:
YYDEBUG(155, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'N':
case 'n': goto yy166;
default: goto yy36;
}
yy156:
YYDEBUG(156, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'R':
case 'r': goto yy167;
default: goto yy36;
}
yy157:
YYDEBUG(157, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'S':
case 's': goto yy168;
default: goto yy36;
}
yy158:
YYDEBUG(158, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'G':
case 'g': goto yy170;
default: goto yy36;
}
yy159:
YYDEBUG(159, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'C':
case 'c': goto yy171;
default: goto yy36;
}
yy160:
YYDEBUG(160, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy172;
default: goto yy36;
}
yy161:
YYDEBUG(161, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy173;
default: goto yy36;
}
yy162:
YYDEBUG(162, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'C':
case 'c': goto yy174;
default: goto yy36;
}
yy163:
YYDEBUG(163, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy175;
default: goto yy36;
}
yy164:
YYDEBUG(164, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'U':
case 'u': goto yy176;
default: goto yy36;
}
yy165:
YYDEBUG(165, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'S':
case 's': goto yy177;
default: goto yy36;
}
yy166:
YYDEBUG(166, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy179;
default: goto yy36;
}
yy167:
YYDEBUG(167, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'Y':
case 'y': goto yy180;
default: goto yy36;
}
yy168:
YYDEBUG(168, YYPEEK ());
yyaccept = 14;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy169;
}
yy169:
YYDEBUG(169, YYPEEK ());
#line 211 "../gpr.re2c"
{*id = 17; continue;}
#line 4697 "../gpr_re2c.c"
yy170:
YYDEBUG(170, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy182;
default: goto yy36;
}
yy171:
YYDEBUG(171, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'T':
case 't': goto yy184;
default: goto yy36;
}
yy172:
YYDEBUG(172, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'S':
case 's': goto yy186;
default: goto yy36;
}
yy173:
YYDEBUG(173, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'R':
case 'r': goto yy188;
default: goto yy36;
}
yy174:
YYDEBUG(174, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'T':
case 't': goto yy189;
default: goto yy36;
}
yy175:
YYDEBUG(175, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'T':
case 't': goto yy191;
default: goto yy36;
}
yy176:
YYDEBUG(176, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'R':
case 'r': goto yy192;
default: goto yy36;
}
yy177:
YYDEBUG(177, YYPEEK ());
yyaccept = 15;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy178;
}
yy178:
YYDEBUG(178, YYPEEK ());
#line 203 "../gpr.re2c"
{*id = 9; continue;}
#line 4902 "../gpr_re2c.c"
yy179:
YYDEBUG(179, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'L':
case 'l': goto yy193;
default: goto yy36;
}
yy180:
YYDEBUG(180, YYPEEK ());
yyaccept = 16;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy181;
}
yy181:
YYDEBUG(181, YYPEEK ());
#line 209 "../gpr.re2c"
{*id = 15; continue;}
#line 5041 "../gpr_re2c.c"
yy182:
YYDEBUG(182, YYPEEK ());
yyaccept = 17;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy183;
}
yy183:
YYDEBUG(183, YYPEEK ());
#line 212 "../gpr.re2c"
{*id = 18; continue;}
#line 5169 "../gpr_re2c.c"
yy184:
YYDEBUG(184, YYPEEK ());
yyaccept = 18;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy185;
}
yy185:
YYDEBUG(185, YYPEEK ());
#line 213 "../gpr.re2c"
{*id = 19; continue;}
#line 5297 "../gpr_re2c.c"
yy186:
YYDEBUG(186, YYPEEK ());
yyaccept = 19;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy187;
}
yy187:
YYDEBUG(187, YYPEEK ());
#line 214 "../gpr.re2c"
{*id = 20; continue;}
#line 5425 "../gpr_re2c.c"
yy188:
YYDEBUG(188, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'D':
case 'd': goto yy195;
default: goto yy36;
}
yy189:
YYDEBUG(189, YYPEEK ());
yyaccept = 20;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy190;
}
yy190:
YYDEBUG(190, YYPEEK ());
#line 197 "../gpr.re2c"
{*id = 3; continue;}
#line 5564 "../gpr_re2c.c"
yy191:
YYDEBUG(191, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'E':
case 'e': goto yy197;
default: goto yy36;
}
yy192:
YYDEBUG(192, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy199;
default: goto yy36;
}
yy193:
YYDEBUG(193, YYPEEK ());
yyaccept = 21;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
case '_': goto yy200;
default: goto yy194;
}
yy194:
YYDEBUG(194, YYPEEK ());
#line 204 "../gpr.re2c"
{*id = 10; continue;}
#line 5714 "../gpr_re2c.c"
yy195:
YYDEBUG(195, YYPEEK ());
yyaccept = 22;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy196;
}
yy196:
YYDEBUG(196, YYPEEK ());
#line 216 "../gpr.re2c"
{*id = 22; continue;}
#line 5842 "../gpr_re2c.c"
yy197:
YYDEBUG(197, YYPEEK ());
yyaccept = 23;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy198;
}
yy198:
YYDEBUG(198, YYPEEK ());
#line 199 "../gpr.re2c"
{*id = 5; continue;}
#line 5970 "../gpr_re2c.c"
yy199:
YYDEBUG(199, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'T':
case 't': goto yy201;
default: goto yy36;
}
yy200:
YYDEBUG(200, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'A':
case 'a': goto yy202;
default: goto yy36;
}
yy201:
YYDEBUG(201, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'I':
case 'i': goto yy203;
default: goto yy36;
}
yy202:
YYDEBUG(202, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'S':
case 's': goto yy204;
default: goto yy36;
}
yy203:
YYDEBUG(203, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'O':
case 'o': goto yy205;
default: goto yy36;
}
yy204:
YYDEBUG(204, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '_': goto yy206;
default: goto yy36;
}
yy205:
YYDEBUG(205, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'N':
case 'n': goto yy207;
default: goto yy36;
}
yy206:
YYDEBUG(206, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'L':
case 'l': goto yy209;
default: goto yy36;
}
yy207:
YYDEBUG(207, YYPEEK ());
yyaccept = 24;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy208;
}
yy208:
YYDEBUG(208, YYPEEK ());
#line 201 "../gpr.re2c"
{*id = 7; continue;}
#line 6185 "../gpr_re2c.c"
yy209:
YYDEBUG(209, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'I':
case 'i': goto yy210;
default: goto yy36;
}
yy210:
YYDEBUG(210, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'S':
case 's': goto yy211;
default: goto yy36;
}
yy211:
YYDEBUG(211, YYPEEK ());
yyaccept = 1;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case 'T':
case 't': goto yy212;
default: goto yy36;
}
yy212:
YYDEBUG(212, YYPEEK ());
yyaccept = 25;
YYSKIP ();
YYBACKUP ();
yych = YYPEEK ();
switch (yych) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
case 'G':
case 'H':
case 'I':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'O':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'U':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':
case '_':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
case 'g':
case 'h':
case 'i':
case 'j':
case 'k':
case 'l':
case 'm':
case 'n':
case 'o':
case 'p':
case 'q':
case 'r':
case 's':
case 't':
case 'u':
case 'v':
case 'w':
case 'x':
case 'y':
case 'z':
case 0xC2:
case 0xC3:
case 0xC4:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC8:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCC:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
case 0xD4:
case 0xD5:
case 0xD6:
case 0xD7:
case 0xD8:
case 0xD9:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xF0:
case 0xF1:
case 0xF2:
case 0xF3:
case 0xF4: goto yy36;
default: goto yy213;
}
yy213:
YYDEBUG(213, YYPEEK ());
#line 205 "../gpr.re2c"
{*id = 11; continue;}
#line 6346 "../gpr_re2c.c"
}
#line 236 "../gpr.re2c"
}
*byte_position = lexer->byte_token_start - lexer->buffer + 1;
*byte_length = lexer->cursor - lexer->byte_token_start;
*char_position = lexer->char_token_start;
if (DO_COUNT)
*char_length = lexer->char_pos - lexer->char_token_start;
else
*char_length = lexer->char_pos - lexer->char_token_start + 1;
*line_start = lexer->line_token_start;
return status;
}
|
the_stack_data/125143.c | #include<stdio.h>
int main(void)
{
printf("Hello World");
return 0;
}
|
the_stack_data/37638423.c | /*
* Copyright 2012-2014 NAVER Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdio.h>
#include <stdint.h>
#define MAX_BKEY_LENG 31
#define MAX_EFLAG_LENG 31
typedef struct {
unsigned char from_bkey[MAX_BKEY_LENG];
unsigned char to_bkey[MAX_BKEY_LENG];
uint8_t from_nbkey;
uint8_t to_nbkey;
} bkey_range;
typedef union {
uint64_t ival;
unsigned char cval[MAX_BKEY_LENG];
} bkey1_t;
typedef struct {
bkey1_t from_bkey;
bkey1_t to_bkey;
uint8_t from_nbkey;
uint8_t to_nbkey;
} bkey1_range;
typedef struct {
union {
uint64_t ui;
unsigned char uc[MAX_BKEY_LENG];
} val;
uint8_t len;
} bkey2_t;
typedef struct {
bkey2_t from_bkey;
bkey2_t to_bkey;
} bkey2_range;
typedef union {
uint64_t u64;
struct {
unsigned char val[MAX_BKEY_LENG];
uint8_t len;
} u8;
} bkey3_t;
typedef struct {
bkey3_t from_bkey;
bkey3_t to_bkey;
} bkey3_range;
typedef struct {
unsigned char bitwval[MAX_EFLAG_LENG];
unsigned char compval[MAX_EFLAG_LENG];
uint8_t nbitwval;
uint8_t ncompval;
uint8_t fwhere;
uint8_t bitwise_op;
uint8_t compare_op;
uint8_t reserved[5];
} elem_filter;
typedef struct {
elem_filter efilter;
uint8_t reserved;
bkey1_range bkrange;
} msg_body1;
typedef struct {
elem_filter efilter;
uint32_t reserved1;
uint32_t reserved2;
bkey1_range bkrange;
} msg_body2;
typedef struct {
elem_filter efilter;
uint8_t reserved[8];
bkey1_range bkrange;
} msg_body3;
main()
{
char dummy[2];
char a1;
bkey1_t bkey1;
char b1;
bkey1_range bkey1range;
char a2;
bkey2_t bkey2;
char b2;
bkey2_range bkey2range;
char a3;
bkey3_t bkey3;
char b3;
bkey3_range bkey3range;
fprintf(stderr, "bkey_range=%d, elem_filter=%d\n",
sizeof(bkey_range), sizeof(elem_filter));
fprintf(stderr, "a1=(%x) bkey1_t=(%x,%d), b1=(%x) bkey1_range=(%x,%d)\n",
&a1, &bkey1, sizeof(bkey1), &b1, &bkey1range, sizeof(bkey1range));
fprintf(stderr, "a2=(%x) bkey2_t=(%x,%d), b2=(%x) bkey2_range=(%x,%d)\n",
&a2, &bkey2, sizeof(bkey2), &b2, &bkey2range, sizeof(bkey2range));
fprintf(stderr, "a3=(%x) bkey3_t=(%x,%d), b3=(%x) bkey3_range=(%x,%d)\n",
&a3, &bkey3, sizeof(bkey3), &b3, &bkey3range, sizeof(bkey3range));
fprintf(stderr, "msg_body1=%d, msg_body2=%d, msg_body3=%d\n",
sizeof(msg_body1), sizeof(msg_body2), sizeof(msg_body3));
}
|
the_stack_data/102605.c | // SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (c) 2016 Google, Inc
*
* Simple program to create a bad _dt_ucode_base_size symbol to create an
* error when it is used. This is used by binman tests.
*/
static unsigned long not__dt_ucode_base_size[2]
__attribute__((section(".ucode"))) = {1, 2};
|
the_stack_data/162643143.c | extern float __VERIFIER_nondet_float(void);
extern int __VERIFIER_nondet_int(void);
typedef enum {false, true} bool;
bool __VERIFIER_nondet_bool(void) {
return __VERIFIER_nondet_int() != 0;
}
int main()
{
bool _J3108, _x__J3108;
bool _J3099, _x__J3099;
bool _EL_U_3076, _x__EL_U_3076;
float x_18, _x_x_18;
float x_9, _x_x_9;
float x_17, _x_x_17;
bool _EL_U_3078, _x__EL_U_3078;
bool _EL_X_3071, _x__EL_X_3071;
float x_0, _x_x_0;
float x_2, _x_x_2;
float x_3, _x_x_3;
float x_27, _x_x_27;
float x_7, _x_x_7;
float x_1, _x_x_1;
float x_8, _x_x_8;
float x_4, _x_x_4;
float x_6, _x_x_6;
float x_11, _x_x_11;
float x_10, _x_x_10;
float x_19, _x_x_19;
float x_13, _x_x_13;
float x_20, _x_x_20;
float x_22, _x_x_22;
float x_14, _x_x_14;
float x_15, _x_x_15;
float x_25, _x_x_25;
float x_16, _x_x_16;
float x_31, _x_x_31;
float x_30, _x_x_30;
float x_21, _x_x_21;
float x_5, _x_x_5;
float x_23, _x_x_23;
float x_24, _x_x_24;
float x_12, _x_x_12;
float x_26, _x_x_26;
float x_28, _x_x_28;
float x_29, _x_x_29;
int __steps_to_fair = __VERIFIER_nondet_int();
_J3108 = __VERIFIER_nondet_bool();
_J3099 = __VERIFIER_nondet_bool();
_EL_U_3076 = __VERIFIER_nondet_bool();
x_18 = __VERIFIER_nondet_float();
x_9 = __VERIFIER_nondet_float();
x_17 = __VERIFIER_nondet_float();
_EL_U_3078 = __VERIFIER_nondet_bool();
_EL_X_3071 = __VERIFIER_nondet_bool();
x_0 = __VERIFIER_nondet_float();
x_2 = __VERIFIER_nondet_float();
x_3 = __VERIFIER_nondet_float();
x_27 = __VERIFIER_nondet_float();
x_7 = __VERIFIER_nondet_float();
x_1 = __VERIFIER_nondet_float();
x_8 = __VERIFIER_nondet_float();
x_4 = __VERIFIER_nondet_float();
x_6 = __VERIFIER_nondet_float();
x_11 = __VERIFIER_nondet_float();
x_10 = __VERIFIER_nondet_float();
x_19 = __VERIFIER_nondet_float();
x_13 = __VERIFIER_nondet_float();
x_20 = __VERIFIER_nondet_float();
x_22 = __VERIFIER_nondet_float();
x_14 = __VERIFIER_nondet_float();
x_15 = __VERIFIER_nondet_float();
x_25 = __VERIFIER_nondet_float();
x_16 = __VERIFIER_nondet_float();
x_31 = __VERIFIER_nondet_float();
x_30 = __VERIFIER_nondet_float();
x_21 = __VERIFIER_nondet_float();
x_5 = __VERIFIER_nondet_float();
x_23 = __VERIFIER_nondet_float();
x_24 = __VERIFIER_nondet_float();
x_12 = __VERIFIER_nondet_float();
x_26 = __VERIFIER_nondet_float();
x_28 = __VERIFIER_nondet_float();
x_29 = __VERIFIER_nondet_float();
bool __ok = (1 && ((( !(( !_EL_X_3071) || (_EL_U_3078 && ( !(( !((x_9 + (-1.0 * x_18)) <= 19.0)) || _EL_U_3076))))) && ( !_J3099)) && ( !_J3108)));
while (__steps_to_fair >= 0 && __ok) {
if ((_J3099 && _J3108)) {
__steps_to_fair = __VERIFIER_nondet_int();
} else {
__steps_to_fair--;
}
_x__J3108 = __VERIFIER_nondet_bool();
_x__J3099 = __VERIFIER_nondet_bool();
_x__EL_U_3076 = __VERIFIER_nondet_bool();
_x_x_18 = __VERIFIER_nondet_float();
_x_x_9 = __VERIFIER_nondet_float();
_x_x_17 = __VERIFIER_nondet_float();
_x__EL_U_3078 = __VERIFIER_nondet_bool();
_x__EL_X_3071 = __VERIFIER_nondet_bool();
_x_x_0 = __VERIFIER_nondet_float();
_x_x_2 = __VERIFIER_nondet_float();
_x_x_3 = __VERIFIER_nondet_float();
_x_x_27 = __VERIFIER_nondet_float();
_x_x_7 = __VERIFIER_nondet_float();
_x_x_1 = __VERIFIER_nondet_float();
_x_x_8 = __VERIFIER_nondet_float();
_x_x_4 = __VERIFIER_nondet_float();
_x_x_6 = __VERIFIER_nondet_float();
_x_x_11 = __VERIFIER_nondet_float();
_x_x_10 = __VERIFIER_nondet_float();
_x_x_19 = __VERIFIER_nondet_float();
_x_x_13 = __VERIFIER_nondet_float();
_x_x_20 = __VERIFIER_nondet_float();
_x_x_22 = __VERIFIER_nondet_float();
_x_x_14 = __VERIFIER_nondet_float();
_x_x_15 = __VERIFIER_nondet_float();
_x_x_25 = __VERIFIER_nondet_float();
_x_x_16 = __VERIFIER_nondet_float();
_x_x_31 = __VERIFIER_nondet_float();
_x_x_30 = __VERIFIER_nondet_float();
_x_x_21 = __VERIFIER_nondet_float();
_x_x_5 = __VERIFIER_nondet_float();
_x_x_23 = __VERIFIER_nondet_float();
_x_x_24 = __VERIFIER_nondet_float();
_x_x_12 = __VERIFIER_nondet_float();
_x_x_26 = __VERIFIER_nondet_float();
_x_x_28 = __VERIFIER_nondet_float();
_x_x_29 = __VERIFIER_nondet_float();
__ok = ((((((((((((((((((((((((((((((((((((x_29 + (-1.0 * _x_x_0)) <= -9.0) && (((x_28 + (-1.0 * _x_x_0)) <= -14.0) && (((x_26 + (-1.0 * _x_x_0)) <= -15.0) && (((x_24 + (-1.0 * _x_x_0)) <= -11.0) && (((x_23 + (-1.0 * _x_x_0)) <= -1.0) && (((x_21 + (-1.0 * _x_x_0)) <= -9.0) && (((x_20 + (-1.0 * _x_x_0)) <= -9.0) && (((x_19 + (-1.0 * _x_x_0)) <= -16.0) && (((x_18 + (-1.0 * _x_x_0)) <= -3.0) && (((x_16 + (-1.0 * _x_x_0)) <= -13.0) && (((x_11 + (-1.0 * _x_x_0)) <= -8.0) && (((x_9 + (-1.0 * _x_x_0)) <= -2.0) && (((x_4 + (-1.0 * _x_x_0)) <= -17.0) && (((x_3 + (-1.0 * _x_x_0)) <= -2.0) && (((x_0 + (-1.0 * _x_x_0)) <= -1.0) && ((x_1 + (-1.0 * _x_x_0)) <= -3.0)))))))))))))))) && (((x_29 + (-1.0 * _x_x_0)) == -9.0) || (((x_28 + (-1.0 * _x_x_0)) == -14.0) || (((x_26 + (-1.0 * _x_x_0)) == -15.0) || (((x_24 + (-1.0 * _x_x_0)) == -11.0) || (((x_23 + (-1.0 * _x_x_0)) == -1.0) || (((x_21 + (-1.0 * _x_x_0)) == -9.0) || (((x_20 + (-1.0 * _x_x_0)) == -9.0) || (((x_19 + (-1.0 * _x_x_0)) == -16.0) || (((x_18 + (-1.0 * _x_x_0)) == -3.0) || (((x_16 + (-1.0 * _x_x_0)) == -13.0) || (((x_11 + (-1.0 * _x_x_0)) == -8.0) || (((x_9 + (-1.0 * _x_x_0)) == -2.0) || (((x_4 + (-1.0 * _x_x_0)) == -17.0) || (((x_3 + (-1.0 * _x_x_0)) == -2.0) || (((x_0 + (-1.0 * _x_x_0)) == -1.0) || ((x_1 + (-1.0 * _x_x_0)) == -3.0))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_1)) <= -5.0) && (((x_30 + (-1.0 * _x_x_1)) <= -6.0) && (((x_28 + (-1.0 * _x_x_1)) <= -3.0) && (((x_22 + (-1.0 * _x_x_1)) <= -17.0) && (((x_20 + (-1.0 * _x_x_1)) <= -8.0) && (((x_19 + (-1.0 * _x_x_1)) <= -2.0) && (((x_18 + (-1.0 * _x_x_1)) <= -11.0) && (((x_17 + (-1.0 * _x_x_1)) <= -15.0) && (((x_15 + (-1.0 * _x_x_1)) <= -19.0) && (((x_14 + (-1.0 * _x_x_1)) <= -15.0) && (((x_11 + (-1.0 * _x_x_1)) <= -7.0) && (((x_8 + (-1.0 * _x_x_1)) <= -15.0) && (((x_7 + (-1.0 * _x_x_1)) <= -7.0) && (((x_5 + (-1.0 * _x_x_1)) <= -17.0) && (((x_1 + (-1.0 * _x_x_1)) <= -7.0) && ((x_4 + (-1.0 * _x_x_1)) <= -17.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_1)) == -5.0) || (((x_30 + (-1.0 * _x_x_1)) == -6.0) || (((x_28 + (-1.0 * _x_x_1)) == -3.0) || (((x_22 + (-1.0 * _x_x_1)) == -17.0) || (((x_20 + (-1.0 * _x_x_1)) == -8.0) || (((x_19 + (-1.0 * _x_x_1)) == -2.0) || (((x_18 + (-1.0 * _x_x_1)) == -11.0) || (((x_17 + (-1.0 * _x_x_1)) == -15.0) || (((x_15 + (-1.0 * _x_x_1)) == -19.0) || (((x_14 + (-1.0 * _x_x_1)) == -15.0) || (((x_11 + (-1.0 * _x_x_1)) == -7.0) || (((x_8 + (-1.0 * _x_x_1)) == -15.0) || (((x_7 + (-1.0 * _x_x_1)) == -7.0) || (((x_5 + (-1.0 * _x_x_1)) == -17.0) || (((x_1 + (-1.0 * _x_x_1)) == -7.0) || ((x_4 + (-1.0 * _x_x_1)) == -17.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_2)) <= -19.0) && (((x_29 + (-1.0 * _x_x_2)) <= -1.0) && (((x_28 + (-1.0 * _x_x_2)) <= -12.0) && (((x_27 + (-1.0 * _x_x_2)) <= -18.0) && (((x_24 + (-1.0 * _x_x_2)) <= -8.0) && (((x_20 + (-1.0 * _x_x_2)) <= -13.0) && (((x_18 + (-1.0 * _x_x_2)) <= -16.0) && (((x_16 + (-1.0 * _x_x_2)) <= -1.0) && (((x_14 + (-1.0 * _x_x_2)) <= -20.0) && (((x_13 + (-1.0 * _x_x_2)) <= -6.0) && (((x_12 + (-1.0 * _x_x_2)) <= -10.0) && (((x_11 + (-1.0 * _x_x_2)) <= -12.0) && (((x_8 + (-1.0 * _x_x_2)) <= -16.0) && (((x_7 + (-1.0 * _x_x_2)) <= -7.0) && (((x_1 + (-1.0 * _x_x_2)) <= -2.0) && ((x_3 + (-1.0 * _x_x_2)) <= -13.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_2)) == -19.0) || (((x_29 + (-1.0 * _x_x_2)) == -1.0) || (((x_28 + (-1.0 * _x_x_2)) == -12.0) || (((x_27 + (-1.0 * _x_x_2)) == -18.0) || (((x_24 + (-1.0 * _x_x_2)) == -8.0) || (((x_20 + (-1.0 * _x_x_2)) == -13.0) || (((x_18 + (-1.0 * _x_x_2)) == -16.0) || (((x_16 + (-1.0 * _x_x_2)) == -1.0) || (((x_14 + (-1.0 * _x_x_2)) == -20.0) || (((x_13 + (-1.0 * _x_x_2)) == -6.0) || (((x_12 + (-1.0 * _x_x_2)) == -10.0) || (((x_11 + (-1.0 * _x_x_2)) == -12.0) || (((x_8 + (-1.0 * _x_x_2)) == -16.0) || (((x_7 + (-1.0 * _x_x_2)) == -7.0) || (((x_1 + (-1.0 * _x_x_2)) == -2.0) || ((x_3 + (-1.0 * _x_x_2)) == -13.0)))))))))))))))))) && ((((x_30 + (-1.0 * _x_x_3)) <= -7.0) && (((x_27 + (-1.0 * _x_x_3)) <= -14.0) && (((x_26 + (-1.0 * _x_x_3)) <= -14.0) && (((x_23 + (-1.0 * _x_x_3)) <= -17.0) && (((x_22 + (-1.0 * _x_x_3)) <= -1.0) && (((x_21 + (-1.0 * _x_x_3)) <= -17.0) && (((x_20 + (-1.0 * _x_x_3)) <= -8.0) && (((x_18 + (-1.0 * _x_x_3)) <= -17.0) && (((x_16 + (-1.0 * _x_x_3)) <= -5.0) && (((x_15 + (-1.0 * _x_x_3)) <= -9.0) && (((x_14 + (-1.0 * _x_x_3)) <= -7.0) && (((x_9 + (-1.0 * _x_x_3)) <= -18.0) && (((x_7 + (-1.0 * _x_x_3)) <= -9.0) && (((x_5 + (-1.0 * _x_x_3)) <= -17.0) && (((x_1 + (-1.0 * _x_x_3)) <= -18.0) && ((x_3 + (-1.0 * _x_x_3)) <= -20.0)))))))))))))))) && (((x_30 + (-1.0 * _x_x_3)) == -7.0) || (((x_27 + (-1.0 * _x_x_3)) == -14.0) || (((x_26 + (-1.0 * _x_x_3)) == -14.0) || (((x_23 + (-1.0 * _x_x_3)) == -17.0) || (((x_22 + (-1.0 * _x_x_3)) == -1.0) || (((x_21 + (-1.0 * _x_x_3)) == -17.0) || (((x_20 + (-1.0 * _x_x_3)) == -8.0) || (((x_18 + (-1.0 * _x_x_3)) == -17.0) || (((x_16 + (-1.0 * _x_x_3)) == -5.0) || (((x_15 + (-1.0 * _x_x_3)) == -9.0) || (((x_14 + (-1.0 * _x_x_3)) == -7.0) || (((x_9 + (-1.0 * _x_x_3)) == -18.0) || (((x_7 + (-1.0 * _x_x_3)) == -9.0) || (((x_5 + (-1.0 * _x_x_3)) == -17.0) || (((x_1 + (-1.0 * _x_x_3)) == -18.0) || ((x_3 + (-1.0 * _x_x_3)) == -20.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_4)) <= -6.0) && (((x_27 + (-1.0 * _x_x_4)) <= -9.0) && (((x_25 + (-1.0 * _x_x_4)) <= -9.0) && (((x_23 + (-1.0 * _x_x_4)) <= -11.0) && (((x_22 + (-1.0 * _x_x_4)) <= -13.0) && (((x_19 + (-1.0 * _x_x_4)) <= -14.0) && (((x_18 + (-1.0 * _x_x_4)) <= -16.0) && (((x_17 + (-1.0 * _x_x_4)) <= -2.0) && (((x_13 + (-1.0 * _x_x_4)) <= -15.0) && (((x_9 + (-1.0 * _x_x_4)) <= -12.0) && (((x_8 + (-1.0 * _x_x_4)) <= -11.0) && (((x_7 + (-1.0 * _x_x_4)) <= -4.0) && (((x_6 + (-1.0 * _x_x_4)) <= -6.0) && (((x_4 + (-1.0 * _x_x_4)) <= -11.0) && (((x_0 + (-1.0 * _x_x_4)) <= -3.0) && ((x_1 + (-1.0 * _x_x_4)) <= -3.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_4)) == -6.0) || (((x_27 + (-1.0 * _x_x_4)) == -9.0) || (((x_25 + (-1.0 * _x_x_4)) == -9.0) || (((x_23 + (-1.0 * _x_x_4)) == -11.0) || (((x_22 + (-1.0 * _x_x_4)) == -13.0) || (((x_19 + (-1.0 * _x_x_4)) == -14.0) || (((x_18 + (-1.0 * _x_x_4)) == -16.0) || (((x_17 + (-1.0 * _x_x_4)) == -2.0) || (((x_13 + (-1.0 * _x_x_4)) == -15.0) || (((x_9 + (-1.0 * _x_x_4)) == -12.0) || (((x_8 + (-1.0 * _x_x_4)) == -11.0) || (((x_7 + (-1.0 * _x_x_4)) == -4.0) || (((x_6 + (-1.0 * _x_x_4)) == -6.0) || (((x_4 + (-1.0 * _x_x_4)) == -11.0) || (((x_0 + (-1.0 * _x_x_4)) == -3.0) || ((x_1 + (-1.0 * _x_x_4)) == -3.0)))))))))))))))))) && ((((x_29 + (-1.0 * _x_x_5)) <= -14.0) && (((x_26 + (-1.0 * _x_x_5)) <= -19.0) && (((x_25 + (-1.0 * _x_x_5)) <= -5.0) && (((x_24 + (-1.0 * _x_x_5)) <= -1.0) && (((x_23 + (-1.0 * _x_x_5)) <= -6.0) && (((x_21 + (-1.0 * _x_x_5)) <= -6.0) && (((x_20 + (-1.0 * _x_x_5)) <= -17.0) && (((x_16 + (-1.0 * _x_x_5)) <= -15.0) && (((x_15 + (-1.0 * _x_x_5)) <= -4.0) && (((x_11 + (-1.0 * _x_x_5)) <= -7.0) && (((x_10 + (-1.0 * _x_x_5)) <= -13.0) && (((x_8 + (-1.0 * _x_x_5)) <= -15.0) && (((x_6 + (-1.0 * _x_x_5)) <= -11.0) && (((x_5 + (-1.0 * _x_x_5)) <= -15.0) && (((x_2 + (-1.0 * _x_x_5)) <= -4.0) && ((x_4 + (-1.0 * _x_x_5)) <= -13.0)))))))))))))))) && (((x_29 + (-1.0 * _x_x_5)) == -14.0) || (((x_26 + (-1.0 * _x_x_5)) == -19.0) || (((x_25 + (-1.0 * _x_x_5)) == -5.0) || (((x_24 + (-1.0 * _x_x_5)) == -1.0) || (((x_23 + (-1.0 * _x_x_5)) == -6.0) || (((x_21 + (-1.0 * _x_x_5)) == -6.0) || (((x_20 + (-1.0 * _x_x_5)) == -17.0) || (((x_16 + (-1.0 * _x_x_5)) == -15.0) || (((x_15 + (-1.0 * _x_x_5)) == -4.0) || (((x_11 + (-1.0 * _x_x_5)) == -7.0) || (((x_10 + (-1.0 * _x_x_5)) == -13.0) || (((x_8 + (-1.0 * _x_x_5)) == -15.0) || (((x_6 + (-1.0 * _x_x_5)) == -11.0) || (((x_5 + (-1.0 * _x_x_5)) == -15.0) || (((x_2 + (-1.0 * _x_x_5)) == -4.0) || ((x_4 + (-1.0 * _x_x_5)) == -13.0)))))))))))))))))) && ((((x_28 + (-1.0 * _x_x_6)) <= -17.0) && (((x_26 + (-1.0 * _x_x_6)) <= -1.0) && (((x_24 + (-1.0 * _x_x_6)) <= -20.0) && (((x_23 + (-1.0 * _x_x_6)) <= -16.0) && (((x_20 + (-1.0 * _x_x_6)) <= -19.0) && (((x_18 + (-1.0 * _x_x_6)) <= -8.0) && (((x_16 + (-1.0 * _x_x_6)) <= -7.0) && (((x_12 + (-1.0 * _x_x_6)) <= -1.0) && (((x_11 + (-1.0 * _x_x_6)) <= -1.0) && (((x_7 + (-1.0 * _x_x_6)) <= -13.0) && (((x_6 + (-1.0 * _x_x_6)) <= -16.0) && (((x_5 + (-1.0 * _x_x_6)) <= -18.0) && (((x_3 + (-1.0 * _x_x_6)) <= -16.0) && (((x_2 + (-1.0 * _x_x_6)) <= -20.0) && (((x_0 + (-1.0 * _x_x_6)) <= -18.0) && ((x_1 + (-1.0 * _x_x_6)) <= -15.0)))))))))))))))) && (((x_28 + (-1.0 * _x_x_6)) == -17.0) || (((x_26 + (-1.0 * _x_x_6)) == -1.0) || (((x_24 + (-1.0 * _x_x_6)) == -20.0) || (((x_23 + (-1.0 * _x_x_6)) == -16.0) || (((x_20 + (-1.0 * _x_x_6)) == -19.0) || (((x_18 + (-1.0 * _x_x_6)) == -8.0) || (((x_16 + (-1.0 * _x_x_6)) == -7.0) || (((x_12 + (-1.0 * _x_x_6)) == -1.0) || (((x_11 + (-1.0 * _x_x_6)) == -1.0) || (((x_7 + (-1.0 * _x_x_6)) == -13.0) || (((x_6 + (-1.0 * _x_x_6)) == -16.0) || (((x_5 + (-1.0 * _x_x_6)) == -18.0) || (((x_3 + (-1.0 * _x_x_6)) == -16.0) || (((x_2 + (-1.0 * _x_x_6)) == -20.0) || (((x_0 + (-1.0 * _x_x_6)) == -18.0) || ((x_1 + (-1.0 * _x_x_6)) == -15.0)))))))))))))))))) && ((((x_30 + (-1.0 * _x_x_7)) <= -12.0) && (((x_29 + (-1.0 * _x_x_7)) <= -7.0) && (((x_26 + (-1.0 * _x_x_7)) <= -16.0) && (((x_25 + (-1.0 * _x_x_7)) <= -3.0) && (((x_23 + (-1.0 * _x_x_7)) <= -13.0) && (((x_22 + (-1.0 * _x_x_7)) <= -14.0) && (((x_21 + (-1.0 * _x_x_7)) <= -20.0) && (((x_18 + (-1.0 * _x_x_7)) <= -5.0) && (((x_15 + (-1.0 * _x_x_7)) <= -6.0) && (((x_13 + (-1.0 * _x_x_7)) <= -12.0) && (((x_9 + (-1.0 * _x_x_7)) <= -10.0) && (((x_8 + (-1.0 * _x_x_7)) <= -4.0) && (((x_6 + (-1.0 * _x_x_7)) <= -6.0) && (((x_5 + (-1.0 * _x_x_7)) <= -15.0) && (((x_0 + (-1.0 * _x_x_7)) <= -18.0) && ((x_4 + (-1.0 * _x_x_7)) <= -10.0)))))))))))))))) && (((x_30 + (-1.0 * _x_x_7)) == -12.0) || (((x_29 + (-1.0 * _x_x_7)) == -7.0) || (((x_26 + (-1.0 * _x_x_7)) == -16.0) || (((x_25 + (-1.0 * _x_x_7)) == -3.0) || (((x_23 + (-1.0 * _x_x_7)) == -13.0) || (((x_22 + (-1.0 * _x_x_7)) == -14.0) || (((x_21 + (-1.0 * _x_x_7)) == -20.0) || (((x_18 + (-1.0 * _x_x_7)) == -5.0) || (((x_15 + (-1.0 * _x_x_7)) == -6.0) || (((x_13 + (-1.0 * _x_x_7)) == -12.0) || (((x_9 + (-1.0 * _x_x_7)) == -10.0) || (((x_8 + (-1.0 * _x_x_7)) == -4.0) || (((x_6 + (-1.0 * _x_x_7)) == -6.0) || (((x_5 + (-1.0 * _x_x_7)) == -15.0) || (((x_0 + (-1.0 * _x_x_7)) == -18.0) || ((x_4 + (-1.0 * _x_x_7)) == -10.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_8)) <= -9.0) && (((x_28 + (-1.0 * _x_x_8)) <= -16.0) && (((x_25 + (-1.0 * _x_x_8)) <= -17.0) && (((x_24 + (-1.0 * _x_x_8)) <= -14.0) && (((x_20 + (-1.0 * _x_x_8)) <= -18.0) && (((x_18 + (-1.0 * _x_x_8)) <= -13.0) && (((x_13 + (-1.0 * _x_x_8)) <= -5.0) && (((x_12 + (-1.0 * _x_x_8)) <= -12.0) && (((x_11 + (-1.0 * _x_x_8)) <= -17.0) && (((x_9 + (-1.0 * _x_x_8)) <= -19.0) && (((x_6 + (-1.0 * _x_x_8)) <= -15.0) && (((x_4 + (-1.0 * _x_x_8)) <= -18.0) && (((x_3 + (-1.0 * _x_x_8)) <= -15.0) && (((x_2 + (-1.0 * _x_x_8)) <= -13.0) && (((x_0 + (-1.0 * _x_x_8)) <= -11.0) && ((x_1 + (-1.0 * _x_x_8)) <= -14.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_8)) == -9.0) || (((x_28 + (-1.0 * _x_x_8)) == -16.0) || (((x_25 + (-1.0 * _x_x_8)) == -17.0) || (((x_24 + (-1.0 * _x_x_8)) == -14.0) || (((x_20 + (-1.0 * _x_x_8)) == -18.0) || (((x_18 + (-1.0 * _x_x_8)) == -13.0) || (((x_13 + (-1.0 * _x_x_8)) == -5.0) || (((x_12 + (-1.0 * _x_x_8)) == -12.0) || (((x_11 + (-1.0 * _x_x_8)) == -17.0) || (((x_9 + (-1.0 * _x_x_8)) == -19.0) || (((x_6 + (-1.0 * _x_x_8)) == -15.0) || (((x_4 + (-1.0 * _x_x_8)) == -18.0) || (((x_3 + (-1.0 * _x_x_8)) == -15.0) || (((x_2 + (-1.0 * _x_x_8)) == -13.0) || (((x_0 + (-1.0 * _x_x_8)) == -11.0) || ((x_1 + (-1.0 * _x_x_8)) == -14.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_9)) <= -20.0) && (((x_30 + (-1.0 * _x_x_9)) <= -20.0) && (((x_29 + (-1.0 * _x_x_9)) <= -4.0) && (((x_28 + (-1.0 * _x_x_9)) <= -4.0) && (((x_26 + (-1.0 * _x_x_9)) <= -6.0) && (((x_21 + (-1.0 * _x_x_9)) <= -1.0) && (((x_18 + (-1.0 * _x_x_9)) <= -17.0) && (((x_16 + (-1.0 * _x_x_9)) <= -18.0) && (((x_15 + (-1.0 * _x_x_9)) <= -11.0) && (((x_9 + (-1.0 * _x_x_9)) <= -2.0) && (((x_6 + (-1.0 * _x_x_9)) <= -8.0) && (((x_5 + (-1.0 * _x_x_9)) <= -7.0) && (((x_4 + (-1.0 * _x_x_9)) <= -6.0) && (((x_3 + (-1.0 * _x_x_9)) <= -10.0) && (((x_0 + (-1.0 * _x_x_9)) <= -4.0) && ((x_2 + (-1.0 * _x_x_9)) <= -7.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_9)) == -20.0) || (((x_30 + (-1.0 * _x_x_9)) == -20.0) || (((x_29 + (-1.0 * _x_x_9)) == -4.0) || (((x_28 + (-1.0 * _x_x_9)) == -4.0) || (((x_26 + (-1.0 * _x_x_9)) == -6.0) || (((x_21 + (-1.0 * _x_x_9)) == -1.0) || (((x_18 + (-1.0 * _x_x_9)) == -17.0) || (((x_16 + (-1.0 * _x_x_9)) == -18.0) || (((x_15 + (-1.0 * _x_x_9)) == -11.0) || (((x_9 + (-1.0 * _x_x_9)) == -2.0) || (((x_6 + (-1.0 * _x_x_9)) == -8.0) || (((x_5 + (-1.0 * _x_x_9)) == -7.0) || (((x_4 + (-1.0 * _x_x_9)) == -6.0) || (((x_3 + (-1.0 * _x_x_9)) == -10.0) || (((x_0 + (-1.0 * _x_x_9)) == -4.0) || ((x_2 + (-1.0 * _x_x_9)) == -7.0)))))))))))))))))) && ((((x_30 + (-1.0 * _x_x_10)) <= -4.0) && (((x_29 + (-1.0 * _x_x_10)) <= -17.0) && (((x_28 + (-1.0 * _x_x_10)) <= -19.0) && (((x_22 + (-1.0 * _x_x_10)) <= -14.0) && (((x_21 + (-1.0 * _x_x_10)) <= -15.0) && (((x_20 + (-1.0 * _x_x_10)) <= -5.0) && (((x_18 + (-1.0 * _x_x_10)) <= -13.0) && (((x_16 + (-1.0 * _x_x_10)) <= -19.0) && (((x_15 + (-1.0 * _x_x_10)) <= -4.0) && (((x_14 + (-1.0 * _x_x_10)) <= -1.0) && (((x_13 + (-1.0 * _x_x_10)) <= -8.0) && (((x_10 + (-1.0 * _x_x_10)) <= -10.0) && (((x_7 + (-1.0 * _x_x_10)) <= -8.0) && (((x_3 + (-1.0 * _x_x_10)) <= -14.0) && (((x_1 + (-1.0 * _x_x_10)) <= -14.0) && ((x_2 + (-1.0 * _x_x_10)) <= -15.0)))))))))))))))) && (((x_30 + (-1.0 * _x_x_10)) == -4.0) || (((x_29 + (-1.0 * _x_x_10)) == -17.0) || (((x_28 + (-1.0 * _x_x_10)) == -19.0) || (((x_22 + (-1.0 * _x_x_10)) == -14.0) || (((x_21 + (-1.0 * _x_x_10)) == -15.0) || (((x_20 + (-1.0 * _x_x_10)) == -5.0) || (((x_18 + (-1.0 * _x_x_10)) == -13.0) || (((x_16 + (-1.0 * _x_x_10)) == -19.0) || (((x_15 + (-1.0 * _x_x_10)) == -4.0) || (((x_14 + (-1.0 * _x_x_10)) == -1.0) || (((x_13 + (-1.0 * _x_x_10)) == -8.0) || (((x_10 + (-1.0 * _x_x_10)) == -10.0) || (((x_7 + (-1.0 * _x_x_10)) == -8.0) || (((x_3 + (-1.0 * _x_x_10)) == -14.0) || (((x_1 + (-1.0 * _x_x_10)) == -14.0) || ((x_2 + (-1.0 * _x_x_10)) == -15.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_11)) <= -16.0) && (((x_30 + (-1.0 * _x_x_11)) <= -12.0) && (((x_28 + (-1.0 * _x_x_11)) <= -12.0) && (((x_26 + (-1.0 * _x_x_11)) <= -9.0) && (((x_24 + (-1.0 * _x_x_11)) <= -17.0) && (((x_21 + (-1.0 * _x_x_11)) <= -2.0) && (((x_19 + (-1.0 * _x_x_11)) <= -20.0) && (((x_16 + (-1.0 * _x_x_11)) <= -5.0) && (((x_15 + (-1.0 * _x_x_11)) <= -4.0) && (((x_12 + (-1.0 * _x_x_11)) <= -7.0) && (((x_11 + (-1.0 * _x_x_11)) <= -3.0) && (((x_8 + (-1.0 * _x_x_11)) <= -5.0) && (((x_6 + (-1.0 * _x_x_11)) <= -16.0) && (((x_5 + (-1.0 * _x_x_11)) <= -2.0) && (((x_0 + (-1.0 * _x_x_11)) <= -18.0) && ((x_2 + (-1.0 * _x_x_11)) <= -16.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_11)) == -16.0) || (((x_30 + (-1.0 * _x_x_11)) == -12.0) || (((x_28 + (-1.0 * _x_x_11)) == -12.0) || (((x_26 + (-1.0 * _x_x_11)) == -9.0) || (((x_24 + (-1.0 * _x_x_11)) == -17.0) || (((x_21 + (-1.0 * _x_x_11)) == -2.0) || (((x_19 + (-1.0 * _x_x_11)) == -20.0) || (((x_16 + (-1.0 * _x_x_11)) == -5.0) || (((x_15 + (-1.0 * _x_x_11)) == -4.0) || (((x_12 + (-1.0 * _x_x_11)) == -7.0) || (((x_11 + (-1.0 * _x_x_11)) == -3.0) || (((x_8 + (-1.0 * _x_x_11)) == -5.0) || (((x_6 + (-1.0 * _x_x_11)) == -16.0) || (((x_5 + (-1.0 * _x_x_11)) == -2.0) || (((x_0 + (-1.0 * _x_x_11)) == -18.0) || ((x_2 + (-1.0 * _x_x_11)) == -16.0)))))))))))))))))) && ((((x_30 + (-1.0 * _x_x_12)) <= -16.0) && (((x_28 + (-1.0 * _x_x_12)) <= -11.0) && (((x_26 + (-1.0 * _x_x_12)) <= -18.0) && (((x_20 + (-1.0 * _x_x_12)) <= -20.0) && (((x_19 + (-1.0 * _x_x_12)) <= -1.0) && (((x_18 + (-1.0 * _x_x_12)) <= -1.0) && (((x_17 + (-1.0 * _x_x_12)) <= -11.0) && (((x_12 + (-1.0 * _x_x_12)) <= -18.0) && (((x_11 + (-1.0 * _x_x_12)) <= -2.0) && (((x_10 + (-1.0 * _x_x_12)) <= -4.0) && (((x_9 + (-1.0 * _x_x_12)) <= -14.0) && (((x_7 + (-1.0 * _x_x_12)) <= -9.0) && (((x_5 + (-1.0 * _x_x_12)) <= -14.0) && (((x_4 + (-1.0 * _x_x_12)) <= -4.0) && (((x_0 + (-1.0 * _x_x_12)) <= -9.0) && ((x_2 + (-1.0 * _x_x_12)) <= -3.0)))))))))))))))) && (((x_30 + (-1.0 * _x_x_12)) == -16.0) || (((x_28 + (-1.0 * _x_x_12)) == -11.0) || (((x_26 + (-1.0 * _x_x_12)) == -18.0) || (((x_20 + (-1.0 * _x_x_12)) == -20.0) || (((x_19 + (-1.0 * _x_x_12)) == -1.0) || (((x_18 + (-1.0 * _x_x_12)) == -1.0) || (((x_17 + (-1.0 * _x_x_12)) == -11.0) || (((x_12 + (-1.0 * _x_x_12)) == -18.0) || (((x_11 + (-1.0 * _x_x_12)) == -2.0) || (((x_10 + (-1.0 * _x_x_12)) == -4.0) || (((x_9 + (-1.0 * _x_x_12)) == -14.0) || (((x_7 + (-1.0 * _x_x_12)) == -9.0) || (((x_5 + (-1.0 * _x_x_12)) == -14.0) || (((x_4 + (-1.0 * _x_x_12)) == -4.0) || (((x_0 + (-1.0 * _x_x_12)) == -9.0) || ((x_2 + (-1.0 * _x_x_12)) == -3.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_13)) <= -1.0) && (((x_30 + (-1.0 * _x_x_13)) <= -14.0) && (((x_27 + (-1.0 * _x_x_13)) <= -18.0) && (((x_26 + (-1.0 * _x_x_13)) <= -14.0) && (((x_23 + (-1.0 * _x_x_13)) <= -2.0) && (((x_20 + (-1.0 * _x_x_13)) <= -18.0) && (((x_18 + (-1.0 * _x_x_13)) <= -8.0) && (((x_17 + (-1.0 * _x_x_13)) <= -19.0) && (((x_16 + (-1.0 * _x_x_13)) <= -13.0) && (((x_15 + (-1.0 * _x_x_13)) <= -16.0) && (((x_13 + (-1.0 * _x_x_13)) <= -4.0) && (((x_10 + (-1.0 * _x_x_13)) <= -15.0) && (((x_8 + (-1.0 * _x_x_13)) <= -12.0) && (((x_3 + (-1.0 * _x_x_13)) <= -13.0) && (((x_0 + (-1.0 * _x_x_13)) <= -16.0) && ((x_1 + (-1.0 * _x_x_13)) <= -9.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_13)) == -1.0) || (((x_30 + (-1.0 * _x_x_13)) == -14.0) || (((x_27 + (-1.0 * _x_x_13)) == -18.0) || (((x_26 + (-1.0 * _x_x_13)) == -14.0) || (((x_23 + (-1.0 * _x_x_13)) == -2.0) || (((x_20 + (-1.0 * _x_x_13)) == -18.0) || (((x_18 + (-1.0 * _x_x_13)) == -8.0) || (((x_17 + (-1.0 * _x_x_13)) == -19.0) || (((x_16 + (-1.0 * _x_x_13)) == -13.0) || (((x_15 + (-1.0 * _x_x_13)) == -16.0) || (((x_13 + (-1.0 * _x_x_13)) == -4.0) || (((x_10 + (-1.0 * _x_x_13)) == -15.0) || (((x_8 + (-1.0 * _x_x_13)) == -12.0) || (((x_3 + (-1.0 * _x_x_13)) == -13.0) || (((x_0 + (-1.0 * _x_x_13)) == -16.0) || ((x_1 + (-1.0 * _x_x_13)) == -9.0)))))))))))))))))) && ((((x_28 + (-1.0 * _x_x_14)) <= -4.0) && (((x_27 + (-1.0 * _x_x_14)) <= -10.0) && (((x_25 + (-1.0 * _x_x_14)) <= -18.0) && (((x_24 + (-1.0 * _x_x_14)) <= -4.0) && (((x_23 + (-1.0 * _x_x_14)) <= -2.0) && (((x_21 + (-1.0 * _x_x_14)) <= -7.0) && (((x_20 + (-1.0 * _x_x_14)) <= -11.0) && (((x_19 + (-1.0 * _x_x_14)) <= -18.0) && (((x_18 + (-1.0 * _x_x_14)) <= -9.0) && (((x_13 + (-1.0 * _x_x_14)) <= -10.0) && (((x_9 + (-1.0 * _x_x_14)) <= -7.0) && (((x_5 + (-1.0 * _x_x_14)) <= -2.0) && (((x_4 + (-1.0 * _x_x_14)) <= -4.0) && (((x_3 + (-1.0 * _x_x_14)) <= -11.0) && (((x_1 + (-1.0 * _x_x_14)) <= -2.0) && ((x_2 + (-1.0 * _x_x_14)) <= -7.0)))))))))))))))) && (((x_28 + (-1.0 * _x_x_14)) == -4.0) || (((x_27 + (-1.0 * _x_x_14)) == -10.0) || (((x_25 + (-1.0 * _x_x_14)) == -18.0) || (((x_24 + (-1.0 * _x_x_14)) == -4.0) || (((x_23 + (-1.0 * _x_x_14)) == -2.0) || (((x_21 + (-1.0 * _x_x_14)) == -7.0) || (((x_20 + (-1.0 * _x_x_14)) == -11.0) || (((x_19 + (-1.0 * _x_x_14)) == -18.0) || (((x_18 + (-1.0 * _x_x_14)) == -9.0) || (((x_13 + (-1.0 * _x_x_14)) == -10.0) || (((x_9 + (-1.0 * _x_x_14)) == -7.0) || (((x_5 + (-1.0 * _x_x_14)) == -2.0) || (((x_4 + (-1.0 * _x_x_14)) == -4.0) || (((x_3 + (-1.0 * _x_x_14)) == -11.0) || (((x_1 + (-1.0 * _x_x_14)) == -2.0) || ((x_2 + (-1.0 * _x_x_14)) == -7.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_15)) <= -10.0) && (((x_30 + (-1.0 * _x_x_15)) <= -17.0) && (((x_28 + (-1.0 * _x_x_15)) <= -20.0) && (((x_27 + (-1.0 * _x_x_15)) <= -16.0) && (((x_24 + (-1.0 * _x_x_15)) <= -19.0) && (((x_20 + (-1.0 * _x_x_15)) <= -3.0) && (((x_19 + (-1.0 * _x_x_15)) <= -17.0) && (((x_17 + (-1.0 * _x_x_15)) <= -9.0) && (((x_16 + (-1.0 * _x_x_15)) <= -16.0) && (((x_11 + (-1.0 * _x_x_15)) <= -4.0) && (((x_9 + (-1.0 * _x_x_15)) <= -11.0) && (((x_8 + (-1.0 * _x_x_15)) <= -10.0) && (((x_7 + (-1.0 * _x_x_15)) <= -5.0) && (((x_6 + (-1.0 * _x_x_15)) <= -19.0) && (((x_1 + (-1.0 * _x_x_15)) <= -13.0) && ((x_4 + (-1.0 * _x_x_15)) <= -6.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_15)) == -10.0) || (((x_30 + (-1.0 * _x_x_15)) == -17.0) || (((x_28 + (-1.0 * _x_x_15)) == -20.0) || (((x_27 + (-1.0 * _x_x_15)) == -16.0) || (((x_24 + (-1.0 * _x_x_15)) == -19.0) || (((x_20 + (-1.0 * _x_x_15)) == -3.0) || (((x_19 + (-1.0 * _x_x_15)) == -17.0) || (((x_17 + (-1.0 * _x_x_15)) == -9.0) || (((x_16 + (-1.0 * _x_x_15)) == -16.0) || (((x_11 + (-1.0 * _x_x_15)) == -4.0) || (((x_9 + (-1.0 * _x_x_15)) == -11.0) || (((x_8 + (-1.0 * _x_x_15)) == -10.0) || (((x_7 + (-1.0 * _x_x_15)) == -5.0) || (((x_6 + (-1.0 * _x_x_15)) == -19.0) || (((x_1 + (-1.0 * _x_x_15)) == -13.0) || ((x_4 + (-1.0 * _x_x_15)) == -6.0)))))))))))))))))) && ((((x_30 + (-1.0 * _x_x_16)) <= -9.0) && (((x_29 + (-1.0 * _x_x_16)) <= -7.0) && (((x_28 + (-1.0 * _x_x_16)) <= -18.0) && (((x_27 + (-1.0 * _x_x_16)) <= -12.0) && (((x_24 + (-1.0 * _x_x_16)) <= -16.0) && (((x_22 + (-1.0 * _x_x_16)) <= -3.0) && (((x_19 + (-1.0 * _x_x_16)) <= -14.0) && (((x_18 + (-1.0 * _x_x_16)) <= -6.0) && (((x_15 + (-1.0 * _x_x_16)) <= -3.0) && (((x_12 + (-1.0 * _x_x_16)) <= -16.0) && (((x_11 + (-1.0 * _x_x_16)) <= -12.0) && (((x_9 + (-1.0 * _x_x_16)) <= -1.0) && (((x_7 + (-1.0 * _x_x_16)) <= -3.0) && (((x_4 + (-1.0 * _x_x_16)) <= -19.0) && (((x_0 + (-1.0 * _x_x_16)) <= -8.0) && ((x_2 + (-1.0 * _x_x_16)) <= -7.0)))))))))))))))) && (((x_30 + (-1.0 * _x_x_16)) == -9.0) || (((x_29 + (-1.0 * _x_x_16)) == -7.0) || (((x_28 + (-1.0 * _x_x_16)) == -18.0) || (((x_27 + (-1.0 * _x_x_16)) == -12.0) || (((x_24 + (-1.0 * _x_x_16)) == -16.0) || (((x_22 + (-1.0 * _x_x_16)) == -3.0) || (((x_19 + (-1.0 * _x_x_16)) == -14.0) || (((x_18 + (-1.0 * _x_x_16)) == -6.0) || (((x_15 + (-1.0 * _x_x_16)) == -3.0) || (((x_12 + (-1.0 * _x_x_16)) == -16.0) || (((x_11 + (-1.0 * _x_x_16)) == -12.0) || (((x_9 + (-1.0 * _x_x_16)) == -1.0) || (((x_7 + (-1.0 * _x_x_16)) == -3.0) || (((x_4 + (-1.0 * _x_x_16)) == -19.0) || (((x_0 + (-1.0 * _x_x_16)) == -8.0) || ((x_2 + (-1.0 * _x_x_16)) == -7.0)))))))))))))))))) && ((((x_27 + (-1.0 * _x_x_17)) <= -20.0) && (((x_26 + (-1.0 * _x_x_17)) <= -10.0) && (((x_24 + (-1.0 * _x_x_17)) <= -16.0) && (((x_23 + (-1.0 * _x_x_17)) <= -18.0) && (((x_22 + (-1.0 * _x_x_17)) <= -3.0) && (((x_21 + (-1.0 * _x_x_17)) <= -19.0) && (((x_18 + (-1.0 * _x_x_17)) <= -6.0) && (((x_17 + (-1.0 * _x_x_17)) <= -8.0) && (((x_16 + (-1.0 * _x_x_17)) <= -3.0) && (((x_15 + (-1.0 * _x_x_17)) <= -12.0) && (((x_12 + (-1.0 * _x_x_17)) <= -4.0) && (((x_11 + (-1.0 * _x_x_17)) <= -2.0) && (((x_10 + (-1.0 * _x_x_17)) <= -8.0) && (((x_9 + (-1.0 * _x_x_17)) <= -12.0) && (((x_0 + (-1.0 * _x_x_17)) <= -5.0) && ((x_5 + (-1.0 * _x_x_17)) <= -17.0)))))))))))))))) && (((x_27 + (-1.0 * _x_x_17)) == -20.0) || (((x_26 + (-1.0 * _x_x_17)) == -10.0) || (((x_24 + (-1.0 * _x_x_17)) == -16.0) || (((x_23 + (-1.0 * _x_x_17)) == -18.0) || (((x_22 + (-1.0 * _x_x_17)) == -3.0) || (((x_21 + (-1.0 * _x_x_17)) == -19.0) || (((x_18 + (-1.0 * _x_x_17)) == -6.0) || (((x_17 + (-1.0 * _x_x_17)) == -8.0) || (((x_16 + (-1.0 * _x_x_17)) == -3.0) || (((x_15 + (-1.0 * _x_x_17)) == -12.0) || (((x_12 + (-1.0 * _x_x_17)) == -4.0) || (((x_11 + (-1.0 * _x_x_17)) == -2.0) || (((x_10 + (-1.0 * _x_x_17)) == -8.0) || (((x_9 + (-1.0 * _x_x_17)) == -12.0) || (((x_0 + (-1.0 * _x_x_17)) == -5.0) || ((x_5 + (-1.0 * _x_x_17)) == -17.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_18)) <= -16.0) && (((x_30 + (-1.0 * _x_x_18)) <= -17.0) && (((x_27 + (-1.0 * _x_x_18)) <= -15.0) && (((x_26 + (-1.0 * _x_x_18)) <= -13.0) && (((x_24 + (-1.0 * _x_x_18)) <= -15.0) && (((x_22 + (-1.0 * _x_x_18)) <= -8.0) && (((x_21 + (-1.0 * _x_x_18)) <= -12.0) && (((x_19 + (-1.0 * _x_x_18)) <= -16.0) && (((x_16 + (-1.0 * _x_x_18)) <= -10.0) && (((x_14 + (-1.0 * _x_x_18)) <= -13.0) && (((x_12 + (-1.0 * _x_x_18)) <= -12.0) && (((x_10 + (-1.0 * _x_x_18)) <= -10.0) && (((x_9 + (-1.0 * _x_x_18)) <= -13.0) && (((x_8 + (-1.0 * _x_x_18)) <= -8.0) && (((x_0 + (-1.0 * _x_x_18)) <= -9.0) && ((x_1 + (-1.0 * _x_x_18)) <= -3.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_18)) == -16.0) || (((x_30 + (-1.0 * _x_x_18)) == -17.0) || (((x_27 + (-1.0 * _x_x_18)) == -15.0) || (((x_26 + (-1.0 * _x_x_18)) == -13.0) || (((x_24 + (-1.0 * _x_x_18)) == -15.0) || (((x_22 + (-1.0 * _x_x_18)) == -8.0) || (((x_21 + (-1.0 * _x_x_18)) == -12.0) || (((x_19 + (-1.0 * _x_x_18)) == -16.0) || (((x_16 + (-1.0 * _x_x_18)) == -10.0) || (((x_14 + (-1.0 * _x_x_18)) == -13.0) || (((x_12 + (-1.0 * _x_x_18)) == -12.0) || (((x_10 + (-1.0 * _x_x_18)) == -10.0) || (((x_9 + (-1.0 * _x_x_18)) == -13.0) || (((x_8 + (-1.0 * _x_x_18)) == -8.0) || (((x_0 + (-1.0 * _x_x_18)) == -9.0) || ((x_1 + (-1.0 * _x_x_18)) == -3.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_19)) <= -4.0) && (((x_30 + (-1.0 * _x_x_19)) <= -20.0) && (((x_29 + (-1.0 * _x_x_19)) <= -10.0) && (((x_27 + (-1.0 * _x_x_19)) <= -17.0) && (((x_25 + (-1.0 * _x_x_19)) <= -2.0) && (((x_23 + (-1.0 * _x_x_19)) <= -2.0) && (((x_22 + (-1.0 * _x_x_19)) <= -8.0) && (((x_21 + (-1.0 * _x_x_19)) <= -3.0) && (((x_18 + (-1.0 * _x_x_19)) <= -3.0) && (((x_16 + (-1.0 * _x_x_19)) <= -15.0) && (((x_15 + (-1.0 * _x_x_19)) <= -16.0) && (((x_14 + (-1.0 * _x_x_19)) <= -17.0) && (((x_13 + (-1.0 * _x_x_19)) <= -15.0) && (((x_4 + (-1.0 * _x_x_19)) <= -14.0) && (((x_0 + (-1.0 * _x_x_19)) <= -8.0) && ((x_1 + (-1.0 * _x_x_19)) <= -2.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_19)) == -4.0) || (((x_30 + (-1.0 * _x_x_19)) == -20.0) || (((x_29 + (-1.0 * _x_x_19)) == -10.0) || (((x_27 + (-1.0 * _x_x_19)) == -17.0) || (((x_25 + (-1.0 * _x_x_19)) == -2.0) || (((x_23 + (-1.0 * _x_x_19)) == -2.0) || (((x_22 + (-1.0 * _x_x_19)) == -8.0) || (((x_21 + (-1.0 * _x_x_19)) == -3.0) || (((x_18 + (-1.0 * _x_x_19)) == -3.0) || (((x_16 + (-1.0 * _x_x_19)) == -15.0) || (((x_15 + (-1.0 * _x_x_19)) == -16.0) || (((x_14 + (-1.0 * _x_x_19)) == -17.0) || (((x_13 + (-1.0 * _x_x_19)) == -15.0) || (((x_4 + (-1.0 * _x_x_19)) == -14.0) || (((x_0 + (-1.0 * _x_x_19)) == -8.0) || ((x_1 + (-1.0 * _x_x_19)) == -2.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_20)) <= -3.0) && (((x_30 + (-1.0 * _x_x_20)) <= -3.0) && (((x_27 + (-1.0 * _x_x_20)) <= -5.0) && (((x_20 + (-1.0 * _x_x_20)) <= -3.0) && (((x_16 + (-1.0 * _x_x_20)) <= -3.0) && (((x_15 + (-1.0 * _x_x_20)) <= -6.0) && (((x_14 + (-1.0 * _x_x_20)) <= -17.0) && (((x_13 + (-1.0 * _x_x_20)) <= -15.0) && (((x_12 + (-1.0 * _x_x_20)) <= -3.0) && (((x_11 + (-1.0 * _x_x_20)) <= -13.0) && (((x_9 + (-1.0 * _x_x_20)) <= -16.0) && (((x_6 + (-1.0 * _x_x_20)) <= -14.0) && (((x_5 + (-1.0 * _x_x_20)) <= -18.0) && (((x_4 + (-1.0 * _x_x_20)) <= -20.0) && (((x_0 + (-1.0 * _x_x_20)) <= -20.0) && ((x_3 + (-1.0 * _x_x_20)) <= -4.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_20)) == -3.0) || (((x_30 + (-1.0 * _x_x_20)) == -3.0) || (((x_27 + (-1.0 * _x_x_20)) == -5.0) || (((x_20 + (-1.0 * _x_x_20)) == -3.0) || (((x_16 + (-1.0 * _x_x_20)) == -3.0) || (((x_15 + (-1.0 * _x_x_20)) == -6.0) || (((x_14 + (-1.0 * _x_x_20)) == -17.0) || (((x_13 + (-1.0 * _x_x_20)) == -15.0) || (((x_12 + (-1.0 * _x_x_20)) == -3.0) || (((x_11 + (-1.0 * _x_x_20)) == -13.0) || (((x_9 + (-1.0 * _x_x_20)) == -16.0) || (((x_6 + (-1.0 * _x_x_20)) == -14.0) || (((x_5 + (-1.0 * _x_x_20)) == -18.0) || (((x_4 + (-1.0 * _x_x_20)) == -20.0) || (((x_0 + (-1.0 * _x_x_20)) == -20.0) || ((x_3 + (-1.0 * _x_x_20)) == -4.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_21)) <= -9.0) && (((x_30 + (-1.0 * _x_x_21)) <= -19.0) && (((x_27 + (-1.0 * _x_x_21)) <= -5.0) && (((x_26 + (-1.0 * _x_x_21)) <= -5.0) && (((x_24 + (-1.0 * _x_x_21)) <= -9.0) && (((x_23 + (-1.0 * _x_x_21)) <= -12.0) && (((x_21 + (-1.0 * _x_x_21)) <= -11.0) && (((x_19 + (-1.0 * _x_x_21)) <= -3.0) && (((x_18 + (-1.0 * _x_x_21)) <= -4.0) && (((x_17 + (-1.0 * _x_x_21)) <= -17.0) && (((x_15 + (-1.0 * _x_x_21)) <= -19.0) && (((x_10 + (-1.0 * _x_x_21)) <= -10.0) && (((x_8 + (-1.0 * _x_x_21)) <= -9.0) && (((x_5 + (-1.0 * _x_x_21)) <= -20.0) && (((x_0 + (-1.0 * _x_x_21)) <= -9.0) && ((x_4 + (-1.0 * _x_x_21)) <= -4.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_21)) == -9.0) || (((x_30 + (-1.0 * _x_x_21)) == -19.0) || (((x_27 + (-1.0 * _x_x_21)) == -5.0) || (((x_26 + (-1.0 * _x_x_21)) == -5.0) || (((x_24 + (-1.0 * _x_x_21)) == -9.0) || (((x_23 + (-1.0 * _x_x_21)) == -12.0) || (((x_21 + (-1.0 * _x_x_21)) == -11.0) || (((x_19 + (-1.0 * _x_x_21)) == -3.0) || (((x_18 + (-1.0 * _x_x_21)) == -4.0) || (((x_17 + (-1.0 * _x_x_21)) == -17.0) || (((x_15 + (-1.0 * _x_x_21)) == -19.0) || (((x_10 + (-1.0 * _x_x_21)) == -10.0) || (((x_8 + (-1.0 * _x_x_21)) == -9.0) || (((x_5 + (-1.0 * _x_x_21)) == -20.0) || (((x_0 + (-1.0 * _x_x_21)) == -9.0) || ((x_4 + (-1.0 * _x_x_21)) == -4.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_22)) <= -9.0) && (((x_27 + (-1.0 * _x_x_22)) <= -5.0) && (((x_24 + (-1.0 * _x_x_22)) <= -2.0) && (((x_23 + (-1.0 * _x_x_22)) <= -19.0) && (((x_22 + (-1.0 * _x_x_22)) <= -16.0) && (((x_19 + (-1.0 * _x_x_22)) <= -20.0) && (((x_18 + (-1.0 * _x_x_22)) <= -10.0) && (((x_17 + (-1.0 * _x_x_22)) <= -18.0) && (((x_16 + (-1.0 * _x_x_22)) <= -17.0) && (((x_15 + (-1.0 * _x_x_22)) <= -5.0) && (((x_13 + (-1.0 * _x_x_22)) <= -20.0) && (((x_12 + (-1.0 * _x_x_22)) <= -13.0) && (((x_6 + (-1.0 * _x_x_22)) <= -17.0) && (((x_5 + (-1.0 * _x_x_22)) <= -5.0) && (((x_2 + (-1.0 * _x_x_22)) <= -12.0) && ((x_4 + (-1.0 * _x_x_22)) <= -18.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_22)) == -9.0) || (((x_27 + (-1.0 * _x_x_22)) == -5.0) || (((x_24 + (-1.0 * _x_x_22)) == -2.0) || (((x_23 + (-1.0 * _x_x_22)) == -19.0) || (((x_22 + (-1.0 * _x_x_22)) == -16.0) || (((x_19 + (-1.0 * _x_x_22)) == -20.0) || (((x_18 + (-1.0 * _x_x_22)) == -10.0) || (((x_17 + (-1.0 * _x_x_22)) == -18.0) || (((x_16 + (-1.0 * _x_x_22)) == -17.0) || (((x_15 + (-1.0 * _x_x_22)) == -5.0) || (((x_13 + (-1.0 * _x_x_22)) == -20.0) || (((x_12 + (-1.0 * _x_x_22)) == -13.0) || (((x_6 + (-1.0 * _x_x_22)) == -17.0) || (((x_5 + (-1.0 * _x_x_22)) == -5.0) || (((x_2 + (-1.0 * _x_x_22)) == -12.0) || ((x_4 + (-1.0 * _x_x_22)) == -18.0)))))))))))))))))) && ((((x_30 + (-1.0 * _x_x_23)) <= -18.0) && (((x_28 + (-1.0 * _x_x_23)) <= -2.0) && (((x_27 + (-1.0 * _x_x_23)) <= -7.0) && (((x_24 + (-1.0 * _x_x_23)) <= -19.0) && (((x_22 + (-1.0 * _x_x_23)) <= -1.0) && (((x_21 + (-1.0 * _x_x_23)) <= -20.0) && (((x_17 + (-1.0 * _x_x_23)) <= -2.0) && (((x_15 + (-1.0 * _x_x_23)) <= -17.0) && (((x_14 + (-1.0 * _x_x_23)) <= -13.0) && (((x_12 + (-1.0 * _x_x_23)) <= -3.0) && (((x_11 + (-1.0 * _x_x_23)) <= -2.0) && (((x_10 + (-1.0 * _x_x_23)) <= -8.0) && (((x_8 + (-1.0 * _x_x_23)) <= -11.0) && (((x_4 + (-1.0 * _x_x_23)) <= -17.0) && (((x_1 + (-1.0 * _x_x_23)) <= -5.0) && ((x_3 + (-1.0 * _x_x_23)) <= -9.0)))))))))))))))) && (((x_30 + (-1.0 * _x_x_23)) == -18.0) || (((x_28 + (-1.0 * _x_x_23)) == -2.0) || (((x_27 + (-1.0 * _x_x_23)) == -7.0) || (((x_24 + (-1.0 * _x_x_23)) == -19.0) || (((x_22 + (-1.0 * _x_x_23)) == -1.0) || (((x_21 + (-1.0 * _x_x_23)) == -20.0) || (((x_17 + (-1.0 * _x_x_23)) == -2.0) || (((x_15 + (-1.0 * _x_x_23)) == -17.0) || (((x_14 + (-1.0 * _x_x_23)) == -13.0) || (((x_12 + (-1.0 * _x_x_23)) == -3.0) || (((x_11 + (-1.0 * _x_x_23)) == -2.0) || (((x_10 + (-1.0 * _x_x_23)) == -8.0) || (((x_8 + (-1.0 * _x_x_23)) == -11.0) || (((x_4 + (-1.0 * _x_x_23)) == -17.0) || (((x_1 + (-1.0 * _x_x_23)) == -5.0) || ((x_3 + (-1.0 * _x_x_23)) == -9.0)))))))))))))))))) && ((((x_30 + (-1.0 * _x_x_24)) <= -20.0) && (((x_29 + (-1.0 * _x_x_24)) <= -19.0) && (((x_21 + (-1.0 * _x_x_24)) <= -10.0) && (((x_20 + (-1.0 * _x_x_24)) <= -10.0) && (((x_14 + (-1.0 * _x_x_24)) <= -4.0) && (((x_13 + (-1.0 * _x_x_24)) <= -20.0) && (((x_12 + (-1.0 * _x_x_24)) <= -3.0) && (((x_10 + (-1.0 * _x_x_24)) <= -10.0) && (((x_9 + (-1.0 * _x_x_24)) <= -14.0) && (((x_8 + (-1.0 * _x_x_24)) <= -2.0) && (((x_7 + (-1.0 * _x_x_24)) <= -9.0) && (((x_6 + (-1.0 * _x_x_24)) <= -16.0) && (((x_5 + (-1.0 * _x_x_24)) <= -14.0) && (((x_4 + (-1.0 * _x_x_24)) <= -8.0) && (((x_2 + (-1.0 * _x_x_24)) <= -7.0) && ((x_3 + (-1.0 * _x_x_24)) <= -19.0)))))))))))))))) && (((x_30 + (-1.0 * _x_x_24)) == -20.0) || (((x_29 + (-1.0 * _x_x_24)) == -19.0) || (((x_21 + (-1.0 * _x_x_24)) == -10.0) || (((x_20 + (-1.0 * _x_x_24)) == -10.0) || (((x_14 + (-1.0 * _x_x_24)) == -4.0) || (((x_13 + (-1.0 * _x_x_24)) == -20.0) || (((x_12 + (-1.0 * _x_x_24)) == -3.0) || (((x_10 + (-1.0 * _x_x_24)) == -10.0) || (((x_9 + (-1.0 * _x_x_24)) == -14.0) || (((x_8 + (-1.0 * _x_x_24)) == -2.0) || (((x_7 + (-1.0 * _x_x_24)) == -9.0) || (((x_6 + (-1.0 * _x_x_24)) == -16.0) || (((x_5 + (-1.0 * _x_x_24)) == -14.0) || (((x_4 + (-1.0 * _x_x_24)) == -8.0) || (((x_2 + (-1.0 * _x_x_24)) == -7.0) || ((x_3 + (-1.0 * _x_x_24)) == -19.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_25)) <= -12.0) && (((x_30 + (-1.0 * _x_x_25)) <= -16.0) && (((x_28 + (-1.0 * _x_x_25)) <= -14.0) && (((x_26 + (-1.0 * _x_x_25)) <= -7.0) && (((x_24 + (-1.0 * _x_x_25)) <= -11.0) && (((x_22 + (-1.0 * _x_x_25)) <= -9.0) && (((x_21 + (-1.0 * _x_x_25)) <= -19.0) && (((x_18 + (-1.0 * _x_x_25)) <= -8.0) && (((x_15 + (-1.0 * _x_x_25)) <= -18.0) && (((x_14 + (-1.0 * _x_x_25)) <= -20.0) && (((x_13 + (-1.0 * _x_x_25)) <= -19.0) && (((x_12 + (-1.0 * _x_x_25)) <= -3.0) && (((x_7 + (-1.0 * _x_x_25)) <= -19.0) && (((x_5 + (-1.0 * _x_x_25)) <= -19.0) && (((x_0 + (-1.0 * _x_x_25)) <= -18.0) && ((x_3 + (-1.0 * _x_x_25)) <= -3.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_25)) == -12.0) || (((x_30 + (-1.0 * _x_x_25)) == -16.0) || (((x_28 + (-1.0 * _x_x_25)) == -14.0) || (((x_26 + (-1.0 * _x_x_25)) == -7.0) || (((x_24 + (-1.0 * _x_x_25)) == -11.0) || (((x_22 + (-1.0 * _x_x_25)) == -9.0) || (((x_21 + (-1.0 * _x_x_25)) == -19.0) || (((x_18 + (-1.0 * _x_x_25)) == -8.0) || (((x_15 + (-1.0 * _x_x_25)) == -18.0) || (((x_14 + (-1.0 * _x_x_25)) == -20.0) || (((x_13 + (-1.0 * _x_x_25)) == -19.0) || (((x_12 + (-1.0 * _x_x_25)) == -3.0) || (((x_7 + (-1.0 * _x_x_25)) == -19.0) || (((x_5 + (-1.0 * _x_x_25)) == -19.0) || (((x_0 + (-1.0 * _x_x_25)) == -18.0) || ((x_3 + (-1.0 * _x_x_25)) == -3.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_26)) <= -4.0) && (((x_30 + (-1.0 * _x_x_26)) <= -17.0) && (((x_27 + (-1.0 * _x_x_26)) <= -6.0) && (((x_25 + (-1.0 * _x_x_26)) <= -11.0) && (((x_24 + (-1.0 * _x_x_26)) <= -17.0) && (((x_22 + (-1.0 * _x_x_26)) <= -8.0) && (((x_19 + (-1.0 * _x_x_26)) <= -19.0) && (((x_18 + (-1.0 * _x_x_26)) <= -4.0) && (((x_17 + (-1.0 * _x_x_26)) <= -20.0) && (((x_15 + (-1.0 * _x_x_26)) <= -8.0) && (((x_14 + (-1.0 * _x_x_26)) <= -19.0) && (((x_13 + (-1.0 * _x_x_26)) <= -14.0) && (((x_9 + (-1.0 * _x_x_26)) <= -7.0) && (((x_6 + (-1.0 * _x_x_26)) <= -20.0) && (((x_1 + (-1.0 * _x_x_26)) <= -14.0) && ((x_5 + (-1.0 * _x_x_26)) <= -14.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_26)) == -4.0) || (((x_30 + (-1.0 * _x_x_26)) == -17.0) || (((x_27 + (-1.0 * _x_x_26)) == -6.0) || (((x_25 + (-1.0 * _x_x_26)) == -11.0) || (((x_24 + (-1.0 * _x_x_26)) == -17.0) || (((x_22 + (-1.0 * _x_x_26)) == -8.0) || (((x_19 + (-1.0 * _x_x_26)) == -19.0) || (((x_18 + (-1.0 * _x_x_26)) == -4.0) || (((x_17 + (-1.0 * _x_x_26)) == -20.0) || (((x_15 + (-1.0 * _x_x_26)) == -8.0) || (((x_14 + (-1.0 * _x_x_26)) == -19.0) || (((x_13 + (-1.0 * _x_x_26)) == -14.0) || (((x_9 + (-1.0 * _x_x_26)) == -7.0) || (((x_6 + (-1.0 * _x_x_26)) == -20.0) || (((x_1 + (-1.0 * _x_x_26)) == -14.0) || ((x_5 + (-1.0 * _x_x_26)) == -14.0)))))))))))))))))) && ((((x_31 + (-1.0 * _x_x_27)) <= -17.0) && (((x_30 + (-1.0 * _x_x_27)) <= -10.0) && (((x_29 + (-1.0 * _x_x_27)) <= -11.0) && (((x_26 + (-1.0 * _x_x_27)) <= -10.0) && (((x_24 + (-1.0 * _x_x_27)) <= -20.0) && (((x_23 + (-1.0 * _x_x_27)) <= -10.0) && (((x_20 + (-1.0 * _x_x_27)) <= -2.0) && (((x_16 + (-1.0 * _x_x_27)) <= -20.0) && (((x_15 + (-1.0 * _x_x_27)) <= -9.0) && (((x_13 + (-1.0 * _x_x_27)) <= -15.0) && (((x_11 + (-1.0 * _x_x_27)) <= -13.0) && (((x_6 + (-1.0 * _x_x_27)) <= -15.0) && (((x_3 + (-1.0 * _x_x_27)) <= -10.0) && (((x_2 + (-1.0 * _x_x_27)) <= -17.0) && (((x_0 + (-1.0 * _x_x_27)) <= -17.0) && ((x_1 + (-1.0 * _x_x_27)) <= -6.0)))))))))))))))) && (((x_31 + (-1.0 * _x_x_27)) == -17.0) || (((x_30 + (-1.0 * _x_x_27)) == -10.0) || (((x_29 + (-1.0 * _x_x_27)) == -11.0) || (((x_26 + (-1.0 * _x_x_27)) == -10.0) || (((x_24 + (-1.0 * _x_x_27)) == -20.0) || (((x_23 + (-1.0 * _x_x_27)) == -10.0) || (((x_20 + (-1.0 * _x_x_27)) == -2.0) || (((x_16 + (-1.0 * _x_x_27)) == -20.0) || (((x_15 + (-1.0 * _x_x_27)) == -9.0) || (((x_13 + (-1.0 * _x_x_27)) == -15.0) || (((x_11 + (-1.0 * _x_x_27)) == -13.0) || (((x_6 + (-1.0 * _x_x_27)) == -15.0) || (((x_3 + (-1.0 * _x_x_27)) == -10.0) || (((x_2 + (-1.0 * _x_x_27)) == -17.0) || (((x_0 + (-1.0 * _x_x_27)) == -17.0) || ((x_1 + (-1.0 * _x_x_27)) == -6.0)))))))))))))))))) && ((((x_30 + (-1.0 * _x_x_28)) <= -11.0) && (((x_29 + (-1.0 * _x_x_28)) <= -19.0) && (((x_28 + (-1.0 * _x_x_28)) <= -19.0) && (((x_26 + (-1.0 * _x_x_28)) <= -20.0) && (((x_25 + (-1.0 * _x_x_28)) <= -13.0) && (((x_18 + (-1.0 * _x_x_28)) <= -2.0) && (((x_16 + (-1.0 * _x_x_28)) <= -1.0) && (((x_14 + (-1.0 * _x_x_28)) <= -6.0) && (((x_13 + (-1.0 * _x_x_28)) <= -12.0) && (((x_12 + (-1.0 * _x_x_28)) <= -20.0) && (((x_11 + (-1.0 * _x_x_28)) <= -12.0) && (((x_9 + (-1.0 * _x_x_28)) <= -4.0) && (((x_7 + (-1.0 * _x_x_28)) <= -11.0) && (((x_5 + (-1.0 * _x_x_28)) <= -17.0) && (((x_0 + (-1.0 * _x_x_28)) <= -18.0) && ((x_2 + (-1.0 * _x_x_28)) <= -1.0)))))))))))))))) && (((x_30 + (-1.0 * _x_x_28)) == -11.0) || (((x_29 + (-1.0 * _x_x_28)) == -19.0) || (((x_28 + (-1.0 * _x_x_28)) == -19.0) || (((x_26 + (-1.0 * _x_x_28)) == -20.0) || (((x_25 + (-1.0 * _x_x_28)) == -13.0) || (((x_18 + (-1.0 * _x_x_28)) == -2.0) || (((x_16 + (-1.0 * _x_x_28)) == -1.0) || (((x_14 + (-1.0 * _x_x_28)) == -6.0) || (((x_13 + (-1.0 * _x_x_28)) == -12.0) || (((x_12 + (-1.0 * _x_x_28)) == -20.0) || (((x_11 + (-1.0 * _x_x_28)) == -12.0) || (((x_9 + (-1.0 * _x_x_28)) == -4.0) || (((x_7 + (-1.0 * _x_x_28)) == -11.0) || (((x_5 + (-1.0 * _x_x_28)) == -17.0) || (((x_0 + (-1.0 * _x_x_28)) == -18.0) || ((x_2 + (-1.0 * _x_x_28)) == -1.0)))))))))))))))))) && ((((x_30 + (-1.0 * _x_x_29)) <= -19.0) && (((x_29 + (-1.0 * _x_x_29)) <= -11.0) && (((x_27 + (-1.0 * _x_x_29)) <= -9.0) && (((x_25 + (-1.0 * _x_x_29)) <= -1.0) && (((x_24 + (-1.0 * _x_x_29)) <= -11.0) && (((x_22 + (-1.0 * _x_x_29)) <= -17.0) && (((x_21 + (-1.0 * _x_x_29)) <= -6.0) && (((x_19 + (-1.0 * _x_x_29)) <= -16.0) && (((x_17 + (-1.0 * _x_x_29)) <= -8.0) && (((x_16 + (-1.0 * _x_x_29)) <= -13.0) && (((x_11 + (-1.0 * _x_x_29)) <= -14.0) && (((x_10 + (-1.0 * _x_x_29)) <= -3.0) && (((x_9 + (-1.0 * _x_x_29)) <= -10.0) && (((x_8 + (-1.0 * _x_x_29)) <= -6.0) && (((x_0 + (-1.0 * _x_x_29)) <= -6.0) && ((x_2 + (-1.0 * _x_x_29)) <= -17.0)))))))))))))))) && (((x_30 + (-1.0 * _x_x_29)) == -19.0) || (((x_29 + (-1.0 * _x_x_29)) == -11.0) || (((x_27 + (-1.0 * _x_x_29)) == -9.0) || (((x_25 + (-1.0 * _x_x_29)) == -1.0) || (((x_24 + (-1.0 * _x_x_29)) == -11.0) || (((x_22 + (-1.0 * _x_x_29)) == -17.0) || (((x_21 + (-1.0 * _x_x_29)) == -6.0) || (((x_19 + (-1.0 * _x_x_29)) == -16.0) || (((x_17 + (-1.0 * _x_x_29)) == -8.0) || (((x_16 + (-1.0 * _x_x_29)) == -13.0) || (((x_11 + (-1.0 * _x_x_29)) == -14.0) || (((x_10 + (-1.0 * _x_x_29)) == -3.0) || (((x_9 + (-1.0 * _x_x_29)) == -10.0) || (((x_8 + (-1.0 * _x_x_29)) == -6.0) || (((x_0 + (-1.0 * _x_x_29)) == -6.0) || ((x_2 + (-1.0 * _x_x_29)) == -17.0)))))))))))))))))) && ((((x_30 + (-1.0 * _x_x_30)) <= -15.0) && (((x_28 + (-1.0 * _x_x_30)) <= -3.0) && (((x_25 + (-1.0 * _x_x_30)) <= -14.0) && (((x_23 + (-1.0 * _x_x_30)) <= -20.0) && (((x_22 + (-1.0 * _x_x_30)) <= -13.0) && (((x_21 + (-1.0 * _x_x_30)) <= -4.0) && (((x_19 + (-1.0 * _x_x_30)) <= -1.0) && (((x_16 + (-1.0 * _x_x_30)) <= -3.0) && (((x_11 + (-1.0 * _x_x_30)) <= -11.0) && (((x_9 + (-1.0 * _x_x_30)) <= -7.0) && (((x_8 + (-1.0 * _x_x_30)) <= -16.0) && (((x_7 + (-1.0 * _x_x_30)) <= -12.0) && (((x_4 + (-1.0 * _x_x_30)) <= -10.0) && (((x_2 + (-1.0 * _x_x_30)) <= -2.0) && (((x_0 + (-1.0 * _x_x_30)) <= -8.0) && ((x_1 + (-1.0 * _x_x_30)) <= -1.0)))))))))))))))) && (((x_30 + (-1.0 * _x_x_30)) == -15.0) || (((x_28 + (-1.0 * _x_x_30)) == -3.0) || (((x_25 + (-1.0 * _x_x_30)) == -14.0) || (((x_23 + (-1.0 * _x_x_30)) == -20.0) || (((x_22 + (-1.0 * _x_x_30)) == -13.0) || (((x_21 + (-1.0 * _x_x_30)) == -4.0) || (((x_19 + (-1.0 * _x_x_30)) == -1.0) || (((x_16 + (-1.0 * _x_x_30)) == -3.0) || (((x_11 + (-1.0 * _x_x_30)) == -11.0) || (((x_9 + (-1.0 * _x_x_30)) == -7.0) || (((x_8 + (-1.0 * _x_x_30)) == -16.0) || (((x_7 + (-1.0 * _x_x_30)) == -12.0) || (((x_4 + (-1.0 * _x_x_30)) == -10.0) || (((x_2 + (-1.0 * _x_x_30)) == -2.0) || (((x_0 + (-1.0 * _x_x_30)) == -8.0) || ((x_1 + (-1.0 * _x_x_30)) == -1.0)))))))))))))))))) && ((((x_29 + (-1.0 * _x_x_31)) <= -11.0) && (((x_28 + (-1.0 * _x_x_31)) <= -18.0) && (((x_26 + (-1.0 * _x_x_31)) <= -8.0) && (((x_24 + (-1.0 * _x_x_31)) <= -18.0) && (((x_23 + (-1.0 * _x_x_31)) <= -20.0) && (((x_21 + (-1.0 * _x_x_31)) <= -19.0) && (((x_18 + (-1.0 * _x_x_31)) <= -12.0) && (((x_16 + (-1.0 * _x_x_31)) <= -13.0) && (((x_15 + (-1.0 * _x_x_31)) <= -4.0) && (((x_14 + (-1.0 * _x_x_31)) <= -2.0) && (((x_13 + (-1.0 * _x_x_31)) <= -16.0) && (((x_10 + (-1.0 * _x_x_31)) <= -9.0) && (((x_9 + (-1.0 * _x_x_31)) <= -16.0) && (((x_4 + (-1.0 * _x_x_31)) <= -8.0) && (((x_1 + (-1.0 * _x_x_31)) <= -19.0) && ((x_3 + (-1.0 * _x_x_31)) <= -4.0)))))))))))))))) && (((x_29 + (-1.0 * _x_x_31)) == -11.0) || (((x_28 + (-1.0 * _x_x_31)) == -18.0) || (((x_26 + (-1.0 * _x_x_31)) == -8.0) || (((x_24 + (-1.0 * _x_x_31)) == -18.0) || (((x_23 + (-1.0 * _x_x_31)) == -20.0) || (((x_21 + (-1.0 * _x_x_31)) == -19.0) || (((x_18 + (-1.0 * _x_x_31)) == -12.0) || (((x_16 + (-1.0 * _x_x_31)) == -13.0) || (((x_15 + (-1.0 * _x_x_31)) == -4.0) || (((x_14 + (-1.0 * _x_x_31)) == -2.0) || (((x_13 + (-1.0 * _x_x_31)) == -16.0) || (((x_10 + (-1.0 * _x_x_31)) == -9.0) || (((x_9 + (-1.0 * _x_x_31)) == -16.0) || (((x_4 + (-1.0 * _x_x_31)) == -8.0) || (((x_1 + (-1.0 * _x_x_31)) == -19.0) || ((x_3 + (-1.0 * _x_x_31)) == -4.0)))))))))))))))))) && ((((_EL_U_3078 == ((_x__EL_U_3078 && ( !(_x__EL_U_3076 || ( !((_x_x_9 + (-1.0 * _x_x_18)) <= 19.0))))) || ( !_x__EL_X_3071))) && ((_EL_X_3071 == (10.0 <= (_x_x_1 + (-1.0 * _x_x_13)))) && (_EL_U_3076 == (_x__EL_U_3076 || ( !((_x_x_9 + (-1.0 * _x_x_18)) <= 19.0)))))) && (_x__J3099 == (( !(_J3099 && _J3108)) && ((_J3099 && _J3108) || ((( !((x_9 + (-1.0 * x_18)) <= 19.0)) || ( !(( !((x_9 + (-1.0 * x_18)) <= 19.0)) || _EL_U_3076))) || _J3099))))) && (_x__J3108 == (( !(_J3099 && _J3108)) && ((_J3099 && _J3108) || ((( !_EL_X_3071) || ( !(( !_EL_X_3071) || (_EL_U_3078 && ( !(( !((x_9 + (-1.0 * x_18)) <= 19.0)) || _EL_U_3076)))))) || _J3108))))));
_J3108 = _x__J3108;
_J3099 = _x__J3099;
_EL_U_3076 = _x__EL_U_3076;
x_18 = _x_x_18;
x_9 = _x_x_9;
x_17 = _x_x_17;
_EL_U_3078 = _x__EL_U_3078;
_EL_X_3071 = _x__EL_X_3071;
x_0 = _x_x_0;
x_2 = _x_x_2;
x_3 = _x_x_3;
x_27 = _x_x_27;
x_7 = _x_x_7;
x_1 = _x_x_1;
x_8 = _x_x_8;
x_4 = _x_x_4;
x_6 = _x_x_6;
x_11 = _x_x_11;
x_10 = _x_x_10;
x_19 = _x_x_19;
x_13 = _x_x_13;
x_20 = _x_x_20;
x_22 = _x_x_22;
x_14 = _x_x_14;
x_15 = _x_x_15;
x_25 = _x_x_25;
x_16 = _x_x_16;
x_31 = _x_x_31;
x_30 = _x_x_30;
x_21 = _x_x_21;
x_5 = _x_x_5;
x_23 = _x_x_23;
x_24 = _x_x_24;
x_12 = _x_x_12;
x_26 = _x_x_26;
x_28 = _x_x_28;
x_29 = _x_x_29;
}
}
|
the_stack_data/115765890.c | #include <stdio.h>
int main() {
int a;
int b;
int c;
a = 1;
b = 5;
c = a + b;
return c;
}
|
the_stack_data/50137950.c | //ใformat bootloader sector
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <sys/stat.h>
#define err(...) \
fprintf(stderr, "sign error: "); \
fprintf(stderr, __VA_ARGS__); \
fprintf(stderr, "\n");
#define trace(...) \
fprintf(stderr, "sign: "); \
fprintf(stderr, __VA_ARGS__); \
fprintf(stderr, "\n");
int main(int argc, char **argv)
{
struct stat st;
if (argc != 3) {
err("usage: %s <input filename> <output filename>", argv[0]);
return -1;
}
if (stat(argv[1], &st) != 0) {
err("error opening file '%s': %s", argv[1], strerror(errno));
return -1;
}
trace("'%s' size: %ld bytes", argv[1], (long)st.st_size);
if (st.st_size > 510) {
err("size %ld greater than expected size 510", (long)st.st_size);
return -1;
}
char buf[512];
memset(buf, 0, sizeof(buf));
FILE *ifp = fopen(argv[1], "rb");
if (!ifp) {
err("unable to open file %s", argv[1]);
return -1;
}
int size = fread(buf, 1, st.st_size, ifp);
if (size != st.st_size) {
err("read '%s' error, size is %d", argv[1], size);
return -1;
}
fclose(ifp);
buf[510] = 0x55;
buf[511] = 0xAA;
FILE *ofp = fopen(argv[2], "wb+");
size = fwrite(buf, 1, 512, ofp);
if (size != 512) {
err("write '%s' error, size is %d", argv[2], size);
return -1;
}
fclose(ofp);
trace("build 512 bytes boot sector: '%s' success!", argv[2]);
return 0;
}
|
the_stack_data/859855.c | #include <limits.h>
int smallestRangeI(int *A, int ASize, int K)
{
int max = A[0], min = A[0];
for (int i = 0; i < ASize; ++i)
{
if (A[i] > max)
max = A[i];
else if (A[i] < min)
min = A[i];
}
int res = max - min - K * 2;
return res < 0 ? 0 : res;
} |
the_stack_data/232954525.c | /* APPLE LOCAL file 4182984 */
/* { dg-do run { target i?86-*-darwin* } } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O3" } */
typedef unsigned int UINT;
typedef unsigned long UINT32;
typedef unsigned long BOOL32;
typedef signed int SINT;
typedef int INT;
typedef unsigned char UINT8;
typedef unsigned long UInt32;
typedef unsigned int uint32_t;
typedef unsigned long BitParse_T;
struct XX
{
UINT8* dataEndPtr;
UINT32* bufferCurrentPtr;
UINT8 currentBitOffset;
UINT32 currentBits;
};
typedef struct XX XX;
UINT32 ZZZ(UINT32 x) __attribute__((noinline));
UINT32 ZZZ(UINT32 x) { return x; }
void FlushUserData(XX* thiss) __attribute__((noinline));
void FlushUserData(XX* thiss)
{
UINT ix;
BOOL32 fNextBitsLookLikeStartCode;
UINT32 currentBits;
SINT currentBitOffset;
UINT32* bufferCurrentPtr;
while(1){
{ INT zNumBytesInBuffer; {;}; zNumBytesInBuffer=( ( ( (UINT8*)(thiss->dataEndPtr) ) - ( (UINT8*)(thiss->bufferCurrentPtr) ) ) -( (thiss->currentBitOffset+7)>>3 ) ); {;}; if(zNumBytesInBuffer<(1000)+4){ ; } };
{ currentBits =thiss->currentBits; currentBitOffset=thiss->currentBitOffset; bufferCurrentPtr=thiss->bufferCurrentPtr; };
for(ix=0; ix<8; ix++){
{ UINT32 zData; { UINT zTmpOffset; zTmpOffset=(currentBitOffset)+(24); {;}; if(zTmpOffset<=32){ zData=(currentBits)>>(32 -(24)); }else{ UINT32 zTmpBits; zTmpBits=( (bufferCurrentPtr)[1] ); zTmpBits=((UInt32)(UInt32) (__builtin_constant_p(zTmpBits) ? ((((uint32_t)(zTmpBits) & 0xff000000) >> 24) | (((uint32_t)(zTmpBits) & 0x00ff0000) >> 8) | (((uint32_t)(zTmpBits) & 0x0000ff00) << 8) | (((uint32_t)(zTmpBits) & 0x000000ff) << 24)) : (__builtin_constant_p(zTmpBits) ? ((((uint32_t)(zTmpBits) & 0xff000000) >> 24) | (((uint32_t)(zTmpBits) & 0x00ff0000) >> 8) | (((uint32_t)(zTmpBits) & 0x0000ff00) << 8) | (((uint32_t)(zTmpBits) & 0x000000ff) << 24)) : ZZZ(zTmpBits)))); zData=((currentBits)>>(32 -(24))) |( zTmpBits >>(2*32 -zTmpOffset) ); } }; fNextBitsLookLikeStartCode=(zData==0x000001); };
if(fNextBitsLookLikeStartCode){
{ thiss->currentBits =currentBits; thiss->currentBitOffset=currentBitOffset; thiss->bufferCurrentPtr=( (UINT32*)(bufferCurrentPtr) ); }; return;
}
{ {;}; if( (currentBitOffset)<(32 -8) ){ (currentBitOffset) +=8; (currentBits )<<=8; }else{ BitParse_T zTmpBits; (currentBitOffset)-=(32 -8); zTmpBits=( *++(bufferCurrentPtr) ); zTmpBits=((UInt32)(UInt32) (__builtin_constant_p(zTmpBits) ? ((((uint32_t)(zTmpBits) & 0xff000000) >> 24) | (((uint32_t)(zTmpBits) & 0x00ff0000) >> 8) | (((uint32_t)(zTmpBits) & 0x0000ff00) << 8) | (((uint32_t)(zTmpBits) & 0x000000ff) << 24)) : (__builtin_constant_p(zTmpBits) ? ((((uint32_t)(zTmpBits) & 0xff000000) >> 24) | (((uint32_t)(zTmpBits) & 0x00ff0000) >> 8) | (((uint32_t)(zTmpBits) & 0x0000ff00) << 8) | (((uint32_t)(zTmpBits) & 0x000000ff) << 24)) : (zTmpBits)))); (currentBits) =zTmpBits<<(currentBitOffset); } };
}
{ thiss->currentBits =currentBits; thiss->currentBitOffset=currentBitOffset; thiss->bufferCurrentPtr=( (UINT32*)(bufferCurrentPtr) ); };
}
}
main() {
UINT8 s[] = "abcd";
UINT32 y;
UINT32* q = &y;
volatile struct XX p = { &s[0], q, 0, 0x100 };
/* This is the normal calling sequence, with 0 placed into EAX after
the stack is set up, so callee will crash if it uses EAX too soon. */
asm("movl %0, (%%esp)\n\t movl $0, %%eax\n\tcall _FlushUserData"
: : "r" (&p));
return 0;
}
|
the_stack_data/92327121.c | #include <stdio.h>
#include <stdlib.h>
int getRndNum(int nmbOfTurnouts) // Function to return a random number.
{
srand(time(NULL));
int rand_nbr = (rand()%nmbOfTurnouts);
return rand_nbr;
}
|
the_stack_data/29824826.c | float itof(int amount) {
return (float) amount;
}
|
the_stack_data/880891.c | #include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
int check_ip(char *ip,int converted);
int try(char *name);
int
main(int argc, char **argv)
{
if (argc == 2) {
return check_ip(argv[1],0);
} else {
printf("Will first try redlab, localhost, then a bogus host (bogushost)\n");
if (try("redlab") == 0 && try("localhost") == 0 && try("bogushost") == -1) {
printf("Ok\n");
return 0;
} else {
printf("Failed\n");
return -1;
}
}
}
int try(char *name) {
struct hostent *hp;
if (hp = gethostbyname(name)) {
return check_ip(hp->h_addr,1);
} else {
printf("could not even do a gethostbyname(%s)\n",name);
return -1;
}
}
int check_ip(char *ip, int converted) {
u_long addr;
struct hostent *hp;
char **p;
if (!converted) {
if ((int)(addr = inet_addr(ip)) == -1) {
(void) printf("IP-address must be of the form a.b.c.d\n");
return (2);
}
} else {
addr = *((long *)ip);
}
hp = gethostbyaddr((char *)&addr, sizeof (addr), AF_INET);
if (hp == NULL) {
(void) printf("host information for %s not found\n", ip);
return (3);
}
for (p = hp->h_addr_list; *p != 0; p++) {
struct in_addr in;
char **q;
(void) memcpy(&in.s_addr, *p, sizeof (in.s_addr));
(void) printf("%s\t%s", inet_ntoa(in), hp->h_name);
for (q = hp->h_aliases; *q != 0; q++)
(void) printf(" %s", *q);
(void) putchar('\n');
}
return (0);
}
|
the_stack_data/33636.c |
// Original test: 108
static void *ERR_PTR(long error) {
return (void *) error;
}
int main() {
long* acl; /*the type does not really matter*/
int retval = -5;
if (retval < 0) {
acl = ERR_PTR(retval);
}
return 0; // copy: retval and acl is out of scope, tranfer: acl out of scope
}
|
the_stack_data/14170.c | void assert(int cond) { if (!cond) { ERROR: return; } }
int main() {
int x;
for (int i=0; i<10; i++) {
x = 0;
}
assert(x == 0);
} |
the_stack_data/495010.c | #include <string.h>
#include <time.h>
#include <stdio.h>
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
static inline int tolower_ascii(int const c)
{
return (c >= 'A' && c <= 'Z') ? c - 'A' + 'a' : c;
}
unsigned long AlphaHash(const char *Text, size_t Length) /*{{{*/
{
/* This very simple hash function for the last 8 letters gives
very good performance on the debian package files */
if (Length > 8)
{
Text += (Length - 8);
Length = 8;
}
unsigned long Res = 0;
for (size_t i = 0; i < Length; ++i)
Res = ((unsigned long)(Text[i]) & 0xDF) ^ (Res << 1);
return Res & 0xFF;
}
unsigned long AlphaHash2(const char *Text, size_t Length)
{ /*{{{ */
/* This very simple hash function for the last 8 letters gives
very good performance on the debian package files */
if (Length > 8) {
Text += (Length - 8);
Length = 8;
}
unsigned long Res = 0;
switch (Length) {
case 8:
Res = ((unsigned long) (Text[8]) & 0xDF) ^ (Res << 1);
case 7:
Res = ((unsigned long) (Text[7]) & 0xDF) ^ (Res << 1);
case 6:
Res = ((unsigned long) (Text[6]) & 0xDF) ^ (Res << 1);
case 5:
Res = ((unsigned long) (Text[5]) & 0xDF) ^ (Res << 1);
case 4:
Res = ((unsigned long) (Text[4]) & 0xDF) ^ (Res << 1);
case 3:
Res = ((unsigned long) (Text[3]) & 0xDF) ^ (Res << 1);
case 2:
Res = ((unsigned long) (Text[2]) & 0xDF) ^ (Res << 1);
case 1:
Res = ((unsigned long) (Text[1]) & 0xDF) ^ (Res << 1);
}
return Res & 0xFF;
}
unsigned int DjbHash(const char *s, size_t l)
{
unsigned int r = 5381;
while (l-- > 0) {
r = 33 * r + *s++;
}
return r;
}
unsigned int DjbCase(const char *s, size_t l)
{
unsigned int r = 5381;
while (l-- > 0) {
r = 33 * r + tolower_ascii(*s++);
}
return r;
}
unsigned int DjbCase2(const char *s, size_t l)
{
unsigned int r = 5381;
while (l-- > 0) {
r = 33 * r + ((*s++) | 32);
}
return r;
}
|
the_stack_data/164201717.c | #include <stdio.h>
#include <string.h>
char max_name[25];
int max=0,total=0;
int main(){
int n;
scanf("%d",&n);
while(n--){
char name[25],isWestern,isCadre;
int ScoreInExam,ScoreInClass,articles;
scanf("%s%d%d %c %c%d",name,&ScoreInExam,&ScoreInClass,&isCadre,&isWestern,&articles);
int tot=0;
if(ScoreInExam>80 && articles>0)tot+=8000;
if(ScoreInExam>85 && ScoreInClass>80)tot+=4000;
if(ScoreInExam>90)tot+=2000;
if(ScoreInExam>85 && isWestern=='Y')tot+=1000;
if(ScoreInClass>80 && isCadre=='Y')tot+=850;
total+=tot;
if(tot>max){
strcpy(max_name,name);
max=tot;
}
}
printf("%s\n%d\n%d\n",max_name,max,total);
return 0;
}
|
the_stack_data/75136637.c | #include <stdio.h>
int main(void) {
float broj;
float ukupno = 0.f;
int br = 0;
FILE *dat = fopen("brojevi.txt", "r");
while (fscanf(dat, "%f", &broj) == 1) {
ukupno += broj;
br++;
}
fclose(dat);
if (br > 0) {
printf("%f", ukupno / (float)br);
} else {
printf("Nije ucitan ni jedan broj!\n");
}
return 0;
} |
the_stack_data/29826575.c | /*
Copyright 2012 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <sys/mman.h>
#include <asm/mman.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <time.h>
#include <malloc.h>
#include <string.h>
#include <unistd.h>
#include <syscall.h>
#include <stdlib.h>
#include <err.h>
#include <sched.h>
#include <getopt.h>
typedef unsigned long long u64;
#define DECLARE_ARGS(val, low, high) unsigned low, high
#define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32))
#define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high)
#define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high)
static inline unsigned long long _rdtsc(void)
{
DECLARE_ARGS(val, low, high);
asm volatile("rdtsc" : EAX_EDX_RET(val, low, high));
return EAX_EDX_VAL(val, low, high);
}
double drand48(void);
#define MAX_CPUS 2048
#define NR_CPU_BITS (MAX_CPUS>>3)
static int
pin_cpu(pid_t pid, unsigned int cpu)
{
unsigned long long my_mask[NR_CPU_BITS];
memset(my_mask, 0, sizeof(my_mask));
if (cpu >= MAX_CPUS)
errx(1, "this program supports only up to %d CPUs", MAX_CPUS);
my_mask[cpu>>6] = 1ULL << (cpu&63);
return syscall(__NR_sched_setaffinity, pid, sizeof(my_mask), &my_mask);
}
void rndm_list(int* list, int n)
{
int* l1,*l2;
int i,j,k, count, count2;
double val, tmp;
val = 0.;
l1 = (int*)malloc(n*sizeof(int));
l2 = (int*)malloc(n*sizeof(int));
for(i=0;i<100;i++)val+=drand48();
for(i=0;i<n-1;i++)
{
l1[i] = i+1;
l2[i] = -1;
}
count = n-1;
for(i=0; i<n-1; i++)
{
val = drand48()*(double)count;
j = (int) val;
// this should never happen...but...
while(j == count+1)
{
val = drand48()*(double)count;
j = val;
}
list[i] = l1[j];
l1[j] = -1;
count2 = 0;
for(k=0; k< count; k++)
{
if(l1[k] != -1)
{
l2[count2] = l1[k];
count2++;
}
}
count--;
for(k=0;k<count;k++)
{
l1[k] = l2[k];
}
}
list[n-1] = 0;
// for(k=0;k<n;k++)printf(" k = %d, list[k] = %d",k,list[k]);
// printf("\n");
}
#define COUNTER eax
#define MYPOINTER ebx
#define LENGTH ecx
unsigned int reader(int len, size_t * buf1)
{
unsigned int counter;
asm(
#ifdef L32
"movl %1, %%eax \n\t"
"movl %2, %%ecx \n\t"
"xorl %%ebx, %%ebx \n\t"
"LOOP: \n\t"
"inc %%ebx \n\t"
"mov (%%eax), %%eax \n\t"
#else
"movq %1, %%rax \n\t"
"movl %2, %%ecx \n\t"
"xorl %%ebx, %%ebx \n\t"
"LOOP: \n\t"
"inc %%ebx \n\t"
"mov (%%rax), %%rax \n\t"
#endif
"cmp %%ecx, %%ebx \n\t"
"jl LOOP \n\t"
"movl %%ebx, %0"
: "=r"(counter)
: "r"(buf1), "r"(len)
: "%eax", "%ecx"
);
return counter;
}
void usage()
{
fprintf(stderr," rndm_walker requires 6 arguments and has a seventh optional argument\n");
fprintf(stderr," -iN -i signifies intialization N indicates the core on which the buffer should be initialized\n");
fprintf(stderr," -rM -r signifies run M indicates which core the pointer walker should be executed on\n");
fprintf(stderr," -lN -l signifies lines N indicates the number of lines used in the pointer chase loop, this size controls in which level of cache/memory the buffer will reside\n");
fprintf(stderr," -sN -s signifies stride N indicates the number of pages in the stride. thus the stride = N*page_size + 64. N should be 0 to avoid DTLB effects\n");
fprintf(stderr," -SN -S signifies segments N indicates the number of segments that the buffer will be divided into.\n");
fprintf(stderr," The number of segments must be greater than the number of memory access streams the HW prefetcher can track for the randomization to defeat the HW prefetcher.\n");
fprintf(stderr," if it is set to 1 then the linked list will walk through the buffer in order. \n");
fprintf(stderr," This will yield an open page latency if the HW prefetchers are completely disabled and the buffer is much larger than the LLC.\n");
fprintf(stderr," if it is set to a reasonably large value (32/64) then the linked list will walk through the segments of the buffer in randomized order.\n");
fprintf(stderr," This will yield a closed dram latency if the HW prefetchers are enabled or disabled and the buffer is much larger than the LLC.\n");
fprintf(stderr," The line count must be a multiple of this value\n");
fprintf(stderr," -mN -m signifies multiplier N indicates the multiplying factor applied to the outer loop tripcount. \n");
fprintf(stderr," By default a total of 1.024 Billion iterations of the cacheline walk are executed. N >= 1\n");
fprintf(stderr," -L -L signifies that mmap should be invoked with HUGE_PAGE option. For this to work the machine must have been booted with a hugepages option\n");
fprintf(stderr," locking down some number of contiguous memory for allocation as huge pages. This option changes the page_size used by the stride evaluation\n");
}
int main(int argc, char ** argv)
{
char * buf1;
void * ret;
size_t * array, ret_val = 0;
size_t array_stride;
int i,j,k,cpu,cpu_run,line_count,stride, fd = -1;
off_t offset = 0;
int len=10240000, iter=100,mult=1,main_ret=0;
double iterations;
size_t start, stop, run_time, call_start, call_stop, call_run_time,total_bytes=0;
__pid_t pid=0;
size_t buf_size,jj,zero_loop, buf_by_num_seg,ind;
size_t num_pages, page_size, var_size;
int cpu_setsize;
cpu_set_t mask;
// size_t pattern[] = {4,1,5,2,6,3,7,0};
int *pattern;
int step, c;
int* index, lc_by_num_seg,count, num_seg=32, huge=0;
unsigned int bitmask, *intstar;
page_size = 4096;
// process input arguments
if(argc < 6){
fprintf(stderr,"the random walker requires at least 6 arguments (only the 7th in the list below is optional), there were %d\n",argc);
usage();
err(1,"insufficient invocation arguments");
}
while ((c = getopt(argc, argv, "i:r:l:s:S:m:L")) != -1) {
switch(c) {
case 'i':
cpu = atoi(optarg);
break;
case 'r':
cpu_run = atoi(optarg);
break;
case 'l':
line_count = atoi(optarg);
break;
case 's':
stride = atoi(optarg);
break;
case 'S':
num_seg = atoi(optarg);
break;
case 'm':
mult = atoi(optarg);
break;
case 'L':
huge=1;
page_size = 2 * 1024 * 1024;
break;
default:
err(1, "unknown option %c", c);
}
}
iter = iter*mult;
var_size = sizeof(size_t);
fprintf(stderr, "size_t in %zd bytes\n",var_size);
// pin core affinity
if(pin_cpu(pid, cpu) == -1) {
err(1,"failed to set affinity");
}
else{
fprintf(stderr," process pinned to core %d\n",cpu);
}
pattern = (int*) malloc(num_seg*sizeof(int));
if(pattern == NULL)
{
fprintf(stderr," failed to malloc pattern for size = %d\n",num_seg);
err(1,"malloc of pattern failed");
}
// calculate stride and buffer size
stride = page_size*stride + 64;
buf_size = (size_t)line_count*(size_t)stride;
num_pages = buf_size/page_size + 2;
buf_size = page_size*num_pages;
array_stride = stride/sizeof(size_t *);
iterations = (double)iter*(double)len;
// create index array for "random" patterna
index = (int*)malloc(line_count*sizeof(int));
if(index == NULL)
{
fprintf(stderr," failed to malloc index array for line_count of %d\n",line_count);
err(1,"failed to malloc index");
}
if(num_seg == 1)
{
for(i=0; i<line_count; i++)index[i] = i;
}
else
{
// fprintf(stderr," calling rndm_list, n = %d\n",num_seg);
rndm_list(pattern,num_seg);
lc_by_num_seg = line_count/num_seg;
if(lc_by_num_seg*num_seg != line_count)
{
fprintf(stderr," line count must be a multiple of the fifth argument num_seg = %d\n", num_seg);
err(1," bad line_count");
}
count=0;
buf_by_num_seg = buf_size/num_seg;
for(i=0; i<lc_by_num_seg; i++)
{
step = 0;
for(j=0;j<num_seg;j++)
{
count++;
if(j == (num_seg-1) ) step = 1;
ind = lc_by_num_seg*pattern[j];
index[count]= (int) ind + i + step;
if(index[count] >= line_count)
printf(" count = %d, index = %d\n",count,index[count]);
}
}
}
index[0] = 0;
// malloc and initialize buffers
/*
buf1 = (char *)malloc(buf_size + 4096 );
*/
// replace malloc call with a call to mmap
if(huge == 0)
buf1 = (char*) mmap(NULL,buf_size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON , fd, offset);
if(huge == 1)
buf1 = (char*) mmap(NULL,buf_size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON | MAP_HUGETLB , fd, offset);
if(buf1 == MAP_FAILED)
{
fprintf(stderr,"mmap failed\n");
err(1,"mmap failed");
}
fprintf(stderr," buf1 = %p\n",buf1);
// buf1 = buf1 + (0x1000 - (size_t)buf1 & 0xFFF) ;
// fprintf(stderr," buf1 = %p\n",buf1);
zero_loop = buf_size/(size_t)var_size;
fprintf(stderr, " buf_size = %zu, zero_loop = %zu, array_stride = %zd\n",buf_size,zero_loop,array_stride);
// for(i=0;i<buf_size;i++)buf1[i]=0; //touch every page to ensure creation
array = (size_t *) buf1;
// for(i=0; i<zero_loop; i++) array[i] = 0;
ret = memset(buf1, 0, (size_t)buf_size);
fprintf(stderr," finished zeroing buf ret = %p\n",ret);
// for(jj=0;jj<line_count-1; jj++)array[jj*(size_t)array_stride] = (size_t) &array[(size_t)array_stride*(jj+1)];
for(jj=0;jj<line_count-1;jj++)array[index[jj]*array_stride] = (size_t)&array[index[jj+1]*array_stride];
fprintf(stderr," target of last element in loop = %zx\n",(size_t)(array[line_count-1]-(size_t)buf1));
array[(size_t)array_stride*(size_t)(line_count-1)] = (size_t)&array[0];
// for(jj=0; jj< line_count; jj+=8) printf(", jj = %d, array[jj]-&array[0]/array_stride = %d\n",jj,(array[jj]-(size_t)&array[0])/array_stride);
// pin core affinity
if(pin_cpu(pid, cpu_run) == -1) {
err(1,"cannot set cpu run affinity");
}
else{
printf(" process pinned to core %d to run\n",cpu_run);
}
// run the walker
printf(" calling walker %d times which loops %d times on buffer of %d lines with a stride of %d, for a total size of %zu\n",iter,len,line_count,stride,buf_size);
call_start = _rdtsc();
for(i=0;i<iter;i++){
start = _rdtsc();
ret_val = reader(len,array);
// fprintf(stderr, " retval = %ld\n",ret_val);
stop = _rdtsc();
run_time = stop - start;
}
call_stop = _rdtsc();
call_run_time = call_stop - call_start;
printf(" run time = %zd\n",call_run_time);
// printout
printf(" average cycles per iteration = %f\n", (double)call_run_time/iterations);
return main_ret;
}
|
the_stack_data/1229864.c | /* { dg-do compile } */
/* { dg-options "-O3 -save-temps -mcmodel=small" } */
int fixed_regs[0x200000000ULL];
int
foo()
{
return fixed_regs[0x100000000ULL];
}
/* { dg-final { scan-assembler-not "adrp\tx\[0-9\]+, fixed_regs\\\+" } } */
|
the_stack_data/76700793.c | foo (float f, float g)
{
float beat_freqs[2] = { f-g, f+g };
return 1;
}
|
the_stack_data/18886668.c | #include <stdio.h>
int main(void) {
printf("hello");
fflush(stdout);
return 0;
} |
the_stack_data/125140377.c | /// 3.4. Scrieลฃi un program care afiลeazฤ codul ASCII corespunzฤtor unei taste apฤsate.
#include <stdio.h>
#include <stdlib.h>
int main()
{
char car;
int cod_car;
car=getch();
cod_car=car;
if(cod_car<32 || cod_car>126) printf("Ai introdus un cod din afara intervalului [32, 126]: \'%c\'", car);
else printf("Codul ASCII al tastei %c este %d", car, cod_car);
return 0;
}
|
the_stack_data/215768458.c | #include <stdio.h>
int main(void) {
printf("Hello, world!\n");
}
|
the_stack_data/1020.c | int main()
{
int a = 20;
int b = 3;
return a / b;
} |
the_stack_data/151496.c | //scan_octal_hexa_nos.co on 30-09-18
//
//programe to scan decimal,octal and hexa-decimal numbers
//
#include<stdio.h>
int main()
{
int decimal, octal, hexa;
printf("\nEnter a decimal no(num)):\t");
scanf("%i", &decimal);
printf("\nEnter a octal no(0num):\t");
scanf("%i", &octal);
printf("\nEnter a decimal no(0xnum):\t");
scanf("%i", &hexa);
printf("\n\n");
printf("\nvalue of decimal(%%d) is:\t%d.", decimal);
printf("\nvalue of octal(%%o & %%d) is:\t%o \t %d.", octal, octal);
printf("\nvalue of hexa(%%x & %%d) is:\t%X \t %d.", hexa, hexa);
return 0;
}
|
the_stack_data/59127.c | #include <stdio.h>
#include <stdlib.h>
void init();
void welcome_user() {
char buffer[128] = {0};
system("echo \"Can you ret2system()?\"");
printf("Input:\n");
gets(buffer);
printf("Welcome to your first ret2libc %s!", buffer);
}
int main() {
init();
welcome_user();
return 0;
}
/* Aux Functions */
#include <stdio.h>
void init() {
setvbuf(stdin, NULL, _IONBF, 0);
setvbuf(stdout, NULL, _IONBF, 0);
}
|
the_stack_data/93886725.c | //FizzBuzz in C
//Author: Siddhant Mittal(siddhantmittal024)
#include <stdio.h>
int main(void)
{
int i = 1;
for (; i <= 100; ++i)
{
printf("Number: %d %s%s\n", i, i % 3 ? "" : "Fizz", i % 5 ? "" : "Buzz");
}
return 0;
}
|
the_stack_data/154831471.c | #include<stdio.h>
#include<stdlib.h>
#include<string.h>
int remainder_check(char* parameter_1,int checksum_div,int length);
int remainder_check(char* parameter_1,int checksum_div,int length)
{
if(strlen(parameter_1)!=length) return 0;
int sum = 0;
for(int i=0;i<length;i++) sum = sum + parameter_1[i];
if((sum % checksum_div==0)) return 1;
else return 0;
}
void v_ScreenDeviceRotor( long parameter_1,long parameter_2,unsigned int parameter_3);
unsigned int v_USPiEnvGetScreen();
double v_KeyPressedHandler( char parameter_1);
void v_USBKeyboardDeviceRegisterKeyPressedHandler( short parameter_1,float parameter_2);
void v_USPiKeyboardRegisterKeyPressedHandler();
int v_USPiKeyboardAvailable();
void v_USPiEnvClose();
int v_strcmp( long parameter_1,int parameter_2);
short v_DeviceNameServiceGetDevice( short parameter_1,char parameter_2,double parameter_3);
void v__DeviceNameService( long parameter_1);
void v__DWHCIRootPort();
void v__DWHCIDevice( unsigned int parameter_1);
void v_DWHCIDeviceDisableRootPort( long parameter_1);
float v_DWHCIDeviceOvercurrentDetected();
void v_USBMIDIDeviceCompletionRoutine( char parameter_1);
short v_USBMIDIDeviceStartRequest();
short v_USBMIDIDeviceConfigure( short parameter_1,int uni_para);
void v_USBMIDIDevice( char parameter_1,int uni_para);
void v_USBGamePadDeviceCompletionRoutine( short parameter_1);
int v_USBGamePadDeviceStartRequest( long parameter_1);
void v_USBGamePadDevicePS3Configure( double parameter_1);
char v_BitGetSigned(double parameter_2,short parameter_3);
short v_BitGetUnsigned(char parameter_2,long parameter_3);
char v_USBGamePadDeviceDecodeReport( double parameter_1);
long v_USBGamePadDeviceConfigure();
void v_USBGamePadDevice( long parameter_1);
long v_LAN7800DevicePHYWrite( double parameter_1,unsigned int parameter_2,float parameter_3);
float v_LAN7800DevicePHYRead( int parameter_1,double parameter_2,unsigned int parameter_3);
void v_LAN7800DeviceInitPHY( double parameter_1);
double v_LAN7800DeviceInitMACAddress( char parameter_1);
long v_LAN7800DeviceWaitReg( char parameter_1,long parameter_2,unsigned int parameter_3,short parameter_4);
int v_LAN7800DeviceWriteReg( char parameter_1,double parameter_2,char parameter_3);
unsigned int v_LAN7800DeviceReadWriteReg( long parameter_1,double parameter_2,double parameter_3,double parameter_4);
void v_LAN7800DeviceReadReg( double parameter_1,long parameter_2,int parameter_3);
void v_LAN7800DeviceConfigure( long parameter_1);
void v_LAN7800Device( int parameter_1);
void v_SMSC951xDeviceWriteReg( double parameter_1,long parameter_2,char parameter_3);
void v_MACAddressCopyTo( long parameter_1,unsigned int parameter_2);
void v_MACAddressFormat( short parameter_1,short parameter_2);
void v_MACAddressSet( double parameter_1,unsigned int parameter_2);
int v_GetMACAddress( double parameter_1);
void v_MACAddress( int parameter_1);
short v_SMSC951xDeviceConfigure( int parameter_1);
void v_SMSC951xDevice( short parameter_1);
int v_uspi_char2int( char parameter_1);
void v_USBMouseDeviceCompletionRoutine( long parameter_1);
int v_USBMouseDeviceStartRequest( float parameter_1);
short v_USBMouseDeviceConfigure( int parameter_1);
void v_USBMouseDevice( short parameter_1);
void v_KeyMap( float parameter_1);
char v_DWHCIDeviceSubmitAsyncRequest( char parameter_1,double parameter_2);
void v_TimerCancelKernelTimer( int parameter_1,int parameter_2);
void v_CancelKernelTimer( short parameter_1);
short v_KeyMapGetString( float parameter_1,unsigned int parameter_2,short parameter_3,char parameter_4);
unsigned int v_KeyMapTranslate( double parameter_1,int parameter_2,char parameter_3);
void v_USBKeyboardDeviceGenerateKeyEvent( double parameter_1,char parameter_2);
double v_USBKeyboardDeviceGetKeyCode( float parameter_1);
char v_USBKeyboardDeviceGetModifiers( float parameter_1);
void v_USBKeyboardDeviceCompletionRoutine( long parameter_1);
int v_USBKeyboardDeviceStartRequest( float parameter_1);
char v_USBKeyboardDeviceConfigure();
void v_USBKeyboardDevice();
short v_DeviceNameServiceGet();
void v_strcpy( char parameter_1,long parameter_2);
void v_DeviceNameServiceAddDevice( unsigned int parameter_1,short parameter_2,char parameter_4);
float v_uspi_le2be32( double parameter_1);
int v_DWHCIDeviceTransfer( unsigned int parameter_1,float parameter_2,float parameter_4);
int v_USBBulkOnlyMassStorageDeviceCommand( short parameter_1,double parameter_3,char parameter_5,short parameter_6);
void v_USBEndpoint2( char parameter_1,short parameter_2,short parameter_3);
float v_USBBulkOnlyMassStorageDeviceConfigure( unsigned int parameter_1);
void v_USBBulkOnlyMassStorageDevice( unsigned int parameter_1);
float v_USBStandardHubEnumeratePorts( double parameter_1);
int v_USBConfigurationParserGetDescriptor( float parameter_1,char parameter_2);
char v_USBDeviceGetDescriptor( int parameter_1,unsigned int parameter_2);
int v_USBDeviceGetDeviceDescriptor( unsigned int parameter_1);
void v_USBStandardHubConfigure( float parameter_1);
void v_USBEndpointCopy( short parameter_1,long parameter_2,long parameter_3);
void v_USBStringCopy( short parameter_1,double parameter_2);
void v_USBDeviceCopy( float parameter_1,int parameter_2);
void v_USBStandardHub( unsigned int parameter_1);
long v_GetDevice( float parameter_1,double parameter_2,int uni_para);
int v_USBDeviceFactoryGetDevice( long parameter_1,int uni_para);
void v_StringAppend( long parameter_1,unsigned int parameter_2);
char v_StringGetLength();
int v_StringCompare( long parameter_1,char parameter_2);
char v_StringSet( int parameter_1,char parameter_2);
void v_USBDeviceGetName( unsigned int parameter_1,int parameter_2);
int v_USBStandardHubGetDeviceNames( unsigned int parameter_1);
void v__USBString( char parameter_1);
void v__USBEndpoint( short parameter_1);
void v__USBConfigurationParser( char parameter_1);
void v__USBDevice( int parameter_1);
void v_debug_hexdump( unsigned int parameter_1,unsigned int parameter_2,long parameter_3);
void v_DebugHexdump( long parameter_1,float parameter_2,short parameter_3);
void v_USBConfigurationParserError( unsigned int parameter_1,unsigned int parameter_2);
void v_USBDeviceConfigurationError( long parameter_1,char parameter_2);
short v_USBConfigurationParserIsValid( unsigned int parameter_1);
void v_USBConfigurationParser( unsigned int parameter_1);
void v_String2( short parameter_1,int parameter_2);
int v_USBStringGetFromDescriptor( short parameter_1,float parameter_2,float parameter_3);
float v_USBDeviceGetEndpoint0( int parameter_1);
short v_USBDeviceGetHost( float parameter_1);
long v_USBStringGetLanguageID( unsigned int parameter_1);
void v_USBDeviceSetAddress( unsigned int parameter_1,int parameter_2);
void v_DWHCIDeviceSetAddress( long parameter_1,double parameter_2,unsigned int parameter_3);
void v_USBEndpointSetMaxPacketSize( short parameter_1,float parameter_2);
int v_DWHCIDeviceGetDescriptor( long parameter_1,unsigned int parameter_2,char parameter_3,float parameter_4,int parameter_6,char parameter_7);
unsigned int v_USBDeviceInitialize( long parameter_1);
void v_USBString( double parameter_1);
void v_USBEndpoint( unsigned int parameter_1);
void v__USBRequest();
unsigned int v_USBRequestGetResultLength( short parameter_1);
unsigned int v_USBEndpointIsDirectionIn( int parameter_1);
int v_USBRequestGetStatus( double parameter_1);
void v_DWHCIDeviceEnableChannelInterrupt( unsigned int parameter_1,double parameter_2);
unsigned int v_DWHCIFrameSchedulerNoSplitIsOddFrame( int parameter_1);
void v_DWHCIFrameSchedulerNoSplitWaitForFrame( float parameter_1);
void v_DWHCIFrameSchedulerNoSplitTransactionComplete( long parameter_1,int parameter_2);
void v_DWHCIFrameSchedulerNoSplitCompleteSplit();
void v_DWHCIFrameSchedulerNoSplitStartSplit();
void v__DWHCIFrameSchedulerNoSplit( char parameter_1);
void v_DWHCIFrameSchedulerNoSplit( short parameter_1);
char v_DWHCIFrameSchedulerNonPeriodicIsOddFrame( unsigned int parameter_1);
void v_DWHCIFrameSchedulerNonPeriodicWaitForFrame( long parameter_1);
void v_DWHCIFrameSchedulerNonPeriodicTransactionComplete( char parameter_1,int parameter_2,int uni_para);
short v_DWHCIFrameSchedulerNonPeriodicCompleteSplit( char parameter_1);
void v_DWHCIFrameSchedulerNonPeriodicStartSplit( char parameter_1);
void v__DWHCIFrameSchedulerNonPeriodic( int parameter_1);
void v_DWHCIFrameSchedulerNonPeriodic( char parameter_1,int uni_para);
float v_DWHCIFrameSchedulerPeriodicIsOddFrame();
void v_DWHCIFrameSchedulerPeriodicWaitForFrame( unsigned int parameter_1);
void v_DWHCIFrameSchedulerPeriodicTransactionComplete( long parameter_1,unsigned int parameter_2);
float v_DWHCIFrameSchedulerPeriodicCompleteSplit( float parameter_1);
void v_DWHCIFrameSchedulerPeriodicStartSplit( char parameter_1);
void v__DWHCIFrameSchedulerPeriodic();
void v_DWHCIFrameSchedulerPeriodic( float parameter_1);
short v_USBRequestGetBuffer( int parameter_1);
char v_USBEndpointGetMaxPacketSize( long parameter_1);
char v_USBDeviceGetSpeed( long parameter_1);
void v_USBEndpointGetDevice( char parameter_1);
void v_DWHCITransferStageData(int uni_para);
char v_DWHCIDeviceAllocateChannel( float parameter_1);
int v_DWHCIDeviceTransferStageAsync( char parameter_1,int parameter_2,float parameter_3,short parameter_4,int uni_para);
void v_DWHCIDeviceCompletionRoutine( unsigned int parameter_1);
void v_USBRequestSetCompletionRoutine( float parameter_1,short parameter_2);
char v_DWHCIDeviceTransferStage( unsigned int parameter_1,float parameter_2,double parameter_3,char parameter_4,int uni_para);
void v_USBRequestGetBufLen( double parameter_1);
double v_USBRequestGetSetupData( int parameter_1);
void v_DWHCIDeviceSubmitBlockingRequest( double parameter_1,int parameter_2,int uni_para);
void v_USBRequest( unsigned int parameter_1);
int v_DWHCIDeviceControlMessage( float parameter_1,double parameter_2,double parameter_3,float parameter_4,unsigned int parameter_5,double parameter_6,double parameter_8,int uni_para);
int v_DWHCIDeviceSetConfiguration( short parameter_1,int parameter_2,char parameter_3,int uni_para);
void v_USBDeviceConfigure(int uni_para);
void v_USBDevice( unsigned int parameter_1);
long v_DWHCIDeviceGetPortSpeed( short parameter_1);
float v_DWHCIRootPortInitialize( double parameter_1,int uni_para);
short v_DWHCIDeviceEnableRootPort( unsigned int parameter_1);
void v_DWHCIDeviceEnableHostInterrupts( int parameter_1);
void v_DWHCIDeviceFlushRxFIFO( double parameter_1);
void v_TimerusDelay( long parameter_1,char parameter_2);
void v_usDelay( long parameter_1);
void v_DWHCIDeviceFlushTxFIFO( short parameter_1,int parameter_2);
int v_DWHCIDeviceInitHost( short parameter_1);
void v_DWHCIDeviceEnableGlobalInterrupts( unsigned int parameter_1);
void v_DWHCIDeviceEnableCommonInterrupts();
void v_MsDelay( long parameter_1);
unsigned int v_DWHCIDeviceWaitForBit( short parameter_1,int parameter_2,int parameter_3,short parameter_4,long parameter_5);
int v_DWHCIDeviceReset( long parameter_1);
float v_DWHCIDeviceInitCore( char parameter_1);
double v_DWHCITransferStageDataBeginSplitCycle( double parameter_1);
void v_DWHCITransferStageDataIsStageComplete( unsigned int parameter_1);
void v_USBRequestCallCompletionRoutine( short parameter_1);
void v_DWHCIDeviceFreeChannel( long parameter_1,short parameter_2);
void v__DWHCITransferStageData();
void v_uspi_LeaveCritical();
void v_uspi_EnterCritical();
void v_DWHCIDeviceDisableChannelInterrupt( int parameter_1,unsigned int parameter_2);
short v_DWHCITransferStageDataGetResultLen( float parameter_1);
void v_USBRequestSetResultLen( unsigned int parameter_1,short parameter_2);
double v_DWHCITransferStageDataIsStatusStage();
void v_DWHCITransferStageDataSetSplitComplete( short parameter_1,short parameter_2);
void v_DWHCIDeviceTimerHandler( long parameter_1);
unsigned int v_TimerGet();
unsigned int v_TimerStartKernelTimer( short parameter_1,char parameter_2,float parameter_3);
long v_StartKernelTimer( int parameter_1,float parameter_2);
char v_USBRequestGetEndpoint( unsigned int parameter_1);
double v_USBEndpointGetInterval();
void v_DWHCITransferStageDataSetState( double parameter_1,short parameter_2);
void v_USBRequestSetStatus( unsigned int parameter_1,int parameter_2);
long v_DWHCITransferStageDataGetTransactionStatus();
void v_DWHCITransferStageDataGetState( float parameter_1);
void v_USBEndpointSkipPID( short parameter_1,float parameter_2,long parameter_3);
void v_DWHCITransferStageDataTransactionComplete( unsigned int parameter_1,float parameter_2,char parameter_3,int parameter_4);
long v_DWHCIRegisterIsSet( char parameter_1,long parameter_2);
void v_DWHCIDeviceStartTransaction( int parameter_1,float parameter_2);
float v_DWHCITransferStageDataIsPeriodic( double parameter_1);
short v_DWHCITransferStageDataGetStatusMask( unsigned int parameter_1);
void v_DWHCIRegisterSet( float parameter_1,short parameter_2);
void v_USBEndpointGetNumber( unsigned int parameter_1);
long v_DWHCITransferStageDataGetEndpointNumber( int parameter_1);
long v_USBEndpointGetType( short parameter_1);
short v_DWHCITransferStageDataGetEndpointType( double parameter_1);
char v_USBDeviceGetAddress( unsigned int parameter_1);
float v_DWHCITransferStageDataGetDeviceAddress( long parameter_1);
float v_DWHCITransferStageDataGetSpeed();
char v_DWHCITransferStageDataIsDirectionIn( unsigned int parameter_1);
char v_DWHCITransferStageDataGetMaxPacketSize( unsigned int parameter_1);
void v_DWHCITransferStageDataIsSplitComplete( short parameter_1);
unsigned int v_DWHCITransferStageDataGetSplitPosition( double parameter_1);
int v_USBDeviceGetHubAddress( char parameter_1);
double v_DWHCITransferStageDataGetHubAddress();
long v_USBDeviceGetHubPortNumber( int parameter_1);
double v_DWHCITransferStageDataGetHubPortAddress( long parameter_1);
double v_DWHCITransferStageDataIsSplit();
void v_uspi_CleanAndInvalidateDataCacheRange( float parameter_1,short parameter_2);
double v_DWHCITransferStageDataGetDMAAddress( long parameter_1);
unsigned int v_USBEndpointGetNextPID( char parameter_1,char parameter_2);
float v_DWHCITransferStageDataGetPID( char parameter_1);
unsigned int v_DWHCITransferStageDataGetPacketsToTransfer( int parameter_1);
int v_DWHCITransferStageDataGetBytesToTransfer( int parameter_1);
void v_DWHCIRegisterOr( unsigned int parameter_1,char parameter_2);
void v_DWHCIRegisterSetAll( char parameter_1);
void v_DWHCITransferStageDataSetSubState( unsigned int parameter_1,float parameter_2);
long v_DWHCITransferStageDataGetChannelNumber( short parameter_1);
void v_DWHCIDeviceStartChannel( short parameter_1,unsigned int parameter_2);
double v_DWHCITransferStageDataGetSubState( float parameter_1);
double v_DWHCITransferStageDataGetURB();
void v_DWHCITransferStageDataGetFrameScheduler( char parameter_1);
void v_DWHCIDeviceChannelInterruptHandler( float parameter_1,int parameter_2);
void v_DWHCIRegister2( long parameter_1,unsigned int parameter_2,char parameter_3);
void v_DWHCIDeviceInterruptHandler();
unsigned int v_InterruptSystemGet();
void v_ConnectInterrupt( char parameter_1,double parameter_2);
void v_DWHCIRegisterWrite();
void v_DWHCIRegisterAnd( int parameter_1,short parameter_2);
int v_SetPowerStateOn( short parameter_1);
void v__DWHCIRegister( long parameter_1);
long v_DWHCIRegisterGet( long parameter_1);
int v_LoggerGet();
void v_LogWrite( short parameter_1,short parameter_2,int parameter_3,double parameter_4,int uni_para);
int v_DWHCIRegisterRead( short parameter_1);
void v_DWHCIRegister( long parameter_1);
char v_DWHCIDeviceInitialize( double parameter_1,int uni_para);
void v_DWHCIRootPort( long parameter_1);
void v_DWHCIDevice( unsigned int parameter_1);
void v_DeviceNameService( int parameter_1);
int v_USPiInitialize(int uni_para);
void v__ExceptionHandler( double parameter_1);
void v__InterruptSystem( float parameter_1);
void v__Timer( short parameter_1);
void v__Logger( char parameter_1);
void v_DelayLoop( int parameter_1);
void v_TimerMsDelay( char parameter_1,double parameter_2);
short v_TimerGetTicks( short parameter_1);
void v_TimerTuneMsDelay();
void v_TimerPollKernelTimers( short parameter_1);
void v_TimerInterruptHandler();
void v_InterruptSystemEnableIRQ( float parameter_1);
void v_InterruptSystemConnectIRQ( double parameter_1,int parameter_2,long parameter_3);
short v_TimerInitialize( float parameter_1);
void v_IRQStub();
int v_InterruptSystemInitialize( double parameter_1);
void v_StringFormatV( float parameter_1,short parameter_2,unsigned int parameter_3);
void v__String( long parameter_1);
int v_StringGet( float parameter_1);
void v_StringFormat( char parameter_1,short parameter_2,float parameter_3);
void v_String( long parameter_1);
float v_TimerGetTimeString( float parameter_1);
void v_ScreenDeviceSetCursorMode( char parameter_1,long parameter_2);
void v_ScreenDeviceCursorMove( short parameter_1,int parameter_2,char parameter_3);
void v_ScreenDeviceSetStandoutMode( short parameter_1,long parameter_2);
void v_ScreenDeviceInsertMode( char parameter_1,unsigned int parameter_2);
void v_ScreenDeviceEraseChars( float parameter_1,int parameter_2);
void v_ScreenDeviceDeleteChars( unsigned int parameter_1,short parameter_2);
void v_ScreenDeviceDeleteLines( long parameter_1,double parameter_2);
void v_ScreenDeviceCursorUp( char parameter_1);
void v_ScreenDeviceInsertLines( double parameter_1,float parameter_2);
void v_ScreenDeviceReverseScroll( char parameter_1);
void v_ScreenDeviceCursorRight( short parameter_1);
short v_CharGeneratorGetPixel( long parameter_1,char parameter_2,int parameter_3,char parameter_4);
void v_ScreenDeviceDisplayChar2( short parameter_1,char parameter_2,float parameter_3,short parameter_4,long parameter_5);
void v_ScreenDeviceDisplayChar( double parameter_1,char parameter_2);
char v_memcpyblk(double parameter_2,int parameter_3);
void v_ScreenDeviceScroll(int uni_para);
void v_ScreenDeviceCursorDown( char parameter_1,int uni_para);
void v_ScreenDeviceCarriageReturn();
void v_ScreenDeviceNewLine( char parameter_1);
void v_ScreenDeviceTabulator( long parameter_1);
void v_ScreenDeviceCursorLeft( long parameter_1);
void v_ScreenDeviceWrite2( float parameter_1,char parameter_2,int uni_para);
int v_ScreenDeviceWrite( unsigned int parameter_1,int parameter_2,short parameter_3,int uni_para);
short v_strlen( short parameter_1);
void v_LoggerWrite2( int parameter_1,int parameter_2,int uni_para);
void v_LoggerWriteV( unsigned int parameter_1,char parameter_2,char parameter_3,char parameter_4,long parameter_5,int uni_para);
void v_LoggerWrite( unsigned int parameter_1,int parameter_2,long parameter_3,long parameter_4,char parameter_5);
unsigned int v_LoggerInitialize( double parameter_1,int parameter_2);
void v_Logger( double parameter_1);
void v_Timer( double parameter_1);
void v_InterruptSystem();
void v_DataAbortStub();
void v_PrefetchAbortStub();
void v_UndefinedInstructionStub();
void v_ExceptionHandler2();
void v__CharGenerator();
void v_free();
void v__BcmFrameBuffer( long parameter_1);
void v__ScreenDevice( unsigned int parameter_1);
void v_ScreenDeviceGetPixel( short parameter_1,long parameter_2,long parameter_3);
char v_CharGeneratorGetUnderline( int parameter_1);
void v_ScreenDeviceInvertCursor( char parameter_1);
void v_ScreenDeviceSetPixel( long parameter_1,float parameter_2,int parameter_3,char parameter_4);
void v_ScreenDeviceEraseChar( short parameter_1,int parameter_2,int parameter_3);
float v_CharGeneratorGetCharWidth( unsigned int parameter_1);
void v_ScreenDeviceClearLineEnd( unsigned int parameter_1);
void v_ScreenDeviceClearDisplayEnd( char parameter_1);
void v_ScreenDeviceCursorHome( int parameter_1);
unsigned int v_CharGeneratorGetCharHeight( double parameter_1,int uni_para);
char v_BcmFrameBufferGetPitch( float parameter_1);
double v_BcmFrameBufferGetHeight( short parameter_1);
short v_BcmFrameBufferGetWidth( int parameter_1);
long v_BcmFrameBufferGetSize( float parameter_1);
double v_BcmFrameBufferGetBuffer( unsigned int parameter_1);
char v_BcmFrameBufferGetDepth( double parameter_1);
unsigned int v_BcmFrameBufferInitialize( int parameter_1);
void v_BcmFrameBufferSetPalette( int parameter_1,long parameter_2,unsigned int parameter_3);
short v_memset(int parameter_2,short parameter_3);
void v_BcmFrameBuffer( float parameter_1);
long v_ScreenDeviceInitialize();
void v_CharGenerator( long parameter_1);
void v_ScreenDevice( int parameter_1);
void v__BcmMailBox( float parameter_1);
void v__BcmPropertyTags( unsigned int parameter_1);
char v_PageTableGetBaseAddress( unsigned int parameter_1);
void v_MemorySystemEnableMMU( int parameter_1);
void v_PageTable( float parameter_1);
double v_palloc();
void v_PageTable2( short parameter_1,long parameter_2);
void v_LeaveCritical();
void v_EnterCritical();
short v_malloc( double parameter_1);
void v_mem_init( float parameter_1,float parameter_2);
void v_InvalidateDataCache();
double v_BcmMailBoxRead( double parameter_1);
void v_write32( double parameter_1,short parameter_2);
void v_BcmMailBoxWrite( double parameter_1,int parameter_2);
void v_TimerSimpleusDelay( double parameter_1);
void v_TimerSimpleMsDelay( float parameter_1);
long v_read32( int parameter_1);
void v_BcmMailBoxFlush( char parameter_1);
unsigned int v_BcmMailBoxWriteRead( long parameter_1,short parameter_2);
void v_CleanDataCache();
short v_memcpy(char parameter_2,int parameter_3);
double v_BcmPropertyTagsGetTag( int parameter_1,int parameter_2,char parameter_4,int parameter_5);
void v_BcmMailBox( short parameter_1);
void v_BcmPropertyTags( short parameter_1);
void v_MemorySystem( char parameter_1);
int v_USPiEnvInitialize();
void v_ScreenDeviceRotor( long parameter_1,long parameter_2,unsigned int parameter_3)
{
double double_1 = 1;
double double_2 = 1;
short short_1 = 1;
short short_2 = 1;
char char_1 = 1;
float float_1 = 1;
long long_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_3 = 1;
double_1 = double_1 + double_2;
short_1 = short_1 * short_2;
v_ScreenDeviceDisplayChar2(short_1,char_1,float_1,short_2,long_1);
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
long_1 = long_1 * long_1;
int_2 = int_1 + int_1;
float_1 = v_CharGeneratorGetCharWidth(unsigned_int_3);
}
unsigned int v_USPiEnvGetScreen()
{
unsigned int unsigned_int_1 = 1;
return unsigned_int_1;
}
double v_KeyPressedHandler( char parameter_1)
{
unsigned int unsigned_int_1 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
double double_1 = 1;
int int_1 = 1;
int int_2 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
unsigned_int_1 = v_USPiEnvGetScreen();
char_3 = char_1 * char_2;
return double_1;
int_1 = v_ScreenDeviceWrite(unsigned_int_1,int_2,short_1,-1 );
short_2 = v_strlen(short_3);
}
void v_USBKeyboardDeviceRegisterKeyPressedHandler( short parameter_1,float parameter_2)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
double_1 = double_1;
unsigned_int_4 = unsigned_int_2 * unsigned_int_3;
}
void v_USPiKeyboardRegisterKeyPressedHandler()
{
int int_1 = 1;
short short_1 = 1;
float float_1 = 1;
char char_1 = 1;
char char_2 = 1;
double double_1 = 1;
double double_2 = 1;
int_1 = int_1;
v_USBKeyboardDeviceRegisterKeyPressedHandler(short_1,float_1);
char_2 = char_1 * char_2;
double_2 = double_1 * double_1;
}
int v_USPiKeyboardAvailable()
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
return int_1;
}
void v_USPiEnvClose()
{
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
short short_1 = 1;
int int_1 = 1;
char char_1 = 1;
char char_2 = 1;
float float_4 = 1;
char char_3 = 1;
char char_4 = 1;
v__ExceptionHandler(double_1);
v__ScreenDevice(unsigned_int_1);
float_3 = float_1 * float_2;
v__Timer(short_1);
int_1 = int_1;
v__Logger(char_1);
char_2 = char_1;
float_3 = float_4 * float_1;
v__InterruptSystem(float_4);
char_3 = char_4;
}
int v_strcmp( long parameter_1,int parameter_2)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
double double_1 = 1;
unsigned int unsigned_int_6 = 1;
int int_1 = 1;
if(1)
{
unsigned int unsigned_int_2 = 1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
}
if(1)
{
unsigned_int_4 = unsigned_int_3;
}
unsigned_int_5 = unsigned_int_3 * unsigned_int_3;
double_1 = double_1 * double_1;
unsigned_int_3 = unsigned_int_1 + unsigned_int_6;
unsigned_int_4 = unsigned_int_6 + unsigned_int_6;
if(1)
{
double_1 = double_1 * double_1;
}
if(1)
{
long long_1 = 1;
long long_2 = 1;
long_2 = long_1 * long_2;
}
return int_1;
}
short v_DeviceNameServiceGetDevice( short parameter_1,char parameter_2,double parameter_3)
{
double double_1 = 1;
double double_2 = 1;
float float_1 = 1;
float float_2 = 1;
int int_1 = 1;
long long_1 = 1;
int int_2 = 1;
short short_1 = 1;
double_2 = double_1 + double_2;
float_1 = float_1 + float_2;
for(int looper_1=0; looper_1<1;looper_1++)
{
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
char char_4 = 1;
char_2 = char_1 + char_1;
int_1 = v_strcmp(long_1,int_2);
char_2 = char_3 * char_4;
}
return short_1;
}
void v__DeviceNameService( long parameter_1)
{
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
v_free();
int_1 = int_1 + int_2;
char_3 = char_1 * char_2;
}
void v__DWHCIRootPort()
{
unsigned int unsigned_int_1 = 1;
short short_3 = 1;
int int_1 = 1;
short short_4 = 1;
short short_5 = 1;
unsigned_int_1 = unsigned_int_1;
char controller_1[2];
fgets(controller_1 ,2 ,stdin);
if( strcmp( controller_1, "B") < 0)
{
short short_1 = 1;
short short_2 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
short_3 = short_1 * short_2;
v__USBDevice(int_1);
long_3 = long_1 + long_2;
unsigned_int_3 = unsigned_int_2 * unsigned_int_3;
}
v_free();
short_5 = short_4 + short_3;
}
void v__DWHCIDevice( unsigned int parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
v__DWHCIRootPort();
}
void v_DWHCIDeviceDisableRootPort( long parameter_1)
{
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
short short_1 = 1;
double double_3 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
float float_1 = 1;
float float_2 = 1;
short short_2 = 1;
short short_3 = 1;
char char_1 = 1;
char char_2 = 1;
int int_2 = 1;
double_1 = double_1 * double_2;
v_DWHCIRegisterAnd(int_1,short_1);
double_1 = double_3 + double_2;
long_1 = long_1 * long_2;
v__DWHCIRegister(long_3);
float_2 = float_1 * float_2;
short_3 = short_2 * short_2;
v_DWHCIRegister(long_3);
v_DWHCIRegisterWrite();
char_1 = char_1 + char_2;
int_2 = v_DWHCIRegisterRead(short_3);
double_2 = double_2 * double_3;
}
float v_DWHCIDeviceOvercurrentDetected()
{
long long_1 = 1;
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
short short_1 = 1;
int int_2 = 1;
int int_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
float float_1 = 1;
long long_2 = 1;
v_DWHCIRegister(long_1);
double_1 = double_2;
double_2 = double_1 * double_2;
int_1 = v_DWHCIRegisterRead(short_1);
int_2 = int_3;
if(1)
{
double double_3 = 1;
double_3 = double_1 * double_1;
}
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
return float_1;
v__DWHCIRegister(long_2);
}
void v_USBMIDIDeviceCompletionRoutine( char parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_4 = 1;
short short_3 = 1;
int int_5 = 1;
double double_3 = 1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
short_2 = short_1 * short_2;
v_free();
unsigned_int_3 = unsigned_int_2;
double_1 = double_1 + double_2;
if(1)
{
char char_1 = 1;
unsigned_int_3 = unsigned_int_3;
char_1 = char_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
if(1)
{
if(1)
{
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
int_3 = int_1 * int_2;
unsigned_int_1 = unsigned_int_1 * unsigned_int_4;
int_4 = int_1 + int_2;
}
}
}
}
short_2 = short_1 * short_1;
short_2 = short_2 * short_3;
v__USBRequest();
short_3 = v_USBMIDIDeviceStartRequest();
double_1 = double_2 * double_1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_4;
int_5 = v_USBRequestGetStatus(double_3);
unsigned_int_2 = v_USBRequestGetResultLength(short_3);
}
short v_USBMIDIDeviceStartRequest()
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
short short_1 = 1;
double double_1 = 1;
char char_1 = 1;
char char_2 = 1;
int int_1 = 1;
int int_2 = 1;
short short_2 = 1;
float float_1 = 1;
int int_3 = 1;
int int_4 = 1;
int int_5 = 1;
double double_2 = 1;
double double_3 = 1;
float float_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
int int_6 = 1;
v_USBRequest(unsigned_int_1);
unsigned_int_2 = unsigned_int_2 * unsigned_int_2;
short_1 = v_malloc(double_1);
char_1 = v_DWHCIDeviceSubmitAsyncRequest(char_2,double_1);
int_2 = int_1 + int_1;
short_2 = v_USBDeviceGetHost(float_1);
int_4 = int_3 + int_2;
v_USBMIDIDeviceCompletionRoutine(char_2);
int_5 = int_3;
double_3 = double_1 + double_2;
v_USBRequestSetCompletionRoutine(float_2,short_1);
unsigned_int_2 = unsigned_int_3 * unsigned_int_4;
unsigned_int_3 = unsigned_int_1 + unsigned_int_4;
int_6 = int_5 + int_3;
return short_2;
}
short v_USBMIDIDeviceConfigure( short parameter_1,int uni_para)
{
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_3 = 1;
unsigned int unsigned_int_3 = 1;
long long_1 = 1;
long long_2 = 1;
float float_1 = 1;
float float_2 = 1;
char char_1 = 1;
char char_2 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
float float_3 = 1;
double double_4 = 1;
short short_1 = 1;
short short_2 = 1;
int int_5 = 1;
short short_3 = 1;
unsigned int unsigned_int_4 = 1;
long long_3 = 1;
unsigned int unsigned_int_6 = 1;
char char_3 = 1;
double double_7 = 1;
short short_4 = 1;
unsigned int unsigned_int_7 = 1;
double_1 = double_1 * double_2;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
if(1)
{
double_3 = double_3;
}
if(1)
{
if(1)
{
unsigned_int_3 = unsigned_int_2 * unsigned_int_1;
}
unsigned_int_2 = unsigned_int_2 * unsigned_int_1;
long_2 = long_1 + long_2;
if(1)
{
float_2 = float_1 + float_2;
}
if(1)
{
char_1 = char_1 * char_1;
}
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
if(1)
{
char_2 = char_2 * char_1;
int_1 = int_2;
int_4 = int_3 * int_2;
}
unsigned_int_2 = unsigned_int_1;
}
if(1)
{
if(1)
{
unsigned_int_3 = unsigned_int_1 * unsigned_int_3;
}
int_2 = int_1 + int_3;
}
if(1)
{
if(1)
{
float_2 = float_3;
}
double_4 = double_1;
}
if(1)
{
int_3 = int_4 + int_2;
char_1 = char_2;
if(1)
{
short_2 = short_1 + short_1;
}
for(int looper_1=0; looper_1<1;looper_1++)
{
int_5 = int_4;
short_1 = short_2 * short_3;
}
}
if(1)
{
float float_4 = 1;
unsigned int unsigned_int_5 = 1;
int_1 = int_4 + int_5;
float_1 = float_3 * float_1;
if(1)
{
float float_5 = 1;
float_5 = float_4 * float_2;
}
for(int looper_2=0; looper_2<1;looper_2++)
{
unsigned_int_5 = unsigned_int_3 * unsigned_int_4;
int_2 = int_1 * int_1;
}
if(1)
{
double double_5 = 1;
double double_6 = 1;
float float_6 = 1;
float float_7 = 1;
int int_7 = 1;
for(int looper_3=0; looper_3<1;looper_3++)
{
long_2 = long_1 * long_3;
float_4 = float_4 * float_1;
}
if(1)
{
for(int looper_4=0; looper_4<1;looper_4++)
{
double_3 = double_4 * double_5;
char_1 = char_1 * char_2;
}
}
if(1)
{
double_6 = double_4 + double_1;
float_6 = float_2 + float_4;
}
if(1)
{
if(1)
{
if(1)
{
unsigned_int_4 = unsigned_int_6;
}
if(1)
{
int_2 = int_5 + int_2;
char_3 = char_1 + char_3;
unsigned_int_6 = unsigned_int_3;
for(int looper_5=0; looper_5<1;looper_5++)
{
if(1)
{
long long_4 = 1;
long long_5 = 1;
long_5 = long_1 + long_4;
}
double_7 = double_1 * double_6;
short_2 = short_1;
}
}
for(int looper_6=0; looper_6<1;looper_6++)
{
char char_4 = 1;
char char_5 = 1;
double_3 = double_5 * double_3;
char_5 = char_1 + char_4;
}
}
float_4 = float_4 + float_6;
}
if(1)
{
if(1)
{
long long_6 = 1;
long long_7 = 1;
long_7 = long_6 * long_6;
}
unsigned_int_5 = unsigned_int_3 + unsigned_int_4;
}
if(1)
{
if(1)
{
long_3 = long_1 + long_1;
}
unsigned_int_5 = unsigned_int_2;
}
if(1)
{
if(1)
{
char char_6 = 1;
char_6 = char_2 * char_6;
}
unsigned_int_5 = unsigned_int_5;
}
if(1)
{
if(1)
{
short short_5 = 1;
short_2 = short_4 + short_5;
}
if(1)
{
int_1 = int_4 * int_5;
}
unsigned_int_2 = unsigned_int_2 + unsigned_int_1;
}
if(1)
{
if(1)
{
unsigned_int_3 = unsigned_int_2 + unsigned_int_6;
}
float_3 = float_3 * float_7;
}
if(1)
{
if(1)
{
int_2 = int_4 + int_2;
}
long_1 = long_2 + long_3;
if(1)
{
double_4 = double_7 + double_1;
}
if(1)
{
char_2 = char_3;
}
}
if(1)
{
int int_6 = 1;
int_5 = int_6 * int_2;
int_5 = int_4;
if(1)
{
unsigned_int_6 = unsigned_int_5 + unsigned_int_7;
}
float_4 = float_7 + float_2;
for(int looper_7=0; looper_7<1;looper_7++)
{
if(1)
{
short short_6 = 1;
int_5 = int_5 + int_5;
short_6 = short_1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
int_1 = int_7;
unsigned_int_5 = unsigned_int_4 * unsigned_int_1;
}
double_2 = double_6 * double_6;
}
}
if(1)
{
int_3 = int_7 * int_3;
}
}
}
if(1)
{
char char_7 = 1;
char char_8 = 1;
long long_8 = 1;
int int_8 = 1;
if(1)
{
short_4 = short_3 + short_1;
}
double_2 = double_7;
char_8 = char_3 + char_7;
long_8 = long_3 + long_2;
int_8 = int_2 + int_5;
}
unsigned_int_2 = unsigned_int_6 + unsigned_int_7;
unsigned_int_4 = unsigned_int_3 + unsigned_int_4;
}
void v_USBMIDIDevice( char parameter_1,int uni_para)
{
short short_1 = 1;
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
float float_1 = 1;
float float_2 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
double double_1 = 1;
double double_2 = 1;
int int_2 = 1;
int int_3 = 1;
short_1 = v_USBMIDIDeviceConfigure(short_1,uni_para);
int_1 = int_1 * int_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
float_2 = float_1 * float_1;
char_3 = char_1 * char_2;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
double_2 = double_1 + double_1;
int_3 = int_1 * int_2;
}
void v_USBGamePadDeviceCompletionRoutine( short parameter_1)
{
int int_1 = 1;
int int_2 = 1;
long long_1 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
unsigned int unsigned_int_1 = 1;
double double_4 = 1;
char char_1 = 1;
int int_3 = 1;
v__USBRequest();
int_2 = int_1 * int_2;
int_1 = v_USBGamePadDeviceStartRequest(long_1);
double_3 = double_1 + double_2;
short_1 = short_1;
v_free();
short_1 = short_2 + short_3;
if(1)
{
if(1)
{
double_2 = double_1 + double_2;
unsigned_int_1 = v_USBRequestGetResultLength(short_2);
int_2 = int_1;
}
}
double_1 = double_3 * double_4;
char_1 = v_USBGamePadDeviceDecodeReport(double_2);
int_3 = int_3 + int_3;
int_2 = int_3;
int_1 = v_USBRequestGetStatus(double_2);
double_4 = double_3 * double_1;
}
int v_USBGamePadDeviceStartRequest( long parameter_1)
{
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
char char_2 = 1;
double double_1 = 1;
char char_3 = 1;
float float_1 = 1;
short short_1 = 1;
long long_1 = 1;
long long_2 = 1;
double double_2 = 1;
double double_3 = 1;
short short_2 = 1;
long long_3 = 1;
long long_4 = 1;
unsigned int unsigned_int_1 = 1;
long long_5 = 1;
long long_6 = 1;
int int_3 = 1;
int_2 = int_1 + int_1;
char_1 = v_DWHCIDeviceSubmitAsyncRequest(char_2,double_1);
char_3 = char_3 + char_2;
v_USBRequestSetCompletionRoutine(float_1,short_1);
long_1 = long_1 + long_2;
double_1 = double_2 * double_3;
v_USBGamePadDeviceCompletionRoutine(short_2);
double_2 = double_1 + double_1;
short_2 = v_malloc(double_1);
long_4 = long_2 + long_3;
short_2 = v_USBDeviceGetHost(float_1);
short_1 = short_1 + short_1;
v_USBRequest(unsigned_int_1);
long_6 = long_3 + long_5;
return int_3;
}
void v_USBGamePadDevicePS3Configure( double parameter_1)
{
long long_1 = 1;
long long_2 = 1;
short short_1 = 1;
float float_1 = 1;
float float_2 = 1;
int int_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
short short_3 = 1;
int int_2 = 1;
int int_3 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
double double_4 = 1;
float float_3 = 1;
double double_5 = 1;
double double_6 = 1;
long_1 = long_1 + long_2;
short_1 = v_USBDeviceGetHost(float_1);
float_2 = v_USBDeviceGetEndpoint0(int_1);
short_2 = short_1 + short_2;
long_2 = long_1 * long_2;
float_2 = float_2 * float_2;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
short_3 = short_1;
int_3 = int_2 * int_2;
double_3 = double_1 + double_2;
int_3 = v_DWHCIDeviceControlMessage(float_1,double_1,double_4,float_3,unsigned_int_1,double_3,double_1,-1 );
double_6 = double_1 * double_5;
}
char v_BitGetSigned(double parameter_2,short parameter_3)
{
short short_1 = 1;
char char_1 = 1;
long long_1 = 1;
double double_1 = 1;
double double_2 = 1;
short_1 = v_BitGetUnsigned(char_1,long_1);
double_2 = double_1 + double_1;
if(1)
{
float float_1 = 1;
float_1 = float_1 + float_1;
}
return char_1;
}
short v_BitGetUnsigned(char parameter_2,long parameter_3)
{
short short_1 = 1;
short short_2 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_4 = 1;
short short_4 = 1;
short_1 = short_2;
double_3 = double_1 * double_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
double_2 = double_1 * double_2;
double_4 = double_1 + double_3;
for(int looper_1=0; looper_1<1;looper_1++)
{
char char_2 = 1;
char char_3 = 1;
unsigned int unsigned_int_4 = 1;
if(1)
{
char char_1 = 1;
unsigned int unsigned_int_3 = 1;
char_3 = char_1 + char_2;
unsigned_int_3 = unsigned_int_3 + unsigned_int_1;
}
if(1)
{
char char_4 = 1;
int int_1 = 1;
char_2 = char_3 + char_4;
unsigned_int_2 = unsigned_int_1 * unsigned_int_4;
int_1 = int_1 * int_1;
}
if(1)
{
short short_3 = 1;
short_4 = short_3 * short_4;
double_2 = double_3 * double_1;
}
if(1)
{
int int_2 = 1;
int int_3 = 1;
unsigned int unsigned_int_5 = 1;
int_2 = int_2 * int_3;
unsigned_int_1 = unsigned_int_4 * unsigned_int_5;
}
}
return short_4;
}
char v_USBGamePadDeviceDecodeReport( double parameter_1)
{
short short_1 = 1;
char char_1 = 1;
long long_1 = 1;
char char_2 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
double double_2 = 1;
short_1 = v_BitGetUnsigned(char_1,long_1);
char_2 = v_BitGetSigned(double_1,short_1);
unsigned_int_1 = unsigned_int_1;
double_2 = double_2 * double_1;
return char_1;
}
long v_USBGamePadDeviceConfigure()
{
char char_1 = 1;
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
long long_1 = 1;
char char_2 = 1;
double double_1 = 1;
short short_1 = 1;
long long_2 = 1;
int int_2 = 1;
float float_1 = 1;
double double_2 = 1;
short short_2 = 1;
float float_2 = 1;
char char_3 = 1;
float float_3 = 1;
int int_3 = 1;
unsigned int unsigned_int_2 = 1;
int int_4 = 1;
long long_3 = 1;
short short_3 = 1;
short short_4 = 1;
short short_5 = 1;
short short_6 = 1;
char_1 = v_USBDeviceGetDescriptor(int_1,unsigned_int_1);
v_USBDeviceConfigurationError(long_1,char_2);
v_USBGamePadDevicePS3Configure(double_1);
v__String(long_1);
short_1 = short_1 + short_1;
short_1 = v_DeviceNameServiceGet();
long_2 = long_1;
int_2 = v_DWHCIDeviceControlMessage(float_1,double_2,double_2,float_1,unsigned_int_1,double_2,double_1,-1 );
short_2 = v_USBDeviceGetHost(float_2);
v_LogWrite(short_1,short_2,int_2,double_1,-1 );
char_3 = v_USBGamePadDeviceDecodeReport(double_2);
v_String(long_1);
v_StringFormat(char_1,short_2,float_3);
int_3 = v_StringGet(float_3);
unsigned_int_2 = unsigned_int_2 + unsigned_int_1;
float_3 = v_USBDeviceGetEndpoint0(int_3);
v_USBDeviceConfigure(-1 );
int_4 = v_USBGamePadDeviceStartRequest(long_3);
short_3 = short_3 + short_4;
short_5 = v_malloc(double_2);
short_5 = short_6 + short_5;
if(1)
{
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
v_DeviceNameServiceAddDevice(unsigned_int_1,short_4,char_2);
unsigned_int_4 = unsigned_int_3 + unsigned_int_1;
}
return long_1;
v_USBEndpoint2(char_1,short_4,short_2);
}
void v_USBGamePadDevice( long parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
int int_2 = 1;
float float_1 = 1;
char char_1 = 1;
float float_2 = 1;
int int_3 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
double double_3 = 1;
double double_4 = 1;
float float_3 = 1;
long long_1 = 1;
unsigned int unsigned_int_3 = 1;
int int_4 = 1;
char char_2 = 1;
float float_4 = 1;
short short_4 = 1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
double_1 = double_1 * double_2;
int_1 = int_2;
float_1 = float_1 * float_1;
char_1 = char_1 * char_1;
v_USBDeviceCopy(float_2,int_3);
short_3 = short_1 * short_2;
double_3 = double_3 + double_4;
float_3 = float_1 * float_2;
long_1 = v_USBGamePadDeviceConfigure();
unsigned_int_1 = unsigned_int_3 + unsigned_int_3;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
unsigned_int_3 = unsigned_int_1 * unsigned_int_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
unsigned int unsigned_int_4 = 1;
short_1 = short_3 * short_1;
int_3 = int_4 * int_2;
unsigned_int_4 = unsigned_int_3 + unsigned_int_2;
}
int_2 = int_4 * int_3;
for(int looper_2=0; looper_2<1;looper_2++)
{
int_1 = int_3;
}
char_2 = char_2 + char_1;
float_2 = float_3 * float_2;
int_2 = int_3 + int_1;
float_4 = float_1 + float_1;
short_4 = v_malloc(double_2);
}
long v_LAN7800DevicePHYWrite( double parameter_1,unsigned int parameter_2,float parameter_3)
{
char char_1 = 1;
char char_2 = 1;
int int_1 = 1;
double double_1 = 1;
double double_2 = 1;
char char_3 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
long long_1 = 1;
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
long long_2 = 1;
long long_3 = 1;
char_2 = char_1 + char_1;
int_1 = int_1 * int_1;
if(1)
{
}
double_1 = double_1 * double_2;
int_1 = v_LAN7800DeviceWriteReg(char_3,double_1,char_3);
float_3 = float_1 * float_2;
long_1 = v_LAN7800DeviceWaitReg(char_3,long_1,unsigned_int_1,short_1);
long_3 = long_1 * long_2;
if(1)
{
}
return long_1;
}
float v_LAN7800DevicePHYRead( int parameter_1,double parameter_2,unsigned int parameter_3)
{
long long_1 = 1;
char char_1 = 1;
long long_2 = 1;
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
int int_1 = 1;
char char_2 = 1;
double double_1 = 1;
long long_3 = 1;
char char_3 = 1;
double double_2 = 1;
double double_3 = 1;
double double_4 = 1;
float float_1 = 1;
float float_2 = 1;
long long_4 = 1;
long long_5 = 1;
char char_4 = 1;
float float_3 = 1;
long_1 = v_LAN7800DeviceWaitReg(char_1,long_2,unsigned_int_1,short_1);
int_1 = v_LAN7800DeviceWriteReg(char_2,double_1,char_2);
v_LAN7800DeviceReadReg(double_1,long_3,int_1);
char_1 = char_3;
double_2 = double_1 * double_1;
if(1)
{
}
double_4 = double_3 * double_2;
float_1 = float_1 + float_2;
long_5 = long_4 + long_4;
char_3 = char_1 + char_2;
if(1)
{
}
char_2 = char_3 + char_4;
float_1 = float_1 * float_2;
return float_3;
}
void v_LAN7800DeviceInitPHY( double parameter_1)
{
double double_1 = 1;
double double_2 = 1;
float float_1 = 1;
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
long long_1 = 1;
long long_2 = 1;
short short_1 = 1;
unsigned int unsigned_int_2 = 1;
short short_2 = 1;
short short_3 = 1;
double_2 = double_1 * double_2;
float_1 = v_LAN7800DevicePHYRead(int_1,double_1,unsigned_int_1);
long_1 = long_1 + long_2;
char controller_1[2];
fgets(controller_1 ,2 ,stdin);
if( strcmp( controller_1, "e") < 0)
{
}
double_2 = double_2;
short_1 = short_1 + short_1;
long_1 = v_LAN7800DevicePHYWrite(double_2,unsigned_int_2,float_1);
short_2 = short_2 + short_3;
}
double v_LAN7800DeviceInitMACAddress( char parameter_1)
{
double double_1 = 1;
int int_1 = 1;
char char_1 = 1;
char char_2 = 1;
short short_1 = 1;
short short_2 = 1;
long long_1 = 1;
short short_3 = 1;
short short_4 = 1;
short short_5 = 1;
short short_6 = 1;
float float_1 = 1;
long long_2 = 1;
long long_3 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
int int_3 = 1;
int int_4 = 1;
int int_5 = 1;
unsigned int unsigned_int_4 = 1;
long long_4 = 1;
double double_2 = 1;
double_1 = double_1 + double_1;
int_1 = v_LAN7800DeviceWriteReg(char_1,double_1,char_2);
v_MACAddressFormat(short_1,short_2);
v__String(long_1);
short_5 = short_3 * short_4;
if(1)
{
}
short_6 = short_3 + short_2;
int_1 = v_StringGet(float_1);
long_3 = long_2 + long_1;
int_2 = int_2 + int_1;
if(1)
{
}
if(1)
{
}
int_2 = int_2 * int_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
v_MACAddressSet(double_1,unsigned_int_3);
int_3 = int_2 + int_3;
v_MACAddress(int_4);
int_5 = v_GetMACAddress(double_1);
unsigned_int_4 = unsigned_int_3 * unsigned_int_3;
v_String(long_4);
char_2 = char_2 * char_1;
return double_1;
v_LogWrite(short_6,short_5,int_4,double_2,-1 );
}
long v_LAN7800DeviceWaitReg( char parameter_1,long parameter_2,unsigned int parameter_3,short parameter_4)
{
long long_1 = 1;
long long_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
int int_2 = 1;
double double_1 = 1;
double double_2 = 1;
double double_4 = 1;
double double_5 = 1;
double double_6 = 1;
int int_4 = 1;
long long_3 = 1;
long_1 = long_1;
if(1)
{
v_MsDelay(long_2);
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
if(1)
{
float float_1 = 1;
float float_2 = 1;
float_2 = float_1 + float_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
}
unsigned_int_2 = unsigned_int_2;
if(1)
{
double double_3 = 1;
int_1 = int_1 + int_2;
double_3 = double_1 * double_2;
}
unsigned_int_2 = unsigned_int_2 + unsigned_int_1;
}
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
if(1)
{
int int_3 = 1;
int_3 = int_2 * int_1;
int_1 = int_3 * int_2;
}
double_4 = double_2 * double_4;
if(1)
{
unsigned int unsigned_int_3 = 1;
double_2 = double_5 + double_2;
unsigned_int_3 = unsigned_int_1 + unsigned_int_1;
}
double_6 = double_4 + double_4;
if(1)
{
short short_1 = 1;
double_4 = double_1 * double_6;
v_LAN7800DeviceReadReg(double_5,long_1,int_1);
short_1 = short_1 + short_1;
}
int_4 = int_2 * int_4;
return long_3;
}
int v_LAN7800DeviceWriteReg( char parameter_1,double parameter_2,char parameter_3)
{
short short_1 = 1;
float float_1 = 1;
float float_2 = 1;
int int_1 = 1;
short short_2 = 1;
int int_2 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
float float_3 = 1;
int int_3 = 1;
double double_4 = 1;
unsigned int unsigned_int_1 = 1;
short_1 = v_USBDeviceGetHost(float_1);
float_2 = v_USBDeviceGetEndpoint0(int_1);
v_LogWrite(short_2,short_2,int_2,double_1,-1 );
double_3 = double_1 * double_2;
char controller_1[3];
fgets(controller_1 ,3 ,stdin);
if( strcmp( controller_1, "nE") == 0)
{
float_3 = float_2;
}
return int_2;
int_3 = v_DWHCIDeviceControlMessage(float_2,double_4,double_2,float_3,unsigned_int_1,double_4,double_3,-1 );
}
unsigned int v_LAN7800DeviceReadWriteReg( long parameter_1,double parameter_2,double parameter_3,double parameter_4)
{
int int_1 = 1;
char char_1 = 1;
double double_1 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_2 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
long long_1 = 1;
int_1 = v_LAN7800DeviceWriteReg(char_1,double_1,char_1);
int_4 = int_2 * int_3;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
if(1)
{
}
double_2 = double_2 + double_2;
short_3 = short_1 * short_2;
return unsigned_int_1;
v_LAN7800DeviceReadReg(double_2,long_1,int_4);
}
void v_LAN7800DeviceReadReg( double parameter_1,long parameter_2,int parameter_3)
{
long long_1 = 1;
long long_2 = 1;
short short_1 = 1;
float float_1 = 1;
float float_2 = 1;
int int_1 = 1;
double double_1 = 1;
int int_2 = 1;
float float_3 = 1;
unsigned int unsigned_int_1 = 1;
double double_2 = 1;
double double_3 = 1;
short short_2 = 1;
double double_4 = 1;
long_2 = long_1 * long_2;
if(1)
{
short_1 = v_USBDeviceGetHost(float_1);
float_2 = v_USBDeviceGetEndpoint0(int_1);
double_1 = double_1 + double_1;
}
int_2 = v_DWHCIDeviceControlMessage(float_1,double_1,double_1,float_3,unsigned_int_1,double_2,double_3,-1 );
v_LogWrite(short_1,short_2,int_2,double_4,-1 );
}
void v_LAN7800DeviceConfigure( long parameter_1)
{
short short_1 = 1;
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
long long_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_3 = 1;
char char_1 = 1;
long long_4 = 1;
double double_3 = 1;
int int_1 = 1;
char char_2 = 1;
float float_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_2 = 1;
unsigned int unsigned_int_4 = 1;
short short_3 = 1;
short short_4 = 1;
short_1 = v_malloc(double_1);
v_LAN7800DeviceInitPHY(double_2);
v_String(long_1);
v__String(long_2);
unsigned_int_1 = unsigned_int_2;
for(int looper_1=0; looper_1<1;looper_1++)
{
v_USBDeviceConfigurationError(long_3,char_1);
unsigned_int_2 = v_LAN7800DeviceReadWriteReg(long_4,double_1,double_2,double_3);
int_1 = v_LAN7800DeviceWriteReg(char_2,double_2,char_2);
v_DeviceNameServiceAddDevice(unsigned_int_1,short_1,char_1);
int_1 = v_StringGet(float_1);
float_2 = float_1 + float_1;
}
char_1 = v_USBDeviceGetDescriptor(int_1,unsigned_int_3);
v_USBEndpoint2(char_2,short_1,short_1);
v_USBDeviceConfigure(-1 );
v_LogWrite(short_1,short_2,int_1,double_3,-1 );
v_LAN7800DeviceReadReg(double_3,long_3,int_1);
long_4 = v_LAN7800DeviceWaitReg(char_2,long_1,unsigned_int_4,short_3);
double_2 = v_LAN7800DeviceInitMACAddress(char_2);
v_StringFormat(char_2,short_4,float_2);
short_3 = v_DeviceNameServiceGet();
}
void v_LAN7800Device( int parameter_1)
{
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
float float_1 = 1;
char char_1 = 1;
char char_2 = 1;
long long_1 = 1;
short short_1 = 1;
double double_1 = 1;
float float_2 = 1;
float float_3 = 1;
double double_2 = 1;
short short_2 = 1;
float float_4 = 1;
int_1 = int_1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
v_USBDeviceCopy(float_1,int_1);
char_2 = char_1 + char_1;
v_LAN7800DeviceConfigure(long_1);
short_1 = v_malloc(double_1);
float_2 = float_3;
double_1 = double_2 + double_2;
float_1 = float_2 + float_3;
short_1 = short_2 + short_2;
float_4 = float_2 * float_2;
}
void v_SMSC951xDeviceWriteReg( double parameter_1,long parameter_2,char parameter_3)
{
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
float float_1 = 1;
double double_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_2 = 1;
double double_2 = 1;
short short_1 = 1;
int int_2 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
int_1 = v_DWHCIDeviceControlMessage(float_1,double_1,double_1,float_2,unsigned_int_2,double_1,double_2,-1 );
short_1 = v_USBDeviceGetHost(float_1);
float_2 = v_USBDeviceGetEndpoint0(int_2);
}
void v_MACAddressCopyTo( long parameter_1,unsigned int parameter_2)
{
double double_1 = 1;
double double_2 = 1;
short short_1 = 1;
char char_1 = 1;
int int_1 = 1;
float float_1 = 1;
long long_1 = 1;
long long_2 = 1;
float float_2 = 1;
float float_3 = 1;
double_1 = double_2;
short_1 = v_memcpy(char_1,int_1);
float_1 = float_1 * float_1;
long_1 = long_2;
float_1 = float_2 * float_3;
}
void v_MACAddressFormat( short parameter_1,short parameter_2)
{
char char_1 = 1;
short short_1 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
long long_1 = 1;
long long_2 = 1;
int int_1 = 1;
char char_2 = 1;
v_StringFormat(char_1,short_1,float_1);
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
long_1 = long_1 * long_2;
int_1 = int_1 * int_1;
char_2 = char_2 + char_1;
}
void v_MACAddressSet( double parameter_1,unsigned int parameter_2)
{
short short_1 = 1;
char char_1 = 1;
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
float float_1 = 1;
long long_1 = 1;
long long_2 = 1;
double double_1 = 1;
double double_2 = 1;
short_1 = v_memcpy(char_1,int_1);
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
float_1 = float_1;
long_2 = long_1 + long_2;
double_1 = double_2;
}
int v_GetMACAddress( double parameter_1)
{
short short_1 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
char char_1 = 1;
int int_4 = 1;
int int_5 = 1;
short short_2 = 1;
long long_1 = 1;
unsigned int unsigned_int_3 = 1;
short_1 = short_1;
int_2 = int_1 * int_1;
v_MACAddress(int_3);
double_3 = double_1 + double_2;
if(1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
short_1 = v_memcpy(char_1,int_2);
unsigned_int_1 = unsigned_int_1 + unsigned_int_2;
}
double_3 = v_BcmPropertyTagsGetTag(int_4,int_1,char_1,int_5);
int_5 = int_1 * int_3;
v_BcmPropertyTags(short_2);
long_1 = long_1 * long_1;
return int_4;
v__BcmPropertyTags(unsigned_int_3);
}
void v_MACAddress( int parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
unsigned_int_4 = unsigned_int_1;
}
short v_SMSC951xDeviceConfigure( int parameter_1)
{
int int_1 = 1;
double double_1 = 1;
char char_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
char char_2 = 1;
short short_1 = 1;
double double_2 = 1;
double double_4 = 1;
unsigned int unsigned_int_2 = 1;
short short_2 = 1;
short short_3 = 1;
int int_3 = 1;
float float_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_3 = 1;
long long_1 = 1;
short short_4 = 1;
if(1)
{
double double_3 = 1;
v_MACAddress(int_1);
int_1 = v_GetMACAddress(double_1);
char_1 = v_USBDeviceGetDescriptor(int_2,unsigned_int_1);
v_USBEndpoint2(char_2,short_1,short_1);
double_4 = double_2 + double_3;
}
if(1)
{
v_MACAddressSet(double_1,unsigned_int_2);
v_LogWrite(short_1,short_1,int_1,double_2,-1 );
v_MACAddressFormat(short_2,short_3);
int_3 = v_StringGet(float_1);
v_StringFormat(char_2,short_1,float_2);
unsigned_int_1 = unsigned_int_3 * unsigned_int_3;
}
return short_1;
v_String(long_1);
v_USBDeviceConfigurationError(long_1,char_1);
v__String(long_1);
short_3 = v_malloc(double_1);
v_USBDeviceConfigure(-1 );
v_MACAddressCopyTo(long_1,unsigned_int_2);
v_SMSC951xDeviceWriteReg(double_4,long_1,char_1);
v_DeviceNameServiceAddDevice(unsigned_int_3,short_4,char_1);
short_3 = v_DeviceNameServiceGet();
}
void v_SMSC951xDevice( short parameter_1)
{
short short_1 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
unsigned int unsigned_int_3 = 1;
int int_2 = 1;
int int_3 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
unsigned int unsigned_int_4 = 1;
int int_4 = 1;
float float_1 = 1;
short_1 = v_malloc(double_1);
unsigned_int_1 = unsigned_int_1 + unsigned_int_2;
short_1 = v_SMSC951xDeviceConfigure(int_1);
unsigned_int_3 = unsigned_int_2 + unsigned_int_3;
int_3 = int_1 * int_2;
char_3 = char_1 * char_2;
unsigned_int_4 = unsigned_int_2;
int_2 = int_2 + int_1;
int_4 = int_4 + int_2;
v_USBDeviceCopy(float_1,int_1);
int_3 = int_3 * int_4;
}
int v_uspi_char2int( char parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
unsigned_int_1 = unsigned_int_2;
if(1)
{
short short_1 = 1;
short_1 = short_1 + short_1;
}
return int_1;
}
void v_USBMouseDeviceCompletionRoutine( long parameter_1)
{
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
float float_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_4 = 1;
short short_1 = 1;
unsigned int unsigned_int_5 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
double double_3 = 1;
float float_2 = 1;
char_3 = char_1 + char_2;
int_1 = int_1 * int_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
float_1 = float_1 + float_1;
if(1)
{
unsigned int unsigned_int_3 = 1;
double double_1 = 1;
double double_2 = 1;
v_free();
unsigned_int_2 = unsigned_int_3;
double_1 = double_1 + double_2;
}
unsigned_int_4 = v_USBRequestGetResultLength(short_1);
v__USBRequest();
char_2 = char_3;
unsigned_int_5 = unsigned_int_1 * unsigned_int_2;
int_4 = int_2 * int_3;
int_1 = v_USBRequestGetStatus(double_3);
int_3 = int_2;
int_3 = v_uspi_char2int(char_1);
int_4 = v_USBMouseDeviceStartRequest(float_2);
}
int v_USBMouseDeviceStartRequest( float parameter_1)
{
long long_1 = 1;
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
char char_1 = 1;
double double_1 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_2 = 1;
long long_2 = 1;
float float_2 = 1;
char char_2 = 1;
char char_3 = 1;
v_USBMouseDeviceCompletionRoutine(long_1);
short_2 = short_1 * short_1;
int_1 = int_1 * int_1;
char_1 = v_DWHCIDeviceSubmitAsyncRequest(char_1,double_1);
short_1 = short_1 + short_2;
short_2 = v_USBDeviceGetHost(float_1);
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
short_1 = v_malloc(double_2);
long_2 = long_1 * long_2;
unsigned_int_2 = unsigned_int_1;
v_USBRequest(unsigned_int_1);
v_USBRequestSetCompletionRoutine(float_2,short_1);
long_1 = long_2 + long_1;
char_3 = char_2 * char_2;
return int_1;
}
short v_USBMouseDeviceConfigure( int parameter_1)
{
short short_1 = 1;
float float_1 = 1;
int int_1 = 1;
int int_2 = 1;
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
long long_1 = 1;
unsigned int unsigned_int_1 = 1;
char char_2 = 1;
long long_2 = 1;
char char_3 = 1;
int int_3 = 1;
double double_4 = 1;
int int_4 = 1;
int int_5 = 1;
float float_2 = 1;
float float_3 = 1;
unsigned int unsigned_int_2 = 1;
double double_5 = 1;
char char_4 = 1;
short short_2 = 1;
if(1)
{
v_USBDeviceConfigure(-1 );
short_1 = v_USBDeviceGetHost(float_1);
float_1 = v_USBDeviceGetEndpoint0(int_1);
short_1 = v_DeviceNameServiceGet();
int_2 = v_USBMouseDeviceStartRequest(float_1);
double_2 = double_1 * double_1;
}
if(1)
{
double double_3 = 1;
v_USBEndpoint2(char_1,short_1,short_1);
v_String(long_1);
v_DeviceNameServiceAddDevice(unsigned_int_1,short_1,char_1);
double_1 = double_1 + double_3;
}
char_2 = v_USBDeviceGetDescriptor(int_1,unsigned_int_1);
v_USBDeviceConfigurationError(long_2,char_3);
v__String(long_1);
int_1 = int_3 + int_2;
return short_1;
short_1 = v_malloc(double_4);
v_LogWrite(short_1,short_1,int_4,double_1,-1 );
int_5 = v_DWHCIDeviceControlMessage(float_2,double_2,double_4,float_3,unsigned_int_2,double_4,double_5,-1 );
v_StringFormat(char_4,short_2,float_2);
int_1 = v_StringGet(float_1);
}
void v_USBMouseDevice( short parameter_1)
{
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_1 = 1;
double double_1 = 1;
short short_2 = 1;
float float_1 = 1;
int int_4 = 1;
double double_2 = 1;
double double_3 = 1;
long long_1 = 1;
long long_2 = 1;
int_3 = int_1 * int_2;
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
short_1 = v_malloc(double_1);
short_1 = short_2 * short_1;
v_USBDeviceCopy(float_1,int_4);
double_3 = double_2 + double_3;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
unsigned_int_3 = unsigned_int_1 + unsigned_int_1;
short_2 = v_USBMouseDeviceConfigure(int_2);
double_2 = double_3;
int_3 = int_2 * int_3;
long_1 = long_2;
}
void v_KeyMap( float parameter_1)
{
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
unsigned int unsigned_int_6 = 1;
int int_3 = 1;
short short_1 = 1;
char char_1 = 1;
int_2 = int_1 + int_1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
unsigned_int_3 = unsigned_int_4;
unsigned_int_5 = unsigned_int_5 * unsigned_int_6;
int_2 = int_3 * int_3;
unsigned_int_3 = unsigned_int_2;
short_1 = v_memcpy(char_1,int_2);
}
char v_DWHCIDeviceSubmitAsyncRequest( char parameter_1,double parameter_2)
{
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
long long_1 = 1;
short short_1 = 1;
int int_2 = 1;
long long_2 = 1;
long long_3 = 1;
int int_3 = 1;
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
float float_1 = 1;
int int_4 = 1;
char char_2 = 1;
unsigned int unsigned_int_4 = 1;
v_USBRequestSetStatus(unsigned_int_1,int_1);
unsigned_int_3 = unsigned_int_2 * unsigned_int_1;
long_1 = v_USBEndpointGetType(short_1);
int_2 = int_2 * int_1;
long_3 = long_2 + long_1;
int_3 = int_1 * int_2;
unsigned_int_1 = v_USBEndpointIsDirectionIn(int_2);
double_1 = double_2;
int_3 = int_1 + int_1;
int_2 = v_DWHCIDeviceTransferStageAsync(char_1,int_1,float_1,short_1,-1 );
unsigned_int_1 = unsigned_int_2 + unsigned_int_2;
v_USBRequestGetBufLen(double_1);
int_3 = int_4 * int_1;
return char_2;
char_2 = v_USBRequestGetEndpoint(unsigned_int_4);
}
void v_TimerCancelKernelTimer( int parameter_1,int parameter_2)
{
int int_1 = 1;
double double_1 = 1;
double double_2 = 1;
int int_2 = 1;
int_1 = int_1 * int_1;
double_1 = double_1 * double_2;
int_1 = int_1 + int_2;
}
void v_CancelKernelTimer( short parameter_1)
{
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
int int_1 = 1;
unsigned_int_1 = v_TimerGet();
short_1 = short_1 * short_1;
v_TimerCancelKernelTimer(int_1,int_1);
}
short v_KeyMapGetString( float parameter_1,unsigned int parameter_2,short parameter_3,char parameter_4)
{
long long_1 = 1;
float float_1 = 1;
short short_1 = 1;
short short_2 = 1;
double double_1 = 1;
double double_2 = 1;
long_1 = long_1 + long_1;
if(1)
{
}
if(1)
{
}
float_1 = float_1 + float_1;
if(1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned_int_1 = unsigned_int_2;
if(1)
{
short_2 = short_1 + short_1;
double_1 = double_1 * double_1;
}
}
if(1)
{
if(1)
{
short_2 = short_1 * short_1;
}
if(1)
{
short short_3 = 1;
short_1 = short_3 * short_1;
}
}
double_1 = double_1 * double_1;
double_1 = double_2 * double_1;
return short_1;
}
unsigned int v_KeyMapTranslate( double parameter_1,int parameter_2,char parameter_3)
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
char char_2 = 1;
char char_3 = 1;
int int_2 = 1;
long long_1 = 1;
unsigned int unsigned_int_3 = 1;
double_1 = double_1 * double_2;
if(1)
{
}
double_2 = double_1 + double_3;
if(1)
{
}
if(1)
{
}
if(1)
{
}
int_1 = int_1 + int_1;
if(1)
{
if(1)
{
unsigned int unsigned_int_2 = 1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
}
}
if(1)
{
if(1)
{
float float_1 = 1;
float float_2 = 1;
float_2 = float_1 + float_2;
}
if(1)
{
char char_1 = 1;
char_1 = char_1 + char_2;
}
}
if(1)
{
double double_4 = 1;
double_4 = double_1 * double_3;
}
char_3 = char_2 * char_2;
int_2 = int_1 * int_2;
long_1 = long_1 + long_1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_1;
return unsigned_int_3;
}
void v_USBKeyboardDeviceGenerateKeyEvent( double parameter_1,char parameter_2)
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
short short_1 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
short short_2 = 1;
char char_1 = 1;
short short_3 = 1;
short short_4 = 1;
short short_5 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
float float_2 = 1;
double double_4 = 1;
char char_2 = 1;
float float_3 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
char char_3 = 1;
short short_6 = 1;
double_3 = double_1 + double_2;
short_1 = v_KeyMapGetString(float_1,unsigned_int_1,short_2,char_1);
short_2 = short_1 + short_3;
short_1 = short_4 + short_5;
int_2 = int_1 + int_1;
int_3 = int_2 * int_3;
int_2 = int_4 + int_1;
if(1)
{
int int_5 = 1;
int_5 = int_3 * int_5;
float_1 = float_2 * float_2;
double_3 = double_4;
}
char_2 = v_USBKeyboardDeviceGetModifiers(float_3);
unsigned_int_2 = unsigned_int_2 * unsigned_int_3;
if(1)
{
double_3 = double_1 + double_1;
}
double_1 = double_1 * double_2;
unsigned_int_2 = v_KeyMapTranslate(double_3,int_1,char_3);
double_4 = double_2 * double_2;
if(1)
{
if(1)
{
float float_4 = 1;
float_2 = float_3 + float_4;
}
}
short_5 = short_6 + short_6;
}
double v_USBKeyboardDeviceGetKeyCode( float parameter_1)
{
double double_1 = 1;
double double_2 = 1;
double_1 = double_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
double_1 = double_1 + double_2;
if(1)
{
}
}
return double_2;
}
char v_USBKeyboardDeviceGetModifiers( float parameter_1)
{
short short_1 = 1;
char char_1 = 1;
short_1 = short_1 * short_1;
return char_1;
}
void v_USBKeyboardDeviceCompletionRoutine( long parameter_1)
{
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
short short_1 = 1;
float float_1 = 1;
double double_1 = 1;
double double_2 = 1;
int int_4 = 1;
float float_2 = 1;
unsigned int unsigned_int_1 = 1;
double double_3 = 1;
char char_1 = 1;
int int_5 = 1;
double double_6 = 1;
int int_7 = 1;
long long_1 = 1;
long long_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
int_3 = int_1 + int_2;
v_CancelKernelTimer(short_1);
int_1 = v_USBKeyboardDeviceStartRequest(float_1);
double_1 = double_2;
double_1 = double_1 + double_2;
int_2 = int_4 + int_4;
if(1)
{
float float_3 = 1;
if(1)
{
double_1 = v_USBKeyboardDeviceGetKeyCode(float_2);
float_3 = float_2;
}
if(1)
{
double double_4 = 1;
unsigned_int_1 = v_USBRequestGetResultLength(short_1);
v_USBKeyboardDeviceGenerateKeyEvent(double_3,char_1);
double_4 = double_2;
if(1)
{
float float_4 = 1;
float_1 = float_4;
}
if(1)
{
double double_5 = 1;
v__USBRequest();
v_free();
double_2 = double_5;
}
char controller_6[2];
fgets(controller_6 ,2 ,stdin);
if( strcmp( controller_6, "7") < 0)
{
int int_6 = 1;
float_3 = float_3 + float_1;
if(1)
{
int_5 = v_USBRequestGetStatus(double_6);
int_3 = int_3 * int_2;
}
float_1 = float_3 + float_2;
int_6 = int_1 + int_5;
}
if(1)
{
unsigned int unsigned_int_2 = 1;
double double_7 = 1;
char_1 = v_USBKeyboardDeviceGetModifiers(float_1);
unsigned_int_1 = unsigned_int_1 + unsigned_int_2;
double_6 = double_7;
}
}
}
int_2 = int_7 + int_4;
long_2 = long_1 * long_1;
long_2 = long_1 * long_2;
unsigned_int_4 = unsigned_int_3 + unsigned_int_1;
long_2 = v_StartKernelTimer(int_3,float_2);
}
int v_USBKeyboardDeviceStartRequest( float parameter_1)
{
short short_1 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_1 = 1;
char char_2 = 1;
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_3 = 1;
double double_4 = 1;
double double_5 = 1;
unsigned int unsigned_int_4 = 1;
short short_2 = 1;
int int_1 = 1;
short_1 = v_USBDeviceGetHost(float_1);
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
char_2 = char_1 + char_1;
short_1 = v_malloc(double_1);
double_2 = double_1 + double_1;
v_USBKeyboardDeviceCompletionRoutine(long_1);
float_1 = float_1;
v_USBRequestSetCompletionRoutine(float_2,short_1);
unsigned_int_3 = unsigned_int_3 * unsigned_int_3;
v_USBRequest(unsigned_int_1);
double_5 = double_3 * double_4;
unsigned_int_4 = unsigned_int_1 * unsigned_int_1;
short_1 = short_2;
return int_1;
char_1 = v_DWHCIDeviceSubmitAsyncRequest(char_1,double_5);
}
char v_USBKeyboardDeviceConfigure()
{
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
double double_1 = 1;
float float_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
double double_3 = 1;
long long_1 = 1;
char char_1 = 1;
short short_3 = 1;
unsigned int unsigned_int_2 = 1;
short short_4 = 1;
char char_2 = 1;
char char_3 = 1;
int int_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_5 = 1;
double double_4 = 1;
short short_6 = 1;
short short_7 = 1;
float float_2 = 1;
float float_3 = 1;
long long_2 = 1;
int int_3 = 1;
float float_4 = 1;
v_LogWrite(short_1,short_2,int_1,double_1,-1 );
int_1 = v_DWHCIDeviceControlMessage(float_1,double_2,double_1,float_1,unsigned_int_1,double_3,double_1,-1 );
v_String(long_1);
v_StringFormat(char_1,short_3,float_1);
v_DeviceNameServiceAddDevice(unsigned_int_2,short_4,char_1);
char_1 = char_2 * char_1;
char_3 = v_USBDeviceGetDescriptor(int_2,unsigned_int_2);
v_USBDeviceConfigure(-1 );
short_3 = v_DeviceNameServiceGet();
unsigned_int_2 = unsigned_int_3 * unsigned_int_2;
return char_2;
v_USBDeviceConfigurationError(long_1,char_1);
short_5 = v_malloc(double_4);
v_USBEndpoint2(char_1,short_3,short_6);
short_7 = v_USBDeviceGetHost(float_2);
float_2 = v_USBDeviceGetEndpoint0(int_1);
int_2 = v_StringGet(float_3);
v__String(long_2);
int_3 = v_USBKeyboardDeviceStartRequest(float_4);
}
void v_USBKeyboardDevice()
{
double double_1 = 1;
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
short short_1 = 1;
double double_2 = 1;
short short_2 = 1;
short short_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
int int_3 = 1;
float float_1 = 1;
char char_2 = 1;
double double_3 = 1;
int int_4 = 1;
int int_5 = 1;
double_1 = double_1;
int_2 = int_1 * int_1;
char_1 = v_USBKeyboardDeviceConfigure();
short_1 = v_malloc(double_2);
short_3 = short_2 * short_1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
int_3 = int_2;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
v_KeyMap(float_1);
short_3 = short_1 + short_3;
v_USBDeviceCopy(float_1,int_2);
char_1 = char_1 + char_1;
char_1 = char_2 + char_1;
double_1 = double_3 + double_1;
int_3 = int_2 + int_4;
int_5 = int_5;
float_1 = float_1;
unsigned_int_3 = unsigned_int_1 + unsigned_int_3;
double_2 = double_3 + double_2;
}
short v_DeviceNameServiceGet()
{
float float_1 = 1;
float float_2 = 1;
short short_1 = 1;
float_1 = float_2;
return short_1;
}
void v_strcpy( char parameter_1,long parameter_2)
{
}
void v_DeviceNameServiceAddDevice( unsigned int parameter_1,short parameter_2,char parameter_4)
{
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
long long_1 = 1;
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
float float_1 = 1;
short short_3 = 1;
short short_4 = 1;
int int_2 = 1;
long long_2 = 1;
long long_3 = 1;
char char_2 = 1;
float float_2 = 1;
double_1 = double_2;
v_strcpy(char_1,long_1);
short_1 = short_1 * short_2;
int_1 = int_1 * int_1;
float_1 = float_1 + float_1;
short_4 = short_3 + short_1;
short_3 = v_malloc(double_1);
short_2 = v_strlen(short_1);
int_2 = int_1 + int_2;
double_1 = double_2 + double_2;
long_3 = long_2 + long_3;
char_1 = char_2 + char_1;
float_2 = float_1 * float_1;
double_1 = double_2 + double_2;
int_2 = int_2;
}
float v_uspi_le2be32( double parameter_1)
{
float float_1 = 1;
return float_1;
}
int v_DWHCIDeviceTransfer( unsigned int parameter_1,float parameter_2,float parameter_4)
{
double double_1 = 1;
int int_1 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
float float_2 = 1;
char char_1 = 1;
char char_2 = 1;
long long_1 = 1;
long long_2 = 1;
unsigned int unsigned_int_2 = 1;
short short_2 = 1;
v_DWHCIDeviceSubmitBlockingRequest(double_1,int_1,-1 );
float_1 = float_1;
unsigned_int_1 = v_USBRequestGetResultLength(short_1);
float_2 = float_2;
char_2 = char_1 + char_1;
long_2 = long_1 + long_2;
if(1)
{
char char_3 = 1;
char_3 = char_1 * char_2;
}
v_USBRequest(unsigned_int_2);
v__USBRequest();
short_2 = short_1 * short_1;
return int_1;
}
int v_USBBulkOnlyMassStorageDeviceCommand( short parameter_1,double parameter_3,char parameter_5,short parameter_6)
{
short short_1 = 1;
int int_1 = 1;
int int_2 = 1;
long long_1 = 1;
long long_2 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_3 = 1;
int int_4 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
short short_2 = 1;
float float_2 = 1;
double double_1 = 1;
double double_2 = 1;
float float_3 = 1;
float float_4 = 1;
double double_3 = 1;
long long_3 = 1;
char char_1 = 1;
int int_5 = 1;
int int_6 = 1;
char char_2 = 1;
unsigned int unsigned_int_6 = 1;
char char_3 = 1;
short_1 = v_memset(int_1,short_1);
int_1 = int_2 * int_1;
long_2 = long_1 * long_1;
float_1 = float_1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
int_4 = int_1 * int_3;
unsigned_int_5 = unsigned_int_3 * unsigned_int_4;
unsigned_int_4 = unsigned_int_1;
short_2 = v_USBDeviceGetHost(float_2);
double_2 = double_1 + double_1;
v_LogWrite(short_2,short_2,int_1,double_1,-1 );
float_4 = float_3 * float_3;
double_3 = double_2 + double_2;
int_3 = int_2 * int_1;
unsigned_int_5 = unsigned_int_5 + unsigned_int_3;
unsigned_int_2 = unsigned_int_2 + unsigned_int_5;
short_1 = short_1 * short_1;
long_2 = long_1 + long_3;
if(1)
{
short_1 = v_memcpy(char_1,int_5);
int_6 = v_DWHCIDeviceTransfer(unsigned_int_2,float_4,float_1);
char_2 = char_1 + char_1;
}
unsigned_int_3 = unsigned_int_4 * unsigned_int_6;
if(1)
{
long_2 = long_1 + long_2;
if(1)
{
char_3 = char_1 * char_3;
}
}
unsigned_int_1 = unsigned_int_2 * unsigned_int_4;
if(1)
{
char_2 = char_1 + char_3;
}
if(1)
{
short short_3 = 1;
short short_4 = 1;
short_1 = short_3 + short_4;
}
if(1)
{
int_2 = int_6 * int_4;
}
if(1)
{
}
if(1)
{
double_3 = double_2 * double_1;
}
return int_5;
}
void v_USBEndpoint2( char parameter_1,short parameter_2,short parameter_3)
{
int int_1 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
char char_1 = 1;
short short_1 = 1;
short short_2 = 1;
double double_4 = 1;
int int_2 = 1;
int int_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
char char_2 = 1;
unsigned int unsigned_int_5 = 1;
double double_5 = 1;
char char_3 = 1;
long long_1 = 1;
int_1 = int_1 + int_1;
double_3 = double_1 * double_2;
char_1 = char_1 + char_1;
short_2 = short_1 + short_1;
double_3 = double_4;
double_1 = double_1 * double_1;
int_3 = int_1 * int_2;
short_2 = short_1;
double_1 = double_4 + double_4;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
unsigned_int_4 = unsigned_int_2 * unsigned_int_3;
char_2 = char_1 * char_1;
unsigned_int_1 = unsigned_int_2 * unsigned_int_5;
double_5 = double_1;
double_4 = double_4 + double_1;
char_1 = char_3;
double_2 = double_2 + double_4;
if(1)
{
char char_4 = 1;
char char_5 = 1;
char char_6 = 1;
char_6 = char_4 + char_5;
char controller_2[3];
fgets(controller_2 ,3 ,stdin);
if( strcmp( controller_2, "?@") < 0)
{
unsigned_int_1 = unsigned_int_3 * unsigned_int_4;
}
if(1)
{
unsigned_int_3 = unsigned_int_2 * unsigned_int_5;
}
if(1)
{
int int_4 = 1;
int int_5 = 1;
if(1)
{
unsigned int unsigned_int_6 = 1;
unsigned_int_6 = unsigned_int_5 * unsigned_int_3;
}
int_4 = int_1 + int_4;
int_1 = int_3 + int_5;
if(1)
{
double double_6 = 1;
double double_7 = 1;
char_2 = v_USBDeviceGetSpeed(long_1);
double_7 = double_6 + double_2;
}
}
}
}
float v_USBBulkOnlyMassStorageDeviceConfigure( unsigned int parameter_1)
{
long long_1 = 1;
char char_1 = 1;
char char_2 = 1;
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
int int_2 = 1;
double double_1 = 1;
long long_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_2 = 1;
short short_3 = 1;
short short_4 = 1;
float float_1 = 1;
double double_3 = 1;
short short_5 = 1;
float float_2 = 1;
long long_3 = 1;
double double_4 = 1;
double double_5 = 1;
int int_3 = 1;
unsigned int unsigned_int_3 = 1;
v_USBDeviceConfigurationError(long_1,char_1);
v_USBEndpoint2(char_2,short_1,short_2);
v_USBDeviceConfigure(-1 );
int_2 = int_1 * int_2;
v_LogWrite(short_2,short_1,int_1,double_1,-1 );
v_MsDelay(long_1);
v_String(long_1);
v__String(long_2);
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
int_1 = v_USBBulkOnlyMassStorageDeviceCommand(short_2,double_2,char_2,short_3);
v_StringFormat(char_2,short_4,float_1);
double_3 = double_3 * double_1;
short_5 = v_malloc(double_3);
int_2 = v_StringGet(float_2);
long_3 = long_3 * long_2;
v_DeviceNameServiceAddDevice(unsigned_int_1,short_4,char_1);
short_2 = v_DeviceNameServiceGet();
double_5 = double_4 + double_4;
return float_1;
char_2 = v_USBDeviceGetDescriptor(int_3,unsigned_int_3);
float_2 = v_uspi_le2be32(double_1);
}
void v_USBBulkOnlyMassStorageDevice( unsigned int parameter_1)
{
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
float float_2 = 1;
float float_3 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
int int_5 = 1;
short short_1 = 1;
short short_2 = 1;
float_1 = float_1 * float_1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
float_2 = float_2 + float_3;
float_1 = v_USBBulkOnlyMassStorageDeviceConfigure(unsigned_int_3);
int_2 = int_1 + int_2;
int_4 = int_3 * int_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_3;
int_5 = int_5 + int_1;
short_2 = short_1 * short_1;
v_USBDeviceCopy(float_2,int_1);
}
float v_USBStandardHubEnumeratePorts( double parameter_1)
{
int int_1 = 1;
int int_2 = 1;
long long_1 = 1;
long long_2 = 1;
int int_3 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
double double_1 = 1;
long long_3 = 1;
long long_4 = 1;
int int_4 = 1;
char char_1 = 1;
int int_5 = 1;
float float_2 = 1;
double double_2 = 1;
double double_3 = 1;
short short_1 = 1;
char char_2 = 1;
short short_2 = 1;
int int_6 = 1;
double double_4 = 1;
long long_5 = 1;
float float_3 = 1;
unsigned int unsigned_int_2 = 1;
double double_5 = 1;
double double_6 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
double double_7 = 1;
unsigned int unsigned_int_5 = 1;
unsigned int unsigned_int_6 = 1;
float float_4 = 1;
int int_7 = 1;
short short_4 = 1;
long long_6 = 1;
int int_9 = 1;
int int_10 = 1;
float float_6 = 1;
double double_9 = 1;
int int_12 = 1;
double double_10 = 1;
int int_13 = 1;
int_2 = int_1 * int_1;
long_1 = long_1 * long_2;
int_3 = v_StringGet(float_1);
unsigned_int_1 = unsigned_int_1;
double_1 = double_1;
long_4 = long_3 + long_4;
int_4 = int_2 * int_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
if(1)
{
long_4 = long_3 + long_4;
}
}
char_1 = char_1 * char_1;
for(int looper_2=0; looper_2<1;looper_2++)
{
float float_5 = 1;
short short_3 = 1;
unsigned_int_1 = v_USBDeviceInitialize(long_4);
int_1 = int_3 + int_5;
float_2 = float_2 + float_1;
double_3 = double_2 + double_2;
if(1)
{
v__String(long_3);
short_1 = short_1 * short_1;
char_2 = char_1 + char_2;
}
double_3 = double_1 * double_3;
if(1)
{
int_1 = v_USBDeviceFactoryGetDevice(long_4,-1 );
char_2 = char_2;
}
if(1)
{
short_2 = short_1 + short_2;
float_1 = v_USBDeviceGetEndpoint0(int_5);
int_6 = int_1 * int_4;
}
short_1 = v_malloc(double_4);
long_2 = long_5;
if(1)
{
}
if(1)
{
int_5 = int_3 + int_6;
int_3 = v_DWHCIDeviceControlMessage(float_3,double_4,double_2,float_2,unsigned_int_2,double_5,double_6,-1 );
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
}
if(1)
{
unsigned_int_2 = unsigned_int_1 * unsigned_int_4;
double_1 = double_2 * double_7;
}
unsigned_int_1 = unsigned_int_2 + unsigned_int_5;
if(1)
{
float_3 = float_2 + float_1;
}
if(1)
{
long_4 = long_5 + long_1;
}
if(1)
{
int_1 = int_2 + int_3;
}
double_7 = double_1 + double_1;
unsigned_int_1 = unsigned_int_2;
long_2 = long_3;
unsigned_int_4 = unsigned_int_6 + unsigned_int_3;
if(1)
{
int_1 = int_3 * int_1;
float_4 = float_2;
float_1 = float_2 + float_1;
int_2 = int_1;
}
char_2 = v_USBDeviceGetAddress(unsigned_int_3);
long_5 = long_1 + long_4;
int_5 = int_3 * int_7;
long_3 = long_4;
float_5 = float_5 + float_2;
short_1 = short_2 + short_3;
}
for(int looper_3=0; looper_3<1;looper_3++)
{
int int_8 = 1;
if(1)
{
int_5 = v_USBStandardHubGetDeviceNames(unsigned_int_2);
unsigned_int_4 = unsigned_int_3 * unsigned_int_1;
}
char_1 = char_1 + char_1;
if(1)
{
short short_5 = 1;
short_5 = short_4 + short_2;
long_3 = long_2 + long_4;
v_MsDelay(long_6);
int_2 = int_6 + int_8;
if(1)
{
int_9 = int_5 * int_6;
long_6 = long_5 + long_2;
}
unsigned_int_5 = unsigned_int_3 + unsigned_int_3;
}
if(1)
{
double double_8 = 1;
int_2 = int_8 + int_7;
float_3 = float_2 + float_2;
double_3 = double_4 * double_1;
double_8 = double_3 + double_2;
}
}
short_2 = v_USBDeviceGetHost(float_4);
long_2 = long_4 * long_2;
v_free();
int_3 = int_9 + int_10;
if(1)
{
float_6 = float_3 * float_6;
unsigned_int_3 = unsigned_int_3 + unsigned_int_1;
}
if(1)
{
int int_11 = 1;
for(int looper_4=0; looper_4<1;looper_4++)
{
int_10 = int_2 + int_2;
}
v_USBDevice(unsigned_int_5);
double_4 = double_9;
int_9 = int_10 * int_11;
}
unsigned_int_3 = unsigned_int_5 * unsigned_int_2;
int_2 = int_4 + int_12;
double_10 = double_9 * double_7;
for(int looper_5=0; looper_5<1;looper_5++)
{
if(1)
{
unsigned int unsigned_int_7 = 1;
unsigned_int_7 = unsigned_int_6 + unsigned_int_1;
}
if(1)
{
unsigned int unsigned_int_8 = 1;
double double_11 = 1;
int int_14 = 1;
v_LogWrite(short_1,short_4,int_6,double_1,-1 );
unsigned_int_8 = unsigned_int_8;
double_11 = double_5 * double_6;
v__USBDevice(int_13);
int_14 = int_4;
}
}
return float_6;
}
int v_USBConfigurationParserGetDescriptor( float parameter_1,char parameter_2)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
char char_1 = 1;
char char_2 = 1;
float float_1 = 1;
float float_2 = 1;
int int_1 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
unsigned_int_2 = unsigned_int_2 * unsigned_int_2;
double_1 = double_1 * double_1;
char_2 = char_1 * char_2;
float_2 = float_1 + float_1;
return int_1;
}
char v_USBDeviceGetDescriptor( int parameter_1,unsigned int parameter_2)
{
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
float float_1 = 1;
char char_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_2 = 1;
short_2 = short_1 * short_1;
int_1 = v_USBConfigurationParserGetDescriptor(float_1,char_1);
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
return char_2;
}
int v_USBDeviceGetDeviceDescriptor( unsigned int parameter_1)
{
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
int int_2 = 1;
short_2 = short_1 + short_1;
int_2 = int_1 + int_2;
return int_1;
}
void v_USBStandardHubConfigure( float parameter_1)
{
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
char char_1 = 1;
int int_2 = 1;
long long_1 = 1;
unsigned int unsigned_int_2 = 1;
float float_1 = 1;
char char_2 = 1;
short short_1 = 1;
short short_2 = 1;
char char_3 = 1;
double double_1 = 1;
long long_2 = 1;
float float_2 = 1;
double double_2 = 1;
double double_3 = 1;
short short_3 = 1;
double double_4 = 1;
float float_3 = 1;
int int_3 = 1;
double double_5 = 1;
double double_6 = 1;
int int_4 = 1;
double double_7 = 1;
float float_4 = 1;
double double_8 = 1;
int_1 = v_USBDeviceGetDeviceDescriptor(unsigned_int_1);
char_1 = v_USBDeviceGetDescriptor(int_1,unsigned_int_1);
v_USBDeviceConfigure(-1 );
int_2 = v_DWHCIDeviceGetDescriptor(long_1,unsigned_int_2,char_1,float_1,int_2,char_2);
short_2 = short_1 * short_1;
v_USBDeviceConfigurationError(long_1,char_3);
short_2 = v_malloc(double_1);
v_free();
long_1 = long_2 + long_2;
short_1 = v_USBDeviceGetHost(float_2);
double_3 = double_1 + double_2;
v_LogWrite(short_3,short_3,int_2,double_4,-1 );
float_3 = v_USBDeviceGetEndpoint0(int_3);
double_5 = double_6;
int_4 = v_DWHCIDeviceControlMessage(float_2,double_7,double_4,float_4,unsigned_int_2,double_8,double_8,-1 );
float_3 = v_USBStandardHubEnumeratePorts(double_3);
}
void v_USBEndpointCopy( short parameter_1,long parameter_2,long parameter_3)
{
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_3 = 1;
double double_4 = 1;
char char_1 = 1;
char char_2 = 1;
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
int int_2 = 1;
short short_3 = 1;
int int_3 = 1;
double double_5 = 1;
double_1 = double_1 + double_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
double_4 = double_3 * double_1;
char_1 = char_2;
short_1 = short_1 + short_1;
short_2 = short_1;
int_2 = int_1 + int_2;
short_1 = short_3;
int_3 = int_3 + int_3;
double_3 = double_5;
}
void v_USBStringCopy( short parameter_1,double parameter_2)
{
short short_1 = 1;
double double_1 = 1;
short short_2 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
int int_1 = 1;
long long_1 = 1;
long long_2 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
float float_4 = 1;
float float_5 = 1;
short_1 = v_malloc(double_1);
short_2 = short_1 + short_1;
char_3 = char_1 + char_2;
short_1 = v_memcpy(char_2,int_1);
long_1 = long_1 + long_2;
v_String2(short_1,int_1);
float_3 = float_1 + float_2;
if(1)
{
double double_2 = 1;
char char_4 = 1;
double_1 = double_1 + double_2;
int_2 = int_2 + int_2;
char_1 = char_4;
}
char_1 = char_1 + char_1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
short_2 = short_1 + short_1;
int_2 = v_StringGet(float_1);
float_5 = float_2 * float_4;
}
void v_USBDeviceCopy( float parameter_1,int parameter_2)
{
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
char char_4 = 1;
short short_1 = 1;
long long_1 = 1;
long long_2 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_3 = 1;
int int_3 = 1;
double double_1 = 1;
unsigned int unsigned_int_4 = 1;
long long_3 = 1;
double double_2 = 1;
int int_4 = 1;
short short_2 = 1;
double double_4 = 1;
char_1 = char_1 * char_2;
char_2 = char_3 + char_4;
v_USBEndpointCopy(short_1,long_1,long_2);
float_3 = float_1 * float_2;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
char_2 = char_3 * char_4;
int_2 = int_1 * int_1;
int_2 = int_1 * int_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_3;
int_3 = int_3;
char_1 = char_3;
double_1 = double_1 * double_1;
double_1 = double_1 + double_1;
int_2 = int_1 + int_1;
int_1 = int_1;
unsigned_int_4 = unsigned_int_4 * unsigned_int_3;
v_USBStringCopy(short_1,double_1);
v_USBConfigurationParser(unsigned_int_2);
long_3 = long_2 + long_3;
double_2 = double_2 + double_2;
if(1)
{
float_1 = float_3 * float_1;
short_1 = v_memcpy(char_1,int_3);
int_3 = int_3 * int_4;
unsigned_int_4 = unsigned_int_2;
}
if(1)
{
float float_4 = 1;
unsigned int unsigned_int_5 = 1;
unsigned int unsigned_int_6 = 1;
unsigned int unsigned_int_7 = 1;
unsigned int unsigned_int_8 = 1;
unsigned int unsigned_int_9 = 1;
float_4 = float_2 + float_3;
unsigned_int_2 = unsigned_int_1 + unsigned_int_5;
int_1 = int_2 + int_4;
unsigned_int_7 = unsigned_int_5 + unsigned_int_6;
unsigned_int_9 = unsigned_int_8 * unsigned_int_2;
if(1)
{
double double_3 = 1;
double double_5 = 1;
double_2 = double_2 * double_3;
short_2 = v_malloc(double_4);
double_5 = double_1 + double_2;
double_1 = double_1 + double_5;
}
}
}
void v_USBStandardHub( unsigned int parameter_1)
{
char char_1 = 1;
char char_2 = 1;
long long_1 = 1;
long long_2 = 1;
float float_1 = 1;
int int_1 = 1;
long long_3 = 1;
char char_3 = 1;
int int_2 = 1;
int int_3 = 1;
char_2 = char_1 + char_2;
long_1 = long_2;
v_USBDeviceCopy(float_1,int_1);
long_3 = long_2;
v_USBStandardHubConfigure(float_1);
char_2 = char_1 + char_3;
int_3 = int_2 + int_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
float float_2 = 1;
float float_3 = 1;
float_3 = float_2 + float_1;
float_2 = float_2;
}
}
long v_GetDevice( float parameter_1,double parameter_2,int uni_para)
{
int int_1 = 1;
char char_1 = 1;
char char_2 = 1;
double double_1 = 1;
char char_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_2 = 1;
float float_1 = 1;
float float_2 = 1;
short short_1 = 1;
short short_2 = 1;
double double_3 = 1;
float float_3 = 1;
int int_2 = 1;
int int_3 = 1;
long long_1 = 1;
float float_4 = 1;
int int_4 = 1;
unsigned int unsigned_int_3 = 1;
int int_5 = 1;
long long_4 = 1;
int_1 = int_1 * int_1;
char_1 = char_1 * char_2;
double_1 = double_1;
char controller4vul_2097[3];
fgets(controller4vul_2097 ,3 ,stdin);
if( strcmp( controller4vul_2097, "}E") < 0)
{
v_USBMIDIDevice(char_3,uni_para);
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
char_1 = char_2;
double_1 = double_1;
double_1 = double_2 + double_1;
}
if(1)
{
char char_4 = 1;
char char_5 = 1;
float_1 = float_2;
short_1 = short_2;
char_1 = char_4 * char_5;
double_1 = double_3 + double_2;
}
if(1)
{
int_1 = int_1;
float_3 = float_2;
int_1 = int_2 * int_1;
int_2 = int_3 + int_2;
}
if(1)
{
float_2 = float_3 + float_1;
double_3 = double_3;
short_2 = short_2 + short_1;
char_2 = char_3 + char_2;
}
if(1)
{
double double_4 = 1;
float_1 = float_1 * float_2;
long_1 = long_1;
double_2 = double_3 + double_4;
unsigned_int_2 = unsigned_int_2 + unsigned_int_1;
}
if(1)
{
float float_5 = 1;
float_4 = float_2 + float_3;
int_1 = int_4;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
float_5 = float_2 + float_1;
}
if(1)
{
double double_5 = 1;
float_4 = float_2 * float_2;
double_5 = double_2 + double_2;
int_4 = int_3 * int_1;
unsigned_int_2 = unsigned_int_3 * unsigned_int_3;
}
if(1)
{
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
unsigned_int_3 = unsigned_int_4 * unsigned_int_5;
int_3 = int_1 * int_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_4;
short_2 = short_2 * short_1;
}
if(1)
{
long long_2 = 1;
long long_3 = 1;
long_3 = long_2 * long_1;
}
int_5 = int_2;
int_1 = int_3 * int_2;
return long_4;
}
int v_USBDeviceFactoryGetDevice( long parameter_1,int uni_para)
{
int int_1 = 1;
int int_2 = 1;
long long_1 = 1;
float float_1 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int_2 = int_1 + int_1;
int_1 = int_1 + int_2;
char controller4vul_2096[2];
fgets(controller4vul_2096 ,2 ,stdin);
if( strcmp( controller4vul_2096, "x") < 0)
{
long_1 = v_GetDevice(float_1,double_1,uni_para);
}
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
return int_2;
}
void v_StringAppend( long parameter_1,unsigned int parameter_2)
{
unsigned int unsigned_int_1 = 1;
double double_1 = 1;
double double_2 = 1;
long long_2 = 1;
unsigned int unsigned_int_2 = 1;
char char_1 = 1;
char char_2 = 1;
long long_4 = 1;
short short_1 = 1;
unsigned_int_1 = unsigned_int_1;
double_1 = double_1 + double_2;
if(1)
{
long long_1 = 1;
long long_3 = 1;
long_3 = long_1 * long_2;
}
unsigned_int_2 = unsigned_int_2;
char_1 = char_2;
if(1)
{
char char_3 = 1;
unsigned int unsigned_int_3 = 1;
char_3 = char_2;
unsigned_int_3 = unsigned_int_2 + unsigned_int_2;
}
if(1)
{
int int_1 = 1;
int_1 = int_1;
}
long_2 = long_4;
short_1 = short_1 + short_1;
}
char v_StringGetLength()
{
unsigned int unsigned_int_1 = 1;
char char_1 = 1;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
if(1)
{
}
return char_1;
}
int v_StringCompare( long parameter_1,char parameter_2)
{
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
short_1 = short_2;
return int_1;
}
char v_StringSet( int parameter_1,char parameter_2)
{
int int_1 = 1;
double double_2 = 1;
int int_2 = 1;
int int_3 = 1;
double double_4 = 1;
long long_1 = 1;
long long_2 = 1;
char char_1 = 1;
int_1 = int_1 * int_1;
if(1)
{
double double_1 = 1;
double double_3 = 1;
double_3 = double_1 + double_2;
}
int_3 = int_1 * int_2;
double_2 = double_4;
long_1 = long_2;
return char_1;
}
void v_USBDeviceGetName( unsigned int parameter_1,int parameter_2)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
long long_2 = 1;
short short_1 = 1;
short short_2 = 1;
long long_3 = 1;
short short_3 = 1;
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
float float_1 = 1;
int int_3 = 1;
int int_4 = 1;
int int_5 = 1;
int int_6 = 1;
char char_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_3 = 1;
unsigned_int_1 = unsigned_int_2;
unsigned_int_2 = unsigned_int_2 * unsigned_int_2;
long_1 = long_2;
short_2 = short_1 * short_2;
v_String(long_3);
short_2 = short_1 * short_3;
double_2 = double_1 * double_2;
int_2 = int_1 + int_1;
v_StringFormat(char_1,short_1,float_1);
int_2 = int_3 + int_4;
if(1)
{
char_1 = v_StringSet(int_3,char_1);
float_1 = float_1;
}
short_3 = v_malloc(double_1);
int_1 = int_1 + int_4;
int_1 = int_5 * int_6;
int_3 = int_3;
char_2 = char_1 + char_1;
if(1)
{
short_2 = short_1 + short_1;
}
unsigned_int_1 = unsigned_int_3 + unsigned_int_2;
int_6 = int_4;
unsigned_int_1 = unsigned_int_2 + unsigned_int_1;
long_2 = long_2;
double_1 = double_3 * double_2;
}
int v_USBStandardHubGetDeviceNames( unsigned int parameter_1)
{
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
long long_1 = 1;
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_1 = 1;
short short_2 = 1;
int int_2 = 1;
char char_1 = 1;
double double_3 = 1;
char char_2 = 1;
int int_3 = 1;
short short_3 = 1;
unsigned int unsigned_int_4 = 1;
int int_4 = 1;
float float_1 = 1;
v_USBDeviceGetName(unsigned_int_1,int_1);
v__String(long_1);
double_2 = double_1 * double_2;
unsigned_int_3 = unsigned_int_2 + unsigned_int_3;
short_2 = short_1 + short_1;
v_free();
int_1 = int_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
double double_4 = 1;
v_String(long_1);
unsigned_int_2 = unsigned_int_2 * unsigned_int_3;
int_2 = v_StringCompare(long_1,char_1);
double_2 = double_3 + double_4;
if(1)
{
if(1)
{
double double_5 = 1;
double double_6 = 1;
char_2 = v_StringSet(int_3,char_2);
double_6 = double_1 * double_5;
}
short_1 = short_2 * short_1;
}
unsigned_int_3 = unsigned_int_2;
short_3 = v_malloc(double_3);
unsigned_int_4 = unsigned_int_4 * unsigned_int_4;
}
char controller_3[2];
fgets(controller_3 ,2 ,stdin);
if( strcmp( controller_3, "6") > 0)
{
char char_3 = 1;
char_2 = v_StringGetLength();
char_3 = char_2 + char_2;
}
return int_4;
v_StringAppend(long_1,unsigned_int_4);
int_3 = v_StringGet(float_1);
}
void v__USBString( char parameter_1)
{
long long_1 = 1;
long long_2 = 1;
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
int int_2 = 1;
double double_1 = 1;
double double_2 = 1;
long long_3 = 1;
long long_4 = 1;
long_2 = long_1 * long_2;
short_1 = short_2;
int_2 = int_1 + int_1;
double_2 = double_1 * double_1;
v__String(long_3);
long_4 = long_2 * long_3;
char controller_1[2];
fgets(controller_1 ,2 ,stdin);
if( strcmp( controller_1, "{") < 0)
{
unsigned int unsigned_int_1 = 1;
char char_1 = 1;
char char_2 = 1;
unsigned_int_1 = unsigned_int_1;
v_free();
char_1 = char_1 + char_2;
}
double_2 = double_2 * double_1;
}
void v__USBEndpoint( short parameter_1)
{
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
char char_2 = 1;
double_1 = double_2;
char_1 = char_2;
}
void v__USBConfigurationParser( char parameter_1)
{
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
short_1 = short_1 + short_2;
short_3 = short_2 * short_2;
}
void v__USBDevice( int parameter_1)
{
long long_1 = 1;
long long_2 = 1;
short short_1 = 1;
char char_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_2 = 1;
double double_1 = 1;
char char_3 = 1;
double double_2 = 1;
short short_4 = 1;
short short_5 = 1;
long_2 = long_1 * long_1;
if(1)
{
char char_2 = 1;
short_1 = short_1 + short_1;
char_1 = char_2;
v_free();
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
}
if(1)
{
v__USBConfigurationParser(char_1);
long_2 = long_2;
unsigned_int_1 = unsigned_int_2 + unsigned_int_3;
}
if(1)
{
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int_2 = int_1 * int_1;
int_3 = int_1;
}
char controller_4[3];
fgets(controller_4 ,3 ,stdin);
if( strcmp( controller_4, "E-") > 0)
{
short short_3 = 1;
short_3 = short_2 + short_2;
v__USBEndpoint(short_2);
double_1 = double_1;
v__USBString(char_3);
unsigned_int_3 = unsigned_int_3 + unsigned_int_2;
}
double_2 = double_2 + double_1;
short_5 = short_4 * short_1;
unsigned_int_2 = unsigned_int_2 * unsigned_int_3;
long_2 = long_1 * long_2;
}
void v_debug_hexdump( unsigned int parameter_1,unsigned int parameter_2,long parameter_3)
{
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
int int_2 = 1;
long long_4 = 1;
char char_1 = 1;
unsigned int unsigned_int_2 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
long_3 = long_1 + long_2;
int_1 = int_1 * int_1;
v_LoggerWrite(unsigned_int_1,int_2,long_2,long_4,char_1);
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
int_1 = v_LoggerGet();
short_3 = short_1 * short_2;
}
void v_DebugHexdump( long parameter_1,float parameter_2,short parameter_3)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
int int_1 = 1;
int int_2 = 1;
v_debug_hexdump(unsigned_int_1,unsigned_int_2,long_1);
int_2 = int_1 + int_1;
}
void v_USBConfigurationParserError( unsigned int parameter_1,unsigned int parameter_2)
{
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
char char_1 = 1;
char char_2 = 1;
short short_3 = 1;
short short_4 = 1;
int int_2 = 1;
int int_3 = 1;
long long_1 = 1;
float float_1 = 1;
v_LogWrite(short_1,short_2,int_1,double_1,-1 );
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
char_1 = char_2;
short_4 = short_2 + short_3;
int_3 = int_2 * int_1;
v_DebugHexdump(long_1,float_1,short_2);
}
void v_USBDeviceConfigurationError( long parameter_1,char parameter_2)
{
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_1 = 1;
char char_2 = 1;
int_2 = int_1 + int_1;
v_USBConfigurationParserError(unsigned_int_1,unsigned_int_2);
unsigned_int_1 = unsigned_int_2 * unsigned_int_1;
char_2 = char_1 * char_2;
}
short v_USBConfigurationParserIsValid( unsigned int parameter_1)
{
double double_1 = 1;
double double_2 = 1;
short short_1 = 1;
double_1 = double_1 * double_2;
return short_1;
}
void v_USBConfigurationParser( unsigned int parameter_1)
{
short short_1 = 1;
short short_2 = 1;
short_2 = short_1 * short_1;
}
void v_String2( short parameter_1,int parameter_2)
{
int int_1 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
short short_4 = 1;
int int_2 = 1;
int int_3 = 1;
int_1 = int_1 * int_1;
short_3 = short_1 * short_2;
short_4 = short_3 + short_1;
int_3 = int_2 + int_2;
}
int v_USBStringGetFromDescriptor( short parameter_1,float parameter_2,float parameter_3)
{
float float_1 = 1;
int int_1 = 1;
short short_1 = 1;
char char_1 = 1;
float float_2 = 1;
float float_3 = 1;
char char_2 = 1;
short short_2 = 1;
short short_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_1 = 1;
double double_2 = 1;
short short_4 = 1;
int int_3 = 1;
long long_1 = 1;
double double_3 = 1;
float float_4 = 1;
float float_5 = 1;
int int_4 = 1;
unsigned int unsigned_int_4 = 1;
double double_4 = 1;
short short_5 = 1;
int int_5 = 1;
unsigned int unsigned_int_5 = 1;
char char_3 = 1;
char char_4 = 1;
float_1 = v_USBDeviceGetEndpoint0(int_1);
v_String2(short_1,int_1);
char_1 = char_1 * char_1;
float_2 = float_1;
if(1)
{
float_3 = float_2 * float_3;
}
char_2 = char_2 + char_2;
short_3 = short_1 + short_2;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
if(1)
{
}
int_2 = int_1 + int_1;
if(1)
{
}
if(1)
{
unsigned_int_3 = unsigned_int_3 * unsigned_int_3;
double_2 = double_1 * double_1;
short_3 = short_2 * short_4;
if(1)
{
}
if(1)
{
}
}
int_1 = int_2 + int_3;
char_1 = char_1 + char_1;
v__String(long_1);
double_3 = double_1 * double_3;
unsigned_int_3 = unsigned_int_1;
float_4 = float_1 * float_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
float_5 = float_1 + float_2;
if(1)
{
short_4 = short_2 * short_4;
}
short_4 = v_malloc(double_1);
int_4 = int_3;
}
v_free();
unsigned_int_1 = unsigned_int_2;
int_3 = v_DWHCIDeviceControlMessage(float_4,double_1,double_3,float_4,unsigned_int_4,double_2,double_2,-1 );
double_4 = double_2 + double_1;
float_4 = float_5 * float_3;
short_5 = v_USBDeviceGetHost(float_2);
int_5 = int_5 + int_4;
unsigned_int_3 = unsigned_int_2 * unsigned_int_5;
char_3 = char_2 + char_3;
char_1 = char_4 + char_3;
return int_1;
}
float v_USBDeviceGetEndpoint0( int parameter_1)
{
float float_1 = 1;
float float_2 = 1;
float_1 = float_1;
float_1 = float_1;
return float_2;
}
short v_USBDeviceGetHost( float parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
short short_1 = 1;
unsigned_int_1 = unsigned_int_1 + unsigned_int_2;
unsigned_int_2 = unsigned_int_2 + unsigned_int_1;
return short_1;
}
long v_USBStringGetLanguageID( unsigned int parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_1 = 1;
double double_2 = 1;
short short_1 = 1;
unsigned int unsigned_int_4 = 1;
short short_2 = 1;
short short_3 = 1;
int int_1 = 1;
int int_2 = 1;
long long_1 = 1;
char char_1 = 1;
float float_1 = 1;
char char_2 = 1;
short short_4 = 1;
short short_5 = 1;
int int_3 = 1;
int int_4 = 1;
char char_3 = 1;
unsigned int unsigned_int_5 = 1;
long long_3 = 1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
double_2 = double_1 + double_1;
short_1 = v_malloc(double_1);
unsigned_int_4 = unsigned_int_4 * unsigned_int_1;
double_2 = double_1 * double_1;
if(1)
{
short_3 = short_2 * short_2;
}
int_1 = int_2;
if(1)
{
int_2 = v_DWHCIDeviceGetDescriptor(long_1,unsigned_int_3,char_1,float_1,int_2,char_2);
short_4 = short_2 + short_4;
}
char controller_3[3];
fgets(controller_3 ,3 ,stdin);
if( strcmp( controller_3, "IT") < 0)
{
double double_3 = 1;
short_5 = short_2 + short_1;
short_1 = v_USBDeviceGetHost(float_1);
double_3 = double_1 * double_3;
short_4 = short_3 + short_4;
if(1)
{
v_free();
short_4 = short_5 * short_4;
}
if(1)
{
int_3 = int_2;
}
}
int_3 = int_2 * int_4;
char_2 = char_2 * char_3;
float_1 = v_USBDeviceGetEndpoint0(int_1);
short_5 = short_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
if(1)
{
long long_2 = 1;
long_2 = long_2 * long_2;
}
}
unsigned_int_3 = unsigned_int_5;
int_4 = int_2 * int_2;
return long_3;
}
void v_USBDeviceSetAddress( unsigned int parameter_1,int parameter_2)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
long long_1 = 1;
long long_2 = 1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
int_3 = int_1 * int_2;
long_1 = long_1 + long_2;
}
void v_DWHCIDeviceSetAddress( long parameter_1,double parameter_2,unsigned int parameter_3)
{
int int_1 = 1;
float float_1 = 1;
double double_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_1 = 1;
double double_2 = 1;
int int_2 = 1;
int int_3 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
int_1 = v_DWHCIDeviceControlMessage(float_1,double_1,double_1,float_2,unsigned_int_1,double_1,double_2,-1 );
int_2 = int_3;
if(1)
{
}
unsigned_int_1 = unsigned_int_2 + unsigned_int_2;
v_MsDelay(long_1);
}
void v_USBEndpointSetMaxPacketSize( short parameter_1,float parameter_2)
{
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
double_2 = double_1 + double_1;
char_1 = char_1 * char_1;
}
int v_DWHCIDeviceGetDescriptor( long parameter_1,unsigned int parameter_2,char parameter_3,float parameter_4,int parameter_6,char parameter_7)
{
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
double_2 = double_1 * double_2;
return int_1;
int_1 = v_DWHCIDeviceControlMessage(float_1,double_1,double_1,float_1,unsigned_int_1,double_1,double_1,-1 );
}
unsigned int v_USBDeviceInitialize( long parameter_1)
{
short short_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_1 = 1;
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
double double_3 = 1;
double double_4 = 1;
double double_5 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
int int_1 = 1;
float float_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_6 = 1;
short short_2 = 1;
unsigned int unsigned_int_7 = 1;
char char_2 = 1;
unsigned int unsigned_int_8 = 1;
char char_3 = 1;
float float_2 = 1;
float float_3 = 1;
int int_3 = 1;
unsigned int unsigned_int_10 = 1;
float float_4 = 1;
double double_6 = 1;
long long_3 = 1;
int int_4 = 1;
long long_4 = 1;
float float_5 = 1;
double double_8 = 1;
unsigned int unsigned_int_11 = 1;
long long_5 = 1;
double double_9 = 1;
double double_10 = 1;
unsigned int unsigned_int_12 = 1;
int int_5 = 1;
int int_6 = 1;
short_1 = short_1 * short_1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
char_1 = char_1;
double_2 = double_1 + double_2;
v_USBDeviceConfigurationError(long_1,char_1);
double_4 = double_3 * double_1;
double_1 = double_5 * double_1;
unsigned_int_2 = unsigned_int_2 * unsigned_int_3;
if(1)
{
unsigned_int_4 = unsigned_int_5;
unsigned_int_3 = unsigned_int_2;
unsigned_int_2 = unsigned_int_5 * unsigned_int_5;
}
if(1)
{
int_1 = v_DWHCIDeviceGetDescriptor(long_1,unsigned_int_5,char_1,float_1,int_2,char_1);
short_1 = v_USBConfigurationParserIsValid(unsigned_int_6);
short_2 = short_2 * short_1;
unsigned_int_5 = unsigned_int_7 + unsigned_int_6;
char_1 = char_1 * char_2;
}
unsigned_int_4 = unsigned_int_8;
if(1)
{
long long_2 = 1;
long_2 = long_1 + long_1;
char_3 = char_3 * char_2;
unsigned_int_6 = unsigned_int_5 * unsigned_int_3;
}
int_2 = int_1 * int_2;
if(1)
{
float_3 = float_2 * float_2;
}
if(1)
{
unsigned int unsigned_int_9 = 1;
v_USBDeviceSetAddress(unsigned_int_7,int_3);
unsigned_int_8 = unsigned_int_4 + unsigned_int_9;
}
long_1 = v_USBStringGetLanguageID(unsigned_int_10);
char_2 = char_2 + char_1;
if(1)
{
float_3 = float_2 * float_4;
if(1)
{
unsigned_int_1 = unsigned_int_10 * unsigned_int_10;
}
if(1)
{
double double_7 = 1;
double_7 = double_3 * double_6;
}
}
v_LogWrite(short_2,short_1,int_2,double_5,-1 );
long_3 = long_1 * long_1;
int_4 = int_4;
long_4 = long_1 + long_4;
if(1)
{
unsigned_int_3 = unsigned_int_4 + unsigned_int_7;
double_5 = double_1 * double_6;
v_USBEndpointSetMaxPacketSize(short_2,float_5);
double_2 = double_3 + double_5;
}
if(1)
{
short_2 = v_malloc(double_8);
v_free();
double_3 = double_6 + double_3;
unsigned_int_11 = unsigned_int_7 * unsigned_int_7;
long_5 = long_4 * long_3;
}
double_5 = double_9 + double_9;
unsigned_int_10 = unsigned_int_10;
double_10 = double_5 * double_8;
char_3 = char_3 + char_3;
char controller_11[3];
fgets(controller_11 ,3 ,stdin);
if( strcmp( controller_11, "{l") > 0)
{
int_1 = v_USBStringGetFromDescriptor(short_2,float_4,float_2);
v_USBConfigurationParser(unsigned_int_3);
char_1 = char_2 + char_3;
unsigned_int_5 = unsigned_int_3 + unsigned_int_3;
v_DWHCIDeviceSetAddress(long_5,double_10,unsigned_int_1);
unsigned_int_11 = unsigned_int_2 * unsigned_int_4;
}
unsigned_int_12 = unsigned_int_6 * unsigned_int_8;
double_4 = double_4 * double_8;
int_5 = int_5 * int_6;
double_2 = double_2 + double_8;
if(1)
{
int_5 = int_1 + int_4;
}
return unsigned_int_7;
}
void v_USBString( double parameter_1)
{
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
int int_2 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
long long_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_1 = 1;
double double_1 = 1;
int int_3 = 1;
int int_4 = 1;
int int_5 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
int_2 = int_1 * int_1;
float_3 = float_1 + float_2;
v_String(long_1);
unsigned_int_2 = unsigned_int_2 * unsigned_int_3;
long_1 = long_1 * long_1;
short_1 = v_malloc(double_1);
float_2 = float_2 + float_1;
int_5 = int_3 * int_4;
}
void v_USBEndpoint( unsigned int parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
short short_1 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_1 = 1;
int int_3 = 1;
int int_4 = 1;
unsigned int unsigned_int_4 = 1;
char char_1 = 1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
short_1 = short_1;
int_1 = int_2;
unsigned_int_2 = unsigned_int_2;
unsigned_int_3 = unsigned_int_1 * unsigned_int_1;
double_1 = double_1 + double_1;
int_4 = int_3 * int_2;
unsigned_int_4 = unsigned_int_1;
char_1 = char_1 + char_1;
}
void v__USBRequest()
{
char char_1 = 1;
char char_2 = 1;
short short_1 = 1;
short short_2 = 1;
char char_3 = 1;
char char_4 = 1;
int int_1 = 1;
long long_1 = 1;
char_2 = char_1 * char_1;
short_1 = short_1 * short_2;
char_3 = char_4;
int_1 = int_1;
long_1 = long_1 * long_1;
}
unsigned int v_USBRequestGetResultLength( short parameter_1)
{
int int_1 = 1;
int int_2 = 1;
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_1 = 1;
int_2 = int_1 * int_2;
short_2 = short_1 + short_2;
return unsigned_int_1;
}
unsigned int v_USBEndpointIsDirectionIn( int parameter_1)
{
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
double_1 = double_2;
return unsigned_int_1;
}
int v_USBRequestGetStatus( double parameter_1)
{
double double_1 = 1;
int int_1 = 1;
double_1 = double_1;
return int_1;
}
void v_DWHCIDeviceEnableChannelInterrupt( unsigned int parameter_1,double parameter_2)
{
int int_1 = 1;
int int_2 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
long long_2 = 1;
char char_1 = 1;
short short_4 = 1;
float float_4 = 1;
float float_5 = 1;
int_2 = int_1 + int_1;
float_3 = float_1 + float_2;
v_uspi_EnterCritical();
v_uspi_LeaveCritical();
short_3 = short_1 * short_2;
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
long_2 = long_1 * long_2;
v_DWHCIRegister(long_1);
int_1 = v_DWHCIRegisterRead(short_2);
v_DWHCIRegisterOr(unsigned_int_2,char_1);
v_DWHCIRegisterWrite();
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
long_2 = long_2;
short_3 = short_4 + short_3;
v__DWHCIRegister(long_1);
float_5 = float_1 + float_4;
}
unsigned int v_DWHCIFrameSchedulerNoSplitIsOddFrame( int parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
int_1 = int_2;
char_1 = char_1 + char_1;
return unsigned_int_1;
}
void v_DWHCIFrameSchedulerNoSplitWaitForFrame( float parameter_1)
{
long long_1 = 1;
int int_1 = 1;
short short_1 = 1;
long long_2 = 1;
if(1)
{
}
if(1)
{
}
v_DWHCIRegister(long_1);
int_1 = v_DWHCIRegisterRead(short_1);
v__DWHCIRegister(long_2);
}
void v_DWHCIFrameSchedulerNoSplitTransactionComplete( long parameter_1,int parameter_2)
{
int int_1 = 1;
int int_2 = 1;
int_2 = int_1 * int_1;
}
void v_DWHCIFrameSchedulerNoSplitCompleteSplit()
{
double double_1 = 1;
double double_2 = 1;
double_1 = double_1 * double_2;
}
void v_DWHCIFrameSchedulerNoSplitStartSplit()
{
unsigned int unsigned_int_1 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
}
void v__DWHCIFrameSchedulerNoSplit( char parameter_1)
{
}
void v_DWHCIFrameSchedulerNoSplit( short parameter_1)
{
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
char char_4 = 1;
short short_1 = 1;
short short_2 = 1;
long long_1 = 1;
int int_2 = 1;
float float_1 = 1;
double double_1 = 1;
double double_2 = 1;
unsigned_int_1 = v_DWHCIFrameSchedulerNoSplitIsOddFrame(int_1);
unsigned_int_1 = unsigned_int_2;
unsigned_int_1 = unsigned_int_3 * unsigned_int_2;
char_1 = char_1 * char_2;
v_DWHCIFrameSchedulerNoSplitCompleteSplit();
char_4 = char_3 * char_2;
short_1 = short_1 + short_2;
long_1 = long_1;
v__DWHCIFrameSchedulerNoSplit(char_2);
int_1 = int_1 + int_2;
float_1 = float_1 * float_1;
v_DWHCIFrameSchedulerNoSplitWaitForFrame(float_1);
double_2 = double_1 * double_2;
unsigned_int_3 = unsigned_int_1 + unsigned_int_1;
v_DWHCIFrameSchedulerNoSplitStartSplit();
v_DWHCIFrameSchedulerNoSplitTransactionComplete(long_1,int_1);
}
char v_DWHCIFrameSchedulerNonPeriodicIsOddFrame( unsigned int parameter_1)
{
char char_1 = 1;
return char_1;
}
void v_DWHCIFrameSchedulerNonPeriodicWaitForFrame( long parameter_1)
{
}
void v_DWHCIFrameSchedulerNonPeriodicTransactionComplete( char parameter_1,int parameter_2,int uni_para)
{
long long_1 = 1;
long long_2 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_5 = 1;
short short_3 = 1;
double double_1 = 1;
double double_3 = 1;
short short_4 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
int int_6 = 1;
long_1 = long_1 * long_2;
int_1 = int_1 * int_1;
int_4 = int_2 * int_3;
short_1 = short_1 + short_2;
unsigned_int_1 = unsigned_int_1 + unsigned_int_2;
if(1)
{
int_5 = int_1 * int_1;
}
char controller4vul_2110[2];
fgets(controller4vul_2110 ,2 ,stdin);
if( strcmp( controller4vul_2110, "*") > 0)
{
char controller4vul_2111[3];
fgets(controller4vul_2111 ,3 ,stdin);
if( strcmp( controller4vul_2111, "lj") > 0)
{
double double_2 = 1;
v_LogWrite(short_3,short_2,int_4,double_1,uni_para);
double_3 = double_2 + double_1;
}
if(1)
{
short_4 = short_1;
}
}
if(1)
{
if(1)
{
short short_5 = 1;
short short_6 = 1;
short short_7 = 1;
double double_4 = 1;
short_7 = short_5 + short_6;
double_4 = double_1;
}
if(1)
{
int_5 = int_5 + int_2;
}
}
if(1)
{
unsigned int unsigned_int_3 = 1;
double_3 = double_1 * double_1;
unsigned_int_4 = unsigned_int_3 + unsigned_int_2;
}
unsigned_int_5 = unsigned_int_5 + unsigned_int_4;
int_4 = int_6 + int_6;
short_3 = short_4 * short_4;
}
short v_DWHCIFrameSchedulerNonPeriodicCompleteSplit( char parameter_1)
{
float float_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
long long_1 = 1;
int int_1 = 1;
int int_2 = 1;
double double_2 = 1;
double double_3 = 1;
double double_4 = 1;
int int_3 = 1;
int int_4 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
int int_5 = 1;
double double_5 = 1;
short short_1 = 1;
float_2 = float_1 + float_1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
float_2 = float_2;
double_1 = double_1 * double_1;
v_usDelay(long_1);
int_1 = int_1 + int_2;
double_4 = double_2 * double_3;
int_4 = int_2 * int_3;
unsigned_int_4 = unsigned_int_3 + unsigned_int_2;
int_1 = int_2 * int_3;
int_5 = int_2 * int_5;
int_2 = int_2 + int_1;
double_5 = double_4 + double_5;
double_3 = double_3 * double_1;
return short_1;
}
void v_DWHCIFrameSchedulerNonPeriodicStartSplit( char parameter_1)
{
long long_1 = 1;
long long_2 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
long_2 = long_1 * long_2;
double_1 = double_2;
double_2 = double_3 * double_3;
}
void v__DWHCIFrameSchedulerNonPeriodic( int parameter_1)
{
unsigned int unsigned_int_1 = 1;
float float_1 = 1;
float float_2 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
float_1 = float_1 + float_2;
int_1 = int_2;
}
void v_DWHCIFrameSchedulerNonPeriodic( char parameter_1,int uni_para)
{
char char_1 = 1;
int int_1 = 1;
double double_1 = 1;
float float_1 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_2 = 1;
long long_4 = 1;
unsigned int unsigned_int_3 = 1;
v_DWHCIFrameSchedulerNonPeriodicTransactionComplete(char_1,int_1,uni_para);
double_1 = double_1 * double_1;
float_1 = float_1;
long_3 = long_1 + long_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
char_2 = char_1 * char_1;
long_4 = long_3 + long_3;
float_1 = float_1 + float_1;
int_1 = int_1 + int_1;
unsigned_int_3 = unsigned_int_1 + unsigned_int_3;
}
float v_DWHCIFrameSchedulerPeriodicIsOddFrame()
{
unsigned int unsigned_int_1 = 1;
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
char char_2 = 1;
float float_1 = 1;
unsigned_int_1 = unsigned_int_1;
double_1 = double_1 + double_2;
char_1 = char_1 * char_2;
return float_1;
}
void v_DWHCIFrameSchedulerPeriodicWaitForFrame( unsigned int parameter_1)
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
char char_2 = 1;
long long_1 = 1;
int int_1 = 1;
short short_1 = 1;
long long_2 = 1;
char char_4 = 1;
double_3 = double_1 * double_2;
char controller_1[3];
fgets(controller_1 ,3 ,stdin);
if( strcmp( controller_1, "1<") > 0)
{
if(1)
{
char char_1 = 1;
char char_3 = 1;
char_3 = char_1 + char_2;
}
if(1)
{
v_DWHCIRegister(long_1);
int_1 = v_DWHCIRegisterRead(short_1);
double_3 = double_2 + double_3;
}
}
v__DWHCIRegister(long_2);
char_4 = char_4 * char_2;
}
void v_DWHCIFrameSchedulerPeriodicTransactionComplete( long parameter_1,unsigned int parameter_2)
{
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_3 = 1;
long long_1 = 1;
double double_2 = 1;
double double_3 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
long long_2 = 1;
long long_3 = 1;
int int_5 = 1;
float_3 = float_1 * float_2;
v_LogWrite(short_1,short_2,int_1,double_1,-1 );
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
short_3 = short_2 * short_1;
v_usDelay(long_1);
double_3 = double_1 * double_2;
int_1 = int_1 + int_1;
if(1)
{
int_3 = int_2 * int_3;
}
if(1)
{
if(1)
{
char char_1 = 1;
char char_2 = 1;
char_2 = char_1 + char_1;
int_3 = int_4 * int_4;
}
if(1)
{
float_3 = float_2;
}
}
if(1)
{
short_2 = short_1 * short_1;
int_1 = int_3 * int_2;
}
if(1)
{
char char_3 = 1;
int_1 = int_4 + int_3;
char_3 = char_3 + char_3;
}
long_1 = long_2 * long_3;
int_5 = int_3 + int_5;
short_3 = short_3 * short_2;
}
float v_DWHCIFrameSchedulerPeriodicCompleteSplit( float parameter_1)
{
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
double double_3 = 1;
long long_1 = 1;
long long_2 = 1;
char char_1 = 1;
int int_1 = 1;
int int_2 = 1;
float float_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_4 = 1;
long long_3 = 1;
char char_2 = 1;
char char_3 = 1;
float float_2 = 1;
double_2 = double_1 * double_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
double_3 = double_1 * double_3;
long_2 = long_1 * long_1;
char_1 = char_1 + char_1;
double_2 = double_1 * double_2;
int_2 = int_1 * int_1;
float_1 = float_1 + float_1;
double_2 = double_3 * double_1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
double_4 = double_4 * double_1;
long_1 = long_3 + long_2;
char_1 = char_2 * char_3;
int_2 = int_1;
return float_2;
}
void v_DWHCIFrameSchedulerPeriodicStartSplit( char parameter_1)
{
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
long long_2 = 1;
short_3 = short_1 * short_2;
int_1 = int_1 + int_2;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
long_1 = long_1 + long_2;
}
void v__DWHCIFrameSchedulerPeriodic()
{
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
int_1 = int_1;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
int_1 = int_1;
}
void v_DWHCIFrameSchedulerPeriodic( float parameter_1)
{
char char_1 = 1;
long long_1 = 1;
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
int int_2 = 1;
short short_1 = 1;
float float_1 = 1;
int int_3 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
unsigned int unsigned_int_2 = 1;
long long_2 = 1;
long long_3 = 1;
int int_4 = 1;
long long_4 = 1;
float float_2 = 1;
double double_4 = 1;
v_DWHCIFrameSchedulerPeriodicStartSplit(char_1);
v_DWHCIFrameSchedulerPeriodicTransactionComplete(long_1,unsigned_int_1);
int_1 = int_2;
short_1 = short_1 * short_1;
float_1 = v_DWHCIFrameSchedulerPeriodicIsOddFrame();
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
int_1 = int_3 * int_3;
double_3 = double_1 * double_2;
v_DWHCIFrameSchedulerPeriodicWaitForFrame(unsigned_int_2);
long_3 = long_1 * long_2;
int_2 = int_4;
long_4 = long_4 * long_2;
float_1 = v_DWHCIFrameSchedulerPeriodicCompleteSplit(float_2);
int_1 = int_4 * int_4;
double_4 = double_1;
v__DWHCIFrameSchedulerPeriodic();
}
short v_USBRequestGetBuffer( int parameter_1)
{
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
int_2 = int_1 * int_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
return short_1;
}
char v_USBEndpointGetMaxPacketSize( long parameter_1)
{
short short_1 = 1;
short short_2 = 1;
char char_1 = 1;
short_1 = short_2;
return char_1;
}
char v_USBDeviceGetSpeed( long parameter_1)
{
float float_1 = 1;
float float_2 = 1;
char char_1 = 1;
float_1 = float_2;
return char_1;
}
void v_USBEndpointGetDevice( char parameter_1)
{
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
int int_2 = 1;
double_2 = double_1 * double_2;
int_1 = int_1 + int_2;
}
void v_DWHCITransferStageData(int uni_para)
{
int int_1 = 1;
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
int int_2 = 1;
unsigned int unsigned_int_3 = 1;
int int_3 = 1;
int int_4 = 1;
int int_5 = 1;
unsigned int unsigned_int_4 = 1;
double double_1 = 1;
float float_1 = 1;
double double_2 = 1;
double double_3 = 1;
int int_6 = 1;
unsigned int unsigned_int_5 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
char char_4 = 1;
float float_3 = 1;
unsigned int unsigned_int_6 = 1;
unsigned int unsigned_int_7 = 1;
int int_7 = 1;
int int_8 = 1;
double double_4 = 1;
int_1 = int_1 * int_1;
short_2 = short_1 * short_1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
long_3 = long_1 + long_2;
long_3 = long_3 + long_3;
int_2 = int_1 + int_2;
unsigned_int_3 = unsigned_int_3;
int_3 = int_2 * int_1;
int_4 = int_3 + int_4;
int_1 = int_5 + int_4;
unsigned_int_2 = unsigned_int_4 + unsigned_int_4;
double_1 = double_1 * double_1;
float_1 = float_1;
int_1 = int_1 + int_4;
double_3 = double_2 + double_1;
int_4 = int_6 + int_5;
double_1 = double_3 * double_3;
short_1 = short_2 * short_1;
double_2 = double_1 + double_1;
unsigned_int_1 = unsigned_int_2 + unsigned_int_5;
char controller4vul_2107[2];
fgets(controller4vul_2107 ,2 ,stdin);
if( strcmp( controller4vul_2107, "n") < 0)
{
if(1)
{
char_3 = char_1 + char_2;
long_3 = long_1;
}
if(1)
{
int_6 = int_3 + int_2;
unsigned_int_4 = unsigned_int_1 * unsigned_int_3;
}
unsigned_int_4 = unsigned_int_1 + unsigned_int_1;
char controller4vul_2108[2];
fgets(controller4vul_2108 ,2 ,stdin);
if( strcmp( controller4vul_2108, "O") > 0)
{
char controller4vul_2109[2];
fgets(controller4vul_2109 ,2 ,stdin);
if( strcmp( controller4vul_2109, "T") < 0)
{
float float_2 = 1;
v_DWHCIFrameSchedulerNonPeriodic(char_4,uni_para);
float_1 = float_2 * float_3;
}
if(1)
{
char_3 = char_1;
}
unsigned_int_6 = unsigned_int_3 + unsigned_int_2;
}
if(1)
{
float float_4 = 1;
float float_5 = 1;
double_3 = double_2 * double_3;
float_4 = float_5;
}
}
if(1)
{
char char_5 = 1;
char char_6 = 1;
float float_6 = 1;
unsigned_int_7 = unsigned_int_1 * unsigned_int_7;
char_1 = char_5 + char_1;
int_6 = int_6 * int_7;
short_1 = short_2 + short_1;
unsigned_int_6 = unsigned_int_3;
char_2 = char_6 * char_3;
float_6 = float_3 + float_6;
int_7 = int_8;
}
int_7 = int_8 * int_3;
double_4 = double_3 + double_3;
if(1)
{
int int_9 = 1;
if(1)
{
int_1 = int_3;
double_2 = double_3 + double_3;
}
if(1)
{
double double_5 = 1;
double double_6 = 1;
double_4 = double_5 * double_6;
unsigned_int_4 = unsigned_int_5 * unsigned_int_6;
}
int_4 = int_2 + int_9;
}
if(1)
{
if(1)
{
short short_3 = 1;
short short_4 = 1;
unsigned int unsigned_int_8 = 1;
short_4 = short_2 + short_3;
unsigned_int_7 = unsigned_int_8 + unsigned_int_1;
unsigned_int_8 = unsigned_int_1 * unsigned_int_6;
}
}
}
char v_DWHCIDeviceAllocateChannel( float parameter_1)
{
int int_1 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
char char_1 = 1;
int_1 = int_1 + int_1;
v_uspi_EnterCritical();
double_1 = double_1 + double_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
for(int looper_1=0; looper_1<1;looper_1++)
{
double double_2 = 1;
if(1)
{
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
int_2 = int_1 + int_1;
v_uspi_LeaveCritical();
int_4 = int_3 + int_2;
}
double_2 = double_1 + double_1;
}
unsigned_int_2 = unsigned_int_1 + unsigned_int_3;
return char_1;
}
int v_DWHCIDeviceTransferStageAsync( char parameter_1,int parameter_2,float parameter_3,short parameter_4,int uni_para)
{
double double_1 = 1;
float float_1 = 1;
float float_2 = 1;
double double_2 = 1;
double double_3 = 1;
double double_4 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
int int_1 = 1;
float float_3 = 1;
double double_5 = 1;
double_1 = double_1 + double_1;
float_2 = float_1 + float_2;
double_3 = double_2 + double_2;
if(1)
{
}
double_1 = double_3 * double_4;
unsigned_int_1 = unsigned_int_1 + unsigned_int_2;
double_2 = double_3 * double_1;
unsigned_int_4 = unsigned_int_3 * unsigned_int_1;
short_3 = short_1 + short_2;
int_1 = int_1;
if(1)
{
float_1 = float_1 + float_3;
}
char controller4vul_2105[3];
fgets(controller4vul_2105 ,3 ,stdin);
if( strcmp( controller4vul_2105, "<4") < 0)
{
unsigned int unsigned_int_7 = 1;
unsigned int unsigned_int_8 = 1;
char controller4vul_2106[3];
fgets(controller4vul_2106 ,3 ,stdin);
if( strcmp( controller4vul_2106, "#1") < 0)
{
long long_1 = 1;
short short_4 = 1;
unsigned int unsigned_int_5 = 1;
unsigned int unsigned_int_6 = 1;
v_DWHCITransferStageData(uni_para);
long_1 = long_1 * long_1;
short_3 = short_4 + short_4;
unsigned_int_6 = unsigned_int_1 * unsigned_int_5;
float_2 = float_3 * float_2;
long_1 = long_1 + long_1;
}
unsigned_int_7 = unsigned_int_4 + unsigned_int_3;
double_4 = double_1 * double_4;
unsigned_int_4 = unsigned_int_8 + unsigned_int_4;
short_2 = short_1 + short_2;
float_1 = float_1 * float_1;
}
double_3 = double_5;
return int_1;
}
void v_DWHCIDeviceCompletionRoutine( unsigned int parameter_1)
{
unsigned int unsigned_int_1 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
long long_1 = 1;
long long_2 = 1;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
char_3 = char_1 * char_2;
long_2 = long_1 + long_2;
}
void v_USBRequestSetCompletionRoutine( float parameter_1,short parameter_2)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_1 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_4 = 1;
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
double_1 = double_1 + double_1;
int_2 = int_1 * int_2;
unsigned_int_4 = unsigned_int_4 + unsigned_int_2;
double_1 = double_1;
}
char v_DWHCIDeviceTransferStage( unsigned int parameter_1,float parameter_2,double parameter_3,char parameter_4,int uni_para)
{
int int_1 = 1;
char char_1 = 1;
int int_2 = 1;
float float_1 = 1;
short short_1 = 1;
double double_1 = 1;
double double_2 = 1;
short short_2 = 1;
int_1 = v_DWHCIDeviceTransferStageAsync(char_1,int_2,float_1,short_1,uni_para);
double_2 = double_1 + double_1;
short_2 = short_2 * short_2;
return char_1;
}
void v_USBRequestGetBufLen( double parameter_1)
{
int int_1 = 1;
int_1 = int_1;
}
double v_USBRequestGetSetupData( int parameter_1)
{
long long_1 = 1;
short short_1 = 1;
float float_1 = 1;
int int_1 = 1;
int int_2 = 1;
long long_2 = 1;
double double_1 = 1;
long_1 = v_USBEndpointGetType(short_1);
float_1 = float_1 + float_1;
int_2 = int_1 + int_2;
long_2 = long_1 + long_1;
return double_1;
}
void v_DWHCIDeviceSubmitBlockingRequest( double parameter_1,int parameter_2,int uni_para)
{
int int_1 = 1;
int int_2 = 1;
short short_1 = 1;
short short_2 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
float float_1 = 1;
int_2 = int_1 * int_2;
short_2 = short_1 + short_2;
char_3 = char_1 * char_2;
int_2 = int_1 + int_2;
char controller4vul_2101[3];
fgets(controller4vul_2101 ,3 ,stdin);
if( strcmp( controller4vul_2101, "Z2") > 0)
{
double double_1 = 1;
double double_3 = 1;
double_3 = double_1 + double_2;
double_1 = double_3 * double_1;
if(1)
{
int_2 = int_2;
if(1)
{
}
}
char controller4vul_2102[2];
fgets(controller4vul_2102 ,2 ,stdin);
if( strcmp( controller4vul_2102, "s") < 0)
{
char controller4vul_2103[2];
fgets(controller4vul_2103 ,2 ,stdin);
if( strcmp( controller4vul_2103, "O") < 0)
{
char controller4vul_2104[2];
fgets(controller4vul_2104 ,2 ,stdin);
if( strcmp( controller4vul_2104, "z") < 0)
{
char_3 = v_DWHCIDeviceTransferStage(unsigned_int_1,float_1,double_2,char_1,uni_para);
}
}
if(1)
{
if(1)
{
}
}
}
}
if(1)
{
long long_1 = 1;
unsigned int unsigned_int_2 = 1;
long_1 = long_1 * long_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
if(1)
{
}
}
float_1 = float_1 * float_1;
}
void v_USBRequest( unsigned int parameter_1)
{
double double_1 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_2 = 1;
short short_1 = 1;
long long_4 = 1;
short short_2 = 1;
short short_3 = 1;
double_1 = double_1 + double_1;
long_3 = long_1 + long_2;
int_2 = int_1 + int_1;
long_2 = long_3 * long_2;
int_2 = int_1 + int_2;
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
long_2 = long_3 * long_2;
double_2 = double_1 * double_1;
short_1 = short_1 * short_1;
long_3 = long_4 + long_2;
double_1 = double_1 * double_2;
short_3 = short_2 * short_3;
}
int v_DWHCIDeviceControlMessage( float parameter_1,double parameter_2,double parameter_3,float parameter_4,unsigned int parameter_5,double parameter_6,double parameter_8,int uni_para)
{
long long_1 = 1;
long long_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
int int_2 = 1;
long long_3 = 1;
unsigned int unsigned_int_3 = 1;
char char_1 = 1;
char char_2 = 1;
double double_3 = 1;
int int_4 = 1;
float float_1 = 1;
float float_2 = 1;
int int_6 = 1;
long_2 = long_1 + long_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
double_2 = double_1 * double_2;
int_2 = int_1 * int_1;
long_1 = long_1 + long_2;
long_3 = long_3;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
unsigned_int_3 = unsigned_int_1 * unsigned_int_3;
int_1 = int_1 * int_2;
char_2 = char_1 * char_1;
double_1 = double_3 + double_2;
char controller4vul_2100[3];
fgets(controller4vul_2100 ,3 ,stdin);
if( strcmp( controller4vul_2100, "fF") > 0)
{
int int_3 = 1;
int int_5 = 1;
v_DWHCIDeviceSubmitBlockingRequest(double_2,int_1,uni_para);
int_5 = int_3 + int_4;
}
int_4 = int_4 * int_1;
float_1 = float_2;
return int_6;
}
int v_DWHCIDeviceSetConfiguration( short parameter_1,int parameter_2,char parameter_3,int uni_para)
{
float float_1 = 1;
float float_2 = 1;
int int_1 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
double double_2 = 1;
int int_2 = 1;
float_2 = float_1 * float_2;
char controller4vul_2099[3];
fgets(controller4vul_2099 ,3 ,stdin);
if( strcmp( controller4vul_2099, "`u") < 0)
{
int_1 = v_DWHCIDeviceControlMessage(float_1,double_1,double_1,float_1,unsigned_int_1,double_2,double_1,uni_para);
}
int_2 = int_1 * int_1;
return int_1;
}
void v_USBDeviceConfigure(int uni_para)
{
char char_1 = 1;
char char_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
int int_1 = 1;
short short_1 = 1;
int int_2 = 1;
char_2 = char_1 + char_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
double_1 = double_1;
char controller4vul_2098[3];
fgets(controller4vul_2098 ,3 ,stdin);
if( strcmp( controller4vul_2098, "c9") < 0)
{
int_1 = v_DWHCIDeviceSetConfiguration(short_1,int_2,char_2,uni_para);
}
if(1)
{
int int_3 = 1;
int_3 = int_1 + int_2;
}
}
void v_USBDevice( unsigned int parameter_1)
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
float float_1 = 1;
float float_2 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
double double_4 = 1;
char char_1 = 1;
char char_2 = 1;
short short_1 = 1;
char char_3 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
double double_5 = 1;
int int_3 = 1;
float float_3 = 1;
unsigned int unsigned_int_2 = 1;
short short_2 = 1;
float float_4 = 1;
double_3 = double_1 + double_2;
float_1 = float_1 * float_1;
float_1 = float_2 * float_1;
v_USBDeviceConfigure(-1 );
int_2 = int_1 * int_1;
unsigned_int_1 = unsigned_int_1;
double_4 = double_1 + double_3;
unsigned_int_1 = unsigned_int_1;
char_2 = char_1 + char_1;
short_1 = v_malloc(double_3);
char_3 = char_1 * char_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
long_3 = long_1 + long_2;
double_5 = double_3 * double_3;
int_3 = int_3;
double_5 = double_2;
float_2 = float_2 + float_3;
unsigned_int_2 = unsigned_int_1;
short_2 = short_1 + short_1;
v_USBString(double_2);
short_1 = short_1 * short_2;
v_USBEndpoint(unsigned_int_1);
float_4 = float_4 + float_1;
}
long v_DWHCIDeviceGetPortSpeed( short parameter_1)
{
int int_1 = 1;
short short_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_2 = 1;
long long_1 = 1;
long long_2 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
float float_4 = 1;
long long_3 = 1;
long long_4 = 1;
int_1 = v_DWHCIRegisterRead(short_1);
unsigned_int_1 = unsigned_int_2;
int_1 = int_2 * int_1;
long_2 = long_1 + long_1;
int_1 = int_2 * int_1;
char_3 = char_1 * char_2;
char_3 = char_2 + char_2;
double_3 = double_1 + double_2;
v_DWHCIRegister(long_1);
unsigned_int_1 = unsigned_int_3 * unsigned_int_4;
float_2 = float_1 + float_1;
float_2 = float_3 * float_4;
long_2 = long_1;
v__DWHCIRegister(long_3);
double_3 = double_2 + double_3;
return long_4;
}
float v_DWHCIRootPortInitialize( double parameter_1,int uni_para)
{
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_2 = 1;
char char_2 = 1;
char char_3 = 1;
int int_1 = 1;
int int_2 = 1;
short short_3 = 1;
char char_4 = 1;
float float_2 = 1;
char char_5 = 1;
char char_6 = 1;
char char_7 = 1;
float float_3 = 1;
float float_4 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
char char_8 = 1;
unsigned int unsigned_int_4 = 1;
long long_1 = 1;
int int_3 = 1;
int int_4 = 1;
unsigned_int_1 = unsigned_int_1;
short_2 = short_1 + short_1;
unsigned_int_1 = unsigned_int_2 + unsigned_int_1;
if(1)
{
char char_1 = 1;
char_3 = char_1 + char_2;
}
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
int_1 = int_1 * int_2;
short_3 = short_1 * short_1;
char_2 = char_4;
if(1)
{
float float_1 = 1;
int_1 = int_2 * int_1;
short_3 = short_2;
float_1 = float_2;
}
char_7 = char_5 * char_6;
float_2 = float_3;
float_2 = float_3 + float_4;
double_3 = double_1 * double_2;
double_3 = double_1;
char_8 = char_3;
char controller4vul_2094[3];
fgets(controller4vul_2094 ,3 ,stdin);
if( strcmp( controller4vul_2094, "Ud") > 0)
{
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_5 = 1;
unsigned_int_2 = unsigned_int_2 * unsigned_int_3;
int_1 = int_1 * int_2;
unsigned_int_5 = unsigned_int_3 + unsigned_int_4;
char controller4vul_2095[3];
fgets(controller4vul_2095 ,3 ,stdin);
if( strcmp( controller4vul_2095, "oT") < 0)
{
unsigned int unsigned_int_6 = 1;
int_1 = v_USBDeviceFactoryGetDevice(long_1,uni_para);
int_2 = int_1 * int_3;
unsigned_int_6 = unsigned_int_6 * unsigned_int_5;
int_4 = int_2 * int_4;
unsigned_int_1 = unsigned_int_5 + unsigned_int_3;
}
char_5 = char_3 + char_3;
}
if(1)
{
float float_5 = 1;
float_2 = float_5 + float_5;
double_1 = double_3 * double_3;
int_1 = int_4;
int_4 = int_2 * int_2;
}
if(1)
{
double_1 = double_2 + double_2;
unsigned_int_4 = unsigned_int_2 * unsigned_int_2;
int_3 = int_2 + int_4;
char_7 = char_7;
double_1 = double_3 + double_3;
}
return float_3;
}
short v_DWHCIDeviceEnableRootPort( unsigned int parameter_1)
{
unsigned int unsigned_int_1 = 1;
char char_1 = 1;
int int_1 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_3 = 1;
int int_2 = 1;
unsigned int unsigned_int_4 = 1;
short short_3 = 1;
int int_3 = 1;
double double_4 = 1;
char char_2 = 1;
char char_3 = 1;
int int_4 = 1;
unsigned int unsigned_int_5 = 1;
v_DWHCIRegisterOr(unsigned_int_1,char_1);
int_1 = int_1;
double_3 = double_1 * double_2;
unsigned_int_1 = unsigned_int_2 * unsigned_int_1;
if(1)
{
long_3 = long_1 + long_2;
}
v__DWHCIRegister(long_3);
v_DWHCIRegisterWrite();
short_1 = short_1 * short_2;
int_1 = int_1 + int_1;
unsigned_int_2 = unsigned_int_3;
unsigned_int_3 = unsigned_int_1 + unsigned_int_3;
int_1 = int_2 * int_1;
unsigned_int_4 = v_DWHCIDeviceWaitForBit(short_3,int_3,int_2,short_2,long_2);
long_2 = long_2 + long_1;
unsigned_int_1 = unsigned_int_4 * unsigned_int_3;
v_MsDelay(long_3);
double_4 = double_4 + double_4;
v_DWHCIRegisterAnd(int_3,short_1);
char_3 = char_2 + char_3;
short_2 = short_3 * short_1;
v_DWHCIRegister(long_2);
int_4 = v_DWHCIRegisterRead(short_3);
unsigned_int_5 = unsigned_int_2 * unsigned_int_5;
int_3 = int_2 * int_1;
return short_3;
}
void v_DWHCIDeviceEnableHostInterrupts( int parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
float float_1 = 1;
float float_2 = 1;
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
int int_2 = 1;
short short_1 = 1;
short short_2 = 1;
double double_3 = 1;
float float_3 = 1;
float float_4 = 1;
int int_3 = 1;
unsigned int unsigned_int_3 = 1;
long long_2 = 1;
char char_1 = 1;
unsigned int unsigned_int_4 = 1;
char char_2 = 1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
v__DWHCIRegister(long_1);
float_1 = float_1 * float_2;
double_2 = double_1 + double_1;
v_DWHCIRegisterWrite();
int_2 = int_1 * int_1;
short_2 = short_1 * short_2;
unsigned_int_2 = unsigned_int_1;
double_3 = double_2 + double_2;
float_4 = float_3 * float_3;
v_DWHCIDeviceEnableCommonInterrupts();
int_3 = v_DWHCIRegisterRead(short_2);
unsigned_int_3 = unsigned_int_3;
v_DWHCIRegister2(long_2,unsigned_int_1,char_1);
v_DWHCIRegisterOr(unsigned_int_4,char_2);
}
void v_DWHCIDeviceFlushRxFIFO( double parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
char char_1 = 1;
double double_1 = 1;
double double_2 = 1;
long long_2 = 1;
short short_1 = 1;
int int_1 = 1;
short short_2 = 1;
long long_3 = 1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
v_DWHCIRegister2(long_1,unsigned_int_1,char_1);
double_1 = double_1 + double_2;
v_DWHCIRegisterWrite();
v__DWHCIRegister(long_1);
long_1 = long_2 * long_2;
unsigned_int_1 = v_DWHCIDeviceWaitForBit(short_1,int_1,int_1,short_2,long_2);
int_1 = int_1 * int_1;
double_1 = double_1;
if(1)
{
float float_1 = 1;
float float_2 = 1;
v_DWHCIRegisterOr(unsigned_int_2,char_1);
float_1 = float_2;
}
double_1 = double_2 * double_2;
v_usDelay(long_3);
}
void v_TimerusDelay( long parameter_1,char parameter_2)
{
int int_1 = 1;
short short_1 = 1;
short short_2 = 1;
v_DelayLoop(int_1);
short_2 = short_1 + short_1;
if(1)
{
long long_1 = 1;
long long_2 = 1;
int int_2 = 1;
int int_3 = 1;
long_2 = long_1 + long_1;
int_1 = int_2 + int_3;
}
}
void v_usDelay( long parameter_1)
{
long long_1 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
unsigned int unsigned_int_1 = 1;
v_TimerusDelay(long_1,char_1);
char_3 = char_2 * char_1;
unsigned_int_1 = v_TimerGet();
}
void v_DWHCIDeviceFlushTxFIFO( short parameter_1,int parameter_2)
{
long long_1 = 1;
double double_1 = 1;
double double_2 = 1;
short short_1 = 1;
short short_2 = 1;
long long_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_1 = 1;
long long_3 = 1;
int int_1 = 1;
float float_1 = 1;
float float_2 = 1;
v__DWHCIRegister(long_1);
double_1 = double_1 + double_2;
short_2 = short_1 + short_2;
short_1 = short_1;
v_usDelay(long_2);
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
v_DWHCIRegisterOr(unsigned_int_2,char_1);
v_DWHCIRegisterWrite();
long_3 = long_3 * long_2;
long_2 = long_2 + long_1;
v_DWHCIRegisterAnd(int_1,short_1);
float_2 = float_1 + float_1;
if(1)
{
int_1 = int_1 * int_1;
}
unsigned_int_1 = v_DWHCIDeviceWaitForBit(short_2,int_1,int_1,short_1,long_1);
int_1 = int_1;
v_DWHCIRegister2(long_1,unsigned_int_1,char_1);
}
int v_DWHCIDeviceInitHost( short parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_1 = 1;
char char_2 = 1;
float float_1 = 1;
float float_2 = 1;
double double_1 = 1;
double double_2 = 1;
char char_3 = 1;
char char_4 = 1;
int int_1 = 1;
short short_1 = 1;
double double_3 = 1;
long long_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_3 = 1;
char char_5 = 1;
long long_2 = 1;
long long_3 = 1;
double double_4 = 1;
double double_5 = 1;
double double_6 = 1;
short short_2 = 1;
short short_3 = 1;
short short_4 = 1;
int int_3 = 1;
char char_6 = 1;
int int_4 = 1;
long long_4 = 1;
long long_5 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
char char_7 = 1;
double double_7 = 1;
double double_8 = 1;
long long_6 = 1;
char char_8 = 1;
char char_9 = 1;
char char_10 = 1;
long long_7 = 1;
long long_8 = 1;
char char_11 = 1;
int int_5 = 1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
char_1 = char_1 + char_2;
v_DWHCIRegisterWrite();
float_1 = float_2;
double_1 = double_1 + double_2;
char_4 = char_1 * char_3;
float_1 = float_2 + float_1;
double_1 = double_2 + double_1;
int_1 = v_DWHCIRegisterRead(short_1);
double_3 = double_3 * double_1;
v_DWHCIRegister(long_1);
long_1 = long_1;
v_DWHCIRegisterAnd(int_2,short_1);
char_3 = char_3;
int_2 = int_2 * int_2;
unsigned_int_2 = unsigned_int_3 + unsigned_int_1;
if(1)
{
float float_3 = 1;
float_3 = float_1 * float_2;
}
if(1)
{
v_DWHCIRegister2(long_1,unsigned_int_1,char_5);
long_3 = long_1 * long_2;
}
double_4 = double_5;
double_5 = double_2;
int_1 = int_2 + int_2;
float_1 = float_2 * float_2;
v_DWHCIRegisterOr(unsigned_int_3,char_2);
double_3 = double_2 + double_5;
double_3 = double_5 * double_6;
double_1 = double_3 + double_6;
int_2 = int_1 * int_1;
short_4 = short_2 * short_3;
char_3 = char_2;
double_4 = double_3 + double_1;
v_DWHCIDeviceFlushTxFIFO(short_3,int_3);
char_2 = char_6 + char_4;
int_2 = int_1 * int_4;
long_5 = long_4 + long_2;
unsigned_int_4 = unsigned_int_5;
char_4 = char_1 * char_6;
char_2 = char_7 * char_7;
long_2 = v_DWHCIRegisterGet(long_3);
double_8 = double_5 * double_7;
v__DWHCIRegister(long_3);
double_3 = double_1 * double_1;
unsigned_int_2 = unsigned_int_2 * unsigned_int_5;
if(1)
{
short short_5 = 1;
short short_6 = 1;
short_3 = short_5 * short_6;
long_5 = long_1 * long_6;
}
long_2 = long_4 * long_3;
v_DWHCIDeviceFlushRxFIFO(double_2);
double_6 = double_4 * double_6;
char_5 = char_8 * char_9;
char_10 = char_1 + char_1;
v_DWHCIDeviceEnableHostInterrupts(int_3);
double_8 = double_1 + double_1;
float_2 = float_1 + float_2;
long_8 = long_6 * long_7;
float_2 = float_2;
char_1 = char_4 + char_11;
return int_5;
}
void v_DWHCIDeviceEnableGlobalInterrupts( unsigned int parameter_1)
{
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
double double_1 = 1;
long long_1 = 1;
double double_2 = 1;
double double_3 = 1;
unsigned int unsigned_int_1 = 1;
int int_2 = 1;
int int_3 = 1;
char char_1 = 1;
long long_2 = 1;
long long_3 = 1;
unsigned int unsigned_int_2 = 1;
short_2 = short_1 + short_2;
int_1 = v_DWHCIRegisterRead(short_1);
double_1 = double_1 * double_1;
v_DWHCIRegister(long_1);
double_2 = double_3;
v__DWHCIRegister(long_1);
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
int_3 = int_1 + int_2;
v_DWHCIRegisterOr(unsigned_int_1,char_1);
long_3 = long_1 * long_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
v_DWHCIRegisterWrite();
}
void v_DWHCIDeviceEnableCommonInterrupts()
{
int int_1 = 1;
long long_1 = 1;
long long_2 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
int int_2 = 1;
int int_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
char char_1 = 1;
char char_2 = 1;
float float_1 = 1;
int_1 = int_1 + int_1;
v_DWHCIRegister(long_1);
long_1 = long_1 + long_2;
short_2 = short_1 + short_1;
short_3 = short_1 + short_1;
int_3 = int_2 * int_3;
if(1)
{
v_DWHCIRegisterWrite();
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
}
v_DWHCIRegisterSetAll(char_1);
char_2 = char_2;
v_DWHCIRegister2(long_1,unsigned_int_1,char_2);
unsigned_int_3 = unsigned_int_2;
short_2 = short_3;
float_1 = float_1;
v__DWHCIRegister(long_2);
}
void v_MsDelay( long parameter_1)
{
char char_1 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
v_TimerMsDelay(char_1,double_1);
unsigned_int_1 = v_TimerGet();
unsigned_int_2 = unsigned_int_3;
}
unsigned int v_DWHCIDeviceWaitForBit( short parameter_1,int parameter_2,int parameter_3,short parameter_4,long parameter_5)
{
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
short short_1 = 1;
long long_1 = 1;
return unsigned_int_1;
int_1 = v_DWHCIRegisterRead(short_1);
v_MsDelay(long_1);
}
int v_DWHCIDeviceReset( long parameter_1)
{
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
int int_1 = 1;
short short_2 = 1;
long long_1 = 1;
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
short short_3 = 1;
int int_2 = 1;
int int_3 = 1;
long long_2 = 1;
unsigned int unsigned_int_4 = 1;
char char_4 = 1;
double double_3 = 1;
double double_4 = 1;
unsigned_int_1 = v_DWHCIDeviceWaitForBit(short_1,int_1,int_1,short_2,long_1);
double_2 = double_1 + double_2;
v_DWHCIRegisterOr(unsigned_int_1,char_1);
short_1 = short_2 * short_2;
char_3 = char_2 + char_1;
if(1)
{
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
v_MsDelay(long_1);
unsigned_int_1 = unsigned_int_2 * unsigned_int_3;
}
short_3 = short_1;
int_2 = int_3;
if(1)
{
int int_4 = 1;
int int_5 = 1;
v_DWHCIRegister2(long_2,unsigned_int_4,char_4);
v_DWHCIRegisterWrite();
int_3 = int_4 + int_5;
}
double_4 = double_2 + double_3;
v__DWHCIRegister(long_2);
double_1 = double_2;
return int_1;
}
float v_DWHCIDeviceInitCore( char parameter_1)
{
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
char char_2 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_3 = 1;
long long_1 = 1;
long long_2 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
short short_4 = 1;
unsigned int unsigned_int_4 = 1;
int int_3 = 1;
long long_3 = 1;
long long_4 = 1;
double double_3 = 1;
double double_4 = 1;
double double_5 = 1;
char char_3 = 1;
double double_6 = 1;
long long_5 = 1;
long long_6 = 1;
char char_4 = 1;
short short_5 = 1;
double double_7 = 1;
unsigned int unsigned_int_5 = 1;
char char_5 = 1;
char char_6 = 1;
int int_4 = 1;
unsigned int unsigned_int_6 = 1;
unsigned int unsigned_int_7 = 1;
int int_5 = 1;
short_2 = short_1 + short_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
short_2 = short_1 + short_2;
double_1 = double_2;
char_2 = char_1 + char_2;
int_2 = int_1 + int_1;
unsigned_int_1 = unsigned_int_2 + unsigned_int_3;
if(1)
{
unsigned_int_1 = unsigned_int_3 + unsigned_int_1;
}
short_1 = short_1 * short_3;
long_1 = v_DWHCIRegisterGet(long_2);
float_3 = float_1 * float_2;
int_2 = v_DWHCIRegisterRead(short_4);
int_2 = int_1 + int_1;
int_1 = int_2;
unsigned_int_1 = unsigned_int_4;
short_3 = short_2 * short_3;
int_3 = v_DWHCIDeviceReset(long_3);
long_2 = long_4;
v_DWHCIRegisterWrite();
double_4 = double_3 + double_3;
v_DWHCIRegister(long_4);
char_1 = char_1 * char_2;
if(1)
{
v_LogWrite(short_4,short_1,int_3,double_4,-1 );
double_5 = double_4 * double_1;
char_2 = char_1 + char_2;
}
if(1)
{
float_3 = float_2 + float_2;
long_3 = long_1;
}
long_3 = long_3 * long_1;
v_DWHCIRegisterOr(unsigned_int_1,char_3);
double_4 = double_1 + double_6;
long_4 = long_5 + long_6;
v_DWHCIDeviceEnableCommonInterrupts();
char_2 = char_3 + char_3;
short_4 = short_3 * short_2;
v_DWHCIRegisterAnd(int_1,short_4);
short_3 = short_2 + short_1;
char_1 = char_4 * char_2;
short_1 = short_1 + short_5;
short_2 = short_5 * short_5;
double_3 = double_5 * double_7;
short_3 = short_1;
unsigned_int_5 = unsigned_int_1 * unsigned_int_1;
unsigned_int_1 = unsigned_int_3 * unsigned_int_5;
v__DWHCIRegister(long_4);
float_2 = float_3;
char_6 = char_5 * char_4;
int_1 = int_1 + int_4;
unsigned_int_7 = unsigned_int_6 + unsigned_int_1;
int_5 = int_4 * int_1;
int_1 = int_2 * int_2;
return float_1;
}
double v_DWHCITransferStageDataBeginSplitCycle( double parameter_1)
{
double double_1 = 1;
return double_1;
}
void v_DWHCITransferStageDataIsStageComplete( unsigned int parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
}
void v_USBRequestCallCompletionRoutine( short parameter_1)
{
float float_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
float_1 = float_2;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
double_1 = double_1;
}
void v_DWHCIDeviceFreeChannel( long parameter_1,short parameter_2)
{
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
char char_2 = 1;
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
long long_1 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
double_1 = double_2;
char_2 = char_1 * char_1;
v_uspi_LeaveCritical();
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
v_uspi_EnterCritical();
char_2 = char_2;
int_1 = int_1 * int_1;
long_1 = long_1;
short_3 = short_1 * short_2;
}
void v__DWHCITransferStageData()
{
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
float float_4 = 1;
short_1 = short_1 + short_2;
if(1)
{
short short_3 = 1;
unsigned int unsigned_int_1 = 1;
int int_2 = 1;
v_free();
short_3 = short_3 * short_2;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
int_2 = int_1 + int_1;
}
unsigned_int_4 = unsigned_int_2 + unsigned_int_3;
if(1)
{
long long_1 = 1;
long long_2 = 1;
int int_3 = 1;
long_2 = long_1 * long_1;
int_1 = int_3 + int_3;
}
unsigned_int_2 = unsigned_int_3 * unsigned_int_2;
float_2 = float_1 * float_2;
float_4 = float_2 + float_3;
}
void v_uspi_LeaveCritical()
{
short short_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
short_1 = short_1 * short_1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
if(1)
{
if(1)
{
int int_1 = 1;
int int_2 = 1;
int_2 = int_1 * int_1;
}
}
}
void v_uspi_EnterCritical()
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
double_1 = double_2;
unsigned_int_3 = unsigned_int_2 + unsigned_int_2;
char controller_1[3];
fgets(controller_1 ,3 ,stdin);
if( strcmp( controller_1, "MJ") > 0)
{
double_1 = double_2 + double_1;
}
long_1 = long_1;
}
void v_DWHCIDeviceDisableChannelInterrupt( int parameter_1,unsigned int parameter_2)
{
char char_1 = 1;
char char_2 = 1;
float float_1 = 1;
float float_2 = 1;
long long_1 = 1;
int int_1 = 1;
short short_1 = 1;
float float_3 = 1;
float float_4 = 1;
double double_1 = 1;
int int_2 = 1;
short short_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_3 = 1;
double double_2 = 1;
char_2 = char_1 * char_1;
v_DWHCIRegisterWrite();
float_2 = float_1 + float_1;
v_DWHCIRegister(long_1);
int_1 = v_DWHCIRegisterRead(short_1);
float_3 = float_4;
v_uspi_EnterCritical();
double_1 = double_1 * double_1;
v__DWHCIRegister(long_1);
int_2 = int_1 * int_2;
v_DWHCIRegisterAnd(int_2,short_2);
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
int_2 = int_1 + int_2;
short_3 = short_2 + short_1;
v_uspi_LeaveCritical();
double_1 = double_2 + double_2;
}
short v_DWHCITransferStageDataGetResultLen( float parameter_1)
{
float float_1 = 1;
float float_2 = 1;
short short_1 = 1;
float_2 = float_1 * float_1;
if(1)
{
}
return short_1;
}
void v_USBRequestSetResultLen( unsigned int parameter_1,short parameter_2)
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
int int_1 = 1;
int int_2 = 1;
double_3 = double_1 + double_2;
int_2 = int_1 + int_2;
}
double v_DWHCITransferStageDataIsStatusStage()
{
short short_1 = 1;
short short_2 = 1;
double double_1 = 1;
short_2 = short_1 + short_1;
return double_1;
}
void v_DWHCITransferStageDataSetSplitComplete( short parameter_1,short parameter_2)
{
char char_1 = 1;
char char_2 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char_2 = char_1 + char_1;
double_1 = double_1 + double_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
}
void v_DWHCIDeviceTimerHandler( long parameter_1)
{
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
long long_1 = 1;
long long_2 = 1;
float float_1 = 1;
int int_1 = 1;
int int_2 = 1;
double double_2 = 1;
short short_1 = 1;
char char_1 = 1;
char char_2 = 1;
long long_3 = 1;
short short_2 = 1;
short short_3 = 1;
int int_3 = 1;
float float_2 = 1;
double double_3 = 1;
long long_4 = 1;
long long_5 = 1;
double_1 = double_1 + double_1;
unsigned_int_1 = unsigned_int_1;
long_2 = long_1 * long_1;
v_DWHCITransferStageDataGetState(float_1);
int_2 = int_1 + int_1;
v_DWHCITransferStageDataSetState(double_2,short_1);
char_1 = char_1 * char_2;
v_DWHCITransferStageDataSetSplitComplete(short_1,short_1);
long_1 = long_3;
short_2 = short_2 + short_3;
char controller_1[3];
fgets(controller_1 ,3 ,stdin);
if( strcmp( controller_1, "-6") > 0)
{
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
float float_3 = 1;
float float_4 = 1;
float float_5 = 1;
unsigned_int_1 = unsigned_int_2 * unsigned_int_3;
v_DWHCIDeviceStartTransaction(int_3,float_2);
unsigned_int_2 = unsigned_int_2;
long_3 = long_1 * long_1;
float_4 = float_2 + float_3;
double_3 = v_DWHCITransferStageDataIsSplit();
float_1 = float_2 * float_5;
}
if(1)
{
v_DWHCITransferStageDataGetFrameScheduler(char_2);
short_1 = short_2 + short_2;
}
long_1 = long_4 + long_4;
long_5 = long_1 + long_5;
}
unsigned int v_TimerGet()
{
char char_1 = 1;
char char_2 = 1;
unsigned int unsigned_int_1 = 1;
char_2 = char_1 * char_1;
return unsigned_int_1;
}
unsigned int v_TimerStartKernelTimer( short parameter_1,char parameter_2,float parameter_3)
{
float float_1 = 1;
float float_2 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
int int_2 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
double double_2 = 1;
double double_3 = 1;
long long_1 = 1;
long long_2 = 1;
char char_1 = 1;
unsigned int unsigned_int_3 = 1;
short short_4 = 1;
int int_3 = 1;
unsigned int unsigned_int_4 = 1;
int int_4 = 1;
float_1 = float_1 * float_2;
double_1 = double_1 + double_1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
char controller_1[2];
fgets(controller_1 ,2 ,stdin);
if( strcmp( controller_1, "i") < 0)
{
int_2 = int_1 + int_1;
}
}
char controller_2[2];
fgets(controller_2 ,2 ,stdin);
if( strcmp( controller_2, "^") < 0)
{
short_3 = short_1 * short_2;
unsigned_int_2 = unsigned_int_2;
}
double_3 = double_1 * double_2;
v_LoggerWrite(unsigned_int_2,int_2,long_1,long_2,char_1);
unsigned_int_3 = unsigned_int_2 + unsigned_int_2;
char_1 = char_1 + char_1;
v_EnterCritical();
v_LeaveCritical();
short_4 = short_2;
short_2 = short_1 + short_3;
int_3 = int_1 * int_3;
return unsigned_int_4;
int_4 = v_LoggerGet();
}
long v_StartKernelTimer( int parameter_1,float parameter_2)
{
long long_1 = 1;
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
char char_1 = 1;
float float_1 = 1;
return long_1;
unsigned_int_1 = v_TimerStartKernelTimer(short_1,char_1,float_1);
unsigned_int_1 = v_TimerGet();
}
char v_USBRequestGetEndpoint( unsigned int parameter_1)
{
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
int_2 = int_1 * int_1;
int_2 = int_2 * int_2;
return char_1;
}
double v_USBEndpointGetInterval()
{
int int_1 = 1;
int int_2 = 1;
double double_1 = 1;
int_1 = int_2;
int_1 = int_2 * int_2;
return double_1;
}
void v_DWHCITransferStageDataSetState( double parameter_1,short parameter_2)
{
double double_1 = 1;
double double_2 = 1;
short short_1 = 1;
short short_2 = 1;
double_2 = double_1 * double_1;
short_1 = short_1 * short_2;
}
void v_USBRequestSetStatus( unsigned int parameter_1,int parameter_2)
{
char char_1 = 1;
int int_1 = 1;
char_1 = char_1;
int_1 = int_1 + int_1;
}
long v_DWHCITransferStageDataGetTransactionStatus()
{
double double_1 = 1;
double double_2 = 1;
float float_1 = 1;
long long_1 = 1;
double_2 = double_1 + double_2;
float_1 = float_1;
return long_1;
}
void v_DWHCITransferStageDataGetState( float parameter_1)
{
char char_1 = 1;
char char_2 = 1;
char_2 = char_1 * char_1;
}
void v_USBEndpointSkipPID( short parameter_1,float parameter_2,long parameter_3)
{
char char_1 = 1;
char char_2 = 1;
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
double double_3 = 1;
char_1 = char_1 * char_2;
double_1 = double_2;
if(1)
{
long long_1 = 1;
long long_2 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
long_1 = long_1 * long_1;
double_1 = double_2 + double_1;
if(1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
}
long_2 = long_1;
if(1)
{
float_1 = float_1 * float_1;
}
float_1 = float_2 + float_3;
int_1 = int_1;
double_3 = double_1 + double_1;
}
if(1)
{
int int_2 = 1;
int_1 = int_1 + int_2;
double_3 = double_3 + double_3;
}
}
void v_DWHCITransferStageDataTransactionComplete( unsigned int parameter_1,float parameter_2,char parameter_3,int parameter_4)
{
short short_1 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_1 = 1;
char char_2 = 1;
long long_1 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_3 = 1;
long long_2 = 1;
long long_3 = 1;
double double_1 = 1;
double double_2 = 1;
char char_3 = 1;
short_1 = short_1;
if(1)
{
char controller_2[3];
fgets(controller_2 ,3 ,stdin);
if( strcmp( controller_2, "Ha") == 0)
{
float_1 = float_1 * float_1;
}
unsigned_int_1 = unsigned_int_2;
}
if(1)
{
}
char_2 = char_1 * char_2;
v_USBEndpointSkipPID(short_1,float_1,long_1);
int_2 = int_1 * int_1;
if(1)
{
unsigned_int_2 = unsigned_int_1 + unsigned_int_3;
}
long_3 = long_1 + long_2;
double_2 = double_1 * double_1;
if(1)
{
char_1 = char_1 * char_2;
}
unsigned_int_2 = unsigned_int_2 + unsigned_int_3;
char_3 = char_1;
if(1)
{
float float_2 = 1;
float float_3 = 1;
short short_2 = 1;
v_Logger(double_1);
float_3 = float_1 + float_2;
short_2 = short_2 * short_1;
}
}
long v_DWHCIRegisterIsSet( char parameter_1,long parameter_2)
{
float float_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
float_2 = float_1 * float_2;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
unsigned_int_1 = unsigned_int_2 * unsigned_int_1;
return long_1;
}
void v_DWHCIDeviceStartTransaction( int parameter_1,float parameter_2)
{
short short_1 = 1;
short short_2 = 1;
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
char char_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_3 = 1;
int int_1 = 1;
unsigned int unsigned_int_3 = 1;
double double_4 = 1;
double double_5 = 1;
int int_3 = 1;
float float_1 = 1;
short short_3 = 1;
char char_3 = 1;
long long_2 = 1;
long long_3 = 1;
unsigned int unsigned_int_5 = 1;
short_1 = short_2;
double_1 = double_1 * double_2;
short_2 = short_2;
long_1 = v_DWHCIRegisterIsSet(char_1,long_1);
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
double_1 = double_3 * double_2;
v_DWHCIRegisterAnd(int_1,short_1);
v_DWHCIDeviceStartChannel(short_2,unsigned_int_2);
unsigned_int_3 = unsigned_int_1;
long_1 = v_DWHCITransferStageDataGetChannelNumber(short_1);
double_4 = double_5;
char controller_1[2];
fgets(controller_1 ,2 ,stdin);
if( strcmp( controller_1, "=") < 0)
{
int int_2 = 1;
unsigned int unsigned_int_4 = 1;
float float_2 = 1;
char char_2 = 1;
v__DWHCIRegister(long_1);
unsigned_int_2 = unsigned_int_3 * unsigned_int_3;
int_3 = int_2 * int_2;
unsigned_int_3 = unsigned_int_4 * unsigned_int_2;
int_3 = v_DWHCIRegisterRead(short_2);
v_DWHCIRegisterSet(float_1,short_3);
float_1 = float_2;
double_5 = double_5 * double_1;
float_2 = float_2 + float_1;
v_DWHCIRegisterWrite();
char_3 = char_1 * char_2;
double_1 = double_4;
double_5 = double_1 * double_1;
}
if(1)
{
int int_4 = 1;
int_1 = int_3 + int_4;
}
v_DWHCIRegister(long_2);
v_DWHCIRegisterOr(unsigned_int_3,char_3);
long_3 = long_2 * long_2;
v_DWHCITransferStageDataSetSubState(unsigned_int_5,float_1);
}
float v_DWHCITransferStageDataIsPeriodic( double parameter_1)
{
int int_1 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
short short_1 = 1;
float float_1 = 1;
int_1 = int_1;
long_1 = long_2;
long_3 = v_USBEndpointGetType(short_1);
long_3 = long_3 + long_3;
return float_1;
}
short v_DWHCITransferStageDataGetStatusMask( unsigned int parameter_1)
{
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
char char_2 = 1;
double double_2 = 1;
short short_1 = 1;
float float_1 = 1;
int_2 = int_1 * int_1;
char_1 = char_2;
if(1)
{
double double_1 = 1;
double_2 = double_1 + double_2;
}
return short_1;
float_1 = v_DWHCITransferStageDataIsPeriodic(double_2);
}
void v_DWHCIRegisterSet( float parameter_1,short parameter_2)
{
short short_1 = 1;
short short_2 = 1;
long long_1 = 1;
float float_1 = 1;
float float_2 = 1;
short_1 = short_1 * short_2;
long_1 = long_1;
float_2 = float_1 * float_1;
}
void v_USBEndpointGetNumber( unsigned int parameter_1)
{
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int_3 = int_1 + int_2;
}
long v_DWHCITransferStageDataGetEndpointNumber( int parameter_1)
{
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
v_USBEndpointGetNumber(unsigned_int_1);
int_1 = int_1;
double_2 = double_1 + double_1;
return long_1;
}
long v_USBEndpointGetType( short parameter_1)
{
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
double_2 = double_1 * double_1;
return long_1;
}
short v_DWHCITransferStageDataGetEndpointType( double parameter_1)
{
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
int int_2 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
double double_4 = 1;
short short_3 = 1;
long long_1 = 1;
int int_3 = 1;
double double_5 = 1;
char char_1 = 1;
unsigned int unsigned_int_1 = 1;
short_1 = short_1 + short_2;
int_1 = int_2;
double_1 = double_1 * double_2;
double_1 = double_3 + double_4;
short_2 = short_2 + short_3;
long_1 = v_USBEndpointGetType(short_3);
int_3 = int_3 * int_3;
double_5 = double_2 * double_1;
char_1 = char_1 + char_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
double_1 = double_3;
double_4 = double_3 * double_4;
return short_1;
}
char v_USBDeviceGetAddress( unsigned int parameter_1)
{
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
int_2 = int_1 + int_2;
return char_1;
}
float v_DWHCITransferStageDataGetDeviceAddress( long parameter_1)
{
short short_1 = 1;
char char_1 = 1;
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
int int_2 = 1;
float float_1 = 1;
short_1 = short_1;
char_1 = v_USBDeviceGetAddress(unsigned_int_1);
int_2 = int_1 * int_1;
return float_1;
}
float v_DWHCITransferStageDataGetSpeed()
{
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
float float_1 = 1;
long_3 = long_1 + long_2;
return float_1;
}
char v_DWHCITransferStageDataIsDirectionIn( unsigned int parameter_1)
{
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
double_2 = double_1 * double_1;
return char_1;
}
char v_DWHCITransferStageDataGetMaxPacketSize( unsigned int parameter_1)
{
short short_1 = 1;
char char_1 = 1;
short_1 = short_1 * short_1;
return char_1;
}
void v_DWHCITransferStageDataIsSplitComplete( short parameter_1)
{
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
int int_2 = 1;
short_2 = short_1 * short_1;
int_1 = int_1 + int_2;
}
unsigned int v_DWHCITransferStageDataGetSplitPosition( double parameter_1)
{
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
double_1 = double_1 + double_1;
double_2 = double_1 * double_1;
return unsigned_int_1;
}
int v_USBDeviceGetHubAddress( char parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
return int_1;
}
double v_DWHCITransferStageDataGetHubAddress()
{
double double_1 = 1;
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double_1 = double_1 + double_1;
int_1 = int_1 * int_2;
int_2 = v_USBDeviceGetHubAddress(char_1);
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
return double_1;
}
long v_USBDeviceGetHubPortNumber( int parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
unsigned_int_1 = unsigned_int_2;
return long_1;
}
double v_DWHCITransferStageDataGetHubPortAddress( long parameter_1)
{
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
long long_1 = 1;
int int_1 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_2 = 1;
char_3 = char_1 + char_2;
long_1 = v_USBDeviceGetHubPortNumber(int_1);
double_1 = double_1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
return double_2;
}
double v_DWHCITransferStageDataIsSplit()
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
return double_1;
}
void v_uspi_CleanAndInvalidateDataCacheRange( float parameter_1,short parameter_2)
{
char char_1 = 1;
char char_2 = 1;
char_2 = char_1 * char_1;
if(1)
{
unsigned int unsigned_int_1 = 1;
long long_1 = 1;
long long_2 = 1;
unsigned_int_1 = unsigned_int_1;
long_2 = long_1 + long_1;
}
}
double v_DWHCITransferStageDataGetDMAAddress( long parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_1 = 1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
unsigned_int_3 = unsigned_int_1 * unsigned_int_1;
return double_1;
}
unsigned int v_USBEndpointGetNextPID( char parameter_1,char parameter_2)
{
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
unsigned int unsigned_int_1 = 1;
float_3 = float_1 + float_2;
if(1)
{
int int_1 = 1;
int_1 = int_1;
}
return unsigned_int_1;
}
float v_DWHCITransferStageDataGetPID( char parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
char char_1 = 1;
char char_2 = 1;
unsigned int unsigned_int_4 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
short short_1 = 1;
short short_2 = 1;
char char_3 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
unsigned_int_3 = v_USBEndpointGetNextPID(char_1,char_2);
unsigned_int_4 = unsigned_int_4 * unsigned_int_3;
int_2 = int_1 * int_2;
unsigned_int_2 = unsigned_int_3;
int_3 = int_1;
int_3 = int_2 * int_4;
short_2 = short_1 * short_1;
int_4 = int_4 * int_1;
char_3 = char_3 + char_1;
float_2 = float_1 * float_2;
float_3 = float_1 + float_1;
return float_1;
}
unsigned int v_DWHCITransferStageDataGetPacketsToTransfer( int parameter_1)
{
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
double_1 = double_2;
return unsigned_int_1;
}
int v_DWHCITransferStageDataGetBytesToTransfer( int parameter_1)
{
char char_1 = 1;
int int_1 = 1;
char_1 = char_1;
return int_1;
}
void v_DWHCIRegisterOr( unsigned int parameter_1,char parameter_2)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned_int_1 = unsigned_int_2;
char_3 = char_1 * char_2;
int_2 = int_1 + int_1;
}
void v_DWHCIRegisterSetAll( char parameter_1)
{
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
long long_1 = 1;
int_1 = int_1 + int_2;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
long_1 = long_1;
}
void v_DWHCITransferStageDataSetSubState( unsigned int parameter_1,float parameter_2)
{
short short_1 = 1;
int int_1 = 1;
int int_2 = 1;
short_1 = short_1;
int_2 = int_1 * int_1;
}
long v_DWHCITransferStageDataGetChannelNumber( short parameter_1)
{
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
double_1 = double_2;
return long_1;
}
void v_DWHCIDeviceStartChannel( short parameter_1,unsigned int parameter_2)
{
double double_1 = 1;
long long_1 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
unsigned int unsigned_int_1 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
char char_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_2 = 1;
int int_4 = 1;
int int_5 = 1;
short short_1 = 1;
char char_3 = 1;
char char_4 = 1;
long long_2 = 1;
long long_3 = 1;
double double_2 = 1;
double double_3 = 1;
unsigned int unsigned_int_3 = 1;
short short_2 = 1;
float float_4 = 1;
int int_6 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
double double_4 = 1;
double double_5 = 1;
int int_7 = 1;
double double_6 = 1;
short short_3 = 1;
char char_5 = 1;
long long_4 = 1;
long long_5 = 1;
short short_4 = 1;
float float_5 = 1;
double double_7 = 1;
short short_5 = 1;
unsigned int unsigned_int_7 = 1;
double double_8 = 1;
int int_8 = 1;
float float_7 = 1;
short short_6 = 1;
short short_7 = 1;
int int_9 = 1;
double double_9 = 1;
short short_8 = 1;
char char_6 = 1;
unsigned int unsigned_int_8 = 1;
long long_6 = 1;
double_1 = v_DWHCITransferStageDataGetDMAAddress(long_1);
int_3 = int_1 + int_2;
v_DWHCITransferStageDataSetSubState(unsigned_int_1,float_1);
float_3 = float_2 + float_1;
long_1 = long_1 * long_1;
char_1 = v_DWHCITransferStageDataIsDirectionIn(unsigned_int_2);
char_2 = char_1 + char_1;
int_4 = int_5;
v_DWHCIRegisterSet(float_3,short_1);
char_3 = char_3 + char_4;
float_1 = v_DWHCITransferStageDataGetDeviceAddress(long_2);
long_3 = long_1 * long_2;
double_1 = v_DWHCITransferStageDataIsSplit();
unsigned_int_2 = unsigned_int_2;
double_3 = double_2 + double_3;
unsigned_int_1 = v_DWHCITransferStageDataGetPacketsToTransfer(int_1);
double_1 = double_2 * double_2;
unsigned_int_1 = unsigned_int_1 + unsigned_int_3;
short_2 = short_1 + short_2;
float_4 = float_2 * float_1;
v_DWHCIRegister2(long_2,unsigned_int_1,char_1);
v_DWHCITransferStageDataGetFrameScheduler(char_4);
int_6 = int_4 + int_4;
unsigned_int_5 = unsigned_int_4 + unsigned_int_5;
int_5 = v_DWHCITransferStageDataGetBytesToTransfer(int_5);
int_4 = int_5 * int_5;
float_3 = v_DWHCITransferStageDataGetPID(char_3);
float_1 = float_1 + float_4;
unsigned_int_3 = unsigned_int_1 * unsigned_int_4;
double_5 = double_4 * double_3;
double_2 = v_DWHCITransferStageDataGetHubAddress();
unsigned_int_3 = unsigned_int_2;
double_1 = double_3;
int_2 = int_7;
char controller_1[2];
fgets(controller_1 ,2 ,stdin);
if( strcmp( controller_1, "g") < 0)
{
unsigned int unsigned_int_6 = 1;
float_1 = v_DWHCITransferStageDataGetSpeed();
unsigned_int_3 = unsigned_int_6 + unsigned_int_5;
float_4 = float_1;
double_5 = double_5 * double_1;
if(1)
{
double_4 = double_6;
}
short_1 = short_2;
}
double_3 = double_3 * double_3;
v_DWHCIRegisterAnd(int_2,short_3);
short_2 = v_DWHCITransferStageDataGetStatusMask(unsigned_int_2);
char_5 = char_4 + char_4;
long_5 = long_3 * long_4;
short_2 = short_1 + short_4;
v_DWHCITransferStageDataIsSplitComplete(short_2);
float_2 = float_5 * float_3;
v_DWHCIRegisterOr(unsigned_int_1,char_4);
double_6 = double_5 * double_7;
short_5 = short_1;
short_4 = short_3;
if(1)
{
float float_6 = 1;
float_6 = float_3;
}
if(1)
{
unsigned_int_1 = unsigned_int_7 * unsigned_int_7;
}
if(1)
{
double_8 = v_DWHCITransferStageDataGetHubPortAddress(long_3);
double_8 = double_6 * double_8;
}
if(1)
{
long_1 = v_DWHCITransferStageDataGetEndpointNumber(int_8);
float_2 = float_4 + float_7;
}
v_DWHCIRegisterWrite();
char_1 = char_3 + char_3;
long_1 = v_DWHCITransferStageDataGetChannelNumber(short_5);
int_4 = v_DWHCIRegisterRead(short_6);
unsigned_int_5 = unsigned_int_5 * unsigned_int_1;
double_1 = double_1 * double_4;
int_1 = int_4 * int_4;
v_DWHCIRegister(long_4);
v_uspi_CleanAndInvalidateDataCacheRange(float_2,short_7);
int_4 = int_1 * int_8;
int_1 = int_7;
unsigned_int_7 = unsigned_int_1 * unsigned_int_7;
if(1)
{
int_8 = int_5 * int_3;
if(1)
{
float_7 = float_2;
}
if(1)
{
double_8 = double_3 * double_7;
}
}
int_9 = int_3;
short_1 = short_7 * short_5;
double_4 = double_7 + double_9;
short_1 = v_DWHCITransferStageDataGetEndpointType(double_5);
char_3 = char_1;
char_1 = v_DWHCITransferStageDataGetMaxPacketSize(unsigned_int_2);
int_8 = int_2 * int_5;
short_8 = short_2 * short_3;
int_3 = int_6;
char_3 = char_6 * char_5;
unsigned_int_8 = v_DWHCITransferStageDataGetSplitPosition(double_1);
v__DWHCIRegister(long_2);
char_5 = char_5 * char_3;
long_5 = long_6;
double_5 = double_7;
v_DWHCIRegisterSetAll(char_4);
short_2 = short_8 * short_8;
unsigned_int_5 = unsigned_int_2 + unsigned_int_2;
}
double v_DWHCITransferStageDataGetSubState( float parameter_1)
{
char char_1 = 1;
double double_1 = 1;
char_1 = char_1 * char_1;
return double_1;
}
double v_DWHCITransferStageDataGetURB()
{
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
char char_2 = 1;
double double_1 = 1;
int_1 = int_1 + int_2;
char_2 = char_1 * char_2;
return double_1;
}
void v_DWHCITransferStageDataGetFrameScheduler( char parameter_1)
{
float float_1 = 1;
float_1 = float_1;
}
void v_DWHCIDeviceChannelInterruptHandler( float parameter_1,int parameter_2)
{
float float_1 = 1;
short short_1 = 1;
long long_1 = 1;
double double_1 = 1;
double double_2 = 1;
float float_2 = 1;
float float_3 = 1;
char char_1 = 1;
char char_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
double double_3 = 1;
double double_4 = 1;
unsigned int unsigned_int_3 = 1;
char char_3 = 1;
double double_5 = 1;
float float_4 = 1;
int int_4 = 1;
long long_2 = 1;
float float_5 = 1;
float float_6 = 1;
short short_2 = 1;
unsigned int unsigned_int_4 = 1;
float float_7 = 1;
unsigned int unsigned_int_5 = 1;
short short_3 = 1;
double double_6 = 1;
long long_3 = 1;
float float_8 = 1;
long long_4 = 1;
int int_5 = 1;
double double_7 = 1;
double double_8 = 1;
char char_4 = 1;
long long_6 = 1;
int int_6 = 1;
int int_7 = 1;
long long_7 = 1;
double double_9 = 1;
double double_10 = 1;
double double_11 = 1;
unsigned int unsigned_int_6 = 1;
int int_8 = 1;
long long_8 = 1;
char char_5 = 1;
char char_6 = 1;
unsigned int unsigned_int_7 = 1;
short short_4 = 1;
unsigned int unsigned_int_8 = 1;
int int_9 = 1;
char char_7 = 1;
unsigned int unsigned_int_9 = 1;
short short_5 = 1;
float float_9 = 1;
long long_9 = 1;
int int_10 = 1;
char char_8 = 1;
short short_6 = 1;
double double_12 = 1;
unsigned int unsigned_int_10 = 1;
short short_7 = 1;
v_uspi_CleanAndInvalidateDataCacheRange(float_1,short_1);
long_1 = long_1;
double_2 = double_1 * double_1;
float_2 = float_2 + float_3;
char_1 = char_1 + char_2;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
float_1 = float_3 + float_3;
int_2 = int_1 * int_1;
int_3 = int_1 + int_1;
float_3 = float_2 + float_1;
short_1 = short_1 + short_1;
double_2 = double_3 * double_4;
unsigned_int_3 = unsigned_int_2 + unsigned_int_2;
char_3 = v_USBRequestGetEndpoint(unsigned_int_3);
int_2 = int_2 + int_3;
double_5 = v_DWHCITransferStageDataGetURB();
float_4 = float_2 + float_1;
if(1)
{
int_2 = v_DWHCITransferStageDataGetBytesToTransfer(int_4);
long_1 = long_2;
}
long_1 = v_DWHCITransferStageDataGetTransactionStatus();
float_6 = float_5 + float_1;
v_DWHCITransferStageDataSetSplitComplete(short_1,short_2);
unsigned_int_1 = unsigned_int_4 + unsigned_int_4;
unsigned_int_3 = unsigned_int_3;
int_2 = int_3 + int_2;
float_6 = float_4 + float_7;
int_4 = int_1;
unsigned_int_5 = unsigned_int_2 + unsigned_int_3;
v_LogWrite(short_3,short_3,int_2,double_6,-1 );
long_3 = long_1 + long_3;
float_8 = v_DWHCITransferStageDataIsPeriodic(double_4);
long_1 = v_DWHCIRegisterGet(long_3);
v_USBRequestCallCompletionRoutine(short_2);
double_5 = double_5;
if(1)
{
short_2 = short_2 * short_2;
float_4 = float_8;
}
if(1)
{
v_DWHCIRegister(long_3);
double_2 = double_6 + double_1;
long_1 = long_1 * long_4;
v_USBRequestSetResultLen(unsigned_int_3,short_1);
float_2 = float_5;
int_3 = int_5;
}
if(1)
{
if(1)
{
long long_5 = 1;
long_2 = long_3 * long_5;
}
float_3 = float_7 * float_8;
}
double_8 = double_1 * double_7;
float_3 = float_5;
char_2 = char_1 + char_4;
long_3 = long_6;
int_3 = int_1 * int_2;
int_6 = int_3 + int_2;
double_5 = double_5;
v_DWHCITransferStageDataGetState(float_8);
int_7 = int_1;
if(1)
{
double_1 = v_DWHCITransferStageDataGetDMAAddress(long_4);
long_1 = long_4 * long_7;
unsigned_int_1 = unsigned_int_1 + unsigned_int_4;
int_2 = int_7;
double_10 = double_9 * double_1;
double_3 = double_11 + double_1;
int_5 = int_1 * int_4;
v_USBRequestSetStatus(unsigned_int_6,int_4);
double_10 = double_8 + double_7;
short_2 = short_1 + short_1;
double_8 = double_6;
}
unsigned_int_6 = unsigned_int_5 + unsigned_int_6;
double_10 = v_DWHCITransferStageDataGetSubState(float_4);
long_4 = v_StartKernelTimer(int_8,float_1);
v_DWHCIDeviceDisableChannelInterrupt(int_7,unsigned_int_1);
unsigned_int_4 = unsigned_int_4 * unsigned_int_1;
float_3 = float_7 + float_7;
if(1)
{
v_DWHCIDeviceTimerHandler(long_8);
unsigned_int_5 = unsigned_int_5 + unsigned_int_2;
}
long_4 = long_8 * long_2;
char_4 = char_3 * char_5;
float_2 = float_5 + float_4;
if(1)
{
unsigned_int_3 = unsigned_int_6;
char_5 = char_6 + char_2;
unsigned_int_3 = unsigned_int_7 + unsigned_int_1;
long_4 = long_2 + long_4;
char_4 = char_2;
short_3 = short_3 * short_4;
short_2 = short_2 * short_1;
double_5 = double_7 * double_9;
v__DWHCIRegister(long_6);
int_4 = int_2 * int_1;
}
unsigned_int_3 = unsigned_int_5 * unsigned_int_8;
if(1)
{
int_4 = int_3 + int_5;
int_3 = int_9 * int_8;
}
if(1)
{
if(1)
{
int_4 = int_7 * int_1;
double_4 = v_DWHCITransferStageDataIsStatusStage();
unsigned_int_8 = unsigned_int_4 + unsigned_int_6;
float_7 = float_2;
short_3 = short_1 * short_3;
unsigned_int_3 = unsigned_int_6 + unsigned_int_6;
v_DWHCITransferStageDataSetState(double_8,short_1);
double_2 = double_11 + double_2;
v_DWHCITransferStageDataTransactionComplete(unsigned_int_2,float_3,char_6,int_1);
int_5 = int_9;
char_3 = char_3 + char_7;
}
if(1)
{
double_3 = v_DWHCITransferStageDataBeginSplitCycle(double_11);
unsigned_int_6 = unsigned_int_9;
int_5 = int_3 + int_1;
int_8 = int_3 + int_4;
double_9 = double_6 * double_11;
}
if(1)
{
double_2 = double_7 * double_2;
unsigned_int_8 = unsigned_int_4 * unsigned_int_7;
int_8 = v_DWHCIRegisterRead(short_2);
long_2 = long_6 * long_6;
}
short_5 = v_DWHCITransferStageDataGetResultLen(float_9);
long_8 = long_9;
}
v_DWHCIDeviceStartTransaction(int_10,float_2);
char_8 = char_7 + char_8;
if(1)
{
char_7 = char_2 + char_1;
}
short_4 = short_6;
double_12 = v_USBEndpointGetInterval();
v__DWHCITransferStageData();
v_DWHCITransferStageDataIsStageComplete(unsigned_int_1);
double_12 = double_9 * double_9;
v_free();
v_DWHCIDeviceFreeChannel(long_9,short_1);
long_2 = long_7 * long_6;
unsigned_int_7 = unsigned_int_5;
float_6 = float_4;
double_8 = double_4 * double_11;
v_DWHCIDeviceStartChannel(short_4,unsigned_int_10);
short_7 = short_2 + short_6;
v_DWHCITransferStageDataGetFrameScheduler(char_2);
short_1 = short_7;
unsigned_int_7 = unsigned_int_9 + unsigned_int_8;
}
void v_DWHCIRegister2( long parameter_1,unsigned int parameter_2,char parameter_3)
{
short short_1 = 1;
short short_2 = 1;
double double_1 = 1;
double double_2 = 1;
short short_3 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
short_1 = short_2;
double_1 = double_2;
short_3 = short_3 * short_1;
float_3 = float_1 * float_2;
}
void v_DWHCIDeviceInterruptHandler()
{
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
int int_1 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
double double_5 = 1;
long long_1 = 1;
unsigned int unsigned_int_6 = 1;
char char_1 = 1;
int int_2 = 1;
long long_2 = 1;
long long_3 = 1;
char char_2 = 1;
char char_3 = 1;
long long_4 = 1;
float float_4 = 1;
short short_1 = 1;
double_2 = double_1 + double_2;
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
int_1 = int_1 * int_1;
double_2 = double_1 + double_1;
int_1 = int_1;
unsigned_int_5 = unsigned_int_2 * unsigned_int_4;
if(1)
{
double double_3 = 1;
double double_4 = 1;
char char_4 = 1;
double_1 = double_2 * double_2;
double_3 = double_3 * double_3;
int_1 = int_1 * int_1;
float_3 = float_1 * float_2;
double_2 = double_1 + double_4;
for(int looper_1=0; looper_1<1;looper_1++)
{
unsigned int unsigned_int_7 = 1;
if(1)
{
double_5 = double_1 + double_2;
v_DWHCIRegister2(long_1,unsigned_int_6,char_1);
int_2 = int_1 * int_1;
double_5 = double_4;
char_1 = char_1 * char_1;
unsigned_int_1 = unsigned_int_7 * unsigned_int_3;
}
long_2 = v_DWHCIRegisterGet(long_3);
unsigned_int_2 = unsigned_int_7 + unsigned_int_2;
}
v_DWHCIRegister(long_2);
char_4 = char_2 + char_3;
}
if(1)
{
if(1)
{
unsigned_int_3 = unsigned_int_1 * unsigned_int_3;
long_3 = long_4 * long_2;
float_4 = float_3;
v_DWHCIRegisterWrite();
char_2 = char_3 * char_2;
v__DWHCIRegister(long_4);
short_1 = short_1 + short_1;
unsigned_int_6 = unsigned_int_2 * unsigned_int_5;
v_DWHCIDeviceChannelInterruptHandler(float_2,int_1);
float_3 = float_1 + float_4;
}
unsigned_int_5 = unsigned_int_4 * unsigned_int_6;
}
double_5 = double_5 * double_5;
int_2 = v_DWHCIRegisterRead(short_1);
float_3 = float_3 * float_4;
}
unsigned int v_InterruptSystemGet()
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
return unsigned_int_3;
}
void v_ConnectInterrupt( char parameter_1,double parameter_2)
{
double double_1 = 1;
int int_1 = 1;
long long_1 = 1;
char char_1 = 1;
char char_2 = 1;
unsigned int unsigned_int_1 = 1;
v_InterruptSystemConnectIRQ(double_1,int_1,long_1);
char_1 = char_1 + char_2;
unsigned_int_1 = v_InterruptSystemGet();
}
void v_DWHCIRegisterWrite()
{
long long_1 = 1;
long long_2 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
double double_1 = 1;
double double_2 = 1;
long_2 = long_1 + long_1;
int_3 = int_1 + int_2;
double_2 = double_1 * double_1;
}
void v_DWHCIRegisterAnd( int parameter_1,short parameter_2)
{
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
int_1 = int_1 * int_2;
int_1 = int_1 * int_2;
char_3 = char_1 * char_2;
}
int v_SetPowerStateOn( short parameter_1)
{
int int_1 = 1;
int int_2 = 1;
short short_1 = 1;
char char_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_3 = 1;
int int_4 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
int int_5 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
int_1 = int_2;
v_BcmPropertyTags(short_1);
char_1 = char_1;
unsigned_int_1 = unsigned_int_2;
v__BcmPropertyTags(unsigned_int_1);
int_4 = int_3 + int_2;
double_1 = v_BcmPropertyTagsGetTag(int_1,int_4,char_1,int_1);
double_3 = double_2 * double_1;
if(1)
{
int_5 = int_3;
}
unsigned_int_4 = unsigned_int_3 * unsigned_int_3;
return int_5;
}
void v__DWHCIRegister( long parameter_1)
{
float float_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
float_1 = float_1 * float_2;
unsigned_int_1 = unsigned_int_1 + unsigned_int_2;
}
long v_DWHCIRegisterGet( long parameter_1)
{
int int_1 = 1;
int int_2 = 1;
long long_1 = 1;
int_2 = int_1 * int_2;
int_2 = int_2 + int_1;
return long_1;
}
int v_LoggerGet()
{
int int_1 = 1;
return int_1;
}
void v_LogWrite( short parameter_1,short parameter_2,int parameter_3,double parameter_4,int uni_para)
{
unsigned int unsigned_int_1 = 1;
char char_1 = 1;
char char_2 = 1;
long long_1 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
double double_1 = 1;
long long_2 = 1;
v_LoggerWriteV(unsigned_int_1,char_1,char_2,char_1,long_1,uni_para);
int_3 = int_1 + int_2;
double_1 = double_1;
long_2 = long_1 + long_2;
int_3 = int_2;
}
int v_DWHCIRegisterRead( short parameter_1)
{
double double_1 = 1;
char char_1 = 1;
long long_1 = 1;
long long_2 = 1;
int int_1 = 1;
double_1 = double_1;
char_1 = char_1;
long_2 = long_1 + long_2;
return int_1;
}
void v_DWHCIRegister( long parameter_1)
{
short short_1 = 1;
double double_1 = 1;
int int_1 = 1;
int int_2 = 1;
short_1 = short_1 + short_1;
double_1 = double_1 * double_1;
int_1 = int_2;
}
char v_DWHCIDeviceInitialize( double parameter_1,int uni_para)
{
float float_1 = 1;
float float_2 = 1;
double double_1 = 1;
double double_2 = 1;
short short_1 = 1;
short short_2 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_3 = 1;
int int_4 = 1;
int int_5 = 1;
float float_3 = 1;
double double_3 = 1;
int int_6 = 1;
long long_1 = 1;
int int_7 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
unsigned int unsigned_int_3 = 1;
long long_2 = 1;
double double_5 = 1;
char char_4 = 1;
float_2 = float_1 * float_1;
double_2 = double_1 + double_2;
double_1 = double_1 + double_1;
short_2 = short_1 * short_2;
char controller4vul_2093[2];
fgets(controller4vul_2093 ,2 ,stdin);
if( strcmp( controller4vul_2093, "6") < 0)
{
float_1 = v_DWHCIRootPortInitialize(double_2,uni_para);
int_2 = int_1 + int_1;
double_2 = double_2;
}
if(1)
{
short short_3 = 1;
short_3 = short_1 * short_2;
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
}
int_2 = int_1 + int_3;
int_4 = int_3;
int_4 = int_5;
float_1 = float_3;
double_2 = double_2 + double_3;
int_2 = int_6 * int_3;
if(1)
{
double double_4 = 1;
long_1 = long_1;
double_2 = double_3 * double_4;
int_1 = int_7;
}
char_3 = char_1 + char_2;
if(1)
{
unsigned_int_3 = unsigned_int_3;
unsigned_int_2 = unsigned_int_2 * unsigned_int_1;
long_2 = long_1 + long_2;
}
if(1)
{
unsigned_int_2 = unsigned_int_3 * unsigned_int_1;
long_2 = long_1 * long_2;
unsigned_int_1 = unsigned_int_2 * unsigned_int_3;
}
if(1)
{
int_5 = int_7;
double_2 = double_1 + double_2;
char_1 = char_1 * char_1;
}
double_1 = double_5 + double_3;
int_2 = int_3 + int_5;
char_4 = char_2;
return char_4;
}
void v_DWHCIRootPort( long parameter_1)
{
double double_1 = 1;
short short_1 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
float float_1 = 1;
double_1 = double_1 + double_1;
short_1 = short_1 + short_1;
long_3 = long_1 + long_2;
float_1 = float_1 * float_1;
}
void v_DWHCIDevice( unsigned int parameter_1)
{
int int_1 = 1;
double double_1 = 1;
char char_1 = 1;
char char_2 = 1;
int int_2 = 1;
float float_1 = 1;
long long_2 = 1;
int_1 = int_1 * int_1;
double_1 = double_1 * double_1;
char_1 = char_2;
int_1 = int_2;
float_1 = float_1 + float_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
long long_1 = 1;
long_2 = long_1 * long_1;
}
v_DWHCIRootPort(long_2);
}
void v_DeviceNameService( int parameter_1)
{
unsigned int unsigned_int_1 = 1;
float float_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_1 = 1;
double double_2 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
float_2 = float_1 + float_1;
unsigned_int_2 = unsigned_int_3;
double_1 = double_1 * double_2;
}
int v_USPiInitialize(int uni_para)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
float float_1 = 1;
float float_2 = 1;
char char_1 = 1;
char char_2 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
double double_1 = 1;
float float_3 = 1;
double double_2 = 1;
double double_3 = 1;
double double_4 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
int int_5 = 1;
int int_6 = 1;
long long_2 = 1;
long long_4 = 1;
int int_7 = 1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
float_2 = float_1 + float_1;
char_2 = char_1 * char_1;
int_2 = int_1 * int_1;
int_2 = int_2 * int_3;
unsigned_int_2 = unsigned_int_1;
int_1 = int_4 * int_2;
char controller4vul_2092[2];
fgets(controller4vul_2092 ,2 ,stdin);
if( strcmp( controller4vul_2092, ")") < 0)
{
char_1 = v_DWHCIDeviceInitialize(double_1,uni_para);
float_2 = float_3 + float_1;
double_1 = double_1 * double_2;
double_3 = double_1 + double_2;
double_1 = double_4 + double_4;
short_3 = short_1 + short_2;
}
double_2 = double_2 * double_4;
int_5 = int_2 + int_2;
int_6 = int_4 + int_2;
for(int looper_1=0; looper_1<1;looper_1++)
{
float float_4 = 1;
double double_5 = 1;
double_4 = double_4 * double_1;
float_4 = float_3;
short_1 = short_3 * short_2;
double_1 = double_5 + double_1;
int_2 = int_4 + int_4;
}
short_3 = short_1 * short_2;
int_5 = int_6 + int_3;
for(int looper_2=0; looper_2<1;looper_2++)
{
long long_1 = 1;
long long_3 = 1;
double double_6 = 1;
long_2 = long_1 * long_2;
long_2 = long_3 + long_1;
int_4 = int_4 + int_1;
long_1 = long_1 + long_3;
double_3 = double_6 * double_4;
}
long_4 = long_4 * long_2;
return int_7;
}
void v__ExceptionHandler( double parameter_1)
{
int int_1 = 1;
int int_2 = 1;
float float_1 = 1;
float float_2 = 1;
int_2 = int_1 * int_2;
float_2 = float_1 * float_1;
}
void v__InterruptSystem( float parameter_1)
{
int int_1 = 1;
int_1 = int_1;
}
void v__Timer( short parameter_1)
{
short short_1 = 1;
short short_2 = 1;
short_1 = short_1 + short_2;
}
void v__Logger( char parameter_1)
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
double_2 = double_1 * double_1;
double_3 = double_2 * double_2;
float_3 = float_1 + float_2;
}
void v_DelayLoop( int parameter_1)
{
int int_1 = 1;
int int_2 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
int int_3 = 1;
int int_4 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_5 = 1;
if(1)
{
}
int_2 = int_1 + int_2;
short_3 = short_1 + short_2;
long_1 = long_1 + long_2;
if(1)
{
long_1 = long_3 + long_2;
}
float_3 = float_1 * float_2;
int_4 = int_1 * int_3;
if(1)
{
if(1)
{
if(1)
{
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
}
if(1)
{
float_2 = float_2 + float_3;
}
}
if(1)
{
if(1)
{
double double_1 = 1;
double_1 = double_1;
}
if(1)
{
long long_4 = 1;
long_4 = long_2 * long_3;
}
}
}
if(1)
{
unsigned_int_1 = unsigned_int_2;
}
int_4 = int_1;
float_2 = float_2 * float_2;
if(1)
{
if(1)
{
long_1 = long_2;
}
if(1)
{
unsigned int unsigned_int_3 = 1;
unsigned_int_2 = unsigned_int_3 + unsigned_int_3;
}
}
int_4 = int_3;
int_4 = int_4;
int_5 = int_2;
unsigned_int_2 = unsigned_int_2 * unsigned_int_2;
int_2 = int_3 + int_3;
float_2 = float_1;
}
void v_TimerMsDelay( char parameter_1,double parameter_2)
{
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
double_1 = double_2;
if(1)
{
short short_1 = 1;
int int_2 = 1;
short_1 = short_1;
v_DelayLoop(int_1);
int_1 = int_1 + int_2;
}
}
short v_TimerGetTicks( short parameter_1)
{
long long_1 = 1;
short short_1 = 1;
long_1 = long_1 * long_1;
return short_1;
}
void v_TimerTuneMsDelay()
{
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_1 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
unsigned int unsigned_int_4 = 1;
double double_2 = 1;
int_2 = int_1 + int_2;
v_TimerMsDelay(char_1,double_1);
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
short_1 = v_TimerGetTicks(short_1);
long_3 = long_1 + long_2;
unsigned_int_1 = unsigned_int_1;
unsigned_int_4 = unsigned_int_3 + unsigned_int_4;
long_1 = long_2 + long_2;
double_1 = double_1 * double_2;
}
void v_TimerPollKernelTimers( short parameter_1)
{
long long_1 = 1;
long long_2 = 1;
short short_1 = 1;
short short_2 = 1;
float float_1 = 1;
long_2 = long_1 + long_2;
v_EnterCritical();
short_2 = short_1 + short_2;
for(int looper_1=0; looper_1<1;looper_1++)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
unsigned_int_2 = unsigned_int_3;
if(1)
{
if(1)
{
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
int_2 = int_1 * int_1;
int_4 = int_3 + int_1;
}
}
}
float_1 = float_1;
v_LeaveCritical();
}
void v_TimerInterruptHandler()
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
int int_1 = 1;
int int_2 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
int int_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_1 = 1;
float float_4 = 1;
double_3 = double_1 * double_2;
int_2 = int_1 * int_1;
double_1 = double_1 + double_1;
float_2 = float_1 + float_1;
float_3 = float_2 + float_1;
long_3 = long_1 + long_2;
if(1)
{
int int_4 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
int_3 = int_3 + int_4;
char_3 = char_1 * char_2;
}
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
long_3 = v_read32(int_2);
v_write32(double_1,short_1);
float_4 = float_3 + float_2;
if(1)
{
v_TimerPollKernelTimers(short_1);
double_3 = double_1;
}
int_1 = int_3 + int_2;
}
void v_InterruptSystemEnableIRQ( float parameter_1)
{
double double_1 = 1;
short short_1 = 1;
double double_2 = 1;
double double_3 = 1;
int int_1 = 1;
int int_2 = 1;
double double_4 = 1;
v_write32(double_1,short_1);
double_2 = double_2 * double_3;
int_1 = int_2;
int_1 = int_1 * int_1;
double_4 = double_1 * double_1;
}
void v_InterruptSystemConnectIRQ( double parameter_1,int parameter_2,long parameter_3)
{
float float_1 = 1;
float float_2 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
float float_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_1 = 1;
short short_2 = 1;
double double_4 = 1;
float_1 = float_2;
double_1 = double_2;
double_3 = double_3 + double_2;
v_InterruptSystemEnableIRQ(float_3);
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
short_2 = short_1 * short_1;
double_4 = double_3 * double_4;
}
short v_TimerInitialize( float parameter_1)
{
char char_1 = 1;
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_3 = 1;
short short_1 = 1;
float float_1 = 1;
float float_2 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
long long_4 = 1;
long long_5 = 1;
double double_4 = 1;
long long_6 = 1;
char_1 = char_1 * char_1;
double_1 = double_2;
int_1 = int_1 + int_2;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
v_write32(double_3,short_1);
v_TimerTuneMsDelay();
float_2 = float_1 * float_1;
long_2 = long_1 * long_2;
long_4 = long_3 + long_3;
long_5 = v_read32(int_2);
long_1 = long_1 * long_2;
return short_1;
v_InterruptSystemConnectIRQ(double_4,int_2,long_6);
v_TimerInterruptHandler();
}
void v_IRQStub()
{
char controller_1[3];
fgets(controller_1 ,3 ,stdin);
if( strcmp( controller_1, "J>") > 0)
{
}
if(1)
{
}
}
int v_InterruptSystemInitialize( double parameter_1)
{
short short_1 = 1;
short short_2 = 1;
char char_1 = 1;
char char_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
double double_1 = 1;
char char_3 = 1;
double double_2 = 1;
double double_3 = 1;
double double_4 = 1;
double double_5 = 1;
long long_1 = 1;
int int_2 = 1;
int int_3 = 1;
short short_3 = 1;
long long_2 = 1;
int int_4 = 1;
short_1 = short_1 + short_2;
char_2 = char_1 * char_1;
unsigned_int_1 = unsigned_int_1 + unsigned_int_2;
int_1 = int_1 + int_1;
v_write32(double_1,short_2);
char_3 = char_3;
double_3 = double_2 + double_1;
double_5 = double_4 * double_4;
v_CleanDataCache();
double_1 = double_3 * double_2;
short_1 = short_2 * short_2;
long_1 = v_read32(int_2);
int_3 = int_3 + int_3;
int_1 = int_1;
unsigned_int_2 = unsigned_int_1;
char_3 = char_2 * char_3;
char_3 = char_3 + char_3;
v_IRQStub();
short_3 = short_2 * short_2;
double_1 = double_1 * double_1;
long_2 = long_1 + long_1;
double_3 = double_4;
int_4 = int_3 * int_3;
return int_4;
}
void v_StringFormatV( float parameter_1,short parameter_2,unsigned int parameter_3)
{
}
void v__String( long parameter_1)
{
double double_1 = 1;
double double_2 = 1;
double_1 = double_2;
if(1)
{
long long_1 = 1;
long long_2 = 1;
unsigned int unsigned_int_1 = 1;
long_2 = long_1 + long_1;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
}
}
int v_StringGet( float parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
char controller_1[3];
fgets(controller_1 ,3 ,stdin);
if(remainder_check(controller_1,100,2))
{
}
return int_1;
}
void v_StringFormat( char parameter_1,short parameter_2,float parameter_3)
{
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
char char_2 = 1;
short short_1 = 1;
short short_2 = 1;
double double_3 = 1;
char char_3 = 1;
double_2 = double_1 * double_1;
char_1 = char_1 * char_2;
short_1 = short_1 * short_2;
double_2 = double_2 + double_3;
char_3 = char_2 + char_1;
}
void v_String( long parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
unsigned int unsigned_int_3 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
int_1 = int_1;
unsigned_int_1 = unsigned_int_3 * unsigned_int_3;
}
float v_TimerGetTimeString( float parameter_1)
{
long long_1 = 1;
long long_2 = 1;
short short_1 = 1;
double double_1 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
int int_1 = 1;
int int_2 = 1;
double double_2 = 1;
double double_3 = 1;
float float_4 = 1;
long long_3 = 1;
short short_2 = 1;
long long_4 = 1;
double double_4 = 1;
char char_1 = 1;
short short_3 = 1;
float float_5 = 1;
long_1 = long_1 * long_2;
short_1 = v_malloc(double_1);
float_3 = float_1 + float_2;
int_1 = int_2;
double_3 = double_2 + double_2;
int_2 = int_2 + int_2;
if(1)
{
}
short_1 = short_1 * short_1;
float_3 = float_3 * float_2;
v_EnterCritical();
v_LeaveCritical();
v_String(long_1);
double_1 = double_3 * double_1;
float_4 = float_4 * float_4;
long_3 = long_3;
short_2 = short_1 + short_1;
if(1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
}
double_2 = double_2;
long_2 = long_4 * long_2;
double_1 = double_2 + double_4;
long_2 = long_1 * long_4;
return float_4;
v_StringFormat(char_1,short_3,float_5);
}
void v_ScreenDeviceSetCursorMode( char parameter_1,long parameter_2)
{
unsigned int unsigned_int_1 = 1;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
}
void v_ScreenDeviceCursorMove( short parameter_1,int parameter_2,char parameter_3)
{
int int_1 = 1;
int int_2 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
int int_3 = 1;
int_1 = int_1 + int_2;
float_1 = v_CharGeneratorGetCharWidth(unsigned_int_1);
unsigned_int_2 = v_CharGeneratorGetCharHeight(double_1,-1 );
int_3 = int_2 + int_1;
char controller_1[3];
fgets(controller_1 ,3 ,stdin);
if( strcmp( controller_1, "+<") > 0)
{
float float_2 = 1;
short short_1 = 1;
float_2 = float_2 * float_2;
short_1 = short_1 + short_1;
}
}
void v_ScreenDeviceSetStandoutMode( short parameter_1,long parameter_2)
{
char char_1 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
float float_1 = 1;
double double_4 = 1;
char_1 = char_1;
double_3 = double_1 * double_2;
short_1 = short_1 + short_2;
unsigned_int_1 = unsigned_int_2;
double_3 = double_3 * double_2;
float_1 = float_1 + float_1;
double_4 = double_3;
}
void v_ScreenDeviceInsertMode( char parameter_1,unsigned int parameter_2)
{
double double_1 = 1;
double double_2 = 1;
double_2 = double_1 + double_1;
}
void v_ScreenDeviceEraseChars( float parameter_1,int parameter_2)
{
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
int int_1 = 1;
int int_2 = 1;
if(1)
{
}
float_1 = v_CharGeneratorGetCharWidth(unsigned_int_1);
v_ScreenDeviceEraseChar(short_1,int_1,int_2);
int_2 = int_1 * int_1;
if(1)
{
double double_1 = 1;
double double_2 = 1;
double_1 = double_1 + double_2;
}
for(int looper_1=0; looper_1<1;looper_1++)
{
float float_2 = 1;
float_2 = float_1;
}
}
void v_ScreenDeviceDeleteChars( unsigned int parameter_1,short parameter_2)
{
}
void v_ScreenDeviceDeleteLines( long parameter_1,double parameter_2)
{
}
void v_ScreenDeviceCursorUp( char parameter_1)
{
unsigned int unsigned_int_1 = 1;
double double_1 = 1;
if(1)
{
short short_1 = 1;
short_1 = short_1 * short_1;
}
unsigned_int_1 = v_CharGeneratorGetCharHeight(double_1,-1 );
}
void v_ScreenDeviceInsertLines( double parameter_1,float parameter_2)
{
}
void v_ScreenDeviceReverseScroll( char parameter_1)
{
double double_1 = 1;
float float_1 = 1;
char controller_1[3];
fgets(controller_1 ,3 ,stdin);
if( strcmp( controller_1, "E_") < 0)
{
unsigned int unsigned_int_1 = 1;
unsigned_int_1 = unsigned_int_1;
}
v_ScreenDeviceInsertLines(double_1,float_1);
}
void v_ScreenDeviceCursorRight( short parameter_1)
{
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
float_1 = v_CharGeneratorGetCharWidth(unsigned_int_1);
double_1 = double_2;
if(1)
{
unsigned int unsigned_int_2 = 1;
unsigned_int_2 = unsigned_int_2 + unsigned_int_1;
}
v_ScreenDeviceNewLine(char_1);
}
short v_CharGeneratorGetPixel( long parameter_1,char parameter_2,int parameter_3,char parameter_4)
{
short short_1 = 1;
short short_2 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
short_1 = short_1 + short_2;
long_2 = long_1 + long_1;
long_3 = long_1 + long_1;
return short_1;
}
void v_ScreenDeviceDisplayChar2( short parameter_1,char parameter_2,float parameter_3,short parameter_4,long parameter_5)
{
long long_1 = 1;
float float_1 = 1;
int int_1 = 1;
char char_1 = 1;
short short_1 = 1;
long long_2 = 1;
char char_2 = 1;
int int_2 = 1;
char char_3 = 1;
unsigned int unsigned_int_1 = 1;
double double_3 = 1;
float float_2 = 1;
unsigned int unsigned_int_2 = 1;
for(int looper_1=0; looper_1<1;looper_1++)
{
for(int looper_2=0; looper_2<1;looper_2++)
{
double double_1 = 1;
double double_2 = 1;
v_ScreenDeviceSetPixel(long_1,float_1,int_1,char_1);
short_1 = v_CharGeneratorGetPixel(long_2,char_2,int_2,char_3);
double_1 = double_1 + double_2;
}
}
unsigned_int_1 = v_CharGeneratorGetCharHeight(double_3,-1 );
float_2 = v_CharGeneratorGetCharWidth(unsigned_int_2);
}
void v_ScreenDeviceDisplayChar( double parameter_1,char parameter_2)
{
short short_1 = 1;
char char_1 = 1;
float float_1 = 1;
short short_2 = 1;
long long_1 = 1;
char controller_1[3];
fgets(controller_1 ,3 ,stdin);
if( strcmp( controller_1, ">w") < 0)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
v_ScreenDeviceDisplayChar2(short_1,char_1,float_1,short_2,long_1);
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
}
v_ScreenDeviceCursorRight(short_1);
}
char v_memcpyblk(double parameter_2,int parameter_3)
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
double_3 = double_1 * double_2;
if(1)
{
if(1)
{
char_1 = char_1;
}
if(1)
{
long long_1 = 1;
long long_2 = 1;
long_2 = long_1 * long_2;
}
}
char_2 = char_1 * char_1;
return char_3;
}
void v_ScreenDeviceScroll(int uni_para)
{
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
long long_1 = 1;
long long_2 = 1;
double double_1 = 1;
double double_3 = 1;
int int_3 = 1;
int_1 = int_1 * int_2;
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
long_1 = long_1 + long_2;
double_1 = double_1 + double_1;
char controller4vul_2117[2];
fgets(controller4vul_2117 ,2 ,stdin);
if( strcmp( controller4vul_2117, "^") > 0)
{
double double_2 = 1;
float float_1 = 1;
for(int looper_1=0; looper_1<1;looper_1++)
{
short short_3 = 1;
short short_4 = 1;
double double_4 = 1;
double double_5 = 1;
long long_3 = 1;
double_3 = double_2 * double_1;
for(int looper_2=0; looper_2<1;looper_2++)
{
char controller4vul_2118[3];
fgets(controller4vul_2118 ,3 ,stdin);
if( strcmp( controller4vul_2118, "TU") < 0)
{
short short_1 = 1;
short short_2 = 1;
unsigned_int_3 = v_CharGeneratorGetCharHeight(double_3,uni_para);
short_3 = short_1 * short_2;
}
}
short_3 = short_4 * short_4;
double_1 = double_4 * double_5;
long_3 = long_3 * long_2;
}
for(int looper_3=0; looper_3<1;looper_3++)
{
double_3 = double_2 + double_3;
}
float_1 = float_1;
}
int_2 = int_3 + int_3;
}
void v_ScreenDeviceCursorDown( char parameter_1,int uni_para)
{
int int_1 = 1;
int int_2 = 1;
int_2 = int_1 + int_2;
char controller4vul_2116[3];
fgets(controller4vul_2116 ,3 ,stdin);
if( strcmp( controller4vul_2116, "G|") < 0)
{
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
v_ScreenDeviceScroll(uni_para);
double_1 = double_1 * double_1;
unsigned_int_1 = unsigned_int_2;
}
}
void v_ScreenDeviceCarriageReturn()
{
double double_1 = 1;
double double_2 = 1;
double_1 = double_1 + double_2;
}
void v_ScreenDeviceNewLine( char parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_1 = 1;
long long_1 = 1;
long long_2 = 1;
v_ScreenDeviceCarriageReturn();
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
v_ScreenDeviceCursorDown(char_1,-1 );
long_1 = long_1 + long_2;
}
void v_ScreenDeviceTabulator( long parameter_1)
{
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
char char_1 = 1;
float_2 = float_1 + float_1;
float_3 = v_CharGeneratorGetCharWidth(unsigned_int_1);
int_3 = int_1 + int_2;
if(1)
{
float float_4 = 1;
float_3 = float_4;
}
v_ScreenDeviceNewLine(char_1);
}
void v_ScreenDeviceCursorLeft( long parameter_1)
{
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
double double_3 = 1;
if(1)
{
double double_1 = 1;
double double_2 = 1;
double_2 = double_1 + double_1;
}
if(1)
{
if(1)
{
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
int int_1 = 1;
float_1 = v_CharGeneratorGetCharWidth(unsigned_int_1);
unsigned_int_1 = v_CharGeneratorGetCharHeight(double_3,-1 );
unsigned_int_2 = unsigned_int_3;
int_1 = int_1 * int_1;
}
}
}
void v_ScreenDeviceWrite2( float parameter_1,char parameter_2,int uni_para)
{
long long_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
int int_1 = 1;
double double_3 = 1;
int int_2 = 1;
long long_2 = 1;
long_1 = long_1 + long_1;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
unsigned_int_1 = unsigned_int_2 + unsigned_int_3;
unsigned_int_4 = unsigned_int_2 * unsigned_int_1;
if(1)
{
double_1 = double_2;
}
if(1)
{
long_1 = long_1;
}
char controller4vul_2114[3];
fgets(controller4vul_2114 ,3 ,stdin);
if( strcmp( controller4vul_2114, "l)") > 0)
{
char controller4vul_2115[2];
fgets(controller4vul_2115 ,2 ,stdin);
if( strcmp( controller4vul_2115, "N") > 0)
{
v_ScreenDeviceCursorDown(char_1,uni_para);
int_1 = int_1 * int_1;
}
if(1)
{
char char_2 = 1;
double_1 = double_1 + double_3;
char_2 = char_2 + char_2;
}
}
double_3 = double_2 * double_3;
int_1 = int_1 * int_2;
if(1)
{
int int_3 = 1;
int int_4 = 1;
unsigned_int_1 = unsigned_int_3 + unsigned_int_4;
int_4 = int_3 * int_2;
double_3 = double_1 + double_2;
long_1 = long_1 + long_2;
double_3 = double_2;
int_1 = int_1 + int_4;
}
if(1)
{
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
char char_3 = 1;
char char_4 = 1;
short short_1 = 1;
long long_3 = 1;
unsigned_int_3 = unsigned_int_3 + unsigned_int_4;
float_3 = float_1 + float_2;
char_4 = char_3 * char_3;
short_1 = short_1;
long_2 = long_3;
}
}
int v_ScreenDeviceWrite( unsigned int parameter_1,int parameter_2,short parameter_3,int uni_para)
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
float float_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
float float_3 = 1;
float float_4 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
double double_4 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
float float_5 = 1;
char char_1 = 1;
char char_2 = 1;
double_3 = double_1 + double_2;
float_2 = float_1 * float_2;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
long_3 = long_1 + long_2;
float_1 = float_3 + float_2;
float_4 = float_1 * float_1;
int_3 = int_1 + int_2;
double_2 = double_4 * double_4;
double_1 = double_2;
unsigned_int_4 = unsigned_int_2 * unsigned_int_3;
for(int looper_1=0; looper_1<1;looper_1++)
{
unsigned_int_1 = unsigned_int_2 * unsigned_int_4;
char controller4vul_2113[3];
fgets(controller4vul_2113 ,3 ,stdin);
if( strcmp( controller4vul_2113, "Q]") < 0)
{
short short_1 = 1;
short short_2 = 1;
v_ScreenDeviceWrite2(float_5,char_1,uni_para);
short_2 = short_1 * short_1;
}
}
double_1 = double_4;
char_2 = char_1 * char_2;
return int_2;
}
short v_strlen( short parameter_1)
{
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
float float_2 = 1;
float float_3 = 1;
unsigned int unsigned_int_2 = 1;
double double_2 = 1;
double double_4 = 1;
short short_2 = 1;
double_1 = double_1;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
if(1)
{
}
int_2 = int_1 + int_1;
char_1 = char_1 + char_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
float float_1 = 1;
float_3 = float_1 + float_2;
}
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
int_1 = int_2 * int_2;
for(int looper_2=0; looper_2<1;looper_2++)
{
unsigned_int_1 = unsigned_int_2 + unsigned_int_2;
if(1)
{
unsigned int unsigned_int_3 = 1;
double double_3 = 1;
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
float_2 = float_2 * float_3;
if(1)
{
double_3 = double_1 + double_2;
double_4 = double_1 + double_1;
}
if(1)
{
int int_3 = 1;
char char_2 = 1;
char char_3 = 1;
if(1)
{
short short_1 = 1;
unsigned_int_1 = unsigned_int_3;
short_2 = short_1 + short_2;
}
if(1)
{
long long_1 = 1;
long long_2 = 1;
int int_4 = 1;
int int_5 = 1;
long_1 = long_1 + long_2;
double_3 = double_3 * double_2;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
int_5 = int_3 + int_4;
}
int_1 = int_3 * int_3;
char_1 = char_2 * char_3;
}
}
}
for(int looper_3=0; looper_3<1;looper_3++)
{
double double_5 = 1;
double_4 = double_5 * double_2;
}
double_4 = double_4 + double_4;
return short_2;
}
void v_LoggerWrite2( int parameter_1,int parameter_2,int uni_para)
{
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
long long_2 = 1;
int_1 = v_ScreenDeviceWrite(unsigned_int_1,int_1,short_1,uni_para);
double_1 = double_2;
long_2 = long_1 + long_1;
}
void v_LoggerWriteV( unsigned int parameter_1,char parameter_2,char parameter_3,char parameter_4,long parameter_5,int uni_para)
{
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
unsigned int unsigned_int_1 = 1;
float float_4 = 1;
short short_1 = 1;
short short_2 = 1;
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
int int_5 = 1;
float_3 = float_1 * float_2;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
float_3 = float_4 * float_1;
short_1 = short_1 * short_2;
double_2 = double_1 * double_1;
char controller4vul_2112[2];
fgets(controller4vul_2112 ,2 ,stdin);
if( strcmp( controller4vul_2112, ",") > 0)
{
double double_3 = 1;
double double_4 = 1;
v_LoggerWrite2(int_1,int_2,uni_para);
double_2 = double_3 * double_4;
}
int_2 = int_3 * int_3;
int_5 = int_4 + int_1;
if(1)
{
long long_1 = 1;
long long_2 = 1;
long_2 = long_1 * long_2;
}
if(1)
{
float float_5 = 1;
float_5 = float_1 + float_1;
}
}
void v_LoggerWrite( unsigned int parameter_1,int parameter_2,long parameter_3,long parameter_4,char parameter_5)
{
float float_1 = 1;
float float_2 = 1;
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
long long_1 = 1;
int int_1 = 1;
int int_2 = 1;
long long_2 = 1;
float_1 = float_1 * float_2;
double_2 = double_1 + double_1;
v_LoggerWriteV(unsigned_int_1,char_1,char_2,char_3,long_1,-1 );
int_1 = int_1 * int_2;
long_1 = long_2 * long_1;
}
unsigned int v_LoggerInitialize( double parameter_1,int parameter_2)
{
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
long long_1 = 1;
float float_1 = 1;
float float_2 = 1;
char_3 = char_1 + char_2;
v_LoggerWrite(unsigned_int_1,int_1,long_1,long_1,char_1);
float_1 = float_2;
return unsigned_int_1;
}
void v_Logger( double parameter_1)
{
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
long long_2 = 1;
char char_1 = 1;
char char_2 = 1;
int_2 = int_1 * int_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
long_1 = long_2;
char_2 = char_1 + char_1;
}
void v_Timer( double parameter_1)
{
if(1)
{
}
}
void v_InterruptSystem()
{
char char_1 = 1;
char char_2 = 1;
double double_1 = 1;
double double_3 = 1;
char_1 = char_2;
for(int looper_1=0; looper_1<1;looper_1++)
{
double double_2 = 1;
long long_1 = 1;
double_2 = double_1 + double_1;
long_1 = long_1 * long_1;
}
double_1 = double_3 * double_1;
}
void v_DataAbortStub()
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
short short_1 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
float float_1 = 1;
float float_2 = 1;
long long_1 = 1;
long long_2 = 1;
double double_5 = 1;
int int_4 = 1;
long long_3 = 1;
int int_5 = 1;
double_3 = double_1 + double_2;
double_3 = double_1 + double_3;
short_1 = short_1 + short_1;
int_1 = int_1;
int_3 = int_2 * int_2;
int_1 = int_1;
float_1 = float_2;
float_1 = float_1 + float_2;
long_2 = long_1 + long_2;
double_3 = double_2 + double_2;
if(1)
{
double double_4 = 1;
double_2 = double_1 * double_4;
}
double_3 = double_5 + double_3;
if(1)
{
int_4 = int_1 + int_2;
}
if(1)
{
double double_6 = 1;
double_2 = double_6;
}
long_2 = long_2 * long_3;
if(1)
{
unsigned int unsigned_int_1 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
}
int_4 = int_1;
if(1)
{
short short_2 = 1;
short short_3 = 1;
short_3 = short_2 * short_3;
}
int_1 = int_4 + int_5;
}
void v_PrefetchAbortStub()
{
char char_1 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
float float_1 = 1;
float float_2 = 1;
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_2 = 1;
char char_3 = 1;
float float_3 = 1;
int int_2 = 1;
char char_4 = 1;
char_1 = char_1;
double_3 = double_1 * double_2;
if(1)
{
float_2 = float_1 * float_2;
}
double_1 = double_2 * double_3;
short_1 = short_2;
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
char_2 = char_2 * char_3;
for(int looper_1=0; looper_1<1;looper_1++)
{
char_1 = char_2 + char_2;
if(1)
{
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
if(1)
{
long long_1 = 1;
long_1 = long_1 + long_1;
double_1 = double_2 + double_1;
}
float_1 = float_2 * float_3;
}
}
if(1)
{
int int_1 = 1;
int_2 = int_1 + int_2;
}
char_4 = char_3 * char_1;
for(int looper_2=0; looper_2<1;looper_2++)
{
unsigned int unsigned_int_4 = 1;
if(1)
{
int int_3 = 1;
unsigned int unsigned_int_3 = 1;
int_2 = int_3;
if(1)
{
float float_4 = 1;
int_3 = int_3 + int_3;
float_4 = float_3 + float_2;
}
unsigned_int_2 = unsigned_int_3 * unsigned_int_4;
}
if(1)
{
unsigned int unsigned_int_5 = 1;
unsigned_int_4 = unsigned_int_5 * unsigned_int_2;
}
}
}
void v_UndefinedInstructionStub()
{
int int_1 = 1;
long long_1 = 1;
int int_2 = 1;
int int_3 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
short short_1 = 1;
short short_2 = 1;
char char_1 = 1;
char char_2 = 1;
double double_1 = 1;
double double_2 = 1;
short short_3 = 1;
short short_4 = 1;
long long_2 = 1;
long long_3 = 1;
int int_4 = 1;
int int_5 = 1;
short short_5 = 1;
double double_3 = 1;
double double_4 = 1;
unsigned int unsigned_int_3 = 1;
float float_2 = 1;
float float_3 = 1;
char char_3 = 1;
float float_4 = 1;
unsigned int unsigned_int_5 = 1;
double double_5 = 1;
int int_6 = 1;
int int_7 = 1;
unsigned int unsigned_int_6 = 1;
int int_8 = 1;
int int_9 = 1;
int_1 = int_1;
long_1 = long_1;
int_2 = int_2 + int_3;
float_1 = float_1 * float_1;
char controller_1[2];
fgets(controller_1 ,2 ,stdin);
if( strcmp( controller_1, "3") < 0)
{
unsigned_int_1 = unsigned_int_1 + unsigned_int_2;
}
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
short_1 = short_1 * short_2;
char_2 = char_1 + char_1;
double_2 = double_1 * double_2;
short_4 = short_1 + short_3;
int_1 = int_3 * int_1;
long_3 = long_1 + long_2;
int_2 = int_2 * int_1;
int_4 = int_2 + int_2;
float_1 = float_1 * float_1;
int_4 = int_5 + int_3;
short_5 = short_2 * short_3;
double_4 = double_2 * double_3;
unsigned_int_1 = unsigned_int_3 * unsigned_int_2;
float_2 = float_3;
float_1 = float_2;
int_4 = int_2 * int_1;
short_5 = short_3 + short_4;
if(1)
{
char_3 = char_3 * char_1;
float_2 = float_4 * float_3;
short_3 = short_5 * short_5;
}
if(1)
{
unsigned int unsigned_int_4 = 1;
long long_4 = 1;
int_2 = int_5 * int_4;
char_3 = char_1 * char_2;
float_1 = float_2 * float_3;
if(1)
{
unsigned_int_4 = unsigned_int_2 * unsigned_int_2;
if(1)
{
short short_6 = 1;
short_6 = short_5 * short_6;
long_1 = long_2 + long_1;
}
}
if(1)
{
char char_4 = 1;
unsigned_int_4 = unsigned_int_2 + unsigned_int_4;
long_1 = long_3 + long_4;
char_4 = char_4 + char_2;
for(int looper_1=0; looper_1<1;looper_1++)
{
unsigned_int_5 = unsigned_int_2 + unsigned_int_2;
float_4 = float_3;
unsigned_int_3 = unsigned_int_2 * unsigned_int_1;
long_4 = long_4;
float_4 = float_3 * float_3;
}
int_3 = int_1 * int_1;
}
if(1)
{
float_3 = float_2 * float_4;
double_1 = double_5 + double_2;
long_4 = long_1;
int_2 = int_4 * int_5;
unsigned_int_3 = unsigned_int_5 + unsigned_int_4;
}
}
int_7 = int_4 * int_6;
unsigned_int_6 = unsigned_int_6 * unsigned_int_6;
double_4 = double_3 + double_5;
unsigned_int_5 = unsigned_int_6 + unsigned_int_5;
int_5 = int_1 * int_8;
if(1)
{
double double_6 = 1;
double_5 = double_6 * double_1;
}
int_4 = int_9 * int_1;
}
void v_ExceptionHandler2()
{
double double_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
double double_2 = 1;
int int_2 = 1;
short short_1 = 1;
short short_2 = 1;
long long_1 = 1;
long long_2 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
char char_4 = 1;
double double_3 = 1;
double double_4 = 1;
unsigned int unsigned_int_3 = 1;
int int_3 = 1;
unsigned int unsigned_int_4 = 1;
double_1 = double_1;
v_DataAbortStub();
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
int_1 = int_1 + int_1;
double_2 = double_1 + double_2;
v_UndefinedInstructionStub();
int_1 = int_1 * int_2;
v_PrefetchAbortStub();
short_1 = short_2;
v_CleanDataCache();
long_1 = long_2;
char_2 = char_1 + char_1;
char_4 = char_3 * char_1;
double_4 = double_3 + double_4;
unsigned_int_2 = unsigned_int_3;
int_2 = int_3 * int_1;
unsigned_int_1 = unsigned_int_4;
}
void v__CharGenerator()
{
}
void v_free()
{
int int_1 = 1;
int int_2 = 1;
double double_1 = 1;
short short_1 = 1;
short short_2 = 1;
int_1 = int_1 * int_2;
double_1 = double_1 * double_1;
short_1 = short_2;
for(int looper_1=0; looper_1<1;looper_1++)
{
char controller_1[3];
fgets(controller_1 ,3 ,stdin);
if( strcmp( controller_1, ">,") > 0)
{
long long_1 = 1;
long long_2 = 1;
unsigned int unsigned_int_1 = 1;
double double_2 = 1;
long long_3 = 1;
long_2 = long_1 * long_2;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
double_2 = double_2 + double_1;
long_3 = long_2 + long_2;
int_2 = int_2 * int_2;
double_1 = double_2 + double_1;
}
}
}
void v__BcmFrameBuffer( long parameter_1)
{
int int_1 = 1;
int int_2 = 1;
short short_1 = 1;
short short_2 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
int_2 = int_1 * int_1;
short_2 = short_1 * short_2;
v__BcmMailBox(float_1);
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
v_free();
int_1 = int_2 + int_2;
}
void v__ScreenDevice( unsigned int parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
char char_2 = 1;
long long_1 = 1;
double double_1 = 1;
double double_2 = 1;
int int_3 = 1;
unsigned_int_1 = unsigned_int_2;
int_2 = int_1 + int_1;
char_2 = char_1 * char_2;
v__BcmFrameBuffer(long_1);
double_1 = double_1 * double_2;
v_free();
v__CharGenerator();
int_2 = int_1 + int_3;
}
void v_ScreenDeviceGetPixel( short parameter_1,long parameter_2,long parameter_3)
{
if(1)
{
}
}
char v_CharGeneratorGetUnderline( int parameter_1)
{
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
int_2 = int_1 + int_1;
if(1)
{
int_2 = int_2 + int_2;
}
if(1)
{
short short_1 = 1;
short short_2 = 1;
short_2 = short_1 * short_1;
}
return char_1;
}
void v_ScreenDeviceInvertCursor( char parameter_1)
{
char char_1 = 1;
int int_1 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
long long_1 = 1;
long long_2 = 1;
float float_2 = 1;
int int_2 = 1;
double double_1 = 1;
if(1)
{
}
for(int looper_1=0; looper_1<1;looper_1++)
{
for(int looper_2=0; looper_2<1;looper_2++)
{
if(1)
{
char char_2 = 1;
char_1 = v_CharGeneratorGetUnderline(int_1);
float_1 = v_CharGeneratorGetCharWidth(unsigned_int_1);
v_ScreenDeviceGetPixel(short_1,long_1,long_1);
char_2 = char_2 * char_2;
}
if(1)
{
v_ScreenDeviceSetPixel(long_2,float_2,int_2,char_1);
int_2 = int_1;
}
}
}
unsigned_int_1 = v_CharGeneratorGetCharHeight(double_1,-1 );
}
void v_ScreenDeviceSetPixel( long parameter_1,float parameter_2,int parameter_3,char parameter_4)
{
if(1)
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
double_3 = double_1 + double_2;
}
}
void v_ScreenDeviceEraseChar( short parameter_1,int parameter_2,int parameter_3)
{
unsigned int unsigned_int_1 = 1;
double double_1 = 1;
float float_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
float float_2 = 1;
int int_1 = 1;
char char_3 = 1;
for(int looper_1=0; looper_1<1;looper_1++)
{
for(int looper_2=0; looper_2<1;looper_2++)
{
char char_1 = 1;
char char_2 = 1;
unsigned_int_1 = v_CharGeneratorGetCharHeight(double_1,-1 );
float_1 = v_CharGeneratorGetCharWidth(unsigned_int_2);
char_2 = char_1 + char_2;
}
}
v_ScreenDeviceSetPixel(long_1,float_2,int_1,char_3);
}
float v_CharGeneratorGetCharWidth( unsigned int parameter_1)
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
float float_1 = 1;
double_3 = double_1 + double_2;
return float_1;
}
void v_ScreenDeviceClearLineEnd( unsigned int parameter_1)
{
int int_1 = 1;
float float_1 = 1;
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
for(int looper_1=0; looper_1<1;looper_1++)
{
int_1 = int_1 + int_1;
}
float_1 = v_CharGeneratorGetCharWidth(unsigned_int_1);
v_ScreenDeviceEraseChar(short_1,int_1,int_1);
}
void v_ScreenDeviceClearDisplayEnd( char parameter_1)
{
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
short short_4 = 1;
double double_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
char char_1 = 1;
v_ScreenDeviceClearLineEnd(unsigned_int_1);
short_1 = short_1 + short_1;
short_3 = short_2 + short_2;
short_2 = short_1 + short_3;
unsigned_int_2 = v_CharGeneratorGetCharHeight(double_1,-1 );
short_3 = short_4;
double_2 = double_1 + double_1;
if(1)
{
int int_1 = 1;
int int_2 = 1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
int_2 = int_1 + int_2;
}
unsigned_int_1 = unsigned_int_3 * unsigned_int_4;
char_1 = char_1;
}
void v_ScreenDeviceCursorHome( int parameter_1)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
double double_2 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
double_1 = double_2;
}
unsigned int v_CharGeneratorGetCharHeight( double parameter_1,int uni_para)
{
int int_1 = 1;
float float_1 = 1;
float float_2 = 1;
float float_3 = 1;
long long_2 = 1;
int int_2 = 1;
int int_3 = 1;
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
char * vul_var;
vul_var=(char*)malloc(20*sizeof(char));
int_1 = int_1;
float_3 = float_1 + float_2;
for(int looper_1=0; looper_1<1;looper_1++)
{
long long_1 = 1;
long_2 = long_1 + long_2;
char controller4vul_2119[2];
fgets(controller4vul_2119 ,2 ,stdin);
if( strcmp( controller4vul_2119, "Y") < 0)
{
double double_1 = 1;
double double_2 = 1;
strcpy(vul_var, "CWE-761");
if(uni_para == 985)
{
vul_var = vul_var + 1;
}
free(vul_var);
double_1 = double_2;
}
if(1)
{
float_2 = float_3;
}
int_3 = int_2 + int_1;
}
short_2 = short_1 * short_2;
unsigned_int_1 = unsigned_int_1;
for(int looper_2=0; looper_2<1;looper_2++)
{
long long_3 = 1;
unsigned int unsigned_int_4 = 1;
long_2 = long_2 + long_3;
if(1)
{
double double_3 = 1;
double double_4 = 1;
double double_5 = 1;
double_5 = double_3 + double_4;
}
if(1)
{
unsigned_int_2 = unsigned_int_3;
}
unsigned_int_2 = unsigned_int_4 * unsigned_int_4;
}
int_1 = int_3 + int_2;
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
short_1 = short_2 + short_2;
}
char v_BcmFrameBufferGetPitch( float parameter_1)
{
short short_1 = 1;
short short_2 = 1;
char char_1 = 1;
short_1 = short_2;
return char_1;
}
double v_BcmFrameBufferGetHeight( short parameter_1)
{
double double_1 = 1;
double double_2 = 1;
double_1 = double_1 + double_2;
return double_2;
}
short v_BcmFrameBufferGetWidth( int parameter_1)
{
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
short short_1 = 1;
int_3 = int_1 + int_2;
return short_1;
}
long v_BcmFrameBufferGetSize( float parameter_1)
{
float float_1 = 1;
long long_1 = 1;
float_1 = float_1 * float_1;
return long_1;
}
double v_BcmFrameBufferGetBuffer( unsigned int parameter_1)
{
int int_1 = 1;
double double_1 = 1;
int_1 = int_1;
return double_1;
}
char v_BcmFrameBufferGetDepth( double parameter_1)
{
double double_1 = 1;
double double_2 = 1;
char char_1 = 1;
double_1 = double_1 * double_2;
return char_1;
}
unsigned int v_BcmFrameBufferInitialize( int parameter_1)
{
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
short short_1 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
v_InvalidateDataCache();
int_2 = int_1 + int_2;
v_CleanDataCache();
char_3 = char_1 + char_2;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
double_1 = double_2;
unsigned_int_1 = v_BcmMailBoxWriteRead(long_1,short_1);
unsigned_int_2 = unsigned_int_3 * unsigned_int_3;
if(1)
{
}
if(1)
{
}
return unsigned_int_4;
}
void v_BcmFrameBufferSetPalette( int parameter_1,long parameter_2,unsigned int parameter_3)
{
int int_1 = 1;
int int_2 = 1;
int_2 = int_1 * int_2;
if(1)
{
char char_1 = 1;
char char_2 = 1;
char_2 = char_1 * char_2;
}
}
short v_memset(int parameter_2,short parameter_3)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
long long_1 = 1;
double double_1 = 1;
double double_2 = 1;
short short_1 = 1;
unsigned_int_1 = unsigned_int_2;
char_1 = char_1;
char_2 = char_2 + char_3;
unsigned_int_5 = unsigned_int_3 * unsigned_int_4;
long_1 = long_1 + long_1;
double_2 = double_1 * double_1;
return short_1;
}
void v_BcmFrameBuffer( float parameter_1)
{
unsigned int unsigned_int_1 = 1;
short short_1 = 1;
float float_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
double double_1 = 1;
int int_1 = 1;
char char_1 = 1;
double double_3 = 1;
int int_2 = 1;
short short_2 = 1;
int int_3 = 1;
long long_1 = 1;
int int_4 = 1;
unsigned int unsigned_int_4 = 1;
float float_3 = 1;
short short_3 = 1;
int int_5 = 1;
float float_4 = 1;
char char_2 = 1;
unsigned_int_1 = unsigned_int_1;
v_BcmPropertyTags(short_1);
float_1 = float_2;
if(1)
{
unsigned_int_1 = unsigned_int_2 + unsigned_int_3;
double_1 = v_BcmPropertyTagsGetTag(int_1,int_1,char_1,int_1);
unsigned_int_1 = unsigned_int_1 + unsigned_int_2;
float_1 = float_1 + float_2;
if(1)
{
double double_2 = 1;
double_3 = double_1 + double_2;
short_1 = v_malloc(double_3);
int_2 = int_1;
if(1)
{
int_1 = int_1;
v_BcmMailBox(short_2);
short_2 = v_memset(int_1,short_2);
int_1 = int_3;
}
}
if(1)
{
long_1 = long_1 + long_1;
int_4 = int_3;
}
unsigned_int_4 = unsigned_int_3 + unsigned_int_3;
}
if(1)
{
long long_2 = 1;
long long_3 = 1;
double double_4 = 1;
double double_5 = 1;
long_3 = long_1 + long_2;
double_5 = double_3 + double_4;
}
if(1)
{
unsigned int unsigned_int_5 = 1;
unsigned_int_4 = unsigned_int_3 + unsigned_int_5;
}
float_3 = float_2;
int_3 = int_3;
short_1 = short_3;
int_1 = int_2 + int_1;
int_1 = int_5 + int_1;
unsigned_int_4 = unsigned_int_2 * unsigned_int_2;
int_4 = int_4 + int_4;
v__BcmPropertyTags(unsigned_int_3);
float_4 = float_4 * float_1;
int_2 = int_4 * int_4;
char_1 = char_2 + char_2;
}
long v_ScreenDeviceInitialize()
{
float float_1 = 1;
int int_1 = 1;
int int_2 = 1;
char char_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
int int_3 = 1;
float float_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
long long_1 = 1;
float float_3 = 1;
float float_4 = 1;
double double_2 = 1;
double double_3 = 1;
short short_1 = 1;
int int_4 = 1;
int int_5 = 1;
double double_4 = 1;
short short_2 = 1;
short short_3 = 1;
long long_2 = 1;
unsigned int unsigned_int_6 = 1;
unsigned int unsigned_int_7 = 1;
float_1 = float_1;
int_1 = int_1 + int_2;
if(1)
{
v_ScreenDeviceClearDisplayEnd(char_1);
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
}
char_1 = v_BcmFrameBufferGetDepth(double_1);
v_ScreenDeviceCursorHome(int_3);
double_1 = double_1 + double_1;
float_2 = float_2 * float_1;
char controller_2[2];
fgets(controller_2 ,2 ,stdin);
if( strcmp( controller_2, "}") > 0)
{
}
if(1)
{
}
unsigned_int_3 = v_BcmFrameBufferInitialize(int_3);
unsigned_int_5 = unsigned_int_1 + unsigned_int_4;
v_BcmFrameBuffer(float_1);
long_1 = v_BcmFrameBufferGetSize(float_3);
float_3 = float_2 * float_4;
double_3 = double_2 + double_1;
short_1 = v_BcmFrameBufferGetWidth(int_2);
char_1 = v_BcmFrameBufferGetPitch(float_4);
v_ScreenDeviceInvertCursor(char_1);
int_5 = int_4 + int_2;
if(1)
{
}
double_1 = double_4 * double_1;
double_4 = v_BcmFrameBufferGetBuffer(unsigned_int_2);
double_4 = double_1;
short_2 = v_malloc(double_2);
float_2 = float_1 + float_4;
double_2 = v_BcmFrameBufferGetHeight(short_3);
unsigned_int_3 = v_CharGeneratorGetCharHeight(double_2,-1 );
int_4 = int_3 * int_3;
v_BcmFrameBufferSetPalette(int_1,long_2,unsigned_int_6);
unsigned_int_2 = unsigned_int_7 + unsigned_int_6;
return long_1;
}
void v_CharGenerator( long parameter_1)
{
long long_1 = 1;
long long_2 = 1;
long_2 = long_1 * long_2;
if(1)
{
}
if(1)
{
}
}
void v_ScreenDevice( int parameter_1)
{
short short_1 = 1;
short short_2 = 1;
double double_1 = 1;
long long_1 = 1;
double double_2 = 1;
short short_3 = 1;
char char_1 = 1;
char char_2 = 1;
short short_4 = 1;
double double_3 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
char char_3 = 1;
char char_4 = 1;
short_1 = short_2;
double_1 = double_1 * double_1;
v_CharGenerator(long_1);
double_2 = double_1 * double_1;
short_3 = short_2 * short_2;
char_1 = char_1 + char_2;
short_4 = short_2 + short_3;
double_2 = double_3;
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
char_2 = char_2 + char_1;
long_1 = long_1 + long_1;
char_4 = char_2 * char_3;
}
void v__BcmMailBox( float parameter_1)
{
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
int_3 = int_1 * int_2;
}
void v__BcmPropertyTags( unsigned int parameter_1)
{
double double_1 = 1;
float float_1 = 1;
short short_1 = 1;
double_1 = double_1;
v__BcmMailBox(float_1);
short_1 = short_1;
}
char v_PageTableGetBaseAddress( unsigned int parameter_1)
{
long long_1 = 1;
long long_2 = 1;
char char_1 = 1;
long_2 = long_1 + long_1;
return char_1;
}
void v_MemorySystemEnableMMU( int parameter_1)
{
char char_1 = 1;
unsigned int unsigned_int_1 = 1;
char_1 = v_PageTableGetBaseAddress(unsigned_int_1);
v_InvalidateDataCache();
}
void v_PageTable( float parameter_1)
{
short short_1 = 1;
short short_2 = 1;
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
double double_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
long long_4 = 1;
short_2 = short_1 + short_1;
long_3 = long_1 * long_2;
double_1 = double_1 * double_1;
double_1 = double_1 * double_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
double double_2 = 1;
double double_3 = 1;
unsigned int unsigned_int_1 = 1;
double double_4 = 1;
short short_3 = 1;
float float_1 = 1;
char char_1 = 1;
double double_5 = 1;
int int_1 = 1;
int int_2 = 1;
char char_2 = 1;
unsigned int unsigned_int_3 = 1;
short short_4 = 1;
double_1 = double_2 * double_3;
unsigned_int_1 = unsigned_int_1;
double_4 = double_1 * double_3;
short_2 = short_3;
float_1 = float_1 + float_1;
char_1 = char_1;
double_5 = double_4 + double_2;
int_2 = int_1 * int_1;
double_1 = double_5 + double_4;
double_2 = double_1 * double_4;
double_4 = double_2 + double_5;
unsigned_int_2 = unsigned_int_2;
char_2 = char_1 + char_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
unsigned_int_4 = unsigned_int_3 * unsigned_int_4;
short_4 = short_2 + short_1;
if(1)
{
float float_2 = 1;
float_2 = float_1 * float_1;
}
}
unsigned_int_5 = unsigned_int_2 + unsigned_int_4;
v_CleanDataCache();
long_4 = long_1 + long_2;
}
double v_palloc()
{
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
double double_3 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
unsigned int unsigned_int_1 = 1;
int int_4 = 1;
short short_1 = 1;
short short_2 = 1;
float float_1 = 1;
float float_2 = 1;
long long_2 = 1;
float float_3 = 1;
double double_4 = 1;
unsigned int unsigned_int_2 = 1;
double double_5 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
short short_3 = 1;
short short_4 = 1;
float float_4 = 1;
float float_5 = 1;
float float_6 = 1;
char char_1 = 1;
char char_2 = 1;
char char_3 = 1;
int int_5 = 1;
short short_5 = 1;
long long_3 = 1;
double double_6 = 1;
short short_6 = 1;
short short_7 = 1;
int int_6 = 1;
long long_4 = 1;
long long_5 = 1;
double double_7 = 1;
double_1 = double_1 * double_2;
if(1)
{
long_1 = long_1 * long_1;
}
double_2 = double_3 + double_2;
int_3 = int_1 * int_2;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
int_1 = int_4 * int_2;
short_2 = short_1 * short_1;
float_2 = float_1 + float_1;
long_2 = long_1 + long_2;
float_3 = float_2 + float_3;
int_2 = int_2;
double_3 = double_1;
float_2 = float_3 + float_2;
double_2 = double_3 + double_4;
unsigned_int_2 = unsigned_int_1 + unsigned_int_2;
double_5 = double_1 * double_2;
unsigned_int_3 = unsigned_int_1 * unsigned_int_2;
float_1 = float_1;
long_1 = long_1 * long_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_4;
double_2 = double_1;
short_4 = short_3 + short_1;
float_4 = float_2 * float_2;
float_6 = float_5 * float_5;
long_1 = long_2 + long_1;
int_3 = int_3 * int_1;
char_3 = char_1 + char_2;
int_5 = int_3 + int_3;
float_6 = float_5 * float_1;
unsigned_int_2 = unsigned_int_4;
short_5 = short_1 + short_5;
short_2 = short_1 * short_4;
long_3 = long_2 + long_1;
double_3 = double_1 + double_6;
short_2 = short_6 * short_7;
int_3 = int_6;
long_1 = long_4 + long_5;
short_1 = short_1 + short_1;
double_7 = double_6 * double_4;
int_5 = int_5 + int_1;
long_3 = long_4 + long_4;
return double_7;
}
void v_PageTable2( short parameter_1,long parameter_2)
{
long long_1 = 1;
char char_1 = 1;
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
float float_1 = 1;
double double_3 = 1;
double double_4 = 1;
long long_2 = 1;
unsigned int unsigned_int_4 = 1;
double double_5 = 1;
unsigned int unsigned_int_5 = 1;
int int_1 = 1;
char char_2 = 1;
int int_2 = 1;
int int_3 = 1;
int int_4 = 1;
unsigned int unsigned_int_6 = 1;
long long_3 = 1;
char char_3 = 1;
unsigned int unsigned_int_7 = 1;
short short_1 = 1;
short short_2 = 1;
long long_4 = 1;
char char_4 = 1;
double double_6 = 1;
unsigned int unsigned_int_8 = 1;
unsigned int unsigned_int_9 = 1;
short short_3 = 1;
short short_4 = 1;
int int_5 = 1;
long_1 = long_1;
char_1 = char_1 + char_1;
double_2 = double_1 + double_2;
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
float_1 = float_1 + float_1;
double_4 = double_3 * double_2;
long_2 = long_1;
unsigned_int_4 = unsigned_int_3 * unsigned_int_3;
char_1 = char_1 * char_1;
double_5 = v_palloc();
unsigned_int_4 = unsigned_int_5;
unsigned_int_4 = unsigned_int_4 * unsigned_int_5;
int_1 = int_1;
long_1 = long_2 + long_2;
double_2 = double_4 * double_4;
char_1 = char_2 * char_2;
int_3 = int_2 * int_1;
unsigned_int_1 = unsigned_int_4 * unsigned_int_1;
int_4 = int_1;
int_3 = int_1;
unsigned_int_6 = unsigned_int_4 + unsigned_int_6;
long_2 = long_2 + long_2;
int_4 = int_3 + int_4;
v_CleanDataCache();
long_3 = long_2 + long_3;
char_2 = char_2 * char_3;
unsigned_int_7 = unsigned_int_1 + unsigned_int_6;
short_2 = short_1 + short_2;
unsigned_int_7 = unsigned_int_2;
int_4 = int_2 * int_2;
int_4 = int_2 + int_4;
long_4 = long_1 * long_2;
char_1 = char_4;
double_5 = double_6 + double_6;
unsigned_int_1 = unsigned_int_4 * unsigned_int_4;
char_4 = char_1 * char_2;
unsigned_int_9 = unsigned_int_6 * unsigned_int_8;
short_2 = short_3 * short_4;
double_6 = double_3;
unsigned_int_1 = unsigned_int_5 + unsigned_int_7;
short_4 = short_1 * short_4;
int_3 = int_2 + int_5;
}
void v_LeaveCritical()
{
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_1 = 1;
int_1 = int_2;
unsigned_int_1 = unsigned_int_1;
if(1)
{
if(1)
{
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
double_3 = double_1 + double_2;
}
}
}
void v_EnterCritical()
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_1 = 1;
double double_2 = 1;
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
unsigned_int_1 = unsigned_int_1 + unsigned_int_2;
double_1 = double_1 + double_2;
int_2 = int_1 * int_2;
if(1)
{
char char_1 = 1;
char_1 = char_1;
}
int_1 = int_3;
}
short v_malloc( double parameter_1)
{
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
unsigned int unsigned_int_1 = 1;
long long_3 = 1;
int int_1 = 1;
int int_2 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
float float_2 = 1;
char char_1 = 1;
char char_2 = 1;
unsigned int unsigned_int_4 = 1;
float float_3 = 1;
float float_4 = 1;
long long_8 = 1;
short short_1 = 1;
v_LeaveCritical();
double_2 = double_1 * double_1;
long_1 = long_1;
unsigned_int_1 = unsigned_int_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
if(1)
{
long long_2 = 1;
int int_3 = 1;
long_2 = long_2 + long_3;
if(1)
{
int_3 = int_1 * int_2;
}
int_3 = int_2 + int_2;
}
}
unsigned_int_1 = unsigned_int_1 * unsigned_int_2;
if(1)
{
int int_4 = 1;
unsigned_int_3 = unsigned_int_1 + unsigned_int_3;
int_2 = int_1 * int_4;
}
if(1)
{
long long_4 = 1;
long long_5 = 1;
long long_6 = 1;
long long_7 = 1;
int int_5 = 1;
long_5 = long_4 * long_3;
long_7 = long_4 + long_6;
if(1)
{
float float_1 = 1;
float_1 = float_2;
}
int_2 = int_1 + int_5;
char_2 = char_1 + char_2;
}
v_EnterCritical();
unsigned_int_4 = unsigned_int_2 + unsigned_int_3;
char_1 = char_2 * char_2;
float_4 = float_2 * float_3;
long_8 = long_3 * long_3;
return short_1;
}
void v_mem_init( float parameter_1,float parameter_2)
{
int int_1 = 1;
int int_2 = 1;
int_1 = int_1 * int_1;
int_2 = int_2 * int_1;
if(1)
{
int int_3 = 1;
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_1 = 1;
char char_1 = 1;
double double_3 = 1;
double double_4 = 1;
int_3 = int_2 * int_3;
double_1 = double_1 * double_2;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
char_1 = char_1 * char_1;
double_3 = double_4;
}
}
void v_InvalidateDataCache()
{
double double_1 = 1;
for(int looper_1=0; looper_1<1;looper_1++)
{
for(int looper_2=0; looper_2<1;looper_2++)
{
double double_2 = 1;
short short_1 = 1;
short short_2 = 1;
double_1 = double_2;
short_2 = short_1 + short_2;
}
}
for(int looper_3=0; looper_3<1;looper_3++)
{
for(int looper_4=0; looper_4<1;looper_4++)
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
double double_3 = 1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_2;
double_3 = double_3 + double_1;
}
}
}
double v_BcmMailBoxRead( double parameter_1)
{
double double_1 = 1;
float float_1 = 1;
double double_2 = 1;
long long_3 = 1;
int int_1 = 1;
if(1)
{
double_1 = double_1 + double_1;
}
if(1)
{
float_1 = float_1 * float_1;
char controller_3[3];
fgets(controller_3 ,3 ,stdin);
if( strcmp( controller_3, "!N") > 0)
{
short short_1 = 1;
short short_2 = 1;
short_2 = short_1 * short_1;
}
if(1)
{
long long_1 = 1;
long long_2 = 1;
long long_4 = 1;
long_2 = long_1 * long_1;
for(int looper_1=0; looper_1<1;looper_1++)
{
if(1)
{
double_1 = double_2 * double_1;
}
}
long_3 = v_read32(int_1);
long_4 = long_1 + long_3;
}
}
float_1 = float_1 * float_1;
return double_2;
}
void v_write32( double parameter_1,short parameter_2)
{
double double_1 = 1;
double double_2 = 1;
double_2 = double_1 * double_1;
}
void v_BcmMailBoxWrite( double parameter_1,int parameter_2)
{
short short_1 = 1;
short short_2 = 1;
float float_1 = 1;
float float_2 = 1;
double double_1 = 1;
double double_2 = 1;
double double_3 = 1;
short short_3 = 1;
char char_1 = 1;
char char_2 = 1;
long long_1 = 1;
int int_1 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
int int_2 = 1;
int int_3 = 1;
long long_2 = 1;
short_2 = short_1 * short_1;
float_1 = float_2;
double_1 = double_1 * double_2;
v_write32(double_3,short_2);
short_2 = short_3;
char_1 = char_1 + char_2;
long_1 = v_read32(int_1);
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
float_1 = float_2;
float_2 = float_1 * float_2;
unsigned_int_3 = unsigned_int_3 * unsigned_int_4;
long_1 = long_1 * long_1;
float_1 = float_2 + float_2;
int_3 = int_1 + int_2;
long_2 = long_2 * long_1;
double_1 = double_3;
}
void v_TimerSimpleusDelay( double parameter_1)
{
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_1 = 1;
long long_1 = 1;
int int_1 = 1;
unsigned int unsigned_int_2 = 1;
short_1 = short_2;
unsigned_int_1 = unsigned_int_1 + unsigned_int_1;
long_1 = v_read32(int_1);
unsigned_int_2 = unsigned_int_2 + unsigned_int_2;
}
void v_TimerSimpleMsDelay( float parameter_1)
{
double double_1 = 1;
if(1)
{
float float_1 = 1;
float float_2 = 1;
float_2 = float_1 + float_1;
}
v_TimerSimpleusDelay(double_1);
}
long v_read32( int parameter_1)
{
long long_1 = 1;
return long_1;
}
void v_BcmMailBoxFlush( char parameter_1)
{
long long_1 = 1;
long long_2 = 1;
long long_3 = 1;
int int_1 = 1;
float float_1 = 1;
long_2 = long_1 * long_2;
long_3 = v_read32(int_1);
v_TimerSimpleMsDelay(float_1);
}
unsigned int v_BcmMailBoxWriteRead( long parameter_1,short parameter_2)
{
char char_1 = 1;
int int_1 = 1;
int int_2 = 1;
char char_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
double double_1 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
double double_2 = 1;
double double_3 = 1;
v_BcmMailBoxFlush(char_1);
int_2 = int_1 + int_1;
char_1 = char_1 + char_2;
unsigned_int_2 = unsigned_int_1 + unsigned_int_1;
long_1 = long_1;
unsigned_int_2 = unsigned_int_2 * unsigned_int_1;
v_BcmMailBoxWrite(double_1,int_2);
unsigned_int_4 = unsigned_int_2 * unsigned_int_3;
return unsigned_int_5;
double_2 = v_BcmMailBoxRead(double_3);
}
void v_CleanDataCache()
{
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_3 = 1;
int int_1 = 1;
for(int looper_1=0; looper_1<1;looper_1++)
{
for(int looper_2=0; looper_2<1;looper_2++)
{
unsigned int unsigned_int_2 = 1;
unsigned_int_3 = unsigned_int_1 + unsigned_int_2;
int_1 = int_1;
}
}
for(int looper_3=0; looper_3<1;looper_3++)
{
for(int looper_4=0; looper_4<1;looper_4++)
{
int int_2 = 1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_3;
int_2 = int_1 + int_1;
}
}
}
short v_memcpy(char parameter_2,int parameter_3)
{
int int_1 = 1;
int int_2 = 1;
int int_3 = 1;
unsigned int unsigned_int_1 = 1;
int int_4 = 1;
short short_1 = 1;
int_3 = int_1 + int_2;
int_2 = int_1 + int_1;
unsigned_int_1 = unsigned_int_1 * unsigned_int_1;
int_2 = int_4 + int_4;
return short_1;
}
double v_BcmPropertyTagsGetTag( int parameter_1,int parameter_2,char parameter_4,int parameter_5)
{
short short_1 = 1;
short short_2 = 1;
long long_1 = 1;
long long_2 = 1;
float float_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
double double_1 = 1;
char char_1 = 1;
int int_2 = 1;
short_2 = short_1 + short_1;
long_1 = long_1 + long_2;
char controller_1[2];
fgets(controller_1 ,2 ,stdin);
if( strcmp( controller_1, "_") < 0)
{
}
v_CleanDataCache();
float_2 = float_1 + float_1;
unsigned_int_1 = v_BcmMailBoxWriteRead(long_2,short_1);
v_InvalidateDataCache();
int_1 = int_1 * int_1;
return double_1;
short_2 = v_memcpy(char_1,int_2);
}
void v_BcmMailBox( short parameter_1)
{
double double_1 = 1;
double double_2 = 1;
short short_1 = 1;
double_2 = double_1 * double_1;
short_1 = short_1 * short_1;
}
void v_BcmPropertyTags( short parameter_1)
{
long long_1 = 1;
short short_1 = 1;
int int_1 = 1;
int int_2 = 1;
long_1 = long_1 * long_1;
v_BcmMailBox(short_1);
int_2 = int_1 + int_1;
}
void v_MemorySystem( char parameter_1)
{
short short_1 = 1;
short short_2 = 1;
short short_3 = 1;
float float_1 = 1;
float float_2 = 1;
unsigned int unsigned_int_1 = 1;
unsigned int unsigned_int_2 = 1;
long long_1 = 1;
int int_1 = 1;
int int_2 = 1;
double double_1 = 1;
double double_2 = 1;
unsigned int unsigned_int_3 = 1;
unsigned int unsigned_int_4 = 1;
unsigned int unsigned_int_5 = 1;
double double_3 = 1;
char char_1 = 1;
char char_2 = 1;
double double_4 = 1;
double double_5 = 1;
float float_5 = 1;
int int_4 = 1;
v_BcmPropertyTags(short_1);
short_3 = short_1 + short_2;
float_1 = float_2;
unsigned_int_1 = unsigned_int_2;
long_1 = long_1 + long_1;
int_1 = int_1;
v_MemorySystemEnableMMU(int_2);
double_1 = double_2;
double_2 = double_2 + double_2;
v__BcmPropertyTags(unsigned_int_3);
unsigned_int_5 = unsigned_int_1 + unsigned_int_4;
if(1)
{
double_2 = double_2 * double_3;
unsigned_int_2 = unsigned_int_5;
}
int_1 = int_2;
char_2 = char_1 + char_1;
double_1 = double_2 * double_4;
char controller_2[3];
fgets(controller_2 ,3 ,stdin);
if( strcmp( controller_2, "5f") < 0)
{
float float_3 = 1;
float float_4 = 1;
int int_3 = 1;
long long_2 = 1;
float_2 = float_1 + float_1;
double_5 = double_3 + double_2;
float_4 = float_3 * float_3;
v_mem_init(float_2,float_5);
int_2 = int_3 * int_3;
short_1 = v_malloc(double_5);
v_PageTable(float_2);
int_2 = int_3 * int_3;
double_4 = v_BcmPropertyTagsGetTag(int_2,int_4,char_1,int_4);
long_2 = long_1 * long_1;
v_PageTable2(short_1,long_1);
int_2 = int_2 * int_4;
}
int_4 = int_2 * int_1;
}
int v_USPiEnvInitialize()
{
unsigned int unsigned_int_1 = 1;
int int_1 = 1;
double double_1 = 1;
double double_2 = 1;
long long_1 = 1;
double double_3 = 1;
int int_2 = 1;
short short_1 = 1;
short short_2 = 1;
float float_1 = 1;
char char_1 = 1;
double double_4 = 1;
char char_2 = 1;
v__ScreenDevice(unsigned_int_1);
int_1 = v_InterruptSystemInitialize(double_1);
double_1 = double_1 + double_2;
long_1 = v_ScreenDeviceInitialize();
unsigned_int_1 = v_LoggerInitialize(double_3,int_2);
double_2 = double_3;
for(int looper_1=0; looper_1<1;looper_1++)
{
double double_5 = 1;
v_InterruptSystem();
v__Timer(short_1);
v__ExceptionHandler(double_3);
short_2 = short_2 + short_2;
v_ExceptionHandler2();
v__InterruptSystem(float_1);
double_2 = double_1 * double_2;
v_MemorySystem(char_1);
v_ScreenDevice(int_2);
v_Timer(double_4);
double_4 = double_2 * double_5;
}
char controller_1[2];
fgets(controller_1 ,2 ,stdin);
if( strcmp( controller_1, "0") > 0)
{
for(int looper_2=0; looper_2<1;looper_2++)
{
short short_3 = 1;
short_1 = v_TimerInitialize(float_1);
short_2 = short_3 + short_3;
}
}
return int_1;
v_Logger(double_3);
v__Logger(char_2);
}
int main()
{
int uni_para =985;
int int_1 = 1;
char char_2 = 1;
unsigned int unsigned_int_1 = 1;
float float_1 = 1;
int int_2 = 1;
char controller4vul_2091[2];
fgets(controller4vul_2091 ,2 ,stdin);
if( strcmp( controller4vul_2091, "`") > 0)
{
int_1 = v_USPiInitialize(uni_para);
}
if(1)
{
long long_1 = 1;
long long_2 = 1;
char char_1 = 1;
long_1 = long_1 + long_2;
char_1 = char_1 + char_2;
}
if(1)
{
short short_1 = 1;
short short_2 = 1;
unsigned int unsigned_int_2 = 1;
short_2 = short_1 + short_1;
unsigned_int_2 = unsigned_int_1 * unsigned_int_1;
}
float_1 = float_1 + float_1;
char_2 = char_2;
for(int looper_1=0; looper_1<1;looper_1++)
{
unsigned_int_1 = unsigned_int_1;
}
return int_2;
}
|
the_stack_data/122015269.c | #include <stdio.h>
#include <errno.h> // for errno
#include <math.h>
#include <limits.h> // for INT_MAX
#include <stdlib.h> // for strtol
#include <time.h>
#include <omp.h>
int numThreads = 1;
void freeMatrix(double** matrix, long lins){
for (long i = 0; i < lins; ++i) {
free(matrix[i]);
}
free(matrix);
}
double** allocMatrix(long lins, long cols){
double** matrix = malloc(lins*sizeof(double*));
for (long i = 0; i < lins; ++i) {
matrix[i] = malloc(cols*sizeof(double));
}
return matrix;
}
void printMatrix(double** matrix, long lins, long cols){
for (long i = 0; i < lins; ++i) {
for (long j = 0; j < cols; ++j)
printf("%lf ", matrix[i][j]);
printf("\n");
}
printf("\n");
}
void fillMatrix(double** matrix, long lins, long cols, long seed){
srand(seed);
for (long i = 0; i < lins; ++i) {
for (long j = 0; j < cols; ++j) {
matrix[i][j]= (double) rand() / INT_MAX;
}
}
}
void transpose_matrix(double** matrix, double** transposed, long lins, long cols){
#pragma omp parallel num_threads(numThreads) default(none) \
shared(matrix, transposed, lins, cols)
{
#pragma omp for schedule(guided)
for (long i = 0; i < lins; ++i) {
for (long j = 0; j < cols; ++j) {
transposed[j][i] = matrix[i][j];
}
}
}
}
void multiply_row(double* linA, double** B, double* result, long colsB, long size){
for (long j = 0; j < colsB; ++j) {
result[j] = 0;
for (long k = 0; k < size; ++k){
result[j] += linA[k] * B[j][k];
}
}
}
void multiply_matrix(double** A, double** B, double** result, long linsA, long colsB, long size){
#pragma omp parallel num_threads(numThreads) default(none) \
shared(linsA, numThreads, A, B, result, colsB, size)
{
#pragma omp for schedule(guided)
for (long i = 0; i < linsA; ++i) {
multiply_row(A[i], B, result[i], colsB, size);
}
}
}
long convert_str_long(char *str){
char *p;
errno = 0;
long conv = strtol(str, &p, 10);
if (errno != 0 || *p != '\0')
{
printf("%s nรฃo รฉ um nรบmero!\n", str);
exit(-1);
}
return (long)conv;
}
int main(int argc, char **argv){
if (argc != 9) {
printf("ร necessรกrio informar os seguintes argumentos:\nO nรบmero de threads a serem usadas\nSe as matrizes devem ser exibidas\nSeed para gerar a matriz A\nSeed para gerar a matriz B\nNรบmero de linhas de A\nNรบmero de colunas de A\nNรบmero de linhas de B\nNรบmero de colunas de B\n");
return -1;
}
numThreads = convert_str_long(argv[1]);
int show_matrix = convert_str_long(argv[2]);
long seedA = convert_str_long(argv[3]);
long seedB = convert_str_long(argv[4]);
long linsA = convert_str_long(argv[5]);
long colsA = convert_str_long(argv[6]);
long linsB = convert_str_long(argv[7]);
long colsB = convert_str_long(argv[8]);
if(colsA != linsB){
printf("Nรบmero de colunas de A รฉ diferente do nรบmero de linhas de B, multiplicaรงรฃo nรฃo รฉ possivel.\n");
return -1;
}
double t = omp_get_wtime();
double** A = allocMatrix(linsA, colsA);
double** B = allocMatrix(linsB, colsB);
double** BT = allocMatrix(colsB, linsB);
double** R = allocMatrix(linsA, colsB);
fillMatrix(A, linsA, colsA, seedA);
fillMatrix(B, linsB, colsB, seedB);
transpose_matrix(B, BT, linsB, colsB);
multiply_matrix(A, BT, R, linsA, colsB, colsA);
t = omp_get_wtime() - t;
printf("%.10lf\n", t);
if(show_matrix == 1){
printMatrix(A, linsA, colsA);
printMatrix(B, linsB, colsB);
printMatrix(R, linsA, colsB);
}
freeMatrix(A, linsA);
freeMatrix(B, linsB);
freeMatrix(BT, colsB);
freeMatrix(R, linsA);
return 0;
} /* main */ |
the_stack_data/126702706.c | /*
* Author: lorenzo
* E-mail: [email protected]
*/
/* #define _BSD_SOURCE */
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <strings.h>
#include <sys/time.h>
#include <time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/statvfs.h>
#include <X11/Xlib.h>
char *tzargentina = "GTM-8";
static Display *dpy;
char *
smprintf(char *fmt, ...)
{
va_list fmtargs;
char *ret;
int len;
va_start(fmtargs, fmt);
len = vsnprintf(NULL, 0, fmt, fmtargs);
va_end(fmtargs);
ret = malloc(++len);
if (ret == NULL) {
perror("malloc");
exit(1);
}
va_start(fmtargs, fmt);
vsnprintf(ret, len, fmt, fmtargs);
va_end(fmtargs);
return ret;
}
void
settz(char *tzname)
{
setenv("TZ", tzname, 1);
}
char *
mktimes(char *fmt, char *tzname)
{
char buf[129];
time_t tim;
struct tm *timtm;
settz(tzname);
tim = time(NULL);
timtm = localtime(&tim);
if (timtm == NULL)
return smprintf("");
if (!strftime(buf, sizeof(buf)-1, fmt, timtm)) {
fprintf(stderr, "strftime == 0\n");
return smprintf("");
}
return smprintf("%s", buf);
}
void
setstatus(char *str)
{
XStoreName(dpy, DefaultRootWindow(dpy), str);
XSync(dpy, False);
}
char *
loadavg(void)
{
double avgs[3];
if (getloadavg(avgs, 3) < 0)
return smprintf("");
return smprintf("%.2f %.2f %.2f", avgs[0], avgs[1], avgs[2]);
}
char *
notification(char *base, char *file)
{
char *path, line[513];
FILE *fd;
memset(line, 0, sizeof(line));
path = smprintf("%s/%s", base, file);
fd = fopen(path, "r");
free(path);
if (fd == NULL)
return smprintf("");
if (fgets(line, sizeof(line)-1, fd) == NULL)
return smprintf("");
fclose(fd);
line[strlen(line)-1]='\0';
return smprintf("%s", line);
}
char *
readfile(char *base, char *file)
{
char *path, line[513];
FILE *fd;
memset(line, 0, sizeof(line));
path = smprintf("%s/%s", base, file);
fd = fopen(path, "r");
free(path);
if (fd == NULL)
return NULL;
if (fgets(line, sizeof(line)-1, fd) == NULL) return NULL;
fclose(fd);
return smprintf("%s", line);
}
char *
getbattery(char *base)
{
char *co, status;
int descap, remcap;
descap = -1;
remcap = -1;
co = readfile(base, "present");
if (co == NULL)
return smprintf("");
if (co[0] != '1') {
free(co);
return smprintf("not present");
}
free(co);
co = readfile(base, "charge_full_design");
if (co == NULL) {
co = readfile(base, "energy_full_design");
if (co == NULL)
return smprintf("");
}
sscanf(co, "%d", &descap);
free(co);
co = readfile(base, "charge_now");
if (co == NULL) {
co = readfile(base, "energy_now");
if (co == NULL)
return smprintf("");
}
sscanf(co, "%d", &remcap);
free(co);
co = readfile(base, "status");
if (!strncmp(co, "Discharging", 11)) {
status = '-';
} else if(!strncmp(co, "Charging", 8)) {
status = '+';
} else {
status = '^';
}
if (remcap < 0 || descap < 0)
return smprintf("invalid");
return smprintf("%.0f%%%c", ((float)remcap / (float)descap) * 100, status);
}
char *get_freespace(char *mntpt){
struct statvfs data;
double total, used = 0;
if ( (statvfs(mntpt, &data)) < 0){
fprintf(stderr, "can't get info on disk.\n");
return("-");
} total = (data.f_blocks * data.f_frsize); used = (data.f_blocks - data.f_bfree) * data.f_frsize ; return(smprintf("%.0f%%", (used/total*100))); } char * gettemperature(char *base, char *sensor)
{
char *co;
co = readfile(base, sensor);
if (co == NULL)
return smprintf("");
return smprintf("%02.0fยฐ", atof(co) / 1000);
}
int
parse_netdev(unsigned long long int *receivedabs, unsigned long long int *sentabs)
{
char buf[255];
char *datastart;
static int bufsize;
int rval;
FILE *devfd;
unsigned long long int receivedacc, sentacc;
bufsize = 255;
devfd = fopen("/proc/net/dev", "r");
rval = 1;
// ignore the first two lines of the file
fgets(buf, bufsize, devfd);
fgets(buf, bufsize, devfd);
while (fgets(buf, bufsize, devfd)) {
if ((datastart = strstr(buf, "lo:")) == NULL) {
datastart = strstr(buf, ":");
// with thanks to the conky project at http://conky.sourceforge.net/
sscanf(datastart + 1, "%llu %*d %*d %*d %*d %*d %*d %*d %llu", &receivedacc, &sentacc);
*receivedabs += receivedacc;
*sentabs += sentacc;
rval = 0;
}
}
fclose(devfd);
return rval;
}
void
calculate_speed(char *speedstr, unsigned long long int newval, unsigned long long int oldval)
{
double speed;
speed = (newval - oldval) / 1024.0;
if (speed > 1024.0) {
speed /= 1024.0;
sprintf(speedstr, "%.3f mb/s", speed);
} else {
sprintf(speedstr, "%.2f kb/s", speed);
}
}
char *
get_netusage(unsigned long long int *rec, unsigned long long int *sent)
{
unsigned long long int newrec, newsent;
newrec = newsent = 0;
char downspeedstr[15], upspeedstr[15];
static char retstr[42];
int retval;
retval = parse_netdev(&newrec, &newsent);
if (retval) {
fprintf(stdout, "Error when parsing /proc/net/dev file.\n");
exit(1);
}
calculate_speed(downspeedstr, newrec, *rec);
calculate_speed(upspeedstr, newsent, *sent);
/* sprintf(retstr, "down: %s up: %s", downspeedstr, upspeedstr); */
sprintf(retstr, "โ-%s โ-%s", downspeedstr, upspeedstr);
*rec = newrec;
*sent = newsent;
return retstr;
}
/*
int
main(void)
{
char *status;
char *tm;
char *bat;
char *msg;
char *rootfs;
char *avgs;
char *netstats;
static unsigned long long int rec, sent;
char *t0, *t1, *t2, *t3, *t4, *t5, *t6, *t7, *t8;
if (!(dpy = XOpenDisplay(NULL))) {
fprintf(stderr, "dwmstatus: cannot open display.\n");
return 1;
}
for (;;sleep(60)) {
tm = mktimes("%a %b/%d %Y %Z โซ_%H:%M e^r(t)du ", tzargentina);
bat = getbattery("/sys/class/power_supply/BAT0");
msg = notification("/home/lorenzo", ".notification.msg");
rootfs = get_freespace("/");
avgs = loadavg();
netstats = get_netusage(&rec, &sent);
t0 = gettemperature("/sys/class/thermal/thermal_zone0", "temp");
t1 = gettemperature("/sys/class/thermal/thermal_zone1", "temp");
t2 = gettemperature("/sys/class/thermal/thermal_zone2", "temp");
t3 = gettemperature("/sys/class/thermal/thermal_zone3", "temp");
t4 = gettemperature("/sys/class/thermal/thermal_zone4", "temp");
t5 = gettemperature("/sys/class/thermal/thermal_zone5", "temp");
t6 = gettemperature("/sys/class/thermal/thermal_zone6", "temp");
t7 = gettemperature("/sys/class/thermal/thermal_zone7", "temp");
t8 = gettemperature("/sys/class/thermal/thermal_zone8", "temp");
status = smprintf("Arch %s %s %s %s%s%s%s%s%s%s%s%s %s %s %s", bat, rootfs, netstats, t0, t1, t2, t3, t4, t5, t6, t7, t8, avgs, tm, msg);
setstatus(status);
free(t0); free(t1); free(t2); free(t3); free(t4); free(t5); free(t6); free(t7); free(t8);
free(tm);
free(bat);
free(msg);
free(rootfs);
free(avgs);
free(status);
}
XCloseDisplay(dpy);
return 0;
}
*/
int
main(void)
{
char *status;
char *tm;
char *bat;
char *msg;
if (!(dpy = XOpenDisplay(NULL))) {
fprintf(stderr, "dwmstatus: cannot open display.\n");
return 1;
}
for (;;sleep(1)) {
tm = mktimes("%a %b/%d,%Yโซ_%H:%M:%S e^r(t)du", tzargentina);
bat = getbattery("/sys/class/power_supply/BAT0");
msg = notification("/home/lorenzo", ".notification.tasks");
status = smprintf("%s [%s] %s ", msg, bat, tm);
setstatus(status);
free(tm);
free(bat);
free(msg);
free(status);
}
XCloseDisplay(dpy);
return 0;
}
|
the_stack_data/232956876.c | #include <stdio.h>
#define VERSION "1.00"
void LoadLib() {
printf("[LIB] lib v%s is loaded\n", VERSION);
}
void Draw() {
__asm__("jmp *%esp\n\t"
"jmp *%eax\n\t"
"pop %eax\n\t"
"pop %eax\n\t"
"ret");
}
void Process(char *input) {
char Buffer[1000];
strcpy(Buffer, input);
} |
the_stack_data/237644139.c | #include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <semaphore.h>
#include <unistd.h>
#include <time.h>
int randomizaNumEstudantes();
void *estudante (void *param);
void *monitor(void *param);
void criaThreadsEstudantes(pthread_t *estudantes, pthread_attr_t *attrEstudantes, int *idEstudantes, int quantidade);
int numero_estudantes_atendidos = 0;
int cad_ocup = 0;
int num_cadeiras;
int cadeira_monitor;
int quantidade=0;
pthread_t monitor_tid;
pthread_attr_t attrMonitor;
sem_t cadeiraAtendimento, soneca_monitor, ajudando_estudante;
pthread_mutex_t cad_mutex, estudante_mutex;
void acorda_monitor(void){
sem_post(&soneca_monitor);
}
void ajuda_estudante(void){
sem_wait(&ajudando_estudante);
}
int main (){
srand(time(NULL));
sem_init(&cadeiraAtendimento, 0, 1);
sem_init(&soneca_monitor, 0, 1);
sem_init(&ajudando_estudante, 0, 1);
pthread_mutex_init(&cad_mutex, NULL);
pthread_mutex_init(&estudante_mutex, NULL);
sem_wait(&soneca_monitor); //faz o monitor tirar uma soneca
sem_wait(&ajudando_estudante); //faz o estudante esperar
int i, *idEstudantes;
pthread_attr_init(&attrMonitor);
pthread_create(&monitor_tid,&attrMonitor, monitor, NULL);
quantidade = randomizaNumEstudantes(); //randomiza a quantidade de estudantes
printf("Quantidade de estudantes %d\n", quantidade);
num_cadeiras = quantidade/2; //numero de cadeiras dividido por 2
printf("Numero de cadeiras รฉ %d\n", num_cadeiras);
pthread_t *estudantes;
pthread_attr_t *attrEstudantes;
estudantes = (pthread_t *) malloc(sizeof(pthread_t)*quantidade); // cria um ponteiro com n estudantes
attrEstudantes = (pthread_attr_t *) malloc (sizeof (pthread_attr_t)*quantidade);
idEstudantes = (int*) malloc(sizeof(int)*quantidade);
criaThreadsEstudantes(estudantes, attrEstudantes, idEstudantes, quantidade); //cria as threads de estudante
pthread_join(monitor_tid, NULL);
free(estudantes);
free(attrEstudantes);
free(idEstudantes);
}
int randomizaNumEstudantes()
{
int quantidade;
quantidade = (rand()%(38)) + 3;
return quantidade;
}
void criaThreadsEstudantes(pthread_t *estudantes, pthread_attr_t *attrEstudantes, int *idEstudantes, int quantidade){
for (int i = 0 ; i < quantidade; i++){
idEstudantes[i] = i;
pthread_attr_init(&attrEstudantes[i]);
pthread_create(&estudantes[i], &attrEstudantes[i], estudante, &idEstudantes[i]);
printf("Estudante %d criado\n", i);
}
for(int i = 0; i <quantidade; i++){ //espera a execuรงรฃo das threads
pthread_join(estudantes[i], NULL);
}
}
void *vai_programar(int idEstudantes){
int tempo_prog = rand() % 100000 + 100000;
printf("Sou o estudante %d. Vou programar por %d tempo!\n", idEstudantes, tempo_prog);
usleep(tempo_prog);
}
int pede_ajuda(int idEstudantes){
if(cad_ocup < num_cadeiras){
pthread_mutex_lock(&cad_mutex);
cad_ocup ++;
printf("numero de cadeiras ocupadas %d\n", cad_ocup);
pthread_mutex_unlock(&cad_mutex);
sem_wait(&cadeiraAtendimento);
cadeira_monitor = idEstudantes;
printf("O estudante %d vai ser Atendido.\n", idEstudantes);
//sem_post(&soneca_monitor); //implemtado na funรงรฃo acorda_monitor();
//sem_wait(&ajudando_estudante);
acorda_monitor();
ajuda_estudante();
cadeira_monitor = -1;
//printf("Acorda monitor!\n");
//printf("O estudante %d foi Atendido.\n", idEstudantes);
sem_post(&cadeiraAtendimento);
pthread_mutex_lock(&cad_mutex);
cad_ocup--;
pthread_mutex_unlock(&cad_mutex);
return 1;
}
else{
return 0;
}
}
void *estudante (void *param){
int *estudante_num = (int *) param;
int cont_ajuda = 0;
printf("Sou o estudante nรบmero %d. \n", *estudante_num);
while(cont_ajuda <3){
vai_programar(*estudante_num);
if(pede_ajuda(*estudante_num) == 1){
cont_ajuda ++;
printf("Sou o estudante num. %d. Fui atendido %d vezes.\n", *estudante_num, cont_ajuda);
}
else{
printf("Sou o estudante num. %d. Volto depois.\n", *estudante_num);
}
}
numero_estudantes_atendidos++;
if(numero_estudantes_atendidos == quantidade){
printf("\n\nTodos os estudantes foram atendidos por 3 vezes!\n");
printf("Total de estudantes Atendidos %d!\n", numero_estudantes_atendidos);
pthread_cancel(monitor_tid);
}
pthread_exit(0);
}
void *monitor(void *param){
while(1){
if(cad_ocup == 0){ // se nao houver ngm para ser atendido ele dorme
printf("O monitor vai tirar uma soneca!.\n");
sem_wait(&soneca_monitor);
}
else{
int ajuda_temp = rand() % 100000 + 100000; // tempo aleatorio de atendimento
//printf("O monitor vair atender o estudante num %d.\n",cadeira_monitor);
usleep(ajuda_temp);
printf("O estudante %d foi atendido por %d tempo.\n",cadeira_monitor, ajuda_temp);
sem_post(&ajudando_estudante);
}
}
pthread_exit(0);
} |
the_stack_data/626885.c | #include <stdio.h>
int main()
{
int n = 7;
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= n; j++) {
if(j == i || j == n/2 + 1 || i == n/2 + 1 || j == n - i + 1)
printf("* ");
else
printf(" ");
}
printf("\n");
}
return 0;
} |
the_stack_data/140644.c | /*Exercise 4 - Functions
Implement the three functions minimum(), maximum() and multiply() below the main() function.
Do not change the code given in the main() function when you are implementing your solution.*/
#include <stdio.h>
int minimum (int no_1,int no_2);
int maximum (int no_1,int no_2);
int multiply(int no_1,int no_2);
int main() {
int no1, no2;
printf("Enter a value for no 1 : ");
scanf("%d", &no1);
printf("Enter a value for no 2 : ");
scanf("%d", &no2);
printf("%d ", minimum(no1, no2));
printf("%d ", maximum(no1, no2));
printf("%d ", multiply(no1, no2));
return 0;
}
int minimum (int no_1,int no_2)
{
if(no_1 > no_2)
return no_2;
else
return no_1;
}
int maximum (int no_1,int no_2)
{
if(no_1 > no_2)
return no_1;
else
return no_2;
}
int multiply(int no_1,int no_2)
{
return no_1 * no_2;
}
|
the_stack_data/668609.c | #include<stdio.h>
#include <ctype.h>
int main() {
char menu;
int num, price;
printf("Welcome to Mama Cas Restuarant\n");
printf("What would you like to order\n Press\n P = Poundo Yam & Edinkaiko soup --- N3200 \n F = Fried Rice & Chicken --- N3000 \n A = Amala & Ewedu Soup --- N2500 \n E = Eba & Egusi Soup --- N2000 \n W = White Rice & Stew --- N2500\n");
scanf("%c", &menu);
printf("How many portions please:");
scanf("%d", &num);
switch(toupper(menu)){
case 'P':
//case 'p': //you can do this instead of toupper
price = 3200;
break;
case 'F':
price = 3000;
break;
case 'A':
price = 2500;
break;
case 'E':
price = 2000;
break;
case 'W':
price = 2500;
break;
default:
printf("Please enter a valid choice");
}
price = num * price;
printf("Total price is: %d \n", price);
return 0;
}
|
the_stack_data/11076270.c | #include <assert.h>
int main()
{
char array[40];
// arrays turn into pointers
assert(sizeof(({ array; }))==sizeof(char *));
assert(sizeof(array)==40);
// but it's not promotion
assert(sizeof(({ (char)1; }))==sizeof(char));
}
|
the_stack_data/206393177.c | /* Generated by CIL v. 1.7.0 */
/* print_CIL_Input is false */
struct _IO_FILE;
struct timeval;
extern float strtof(char const *str , char const *endptr ) ;
extern void signal(int sig , void *func ) ;
typedef struct _IO_FILE FILE;
extern int atoi(char const *s ) ;
extern double strtod(char const *str , char const *endptr ) ;
extern int fclose(void *stream ) ;
extern void *fopen(char const *filename , char const *mode ) ;
extern void abort() ;
extern void exit(int status ) ;
extern int raise(int sig ) ;
extern int fprintf(struct _IO_FILE *stream , char const *format , ...) ;
extern int strcmp(char const *a , char const *b ) ;
extern int rand() ;
extern unsigned long strtoul(char const *str , char const *endptr , int base ) ;
void RandomFunc(unsigned int input[1] , unsigned int output[1] ) ;
extern int strncmp(char const *s1 , char const *s2 , unsigned long maxlen ) ;
extern int gettimeofday(struct timeval *tv , void *tz , ...) ;
extern int printf(char const *format , ...) ;
int main(int argc , char *argv[] ) ;
void megaInit(void) ;
extern unsigned long strlen(char const *s ) ;
extern long strtol(char const *str , char const *endptr , int base ) ;
extern unsigned long strnlen(char const *s , unsigned long maxlen ) ;
extern void *memcpy(void *s1 , void const *s2 , unsigned long size ) ;
struct timeval {
long tv_sec ;
long tv_usec ;
};
extern void *malloc(unsigned long size ) ;
extern int scanf(char const *format , ...) ;
void RandomFunc(unsigned int input[1] , unsigned int output[1] )
{
unsigned int state[1] ;
unsigned int local2 ;
unsigned int local1 ;
char copy11 ;
char copy12 ;
{
state[0UL] = (input[0UL] | 51238316UL) >> 3U;
local1 = 0UL;
while (local1 < 0U) {
local2 = 0UL;
while (local2 < 0U) {
if (state[0UL] > (local2 & local1)) {
copy11 = *((char *)(& state[local1]) + 1);
*((char *)(& state[local1]) + 1) = *((char *)(& state[local1]) + 2);
*((char *)(& state[local1]) + 2) = copy11;
copy11 = *((char *)(& state[local1]) + 2);
*((char *)(& state[local1]) + 2) = *((char *)(& state[local1]) + 0);
*((char *)(& state[local1]) + 0) = copy11;
} else {
copy12 = *((char *)(& state[0UL]) + 0);
*((char *)(& state[0UL]) + 0) = *((char *)(& state[0UL]) + 3);
*((char *)(& state[0UL]) + 3) = copy12;
copy12 = *((char *)(& state[0UL]) + 3);
*((char *)(& state[0UL]) + 3) = *((char *)(& state[0UL]) + 0);
*((char *)(& state[0UL]) + 0) = copy12;
}
local2 += 2UL;
}
local1 += 2UL;
}
output[0UL] = state[0UL] | 857470098UL;
}
}
void megaInit(void)
{
{
}
}
int main(int argc , char *argv[] )
{
unsigned int input[1] ;
unsigned int output[1] ;
int randomFuns_i5 ;
unsigned int randomFuns_value6 ;
int randomFuns_main_i7 ;
{
megaInit();
if (argc != 2) {
printf("Call this program with %i arguments\n", 1);
exit(-1);
} else {
}
randomFuns_i5 = 0;
while (randomFuns_i5 < 1) {
randomFuns_value6 = (unsigned int )strtoul(argv[randomFuns_i5 + 1], 0, 10);
input[randomFuns_i5] = randomFuns_value6;
randomFuns_i5 ++;
}
RandomFunc(input, output);
if (output[0] == 863764151U) {
printf("You win!\n");
} else {
}
randomFuns_main_i7 = 0;
while (randomFuns_main_i7 < 1) {
printf("%u\n", output[randomFuns_main_i7]);
randomFuns_main_i7 ++;
}
}
}
|
the_stack_data/111984.c | #include "stdlib.h"
void *memcpy(void *s1, const void *s2, unsigned n)
{
int i;
for (i = 0; i < n; i++)
((char *)s1)[i] = ((char *)s2)[i];
return s1;
}
|
the_stack_data/489.c | /* { dg-options "-O3 -mcpu=v6.00.a -mno-xl-soft-mul" } */
volatile int m1, m2, m3;
volatile long l1, l2;
volatile long long llp;
volatile unsigned int u1, u2, u3;
volatile unsigned long ul1, ul2;
volatile unsigned long long ullp;
int test_mul () {
/* { dg-final { scan-assembler "mul\tr(\[0-9]\|\[1-2]\[0-9]\|3\[0-1]),r(\[0-9]\|\[1-2]\[0-9]\|3\[0-1]),r(\[0-9]\|\[1-2]\[0-9]\|3\[0-1])\[^0-9]" } } */
m1 = m2 * m3 ;
/* { dg-final { scan-assembler "muli\tr(\[0-9]\|\[1-2]\[0-9]\|3\[0-1]),r(\[0-9]\|\[1-2]\[0-9]\|3\[0-1]),(0x\[0-9a-fA-F]+|\[+-]*\[0-9]+)" } } */
m3 = m1 * 1234 ;
/* { dg-final { scan-assembler-not "mulh" } } */
llp = ((long long)l1 * l2);
/* { dg-final { scan-assembler-not "mulhu" } } */
ullp = ((unsigned long long)ul1 * ul2);
/* { dg-final { scan-assembler-not "mulhsu" } } */
llp = ((long long)l1 * ul2);
/* { dg-final { scan-assembler-not "bslli" } } */
m3 = m2 << 25;
/* { dg-final { scan-assembler-not "bsll" } } */
m2 = m1 << m3;
/* { dg-final { scan-assembler-not "bsrai" } } */
m3 = m2 >> 25;
/* { dg-final { scan-assembler-not "bsra" } } */
m2 = m1 >> m3;
/* { dg-final { scan-assembler-not "idiv" } } */
m1 = m2 / m1;
/* { dg-final { scan-assembler-not "idivu" } } */
u1 = u2 / u3;
/* { dg-final { scan-assembler-not "pcmpne" } } */
m3 = (m3 != m1);
/* { dg-final { scan-assembler-not "pcmpeq" } } */
return (m1 == m2);
}
|
the_stack_data/91331.c |
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#ifdef __C64__
#include <conio.h>
#endif
/* apparently we dont trigger the bug when not using absolute addresses? */
#ifdef __C64__
#define TARGETMEM 0x4c8
#define SOURCEMEM 0x702
#elif __SIM6502__
#define TARGETMEM 0xc4c8
#define SOURCEMEM 0xc702
#elif __SIM65C02__
#define TARGETMEM 0xc4c8
#define SOURCEMEM 0xc702
#else
static unsigned char mem[0x10];
#define TARGETMEM &mem[0]
#define SOURCEMEM &mem[8]
#endif
/* do not put at pos. 1, and 1 byte apart - so we can eventually notice
off-by-one errors */
static unsigned char u8w = 3;
static unsigned short u16r = 5;
static unsigned char target[8] = { 0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7 };
static unsigned char source[8] = { 0x8, 0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf };
static unsigned char expect[8] = { 0x0, 0xb, 0xc, 0x3, 0x4, 0x5, 0x6, 0x7 };
static unsigned char i;
static unsigned char err = EXIT_SUCCESS;
void test1(void)
{
((unsigned char*)TARGETMEM)[--u8w] = ((unsigned char*)SOURCEMEM)[--u16r];
}
void dotest(void)
{
memcpy(TARGETMEM, target, 8);
memcpy(SOURCEMEM, source, 8);
test1();
memcpy(target, TARGETMEM, 8);
memcpy(source, SOURCEMEM, 8);
#ifdef __C64__
clrscr();
#endif
printf("source:");
for(i = 0; i < 8; ++i) {
printf("%0x ", source[i]);
}
printf("\n\rtarget:");
for(i = 0; i < 8; ++i) {
printf("%0x ", target[i]);
}
printf("\n\r");
printf("u8w: %d\n\r", u8w);
printf("u16r: %d\n\r", u16r);
}
int main(void)
{
dotest();
dotest();
if (memcmp(target, expect, 8) != 0) {
printf("buffer data error\n\r");
err = EXIT_FAILURE;
}
if (u8w != 1) {
err = EXIT_FAILURE;
}
if (u16r != 3) {
err = EXIT_FAILURE;
}
printf("return: %d\n\r", err);
return err;
}
|
the_stack_data/20449485.c | /* $NetBSD: lfs_debug.c,v 1.16 2002/05/14 20:03:53 perseant Exp $ */
/*-
* Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Konrad E. Schroder <[email protected]>.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation 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 NETBSD FOUNDATION, INC. 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 THE FOUNDATION OR CONTRIBUTORS
* 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.
*/
/*
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University 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 REGENTS 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 THE REGENTS OR CONTRIBUTORS 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.
*
* @(#)lfs_debug.c 8.1 (Berkeley) 6/11/93
*/
#ifdef DEBUG
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: lfs_debug.c,v 1.16 2002/05/14 20:03:53 perseant Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/namei.h>
#include <sys/vnode.h>
#include <sys/mount.h>
#include <sys/buf.h>
#include <ufs/ufs/inode.h>
#include <ufs/lfs/lfs.h>
#include <ufs/lfs/lfs_extern.h>
int lfs_lognum;
struct lfs_log_entry lfs_log[LFS_LOGLENGTH];
int lfs_bwrite_log(struct buf *bp, char *file, int line)
{
struct vop_bwrite_args a;
a.a_desc = VDESC(vop_bwrite);
a.a_bp = bp;
if (!(bp->b_flags & (B_DELWRI | B_GATHERED)))
LFS_ENTER_LOG("write", file, line, bp->b_lblkno, bp->b_flags);
return (VCALL(bp->b_vp, VOFFSET(vop_bwrite), &a));
}
void lfs_dumplog(void)
{
int i;
for (i = lfs_lognum; i != (lfs_lognum - 1) % LFS_LOGLENGTH; i = (i + 1) % LFS_LOGLENGTH)
if (lfs_log[i].file) {
printf("lbn %d %s %lx %d %s\n",
lfs_log[i].block,
lfs_log[i].op,
lfs_log[i].flags,
lfs_log[i].line,
lfs_log[i].file + 56);
}
}
void
lfs_dump_super(struct lfs *lfsp)
{
int i;
printf("%s%x\t%s%x\t%s%d\t%s%d\n",
"magic ", lfsp->lfs_magic,
"version ", lfsp->lfs_version,
"size ", lfsp->lfs_size,
"ssize ", lfsp->lfs_ssize);
printf("%s%d\t%s%d\t%s%d\t%s%d\n",
"dsize ", lfsp->lfs_dsize,
"bsize ", lfsp->lfs_bsize,
"fsize ", lfsp->lfs_fsize,
"frag ", lfsp->lfs_frag);
printf("%s%d\t%s%d\t%s%d\t%s%d\n",
"minfree ", lfsp->lfs_minfree,
"inopb ", lfsp->lfs_inopb,
"ifpb ", lfsp->lfs_ifpb,
"nindir ", lfsp->lfs_nindir);
printf("%s%d\t%s%d\t%s%d\t%s%d\n",
"nseg ", lfsp->lfs_nseg,
"nspf ", lfsp->lfs_nspf,
"cleansz ", lfsp->lfs_cleansz,
"segtabsz ", lfsp->lfs_segtabsz);
printf("%s%x\t%s%d\t%s%lx\t%s%d\n",
"segmask ", lfsp->lfs_segmask,
"segshift ", lfsp->lfs_segshift,
"bmask ", (unsigned long)lfsp->lfs_bmask,
"bshift ", lfsp->lfs_bshift);
printf("%s%lu\t%s%d\t%s%lx\t%s%u\n",
"ffmask ", (unsigned long)lfsp->lfs_ffmask,
"ffshift ", lfsp->lfs_ffshift,
"fbmask ", (unsigned long)lfsp->lfs_fbmask,
"fbshift ", lfsp->lfs_fbshift);
printf("%s%d\t%s%d\t%s%x\t%s%qx\n",
"sushift ", lfsp->lfs_sushift,
"fsbtodb ", lfsp->lfs_fsbtodb,
"cksum ", lfsp->lfs_cksum,
"maxfilesize ", (long long)lfsp->lfs_maxfilesize);
printf("Superblock disk addresses:");
for (i = 0; i < LFS_MAXNUMSB; i++)
printf(" %x", lfsp->lfs_sboffs[i]);
printf("\n");
printf("Checkpoint Info\n");
printf("%s%d\t%s%x\t%s%d\n",
"free ", lfsp->lfs_free,
"idaddr ", lfsp->lfs_idaddr,
"ifile ", lfsp->lfs_ifile);
printf("%s%x\t%s%d\t%s%x\t%s%x\t%s%x\t%s%x\n",
"bfree ", lfsp->lfs_bfree,
"nfiles ", lfsp->lfs_nfiles,
"lastseg ", lfsp->lfs_lastseg,
"nextseg ", lfsp->lfs_nextseg,
"curseg ", lfsp->lfs_curseg,
"offset ", lfsp->lfs_offset);
printf("tstamp %llx\n", (long long)lfsp->lfs_tstamp);
}
void
lfs_dump_dinode(struct dinode *dip)
{
int i;
printf("%s%u\t%s%d\t%s%u\t%s%u\t%s%qu\t%s%d\n",
"mode ", dip->di_mode,
"nlink ", dip->di_nlink,
"uid ", dip->di_uid,
"gid ", dip->di_gid,
"size ", (long long)dip->di_size,
"blocks ", dip->di_blocks);
printf("inum %d\n", dip->di_inumber);
printf("Direct Addresses\n");
for (i = 0; i < NDADDR; i++) {
printf("\t%x", dip->di_db[i]);
if ((i % 6) == 5)
printf("\n");
}
for (i = 0; i < NIADDR; i++)
printf("\t%x", dip->di_ib[i]);
printf("\n");
}
void
lfs_check_segsum(struct lfs *fs, struct segment *sp, char *file, int line)
{
int actual, i;
#if 0
static int offset;
#endif
if ((actual = i = 1) == 1)
return; /* XXXX not checking this anymore, really */
if (sp->sum_bytes_left >= sizeof(FINFO) - sizeof(ufs_daddr_t)
&& sp->fip->fi_nblocks > 512) {
printf("%s:%d: fi_nblocks = %d\n",file,line,sp->fip->fi_nblocks);
#ifdef DDB
Debugger();
#endif
}
if (sp->sum_bytes_left > 484) {
printf("%s:%d: bad value (%d = -%d) for sum_bytes_left\n",
file, line, sp->sum_bytes_left, fs->lfs_sumsize-sp->sum_bytes_left);
panic("too many bytes");
}
actual = fs->lfs_sumsize
/* amount taken up by FINFOs */
- ((char *)&(sp->fip->fi_blocks[sp->fip->fi_nblocks]) - (char *)(sp->segsum))
/* amount taken up by inode blocks */
- sizeof(ufs_daddr_t)*((sp->ninodes+INOPB(fs)-1) / INOPB(fs));
#if 0
if (actual - sp->sum_bytes_left < offset)
{
printf("%s:%d: offset changed %d -> %d\n", file, line,
offset, actual-sp->sum_bytes_left);
offset = actual - sp->sum_bytes_left;
/* panic("byte mismatch"); */
}
#endif
#if 0
if (actual != sp->sum_bytes_left)
printf("%s:%d: warning: segsum miscalc at %d (-%d => %d)\n",
file, line, sp->sum_bytes_left,
fs->lfs_sumsize-sp->sum_bytes_left,
actual);
#endif
if (sp->sum_bytes_left > 0
&& ((char *)(sp->segsum))[fs->lfs_sumsize
- sizeof(ufs_daddr_t) * ((sp->ninodes+INOPB(fs)-1) / INOPB(fs))
- sp->sum_bytes_left] != '\0') {
printf("%s:%d: warning: segsum overwrite at %d (-%d => %d)\n",
file, line, sp->sum_bytes_left,
fs->lfs_sumsize-sp->sum_bytes_left,
actual);
#ifdef DDB
Debugger();
#endif
}
}
void
lfs_check_bpp(struct lfs *fs, struct segment *sp, char *file, int line)
{
daddr_t blkno;
struct buf **bpp;
struct vnode *devvp;
devvp = VTOI(fs->lfs_ivnode)->i_devvp;
blkno = (*(sp->bpp))->b_blkno;
for (bpp = sp->bpp; bpp < sp->cbpp; bpp++) {
if ((*bpp)->b_blkno != blkno) {
if ((*bpp)->b_vp == devvp) {
printf("Oops, would misplace raw block 0x%x at "
"0x%x\n",
(*bpp)->b_blkno,
blkno);
} else {
printf("%s:%d: misplace ino %d lbn %d at "
"0x%x instead of 0x%x\n",
file, line,
VTOI((*bpp)->b_vp)->i_number, (*bpp)->b_lblkno,
blkno,
(*bpp)->b_blkno);
}
}
blkno += fsbtodb(fs, btofsb(fs, (*bpp)->b_bcount));
}
}
#endif /* DEBUG */
|
the_stack_data/56131.c | /* Author: AKHILESH SANTOSHWAR */
#include<stdio.h>
int main(){
int i;
float avg = 0, sum = 0, inp[10] = {1,12,15,5,9,37,21,78,22,34};
for(i = 0; i < 10; i++){
sum = sum + inp[i];
}
avg = sum / 10;
printf("Average: %.4f", avg);
printf("\n");
return 0;
}
|
the_stack_data/71677.c | unsigned char mideng_txt[] = {
0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x43, 0x00, 0x68,
0x00, 0x72, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x69, 0x00, 0x63, 0x00, 0x6c,
0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6f, 0x00, 0x66, 0x00, 0x20,
0x00, 0x45, 0x00, 0x6e, 0x00, 0x67, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x6e,
0x00, 0x64, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x4d, 0x00, 0x69, 0x00, 0x64,
0x00, 0x64, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x20, 0x00, 0x45, 0x00, 0x6e,
0x00, 0x67, 0x00, 0x6c, 0x00, 0x69, 0x00, 0x73, 0x00, 0x68, 0x00, 0x2c,
0x00, 0x20, 0x00, 0x57, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20,
0x00, 0x4d, 0x00, 0x69, 0x00, 0x64, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x6e,
0x00, 0x64, 0x00, 0x73, 0x00, 0x2e, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x41,
0x00, 0x6e, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x6f,
0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x77, 0x00, 0x65, 0x00, 0x73,
0x00, 0x20, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x6c, 0x00, 0x65,
0x00, 0x6f, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x2c, 0x00, 0x20,
0x00, 0x4c, 0x00, 0x61, 0x02, 0x1d, 0x00, 0x61, 0x00, 0x6d, 0x00, 0x6f,
0x00, 0x6e, 0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20,
0x00, 0x69, 0x00, 0x68, 0x00, 0x6f, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6e,
0x00, 0x0a, 0x00, 0x48, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x65,
0x00, 0x73, 0x00, 0x20, 0x00, 0x4c, 0x00, 0x65, 0x00, 0x6f, 0x00, 0x76,
0x00, 0x65, 0x00, 0x6e, 0x00, 0x61, 0x00, 0xf0, 0x00, 0x65, 0x00, 0x73,
0x00, 0x20, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x65, 0x00, 0x20,
0x00, 0x2d, 0x00, 0x2d, 0x00, 0x20, 0x00, 0x6c, 0x00, 0x69, 0x00, 0xf0,
0x00, 0x65, 0x00, 0x20, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6d, 0x00, 0x20,
0x00, 0x62, 0x00, 0x65, 0x00, 0x20, 0x00, 0x44, 0x00, 0x72, 0x00, 0x69,
0x00, 0x68, 0x00, 0x74, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x2e, 0x00, 0x0a,
0x00, 0x48, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x6f, 0x00, 0x6e,
0x00, 0x65, 0x00, 0x64, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74,
0x00, 0x20, 0x00, 0x45, 0x00, 0x72, 0x00, 0x6e, 0x00, 0x6c, 0x00, 0x65,
0x02, 0x1d, 0x00, 0x65, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x20,
0x00, 0xe6, 0x00, 0xf0, 0x00, 0x65, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x6e,
0x00, 0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63,
0x00, 0x68, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x68,
0x00, 0x65, 0x00, 0x6e, 0x00, 0x2c, 0x00, 0x0a, 0x00, 0x55, 0x00, 0x70,
0x00, 0x70, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x53, 0x00, 0x65,
0x00, 0x76, 0x00, 0x61, 0x00, 0x72, 0x00, 0x6e, 0x00, 0x65, 0x00, 0x20,
0x00, 0x73, 0x00, 0x74, 0x00, 0x61, 0x00, 0xfe, 0x00, 0x65, 0x00, 0x2c,
0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6c, 0x00, 0x20, 0x00, 0xfe,
0x00, 0x61, 0x00, 0x72, 0x00, 0x20, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6d,
0x00, 0x20, 0x00, 0xfe, 0x00, 0x75, 0x00, 0x68, 0x00, 0x74, 0x00, 0x65,
0x00, 0x2c, 0x00, 0x0a, 0x00, 0x4f, 0x00, 0x6e, 0x00, 0x66, 0x00, 0x65,
0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x52, 0x00, 0x61, 0x00, 0x64,
0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x65,
0x00, 0x2c, 0x00, 0x20, 0x00, 0xfe, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20,
0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x62, 0x00, 0x6f, 0x00, 0x63,
0x00, 0x6b, 0x00, 0x20, 0x00, 0x72, 0x00, 0x61, 0x00, 0x64, 0x00, 0x64,
0x00, 0x65, 0x00, 0x2e
};
unsigned int mideng_txt_len = 544;
|
the_stack_data/100139708.c | // RUN: %clang_cc1 -x cuda -std=c++11 -DCUDA %s
// RUN: %clang_cc1 -x cl -DOPENCL %s
// RUN: %clang_cc1 -x cl -cl-std=cl -DOPENCL %s
// RUN: %clang_cc1 -x cl -cl-std=cl1.1 -DOPENCL %s
// RUN: %clang_cc1 -x cl -cl-std=cl1.2 -DOPENCL %s
// RUN: %clang_cc1 -x cl -cl-std=cl2.0 -DOPENCL %s
// RUN: %clang_cc1 -x cl -cl-std=clc++ -DOPENCL %s
// RUN: %clang_cc1 -x cl -cl-std=CL -DOPENCL %s
// RUN: %clang_cc1 -x cl -cl-std=CL1.1 -DOPENCL %s
// RUN: %clang_cc1 -x cl -cl-std=CL1.2 -DOPENCL %s
// RUN: %clang_cc1 -x cl -cl-std=CL2.0 -DOPENCL %s
// RUN: %clang_cc1 -x cl -cl-std=CLC++ -DOPENCL %s
// RUN: not %clang_cc1 -x cl -std=c99 -DOPENCL %s 2>&1 | FileCheck --check-prefix=CHECK-C99 %s
// RUN: not %clang_cc1 -x cl -cl-std=invalid -DOPENCL %s 2>&1 | FileCheck --check-prefix=CHECK-INVALID %s
// CHECK-C99: error: invalid argument '-std=c99' not allowed with 'OpenCL'
// CHECK-INVALID: error: invalid value 'invalid' in '-cl-std=invalid'
#if defined(CUDA)
__attribute__((device)) void f_device();
#elif defined(OPENCL)
kernel void func(void);
#endif
|
the_stack_data/134391.c | #include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <time.h>
#include <ncurses.h>
#include <unistd.h>
#include <pthread.h>
#define GFX_WIDTH 64
#define GFX_HEIGHT 32
#define LOG_LINES_MAX 18
#define LOG_LINE_LEN GFX_WIDTH
#define DEBUGGER_LINES_MAX ((GFX_HEIGHT) + 1 + 1 + (LOG_LINES_MAX))
#define DEBUGGER_LINE_LEN 50
//game window
static WINDOW *win_game;
//log window
static WINDOW *win_log;
//debugging window
static WINDOW *win_debugger;
//thread to count down the delay timer and sound timer at 60Hz
static pthread_t thread_timers;
//thread to capture the keyboard
static pthread_t thread_keys;
//index register
static uint16_t I;
//program counter
static uint16_t pc;
//current opcode being processed
static uint16_t opcode;
//stack pointer
static uint8_t sp;
//delay timer and its lock
static uint8_t dt;
static pthread_rwlock_t dt_lock;
//sound timer and its lock
static uint8_t st;
static pthread_rwlock_t st_lock;
static unsigned char memory[4096];
//15 CPU registers, with the 16th one used for the carry flag
static unsigned char V[16];
static uint16_t stack[16];
//represents what's currently being displayed
static unsigned char gfx[GFX_WIDTH * GFX_HEIGHT];
//currently pressed keys
static unsigned char key[16];
//maps to
// Keypad
// +-+-+-+-+
// |1|2|3|C|
// +-+-+-+-+
// |4|5|6|D|
// +-+-+-+-+
// |7|8|9|E|
// +-+-+-+-+
// |A|0|B|F|
// +-+-+-+-+
static unsigned char key_map[16] = {
'1', '2', '3', '4',
'q', 'w', 'e', 'r',
'a', 's', 'd', 'f',
'z', 'x', 'c', 'v'
};
static unsigned char font_set[] = {
0xF0, 0x90, 0x90, 0x90, 0xF0, //0
0x20, 0x60, 0x20, 0x20, 0x70, //1
0xF0, 0x10, 0xF0, 0x80, 0xF0, //2
0xF0, 0x10, 0xF0, 0x10, 0xF0, //3
0x90, 0x90, 0xF0, 0x10, 0x10, //4
0xF0, 0x80, 0xF0, 0x10, 0xF0, //5
0xF0, 0x80, 0xF0, 0x90, 0xF0, //6
0xF0, 0x10, 0x20, 0x40, 0x40, //7
0xF0, 0x90, 0xF0, 0x90, 0xF0, //8
0xF0, 0x90, 0xF0, 0x10, 0xF0, //9
0xF0, 0x90, 0xF0, 0x90, 0x90, //A
0xE0, 0x90, 0xE0, 0x90, 0xE0, //B
0xF0, 0x80, 0x80, 0x80, 0xF0, //C
0xE0, 0x90, 0x90, 0x90, 0xE0, //D
0xF0, 0x80, 0xF0, 0x80, 0xF0, //E
0xF0, 0x80, 0xF0, 0x80, 0x80 //F
};
static bool draw_game;
static bool draw_log;
static char log_lines[LOG_LINES_MAX][LOG_LINE_LEN + 1];
static bool looping = true;
static bool debugger_stepping = false;
//frames per second
static const char *opt_path = NULL;
static int opt_fps = 120;
static int opt_color = COLOR_GREEN;
static uint64_t counter_frames;
static time_t program_start;
static uint64_t
time_ms() {
struct timespec ts;
clock_gettime(CLOCK_MONOTONIC_RAW, &ts);
return ts.tv_sec * 1000 + ts.tv_nsec / 1000000;
}
static void
log_write(const char *fmt, ...) {
va_list ap;
int i;
//shift lines up to make room for our new line
for (i = LOG_LINES_MAX - 1; i > 0; i--) {
memcpy(log_lines[i], log_lines[i - 1], LOG_LINE_LEN + 1);
}
va_start(ap, fmt);
vsnprintf(log_lines[0], LOG_LINE_LEN + 1, fmt, ap);
va_end(ap);
draw_log = true;
}
static void
initialize() {
memset(memory, 0, sizeof(memory));
memset(V, 0, sizeof(V));
memset(stack, 0, sizeof(stack));
memset(gfx, 0, sizeof(gfx));
memset(key, 0, sizeof(key));
//program counter starts 512 bytes into memory
pc = 0x200;
opcode = 0;
I = 0;
sp = 0;
dt = 0;
st = 0;
draw_game = false;
draw_log = false;
//load the font set into memory
memcpy(memory, font_set, sizeof(font_set));
win_game = newwin(GFX_HEIGHT + 2, GFX_WIDTH + 2, 0, 0);
win_log = newwin(LOG_LINES_MAX + 2, LOG_LINE_LEN + 2, GFX_HEIGHT + 2, 0);
win_debugger = newwin(DEBUGGER_LINES_MAX + 2, DEBUGGER_LINE_LEN + 2, 0, GFX_WIDTH + 2);
//refresh the stdscr now, since we'll be reading input from it and getch() will cause a refresh() if we don't do it here
wrefresh(stdscr);
box(win_game, ACS_VLINE, ACS_HLINE);
box(win_log, ACS_VLINE, ACS_HLINE);
box(win_debugger, ACS_VLINE, ACS_HLINE);
wrefresh(win_game);
wrefresh(win_log);
wrefresh(win_debugger);
nodelay(stdscr, TRUE);
keypad(stdscr, TRUE);
nodelay(win_game, TRUE);
keypad(win_game, TRUE);
keypad(win_debugger, TRUE);
memset(log_lines, 0, sizeof(log_lines));
pthread_rwlock_init(&dt_lock, NULL);
pthread_rwlock_init(&st_lock, NULL);
}
static bool
load() {
FILE *f;
size_t count;
log_write("Loading %s", opt_path);
f = fopen(opt_path, "rb");
if (f == NULL) {
log_write("%s", strerror(errno));
return false;
}
//read the ROM starting at 512 bytes into memory
count = fread(memory + 512, sizeof(unsigned char), sizeof(memory) - 512, f);
fclose(f);
if (count < sizeof(opcode)) {
log_write("Invalid ROM");
return false;
}
return true;
}
static void
draw_game_win() {
int x, y;
for (y = 0; y < GFX_HEIGHT; y++) {
for (x = 0; x < GFX_WIDTH; x++) {
wmove(win_game, y + 1, x + 1);
if (gfx[x + (y * 64)]) {
wattron(win_game, A_REVERSE | COLOR_PAIR(1));
waddch(win_game, ' ');
wattroff(win_game, A_REVERSE | COLOR_PAIR(1));
}
else {
waddch(win_game, ' ');
}
}
}
wrefresh(win_game);
}
static void
draw_log_win() {
int i, j, c;
bool done;
//we need to touch every coordinate in the window
//if we're done drawing the string (reached NULL), then we need to fill
//the remainder of the line with blank spaces so we overwrite any previous
//and longer string that might have been there
for (i = 0; i < LOG_LINES_MAX; i++) {
done = false;
for (j = 0; j < LOG_LINE_LEN; j++) {
if (done) {
c = ' ';
}
else {
if (log_lines[i][j] == '\0') {
done = true;
c = ' ';
}
else {
c = log_lines[i][j];
}
}
mvwaddch(win_log, LOG_LINES_MAX - i, j + 1, c);
}
}
wrefresh(win_log);
}
static void
draw_debugger_win(const char *state) {
int row, col, c;
time_t t;
mvwprintw(win_debugger, 1, 1, "State: %s", state);
mvwprintw(win_debugger, 3, 1, "Memory");
mvwprintw(win_debugger, 4, 1, "PC: %u I: %u", pc, I);
mvwprintw(win_debugger, 5, 1, "Opcode: %04X", opcode);
for (col = 1; col < DEBUGGER_LINE_LEN - 1; col++) {
mvwaddch(win_debugger, 6, col, ' ');
}
//TODO: add the rest of the opcodes
switch (opcode & 0xF000) {
case 0x2000:
mvwprintw(win_debugger, 6, 1, "Call subroutine at NNN");
break;
case 0x3000:
mvwprintw(win_debugger, 6, 1, "Skip next if VX == NN");
break;
case 0xF000:
switch (opcode & 0x00FF) {
case 0x0055:
mvwprintw(win_debugger, 6, 1, "Copy {V0,VX} to {memory[I],memory[I + X]}");
break;
case 0x0065:
mvwprintw(win_debugger, 6, 1, "Copy {memory[I],memory[I + X]} to {V0,VX}");
break;
}
break;
}
row = 8;
mvwprintw(win_debugger, row, 1, "Registers");
mvwprintw(win_debugger, row + 1, 1, "V0: 0x%02X", V[0]);
mvwprintw(win_debugger, row + 1, 15, "V1: 0x%02X", V[1]);
mvwprintw(win_debugger, row + 1, 30, "V2: 0x%02X", V[2]);
mvwprintw(win_debugger, row + 2, 1, "V3: 0x%02X", V[3]);
mvwprintw(win_debugger, row + 2, 15, "V4: 0x%02X", V[4]);
mvwprintw(win_debugger, row + 2, 30, "V5: 0x%02X", V[5]);
mvwprintw(win_debugger, row + 3, 1, "V6: 0x%02X", V[6]);
mvwprintw(win_debugger, row + 3, 15, "V7: 0x%02X", V[7]);
mvwprintw(win_debugger, row + 3, 30, "V8: 0x%02X", V[8]);
mvwprintw(win_debugger, row + 4, 1, "V9: 0x%02X", V[9]);
mvwprintw(win_debugger, row + 4, 15, "VA: 0x%02X", V[10]);
mvwprintw(win_debugger, row + 4, 30, "VB: 0x%02X", V[11]);
mvwprintw(win_debugger, row + 5, 1, "VC: 0x%02X", V[12]);
mvwprintw(win_debugger, row + 5, 15, "VD: 0x%02X", V[13]);
mvwprintw(win_debugger, row + 5, 30, "VE: 0x%02X", V[14]);
mvwprintw(win_debugger, row + 6, 1, "VF: 0x%02X", V[15]);
row += 8;
mvwprintw(win_debugger, row, 1, "Stack");
mvwprintw(win_debugger, row + 1, 1, "SP: %u", sp);
mvwprintw(win_debugger, row + 2, 1, "S0: 0x%04X", stack[0]);
mvwprintw(win_debugger, row + 2, 15, "S1: 0x%04X", stack[1]);
mvwprintw(win_debugger, row + 2, 30, "S2: 0x%04X", stack[2]);
mvwprintw(win_debugger, row + 3, 1, "S3: 0x%04X", stack[3]);
mvwprintw(win_debugger, row + 3, 15, "S4: 0x%04X", stack[4]);
mvwprintw(win_debugger, row + 3, 30, "S5: 0x%04X", stack[5]);
mvwprintw(win_debugger, row + 4, 1, "S6: 0x%04X", stack[6]);
mvwprintw(win_debugger, row + 4, 15, "S7: 0x%04X", stack[7]);
mvwprintw(win_debugger, row + 4, 30, "S8: 0x%04X", stack[8]);
mvwprintw(win_debugger, row + 5, 1, "S9: 0x%04X", stack[9]);
mvwprintw(win_debugger, row + 5, 15, "SA: 0x%04X", stack[10]);
mvwprintw(win_debugger, row + 5, 30, "SB: 0x%04X", stack[11]);
mvwprintw(win_debugger, row + 6, 1, "SC: 0x%04X", stack[12]);
mvwprintw(win_debugger, row + 6, 15, "SD: 0x%04X", stack[13]);
mvwprintw(win_debugger, row + 6, 30, "SE: 0x%04X", stack[14]);
mvwprintw(win_debugger, row + 7, 1, "SF: 0x%04X", stack[15]);
row += 9;
pthread_rwlock_rdlock(&dt_lock);
mvwprintw(win_debugger, row, 1, "DT: %u", dt);
pthread_rwlock_unlock(&dt_lock);
mvwprintw(win_debugger, row + 1, 1, "ST: %u", st);
row += 3;
t = time(NULL) - program_start;
mvwprintw(win_debugger, row, 1, "Target FPS: %d", opt_fps);
if (t > 0) {
mvwprintw(win_debugger, row + 1, 1, "Actual FPS: %ld", counter_frames / t);
}
wrefresh(win_debugger);
if (debugger_stepping) {
mvwprintw(win_debugger, row + 3, 1, "Press enter to step.");
while (true) {
c = wgetch(win_debugger);
if (c == 10) {
break;
}
}
}
}
static bool
cycle() {
uint16_t x, xx, y, yy, height, pixel;
bool press;
int i;
opcode = memory[pc] << 8 | memory[pc + 1];
//temporary: was using this to debug a certain opcode
if ((opcode & 0xF000) == 0xF000 && (opcode & 0x00FF) == 0x0055) {
//debugger_stepping = true;
}
draw_debugger_win("Before Handler");
switch (opcode & 0xF000) {
case 0x0000:
switch (opcode & 0x00FF) {
case 0x00E0:
//00E0: Clear the screen
memset(gfx, 0, sizeof(gfx));
draw_game = true;
pc += sizeof(opcode);
break;
case 0x00EE:
//00EE: Return from a subroutine
pc = stack[--sp] + sizeof(opcode);
break;
default:
if (opcode == 0x0000) {
//0NNN: Ignore this since it's ignored by most interpreters now
break;
}
log_write("Unhandled 0x0000 opcode 0x%04X", opcode);
return false;
}
break;
case 0x1000:
//1NNN: Jump to address NNN
pc = opcode & 0x0FFF;
break;
case 0x2000:
//2NNN: Execute subroutine starting at address NNN
stack[sp++] = pc;
pc = opcode & 0x0FFF;
break;
case 0x3000:
//3XNN: Skip the following instruction if the value of register VX equals NN
pc += sizeof(opcode);
if (V[(opcode & 0x0F00) >> 8] == (opcode & 0x00FF)) {
pc += sizeof(opcode);
}
break;
case 0x4000:
//4XNN: Skip the following instruction if the value of register VX is not equal to NN
pc += sizeof(opcode);
if (V[(opcode & 0x0F00) >> 8] != (opcode & 0x00FF)) {
pc += sizeof(opcode);
}
break;
case 0x5000:
//Skip the following instruction if the value of register VX is equal to the value of register VY
pc += sizeof(opcode);
if (V[(opcode & 0x0F00) >> 8] == V[(opcode & 0x00F0) >> 4]) {
pc += sizeof(opcode);
}
break;
case 0x6000:
//6XNN: Sets V[X] to NN
V[(opcode & 0x0F00) >> 8] = opcode & 0x00FF;
pc += sizeof(opcode);
break;
case 0x7000:
//7XNN: Adds NN to V[X]
V[(opcode & 0x0F00) >> 8] += opcode & 0x00FF;
pc += sizeof(opcode);
break;
case 0x8000:
x = (opcode & 0x0F00) >> 8;
y = (opcode & 0x00F0) >> 4;
switch (opcode & 0x000F) {
case 0x0000:
//8XY0 - Sets VX to the value of VY.
V[x] = V[y];
pc += sizeof(opcode);
break;
case 0x0001:
//8XY1 - Sets VX to (VX OR VY).
V[x] |= V[y];
pc += sizeof(opcode);
break;
case 0x0002:
//8XY2 - Sets VX to (VX AND VY).
V[x] &= V[y];
pc += sizeof(opcode);
break;
case 0x0003:
// 8XY3 - Sets VX to (VX XOR VY).
V[x] ^= V[y];
pc += sizeof(opcode);
break;
case 0x0004:
//8XY4 - Adds VY to VX. VF is set to 1 when there's a carry, and to 0 when there isn't.
V[x] += V[y];
if(V[y] > (0xFF - V[x])) {
V[0xF] = 1;
}
else {
V[0xF] = 0;
}
pc += sizeof(opcode);
break;
case 0x0005:
// 8XY5 - VY is subtracted from VX. VF is set to 0 when there's a borrow, and 1 when there isn't.
if(V[y] > V[x]) {
V[0xF] = 0;
}
else {
V[0xF] = 1;
}
V[x] -= V[y];
pc += sizeof(opcode);
break;
case 0x0006:
// 0x8XY6 - Shifts VX right by one. VF is set to the value of the least significant bit of VX before the shift.
V[0xF] = V[x] & 0x1;
V[x] >>= 1;
pc += sizeof(opcode);
break;
case 0x0007:
// 0x8XY7: Sets VX to VY minus VX. VF is set to 0 when there's a borrow, and 1 when there isn't.
if(V[x] > V[y]) {
V[0xF] = 0;
}
else {
V[0xF] = 1;
}
V[x] = V[y] - V[x];
pc += sizeof(opcode);
break;
case 0x000E:
// 0x8XYE: Shifts VX left by one. VF is set to the value of
// the most significant bit of VX before the shift.
V[0xF] = V[x] >> 7;
V[(opcode & 0x0F00) >> 8] <<= 1;
pc += sizeof(opcode);
break;
default:
log_write("Unhandled 0x8000 opcode 0x04%X", opcode);
return false;
}
break;
case 0x9000:
//9XY0: Skip the following instruction if the value of register VX is not equal to the value of register VY
pc += sizeof(opcode);
if (V[(opcode & 0x0F00) >> 8] != V[(opcode & 0x00F0) >> 4]) {
pc += sizeof(opcode);
}
break;
case 0xA000:
//ANNN: Sets I to the address NNN
I = opcode & 0x0FFF;
pc += sizeof(opcode);
break;
case 0xB000:
//BNNN: Jumps to NNN + V0
pc = (opcode & 0x0FFF) + V[0];
break;
case 0xC000:
//CXNN: Sets VX to a random number masked by NN.
V[(opcode & 0x0F00) >> 8] = (rand() % (0xFF + 1)) & (opcode & 0x0FF);
pc += sizeof(opcode);
break;
case 0xD000:
//DYXN: Draws a sprite at coordinate (V[X],V[Y]) that has a width of 8 pixels and a height of N pixels
x = V[(opcode & 0x0F00) >> 8];
y = V[(opcode & 0x00F0) >> 4];
height = opcode & 0x000F;
V[0xF] = 0;
for (yy = 0; yy < height; yy++) {
pixel = memory[I + yy];
for (xx = 0; xx < 8; xx++) {
if ((pixel & (0x80 >> xx)) != 0) {
if (gfx[x + xx + ((y + yy) * 64)] == 1) {
V[0xF] = 1;
}
gfx[x + xx + ((y + yy) * 64)] ^= 1;
}
}
}
draw_game = true;
pc += sizeof(opcode);
break;
case 0xE000:
//EX..
x = (opcode & 0x0F00) >> 8;
switch (opcode & 0x00FF) {
case 0x009E:
//EX9E: Skips the next instruction if the key stored in VX is pressed
pc += sizeof(opcode);
if (key[V[x]] != 0) {
pc += sizeof(opcode);
}
break;
case 0x00A1:
//EXA1: Skips the next instruction if the key stored in VX is not pressed
pc += sizeof(opcode);
if (key[V[x]] == 0) {
pc += sizeof(opcode);
}
break;
default:
log_write("Unhandled 0xE000 opcode 0x%04X", opcode);
return false;
}
break;
case 0xF000:
//FX..
x = (opcode & 0x0F00) >> 8;
switch (opcode & 0x00FF) {
case 0x0007:
//FX07: Sets V[X] to the value of the delay timer
pthread_rwlock_rdlock(&dt_lock);
V[x] = dt;
pthread_rwlock_unlock(&dt_lock);
pc += sizeof(opcode);
break;
case 0x000A:
//FX0A: Key press awaited, stored in V[X]
press = false;
for (i = 0; i < 16 && !press; i++) {
if (key[i] != 0) {
V[x] = i;
press = true;
}
}
if (press) {
pc += sizeof(opcode);
}
break;
case 0x0015:
//FX15: Sets the delay timer to V[X]
pthread_rwlock_wrlock(&dt_lock);
dt = V[x];
pthread_rwlock_unlock(&dt_lock);
pc += sizeof(opcode);
break;
case 0x0018:
//FX18: Sets the sound timer to V[X]
pthread_rwlock_wrlock(&st_lock);
st = V[x];
pthread_rwlock_unlock(&st_lock);
pc += sizeof(opcode);
break;
case 0x001E:
//FX1E: V[F] is set to 1 when there's an overflow, otherwise 0
if (I + V[x] > 0xFFF) {
V[0xF] = 1;
}
else {
V[0xF] = 0;
}
I += V[x];
pc += sizeof(opcode);
break;
case 0x0029:
//FX29: Sets I to the location of the sprite for the character in V[X]. Characters 0-F are represented by a 4x5 font
I = V[x] * 0x5;
pc += sizeof(opcode);
break;
case 0x0033:
//FX33: Stores the binary encoded decimal representation of V[X] at the addresses I, I+1, I+2
memory[I] = V[x] / 100;
memory[I + 1] = (V[x] / 10) % 10;
memory[I + 2] = V[x] % 10;
pc += sizeof(opcode);
break;
case 0x0055:
//FX55: Stores V[0] - V[X] in memory starting at address I
for (i = 0; i <= x; i++) {
memory[I + i] = V[i];
}
I += x + 1;
pc += sizeof(opcode);
break;
case 0x0065:
//FX65:
for (i = 0; i <= x; i++) {
V[i] = memory[I + i];
}
I += x + 1;
pc += sizeof(opcode);
break;
default:
log_write("Unhandled 0xF000 opcode 0x%04X", opcode);
return false;
}
break;
default:
log_write("Unhandled opcode 0x04%X", opcode);
return false;
}
draw_debugger_win("After Handler");
return true;
}
//these timers always count at 60Hz
static void *
handle_timers(void *ptr) {
uint64_t frame_start, diff;
double ms_per_frame;
bool do_beep;
ms_per_frame = 1000.0 / 60.0;
while (looping) {
frame_start = time_ms();
pthread_rwlock_wrlock(&dt_lock);
if (dt > 0) {
--dt;
}
pthread_rwlock_unlock(&dt_lock);
do_beep = false;
pthread_rwlock_wrlock(&st_lock);
if (st > 0) {
if (st == 1) {
do_beep = true;
}
--st;
}
pthread_rwlock_unlock(&st_lock);
if (do_beep) {
beep();
}
diff = time_ms() - frame_start;
if (diff < ms_per_frame) {
usleep(1000 * (ms_per_frame - diff));
}
}
return NULL;
}
//ncurses doesn't have good keyboard support so our keyboard handling is going to
//be a little slow to respond
//simulate keyup and keydown
//keyup occurs after 100ms of it not being down
static void *
handle_keyboard(void *ptr) {
uint64_t timers[16], now;
int i, c;
memset(timers, 0, sizeof(timers));
while (looping) {
while ((c = wgetch(stdscr)) != ERR) {
for (i = 0; i < 16; i++) {
if (c == key_map[i]) {
key[i] = 1;
timers[i] = time_ms() + 100;
break;
}
}
}
now = time_ms();
for (i = 0; i < 16; i++) {
if (timers[i] > 0 && now >= timers[i]) {
key[i] = 0;
timers[i] = 0;
}
}
usleep(1000 * 1);
}
return NULL;
}
static void
usage(const char *fmt, ...) {
va_list ap;
if (fmt != NULL) {
va_start(ap, fmt);
vprintf(fmt, ap);
va_end(ap);
fputc('\n', stdout);
}
puts("Usage: chip8 [options] <rom path>");
puts("Options:");
puts(" -f <fps> Set the frames per second of the CPU. Certain games run better with");
puts(" higher values. The default is 120.");
puts(" -c <color> Sets the color of the pixels. The default is green.");
puts(" Valid colors: red, green, blue, yellow, magenta, cyan, white.");
}
static bool
parse_args(int argc, char **argv) {
int i;
for (i = 1; i < argc; i++) {
if (strcmp(argv[i], "-f") == 0 && i + 1 < argc) {
opt_fps = atoi(argv[++i]);
if (opt_fps < 60) {
usage("FPS cannot be lower than 60");
return false;
}
}
else if (strcmp(argv[i], "-c") == 0 && i + 1 < argc) {
++i;
if (strcmp(argv[i], "red") == 0) {
opt_color = COLOR_RED;
}
else if (strcmp(argv[i], "green") == 0) {
opt_color = COLOR_GREEN;
}
else if (strcmp(argv[i], "blue") == 0) {
opt_color = COLOR_BLUE;
}
else if (strcmp(argv[i], "yellow") == 0) {
opt_color = COLOR_YELLOW;
}
else if (strcmp(argv[i], "magenta") == 0) {
opt_color = COLOR_MAGENTA;
}
else if (strcmp(argv[i], "cyan") == 0) {
opt_color = COLOR_CYAN;
}
else if (strcmp(argv[i], "white") == 0) {
opt_color = COLOR_WHITE;
}
else {
usage("Invalid color value");
return false;
}
}
else {
opt_path = argv[i];
break;
}
}
if (opt_path == NULL) {
usage("No ROM path given");
return false;
}
return true;
}
int
main(int argc, char **argv) {
uint64_t frame_start, diff;
bool success = true;
double ms_per_frame;
if (!parse_args(argc, argv)) {
return 1;
}
srand(time(NULL));
initscr();
noecho();
curs_set(0);
start_color();
init_pair(1, opt_color, opt_color);
initialize();
success = load();
if (success) {
pthread_create(&thread_timers, NULL, handle_timers, NULL);
pthread_create(&thread_keys, NULL, handle_keyboard, NULL);
}
ms_per_frame = 1000.0 / (double)opt_fps;
program_start = time(NULL);
while (success && looping) {
frame_start = time_ms();
success = cycle();
if (draw_game) {
draw_game_win();
draw_game = false;
}
if (!success) {
log_write("Press any key to quit");
}
if (draw_log) {
draw_log_win();
draw_log = false;
}
if (!success) {
break;
}
diff = time_ms() - frame_start;
if (diff < ms_per_frame) {
usleep(1000 * (ms_per_frame - diff));
}
++counter_frames;
}
looping = false;
if (!success) {
draw_log_win();
fgetc(stdin);
}
pthread_join(thread_timers, NULL);
pthread_join(thread_keys, NULL);
pthread_rwlock_destroy(&dt_lock);
pthread_rwlock_destroy(&st_lock);
delwin(win_game);
delwin(win_log);
delwin(win_debugger);
endwin();
return success ? 0 : 1;
}
|
the_stack_data/135019.c | #include<stdio.h>
int is_zs(int);
int main()
{
int a,i,ans;
scanf("%d",&a);
for(i=a+1;!is_zs(i);i++);
printf("%d",i);
return 0;
}
int is_zs(int x){
int i;
for(i=x-1;x%i!=0;i--);
if(i==1) return 1;
return 0;
} |
the_stack_data/218892930.c | #include <stdio.h>
#include <stdlib.h>
#define size 20
int main()
{
int arr[size], num, i, n, found = 0, pos = -1;
printf("\n Enter the number of elements in the array : ");
scanf("%d", &n);
printf("\n Enter the elements: ");
for(i=0;i<n;i++)
{
scanf("%d", &arr[i]);
}
printf("\n Enter the number that has to be searched : ");
scanf("%d", &num);
for(i=0;i<n;i++)
{
if(arr[i] == num)
{
found =1;
pos=i;
printf("\n %d is found in the array at position= %d", num,i+1);
break;
}
}
if (found == 0)
printf("\n %d does not exist in the array", num);
return 0;
}
|
the_stack_data/45449076.c | // Copyright 2017 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/* *
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <string.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/semphr.h"
#include "freertos/queue.h"
#include "soc/i2s_struct.h"
#include "soc/i2s_reg.h"
#include "driver/periph_ctrl.h"
#include "soc/io_mux_reg.h"
#include "rom/lldesc.h"
#include "esp_heap_caps.h"
#include "anim.h"
#include "val2pwm.h"
#include "i2s_parallel.h"
#include"soc/gpio_periph.h"
#include "gpio.h"
typedef struct {
volatile lldesc_t *dmadesc_a, *dmadesc_b;
int desccount_a, desccount_b;
} i2s_parallel_state_t;
static i2s_parallel_state_t *i2s_state[2]={NULL, NULL};
#define DMA_MAX (4096-4)
//Calculate the amount of dma descs needed for a buffer desc
static int calc_needed_dma_descs_for(i2s_parallel_buffer_desc_t *desc) {
int ret=0;
for (int i=0; desc[i].memory!=NULL; i++) {
ret+=(desc[i].size+DMA_MAX-1)/DMA_MAX;
}
return ret;
}
static void fill_dma_desc(volatile lldesc_t *dmadesc, i2s_parallel_buffer_desc_t *bufdesc) {
int n=0;
for (int i=0; bufdesc[i].memory!=NULL; i++) {
int len=bufdesc[i].size;
uint8_t *data=(uint8_t*)bufdesc[i].memory;
while(len) {
int dmalen=len;
if (dmalen>DMA_MAX) dmalen=DMA_MAX;
dmadesc[n].size=dmalen;
dmadesc[n].length=dmalen;
dmadesc[n].buf=data;
dmadesc[n].eof=0;
dmadesc[n].sosf=0;
dmadesc[n].owner=1;
dmadesc[n].qe.stqe_next=(lldesc_t*)&dmadesc[n+1];
dmadesc[n].offset=0;
len-=dmalen;
data+=dmalen;
n++;
}
}
//Loop last back to first
dmadesc[n-1].qe.stqe_next=(lldesc_t*)&dmadesc[0];
printf("fill_dma_desc: filled %d descriptors\n", n);
}
static void gpio_setup_out(int gpio, int sig) {
if (gpio==-1) return;
PIN_FUNC_SELECT(GPIO_PIN_MUX_REG[gpio], PIN_FUNC_GPIO);
gpio_set_direction(gpio, GPIO_MODE_DEF_OUTPUT);
gpio_matrix_out(gpio, sig, false, false);
}
static void dma_reset(i2s_dev_t *dev) {
dev->lc_conf.in_rst=1; dev->lc_conf.in_rst=0;
dev->lc_conf.out_rst=1; dev->lc_conf.out_rst=0;
}
static void fifo_reset(i2s_dev_t *dev) {
dev->conf.rx_fifo_reset=1; dev->conf.rx_fifo_reset=0;
dev->conf.tx_fifo_reset=1; dev->conf.tx_fifo_reset=0;
}
static int i2snum(i2s_dev_t *dev) {
return (dev==&I2S0)?0:1;
}
void i2s_parallel_setup(i2s_dev_t *dev, const i2s_parallel_config_t *cfg) {
//Figure out which signal numbers to use for routing
printf("Setting up parallel I2S bus at I2S%d\n", i2snum(dev));
int sig_data_base, sig_clk;
if (dev==&I2S0) {
sig_data_base=I2S0O_DATA_OUT0_IDX;
sig_clk=I2S0O_WS_OUT_IDX;
} else {
if (cfg->bits==I2S_PARALLEL_BITS_32) {
sig_data_base=I2S1O_DATA_OUT0_IDX;
} else {
//Because of... reasons... the 16-bit values for i2s1 appear on d8...d23
sig_data_base=I2S1O_DATA_OUT8_IDX;
}
sig_clk=I2S1O_WS_OUT_IDX;
}
//Route the signals
for (int x=0; x<cfg->bits; x++) {
gpio_setup_out(cfg->gpio_bus[x], sig_data_base+x);
}
//ToDo: Clk/WS may need inversion?
gpio_setup_out(cfg->gpio_clk, sig_clk);
//Power on dev
if (dev==&I2S0) {
periph_module_enable(PERIPH_I2S0_MODULE);
} else {
periph_module_enable(PERIPH_I2S1_MODULE);
}
//Initialize I2S dev
dev->conf.rx_reset=1; dev->conf.rx_reset=0;
dev->conf.tx_reset=1; dev->conf.tx_reset=0;
dma_reset(dev);
fifo_reset(dev);
//Enable LCD mode
dev->conf2.val=0;
dev->conf2.lcd_en=1;
dev->sample_rate_conf.val=0;
dev->sample_rate_conf.rx_bits_mod=cfg->bits;
dev->sample_rate_conf.tx_bits_mod=cfg->bits;
dev->sample_rate_conf.rx_bck_div_num=4; //ToDo: Unsure about what this does...
dev->sample_rate_conf.tx_bck_div_num=4;
dev->clkm_conf.val=0;
dev->clkm_conf.clka_en=0;
dev->clkm_conf.clkm_div_a=63;
dev->clkm_conf.clkm_div_b=63;
//We ignore the possibility for fractional division here.
dev->clkm_conf.clkm_div_num=80000000L/cfg->clkspeed_hz;
dev->fifo_conf.val=0;
dev->fifo_conf.rx_fifo_mod_force_en=1;
dev->fifo_conf.tx_fifo_mod_force_en=1;
dev->fifo_conf.tx_fifo_mod=1;
dev->fifo_conf.tx_fifo_mod=1;
dev->fifo_conf.rx_data_num=32; //Thresholds.
dev->fifo_conf.tx_data_num=32;
dev->fifo_conf.dscr_en=1;
dev->conf1.val=0;
dev->conf1.tx_stop_en=0;
dev->conf1.tx_pcm_bypass=1;
dev->conf_chan.val=0;
dev->conf_chan.tx_chan_mod=1;
dev->conf_chan.rx_chan_mod=1;
//Invert ws to be active-low... ToDo: make this configurable
dev->conf.tx_right_first=1;
dev->conf.rx_right_first=1;
dev->timing.val=0;
//Allocate DMA descriptors
i2s_state[i2snum(dev)]=malloc(sizeof(i2s_parallel_state_t));
i2s_parallel_state_t *st=i2s_state[i2snum(dev)];
st->desccount_a=calc_needed_dma_descs_for(cfg->bufa);
st->desccount_b=calc_needed_dma_descs_for(cfg->bufb);
st->dmadesc_a=heap_caps_malloc(st->desccount_a*sizeof(lldesc_t), MALLOC_CAP_DMA);
st->dmadesc_b=heap_caps_malloc(st->desccount_b*sizeof(lldesc_t), MALLOC_CAP_DMA);
//and fill them
fill_dma_desc(st->dmadesc_a, cfg->bufa);
fill_dma_desc(st->dmadesc_b, cfg->bufb);
//Reset FIFO/DMA -> needed? Doesn't dma_reset/fifo_reset do this?
dev->lc_conf.in_rst=1; dev->lc_conf.out_rst=1; dev->lc_conf.ahbm_rst=1; dev->lc_conf.ahbm_fifo_rst=1;
dev->lc_conf.in_rst=0; dev->lc_conf.out_rst=0; dev->lc_conf.ahbm_rst=0; dev->lc_conf.ahbm_fifo_rst=0;
dev->conf.tx_reset=1; dev->conf.tx_fifo_reset=1; dev->conf.rx_fifo_reset=1;
dev->conf.tx_reset=0; dev->conf.tx_fifo_reset=0; dev->conf.rx_fifo_reset=0;
//Start dma on front buffer
dev->lc_conf.val=I2S_OUT_DATA_BURST_EN | I2S_OUTDSCR_BURST_EN | I2S_OUT_DATA_BURST_EN;
dev->out_link.addr=((uint32_t)(&st->dmadesc_a[0]));
dev->out_link.start=1;
dev->conf.tx_start=1;
}
//Flip to a buffer: 0 for bufa, 1 for bufb
void i2s_parallel_flip_to_buffer(i2s_dev_t *dev, int bufid) {
int no=i2snum(dev);
if (i2s_state[no]==NULL) return;
lldesc_t *active_dma_chain;
if (bufid==0) {
active_dma_chain=(lldesc_t*)&i2s_state[no]->dmadesc_a[0];
} else {
active_dma_chain=(lldesc_t*)&i2s_state[no]->dmadesc_b[0];
}
i2s_state[no]->dmadesc_a[i2s_state[no]->desccount_a-1].qe.stqe_next=active_dma_chain;
i2s_state[no]->dmadesc_b[i2s_state[no]->desccount_b-1].qe.stqe_next=active_dma_chain;
}
*/ |
the_stack_data/200142346.c | #include<stdio.h>
#include<string.h>
int main() {
char str[100], temp;
int i, j = 0;
printf("\nEnter the string :");
gets(str);
i = 0;
j = strlen(str) - 1;
while (i < j) {
temp = str[i];
str[i] = str[j];
str[j] = temp;
i++;
j--;
}
printf("\nReverse string is :%s", str);
return (0);
} |
the_stack_data/36076014.c | #ifdef PROTOTYPE
int isAsciiDigit(int);
int test_isAsciiDigit(int);
#endif
#ifdef DECL
{"isAsciiDigit", (funct_t) isAsciiDigit, (funct_t) test_isAsciiDigit, 1,
"! ~ & ^ | + << >>", 15, 3,
{{TMin, TMax},{TMin,TMax},{TMin,TMax}}},
#endif
#ifdef CODE
/*
* isAsciiDigit - return 1 if 0x30 <= x <= 0x39 (ASCII codes for characters '0' to '9')
* Example: isAsciiDigit(0x35) = 1.
* isAsciiDigit(0x3a) = 0.
* isAsciiDigit(0x05) = 0.
* Legal ops: ! ~ & ^ | + << >>
* Max ops: 15
* Rating: 3
*/
int isAsciiDigit(int x) {
#ifdef FIX
int bias1 = ~0x2F;
int bias2 = 0x3a;
int lower = x + bias1;
int upper = ~x + bias2;
return !((lower|upper) >> 31);
#else
return 2;
#endif
}
#endif
#ifdef TEST
int test_isAsciiDigit(int x) {
return (0x30 <= x) && (x <= 0x39);
}
#endif
|
the_stack_data/28261654.c | /*
* Copyright (c) 2017, 2018, Oracle and/or its affiliates.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. 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.
*
* 3. Neither the name of the copyright holder 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 THE
* COPYRIGHT HOLDER OR CONTRIBUTORS 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.
*/
int main() {
int sum = 0;
int i = 10;
do {
sum += 1;
} while (--i);
return sum;
}
|
the_stack_data/181392060.c | /*
topics:
- array
- sorting
- two pointers
- important
difficulty: easy
*/
void merge(int* A, int nums1Size, int m, int* B, int nums2Size, int n) {
m--;
n--;
for (int l = nums1Size - 1; l >= 0; --l) {
if (m < 0) {
A[l] = B[n--];
} else if (n < 0) {
A[l] = A[m--];
} else {
if (A[m] > B[n]) {
A[l] = A[m--];
} else {
A[l] = B[n--];
}
}
}
}
/*
Index starting points:
m l
[1 2 3 0 0 0]
n
[2 5 6]
*/
|
the_stack_data/92328137.c | #include <stdio.h>
#include <limits.h>
#define TYPE int
/*cไฝ่ฟ็ฎ
~ๆไฝๅๅ
&ๆไฝไธ
|ๆไฝๆ
^ๆไฝๅผๆ
<<ๅทฆ็งป
>>ๅณ็งป
*/
char *itobs(int, char *);
char *ftobs(float, char *);
char *dtobs(double, char *);
int main()
{
int x;
scanf("%d", &x);
char bin_str[CHAR_BIT * sizeof(TYPE) + 1];
char bin_str1[CHAR_BIT * sizeof(TYPE) + 1];
//itobs(x, bin_str);
//dtobs(x, bin_str);
itobs(x, bin_str);
puts(bin_str);
x <<= 1;
itobs(x, bin_str1);
puts(bin_str1);
return 0;
}
char *itobs(int x, char *bs)
{
int i;
const static int size = CHAR_BIT * sizeof(int);
for (i = size - 1; i >= 0; i--, x >>= 1)
{
bs[i] = (01 & x) + '0';
}
bs[size] = '\0';
return bs;
}
char *ftobs(float x, char *bs)
{
int i;
const static int size = CHAR_BIT * sizeof(float);
int *p;
p = (int *)&x;
for (i = size - 1; i >= 0; i--, (*p) >>= 1)
{
bs[i] = (01 & *p) + '0';
}
bs[size] = '\0';
return bs;
}
char *dtobs(double x, char *bs)
{
int i;
const static int size = CHAR_BIT * sizeof(double);
int *p;
p = (int *)&x;
for (i = size - 1; i >= 0; i--, (*p) >>= 1)
{
bs[i] = (01 & *p) + '0';
}
bs[size] = '\0';
return bs;
}
|
the_stack_data/283634.c | /*
Description: A strcpy overflows a stack buffer. A check was made to avoid an overflow condition but the check is off by one.
Keywords: Port C Size0 Complex0 BufferOverflow Stack Strcpy BadBound
ValidArg: "a"*30
ValidArg: "a"*39
InvalidArg: "a"*40
ValidArg: "a"*100
Due to the nature of this bug, the Invalid test case may overflow padding
or other unimportant data and not crash.
Copyright 2005 Fortify Software.
Permission is hereby granted, without written agreement or royalty fee, to
use, copy, modify, and distribute this software and its documentation for
any purpose, provided that the above copyright notice and the following
three paragraphs appear in all copies of this software.
IN NO EVENT SHALL FORTIFY SOFTWARE BE LIABLE TO ANY PARTY FOR DIRECT,
INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF FORTIFY SOFTWARE HAS
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMANGE.
FORTIFY SOFTWARE SPECIFICALLY DISCLAIMS ANY WARRANTIES INCLUDING, BUT NOT
LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
THE SOFTWARE IS PROVIDED ON AN "AS-IS" BASIS AND FORTIFY SOFTWARE HAS NO
OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
MODIFICATIONS.
*/
#include <stdio.h>
#include <string.h>
#define MAXSIZE 40
void
test(char *str)
{
char buf[MAXSIZE];
if(strlen(str) > MAXSIZE)
return;
strcpy(buf, str); /* FLAW */
printf("result: %s\n", buf);
}
int
main(int argc, char **argv)
{
char *userstr;
if(argc > 1) {
userstr = argv[1];
test(userstr);
}
return 0;
}
|
the_stack_data/37637435.c | /*
MYSTERY NUMBER
A Mystery Number is a number that can be expressed as a sum of two numbers,
where those two numbers are reverse of each other.
*/
#include <stdio.h>
#include <math.h>
/*
Approach : We iterate over from 1 to n/2, to get all the pairs of number, that
can sum up to the given no. n. and check if the numbers in the pair
are reverse of each other.
*/
int rev(int num) {
int ans = 0;
while (num) {
ans *= 10;
ans += (num % 10);
num /= 10;
}
return ans;
}
int solve(int num) {
for (int i = 1; i <= num / 2; i++) {
if (rev(i) == num - i) {
return 1;
}
}
return 0;
}
int main() {
int num;
scanf("%d", &num);
int ans = solve(num);
if (ans == 1) {
printf("It is a mystery number");
}
else {
printf("It is not a mystery number");
}
return 0;
}
/*
Input: num : 22
Output: It is a mystery number.
Verification: 22 can be expressed as sum of pair (11, 11).
Here, 11 and 11 are reverse of each other. Hence,
22 is a mystery number.
*/
|
the_stack_data/182953150.c | void io_hlt(void);
void io_cli(void);
void io_out8(int port, int data);
int io_load_eflags(void);
void io_store_eflags(int eflags);
void init_palette(void);
void set_palette(int start, int end, unsigned char *rgb);
void boxfill8(unsigned char *vram, int xsize, unsigned char c, int x0, int y0, int x1, int y1);
void init_screen(char *vram, int x, int y);
void putfont8(char *vram, int xsize, int x, int y, char c, char *font);
#define COL8_000000 0
#define COL8_FF0000 1
#define COL8_00FF00 2
#define COL8_FFFF00 3
#define COL8_0000FF 4
#define COL8_FF00FF 5
#define COL8_00FFFF 6
#define COL8_FFFFFF 7
#define COL8_C6C6C6 8
#define COL8_840000 9
#define COL8_008400 10
#define COL8_848400 11
#define COL8_000084 12
#define COL8_840084 13
#define COL8_008484 14
#define COL8_848484 15
struct BOOTINFO {
char cyls, leds, vmode, reserve;
short scrnx, scrny;
char *vram;
};
void HariMain(void)
{
struct BOOTINFO *binfo = (struct BOOTINFO *) 0x0ff0;
static char font_A[16] = {
0x00, 0x18, 0x18, 0x18, 0x18, 0x24, 0x24, 0x24,
0x24, 0x7e, 0x42, 0x42, 0x42, 0xe7, 0x00, 0x00
};
init_palette();
init_screen(binfo->vram, binfo->scrnx, binfo->scrny);
putfont8(binfo->vram, binfo->scrnx, 10, 10, COL8_FFFFFF, font_A);
for (;;) {
io_hlt();
}
}
void init_palette(void)
{
static unsigned char table_rgb[16 * 3] = {
0x00, 0x00, 0x00, /* 0:้ป */
0xff, 0x00, 0x00, /* 1:ๆใใ่ตค */
0x00, 0xff, 0x00, /* 2:ๆใใ็ท */
0xff, 0xff, 0x00, /* 3:ๆใใ้ป่ฒ */
0x00, 0x00, 0xff, /* 4:ๆใใ้ */
0xff, 0x00, 0xff, /* 5:ๆใใ็ดซ */
0x00, 0xff, 0xff, /* 6:ๆใใๆฐด่ฒ */
0xff, 0xff, 0xff, /* 7:็ฝ */
0xc6, 0xc6, 0xc6, /* 8:ๆใใ็ฐ่ฒ */
0x84, 0x00, 0x00, /* 9:ๆใ่ตค */
0x00, 0x84, 0x00, /* 10:ๆใ็ท */
0x84, 0x84, 0x00, /* 11:ๆใ้ป่ฒ */
0x00, 0x00, 0x84, /* 12:ๆใ้ */
0x84, 0x00, 0x84, /* 13:ๆใ็ดซ */
0x00, 0x84, 0x84, /* 14:ๆใๆฐด่ฒ */
0x84, 0x84, 0x84 /* 15:ๆใ็ฐ่ฒ */
};
set_palette(0, 15, table_rgb);
return;
/* static char ๅฝไปคใฏใใใผใฟใซใใไฝฟใใชใใใฉDBๅฝไปค็ธๅฝ */
}
void set_palette(int start, int end, unsigned char *rgb)
{
int i, eflags;
eflags = io_load_eflags(); /* ๅฒใ่พผใฟ่จฑๅฏใใฉใฐใฎๅคใ่จ้ฒใใ */
io_cli(); /* ่จฑๅฏใใฉใฐใ0ใซใใฆๅฒใ่พผใฟ็ฆๆญขใซใใ */
io_out8(0x03c8, start);
for (i = start; i <= end; i++) {
io_out8(0x03c9, rgb[0] / 4);
io_out8(0x03c9, rgb[1] / 4);
io_out8(0x03c9, rgb[2] / 4);
rgb += 3;
}
io_store_eflags(eflags); /* ๅฒใ่พผใฟ่จฑๅฏใใฉใฐใๅ
ใซๆปใ */
return;
}
void boxfill8(unsigned char *vram, int xsize, unsigned char c, int x0, int y0, int x1, int y1)
{
int x, y;
for (y = y0; y <= y1; y++) {
for (x = x0; x <= x1; x++)
vram[y * xsize + x] = c;
}
return;
}
void init_screen(char *vram, int x, int y)
{
boxfill8(vram, x, COL8_008484, 0, 0, x - 1, y - 29);
boxfill8(vram, x, COL8_C6C6C6, 0, y - 28, x - 1, y - 28);
boxfill8(vram, x, COL8_FFFFFF, 0, y - 27, x - 1, y - 27);
boxfill8(vram, x, COL8_C6C6C6, 0, y - 26, x - 1, y - 1);
boxfill8(vram, x, COL8_FFFFFF, 3, y - 24, 59, y - 24);
boxfill8(vram, x, COL8_FFFFFF, 2, y - 24, 2, y - 4);
boxfill8(vram, x, COL8_848484, 3, y - 4, 59, y - 4);
boxfill8(vram, x, COL8_848484, 59, y - 23, 59, y - 5);
boxfill8(vram, x, COL8_000000, 2, y - 3, 59, y - 3);
boxfill8(vram, x, COL8_000000, 60, y - 24, 60, y - 3);
boxfill8(vram, x, COL8_848484, x - 47, y - 24, x - 4, y - 24);
boxfill8(vram, x, COL8_848484, x - 47, y - 23, x - 47, y - 4);
boxfill8(vram, x, COL8_FFFFFF, x - 47, y - 3, x - 4, y - 3);
boxfill8(vram, x, COL8_FFFFFF, x - 3, y - 24, x - 3, y - 3);
return;
}
void putfont8(char *vram, int xsize, int x, int y, char c, char *font)
{
int i;
char *p, d /* data */;
for (i = 0; i < 16; i++) {
p = vram + (y + i) * xsize + x;
d = font[i];
if ((d & 0x80) != 0) { p[0] = c; }
if ((d & 0x40) != 0) { p[1] = c; }
if ((d & 0x20) != 0) { p[2] = c; }
if ((d & 0x10) != 0) { p[3] = c; }
if ((d & 0x08) != 0) { p[4] = c; }
if ((d & 0x04) != 0) { p[5] = c; }
if ((d & 0x02) != 0) { p[6] = c; }
if ((d & 0x01) != 0) { p[7] = c; }
}
return;
}
|
the_stack_data/50138946.c | /**
* (C) Copyright 2020
*/
#include <stdio.h>
#include <stdlib.h>
#include <complex.h>
#include <pthread.h>
#include <math.h>
#define MIN(X, Y) (((X) < (Y)) ? (X) : (Y))
int N;
int numThreads;
double *values;
double complex *res;
double PI;
FILE *in;
FILE *out;
// Functie helper cu cateva prelucrari.
void getArgs(int argc, char **argv) {
if (argc < 4) {
printf("Not enough parameters!\nPlease use: "
"./homeworkFT inputValues.txt outputValues.txt numThreads\n");
exit(1);
}
in = fopen(argv[1], "r");
out = fopen(argv[2], "w");
numThreads = atoi(argv[3]);
if (in == NULL || out == NULL) {
printf("Error opening the files!\n");
exit(2);
}
}
// Functie de eliberare a memoriei.
void clean() {
free(values);
free(res);
fclose(in);
fclose(out);
}
// Functie de initializare si citire din fisier a datelor.
void init() {
int i;
PI = atan2(1, 1) * 4;
if (fscanf(in, "%d", &N) == EOF) {
printf("Failed to read n.\n");
exit(0);
}
values = (double *) malloc(sizeof(double) * N);
if (values == NULL) {
printf("Malloc error!\n");
exit(3);
}
res = (double complex *) malloc(sizeof(double complex) * N);
if (res == NULL) {
printf("Malloc error!\n");
exit(3);
}
for (i = 0; i < N; ++i) {
if (fscanf(in, "%lf", &values[i]) == EOF) {
printf("Failed to read values[%d].\n", i);
clean();
exit(0);
}
}
}
// Functie helper cu cateva prelucrari.
void thread_info_init(pthread_t **tid, int **thread_id) {
*tid = (pthread_t *) malloc(sizeof(pthread_t) * numThreads);
if (*tid == NULL) {
printf("Malloc error!\n");
clean();
exit(3);
}
*thread_id = (int *) malloc(sizeof(int) * numThreads);
if (*thread_id == NULL) {
printf("Malloc error!\n");
free(*tid);
clean();
exit(3);
}
}
// Functie de eliberare a memoriei vectorilor legati de threaduri.
void clean_thread_info(pthread_t **tid, int **thread_id) {
free(*tid);
free(*thread_id);
}
// Afisarea rezultatelor finale.
void show() {
int i;
fprintf(out, "%d\n", N);
for (i = 0; i < N; ++i) {
fprintf(out, "%lf %lf\n", creal(res[i]), cimag(res[i]));
}
}
// Functia de rulat paralel - Transformata Fourier Discreta
void *fourier_transform(void *var) {
int k, n;
double complex sum;
int thread_id = *(int*) var;
int start = thread_id * ceil((double) N / numThreads);
int end = MIN(N, (thread_id + 1) * ceil((double) N / numThreads));
for (k = start; k < end; ++k) {
sum = 0;
for (n = 0; n < N; ++n) {
sum += values[n] * cexp(-2 * PI * I * k * n / N);
}
res[k] = sum;
}
return NULL;
}
int main(int argc, char **argv) {
int i;
int *thread_id;
pthread_t *tid;
getArgs(argc, argv);
init();
thread_info_init(&tid, &thread_id);
for (i = 0; i < numThreads; ++i) {
thread_id[i] = i;
pthread_create(&(tid[i]), NULL, fourier_transform, &(thread_id[i]));
}
for (i = 0; i < numThreads; ++i) {
pthread_join(tid[i], NULL);
}
show();
clean_thread_info(&tid, &thread_id);
clean();
return 0;
}
|
the_stack_data/890313.c | /* f2c.h -- Standard Fortran to C header file */
/** barf [ba:rf] 2. "He suggested using FORTRAN, and everybody barfed."
- From The Shogakukan DICTIONARY OF NEW ENGLISH (Second edition) */
#ifndef F2C_INCLUDE
#define F2C_INCLUDE
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <complex.h>
#ifdef complex
#undef complex
#endif
#ifdef I
#undef I
#endif
#if defined(_WIN64)
typedef long long BLASLONG;
typedef unsigned long long BLASULONG;
#else
typedef long BLASLONG;
typedef unsigned long BLASULONG;
#endif
#ifdef LAPACK_ILP64
typedef BLASLONG blasint;
#if defined(_WIN64)
#define blasabs(x) llabs(x)
#else
#define blasabs(x) labs(x)
#endif
#else
typedef int blasint;
#define blasabs(x) abs(x)
#endif
typedef blasint integer;
typedef unsigned int uinteger;
typedef char *address;
typedef short int shortint;
typedef float real;
typedef double doublereal;
typedef struct { real r, i; } complex;
typedef struct { doublereal r, i; } doublecomplex;
static inline _Complex float Cf(complex *z) {return z->r + z->i*_Complex_I;}
static inline _Complex double Cd(doublecomplex *z) {return z->r + z->i*_Complex_I;}
static inline _Complex float * _pCf(complex *z) {return (_Complex float*)z;}
static inline _Complex double * _pCd(doublecomplex *z) {return (_Complex double*)z;}
#define pCf(z) (*_pCf(z))
#define pCd(z) (*_pCd(z))
typedef int logical;
typedef short int shortlogical;
typedef char logical1;
typedef char integer1;
#define TRUE_ (1)
#define FALSE_ (0)
/* Extern is for use with -E */
#ifndef Extern
#define Extern extern
#endif
/* I/O stuff */
typedef int flag;
typedef int ftnlen;
typedef int ftnint;
/*external read, write*/
typedef struct
{ flag cierr;
ftnint ciunit;
flag ciend;
char *cifmt;
ftnint cirec;
} cilist;
/*internal read, write*/
typedef struct
{ flag icierr;
char *iciunit;
flag iciend;
char *icifmt;
ftnint icirlen;
ftnint icirnum;
} icilist;
/*open*/
typedef struct
{ flag oerr;
ftnint ounit;
char *ofnm;
ftnlen ofnmlen;
char *osta;
char *oacc;
char *ofm;
ftnint orl;
char *oblnk;
} olist;
/*close*/
typedef struct
{ flag cerr;
ftnint cunit;
char *csta;
} cllist;
/*rewind, backspace, endfile*/
typedef struct
{ flag aerr;
ftnint aunit;
} alist;
/* inquire */
typedef struct
{ flag inerr;
ftnint inunit;
char *infile;
ftnlen infilen;
ftnint *inex; /*parameters in standard's order*/
ftnint *inopen;
ftnint *innum;
ftnint *innamed;
char *inname;
ftnlen innamlen;
char *inacc;
ftnlen inacclen;
char *inseq;
ftnlen inseqlen;
char *indir;
ftnlen indirlen;
char *infmt;
ftnlen infmtlen;
char *inform;
ftnint informlen;
char *inunf;
ftnlen inunflen;
ftnint *inrecl;
ftnint *innrec;
char *inblank;
ftnlen inblanklen;
} inlist;
#define VOID void
union Multitype { /* for multiple entry points */
integer1 g;
shortint h;
integer i;
/* longint j; */
real r;
doublereal d;
complex c;
doublecomplex z;
};
typedef union Multitype Multitype;
struct Vardesc { /* for Namelist */
char *name;
char *addr;
ftnlen *dims;
int type;
};
typedef struct Vardesc Vardesc;
struct Namelist {
char *name;
Vardesc **vars;
int nvars;
};
typedef struct Namelist Namelist;
#define abs(x) ((x) >= 0 ? (x) : -(x))
#define dabs(x) (fabs(x))
#define f2cmin(a,b) ((a) <= (b) ? (a) : (b))
#define f2cmax(a,b) ((a) >= (b) ? (a) : (b))
#define dmin(a,b) (f2cmin(a,b))
#define dmax(a,b) (f2cmax(a,b))
#define bit_test(a,b) ((a) >> (b) & 1)
#define bit_clear(a,b) ((a) & ~((uinteger)1 << (b)))
#define bit_set(a,b) ((a) | ((uinteger)1 << (b)))
#define abort_() { sig_die("Fortran abort routine called", 1); }
#define c_abs(z) (cabsf(Cf(z)))
#define c_cos(R,Z) { pCf(R)=ccos(Cf(Z)); }
#define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);}
#define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);}
#define c_exp(R, Z) {pCf(R) = cexpf(Cf(Z));}
#define c_log(R, Z) {pCf(R) = clogf(Cf(Z));}
#define c_sin(R, Z) {pCf(R) = csinf(Cf(Z));}
//#define c_sqrt(R, Z) {*(R) = csqrtf(Cf(Z));}
#define c_sqrt(R, Z) {pCf(R) = csqrtf(Cf(Z));}
#define d_abs(x) (fabs(*(x)))
#define d_acos(x) (acos(*(x)))
#define d_asin(x) (asin(*(x)))
#define d_atan(x) (atan(*(x)))
#define d_atn2(x, y) (atan2(*(x),*(y)))
#define d_cnjg(R, Z) { pCd(R) = conj(Cd(Z)); }
#define r_cnjg(R, Z) { pCf(R) = conj(Cf(Z)); }
#define d_cos(x) (cos(*(x)))
#define d_cosh(x) (cosh(*(x)))
#define d_dim(__a, __b) ( *(__a) > *(__b) ? *(__a) - *(__b) : 0.0 )
#define d_exp(x) (exp(*(x)))
#define d_imag(z) (cimag(Cd(z)))
#define r_imag(z) (cimag(Cf(z)))
#define d_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
#define r_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
#define d_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
#define r_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
#define d_log(x) (log(*(x)))
#define d_mod(x, y) (fmod(*(x), *(y)))
#define u_nint(__x) ((__x)>=0 ? floor((__x) + .5) : -floor(.5 - (__x)))
#define d_nint(x) u_nint(*(x))
#define u_sign(__a,__b) ((__b) >= 0 ? ((__a) >= 0 ? (__a) : -(__a)) : -((__a) >= 0 ? (__a) : -(__a)))
#define d_sign(a,b) u_sign(*(a),*(b))
#define r_sign(a,b) u_sign(*(a),*(b))
#define d_sin(x) (sin(*(x)))
#define d_sinh(x) (sinh(*(x)))
#define d_sqrt(x) (sqrt(*(x)))
#define d_tan(x) (tan(*(x)))
#define d_tanh(x) (tanh(*(x)))
#define i_abs(x) abs(*(x))
#define i_dnnt(x) ((integer)u_nint(*(x)))
#define i_len(s, n) (n)
#define i_nint(x) ((integer)u_nint(*(x)))
#define i_sign(a,b) ((integer)u_sign((integer)*(a),(integer)*(b)))
#define pow_dd(ap, bp) ( pow(*(ap), *(bp)))
#define pow_si(B,E) spow_ui(*(B),*(E))
#define pow_ri(B,E) spow_ui(*(B),*(E))
#define pow_di(B,E) dpow_ui(*(B),*(E))
#define pow_zi(p, a, b) {pCd(p) = zpow_ui(Cd(a), *(b));}
#define pow_ci(p, a, b) {pCf(p) = cpow_ui(Cf(a), *(b));}
#define pow_zz(R,A,B) {pCd(R) = cpow(Cd(A),*(B));}
#define s_cat(lpp, rpp, rnp, np, llp) { ftnlen i, nc, ll; char *f__rp, *lp; ll = (llp); lp = (lpp); for(i=0; i < (int)*(np); ++i) { nc = ll; if((rnp)[i] < nc) nc = (rnp)[i]; ll -= nc; f__rp = (rpp)[i]; while(--nc >= 0) *lp++ = *(f__rp)++; } while(--ll >= 0) *lp++ = ' '; }
#define s_cmp(a,b,c,d) ((integer)strncmp((a),(b),f2cmin((c),(d))))
#define s_copy(A,B,C,D) { int __i,__m; for (__i=0, __m=f2cmin((C),(D)); __i<__m && (B)[__i] != 0; ++__i) (A)[__i] = (B)[__i]; }
#define sig_die(s, kill) { exit(1); }
#define s_stop(s, n) {exit(0);}
static char junk[] = "\n@(#)LIBF77 VERSION 19990503\n";
#define z_abs(z) (cabs(Cd(z)))
#define z_exp(R, Z) {pCd(R) = cexp(Cd(Z));}
#define z_sqrt(R, Z) {pCd(R) = csqrt(Cd(Z));}
#define myexit_() break;
#define mycycle() continue;
#define myceiling(w) {ceil(w)}
#define myhuge(w) {HUGE_VAL}
//#define mymaxloc_(w,s,e,n) {if (sizeof(*(w)) == sizeof(double)) dmaxloc_((w),*(s),*(e),n); else dmaxloc_((w),*(s),*(e),n);}
#define mymaxloc(w,s,e,n) {dmaxloc_(w,*(s),*(e),n)}
/* procedure parameter types for -A and -C++ */
#define F2C_proc_par_types 1
#ifdef __cplusplus
typedef logical (*L_fp)(...);
#else
typedef logical (*L_fp)();
#endif
static float spow_ui(float x, integer n) {
float pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static double dpow_ui(double x, integer n) {
double pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static _Complex float cpow_ui(_Complex float x, integer n) {
_Complex float pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static _Complex double zpow_ui(_Complex double x, integer n) {
_Complex double pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static integer pow_ii(integer x, integer n) {
integer pow; unsigned long int u;
if (n <= 0) {
if (n == 0 || x == 1) pow = 1;
else if (x != -1) pow = x == 0 ? 1/x : 0;
else n = -n;
}
if ((n > 0) || !(n == 0 || x == 1 || x != -1)) {
u = n;
for(pow = 1; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static integer dmaxloc_(double *w, integer s, integer e, integer *n)
{
double m; integer i, mi;
for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
if (w[i-1]>m) mi=i ,m=w[i-1];
return mi-s+1;
}
static integer smaxloc_(float *w, integer s, integer e, integer *n)
{
float m; integer i, mi;
for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
if (w[i-1]>m) mi=i ,m=w[i-1];
return mi-s+1;
}
static inline void cdotc_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
_Complex float zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conjf(Cf(&x[i])) * Cf(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conjf(Cf(&x[i*incx])) * Cf(&y[i*incy]);
}
}
pCf(z) = zdotc;
}
static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
_Complex double zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conj(Cd(&x[i])) * Cd(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conj(Cd(&x[i*incx])) * Cd(&y[i*incy]);
}
}
pCd(z) = zdotc;
}
static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
_Complex float zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cf(&x[i]) * Cf(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cf(&x[i*incx]) * Cf(&y[i*incy]);
}
}
pCf(z) = zdotc;
}
static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
_Complex double zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cd(&x[i]) * Cd(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cd(&x[i*incx]) * Cd(&y[i*incy]);
}
}
pCd(z) = zdotc;
}
#endif
/* -- translated by f2c (version 20000121).
You must link the resulting object file with the libraries:
-lf2c -lm (in that order)
*/
/* > \brief <b> CPOSV computes the solution to system of linear equations A * X = B for PO matrices</b> */
/* =========== DOCUMENTATION =========== */
/* Online html documentation available at */
/* http://www.netlib.org/lapack/explore-html/ */
/* > \htmlonly */
/* > Download CPOSV + dependencies */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/cposv.f
"> */
/* > [TGZ]</a> */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/cposv.f
"> */
/* > [ZIP]</a> */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/cposv.f
"> */
/* > [TXT]</a> */
/* > \endhtmlonly */
/* Definition: */
/* =========== */
/* SUBROUTINE CPOSV( UPLO, N, NRHS, A, LDA, B, LDB, INFO ) */
/* CHARACTER UPLO */
/* INTEGER INFO, LDA, LDB, N, NRHS */
/* COMPLEX A( LDA, * ), B( LDB, * ) */
/* > \par Purpose: */
/* ============= */
/* > */
/* > \verbatim */
/* > */
/* > CPOSV computes the solution to a complex system of linear equations */
/* > A * X = B, */
/* > where A is an N-by-N Hermitian positive definite matrix and X and B */
/* > are N-by-NRHS matrices. */
/* > */
/* > The Cholesky decomposition is used to factor A as */
/* > A = U**H* U, if UPLO = 'U', or */
/* > A = L * L**H, if UPLO = 'L', */
/* > where U is an upper triangular matrix and L is a lower triangular */
/* > matrix. The factored form of A is then used to solve the system of */
/* > equations A * X = B. */
/* > \endverbatim */
/* Arguments: */
/* ========== */
/* > \param[in] UPLO */
/* > \verbatim */
/* > UPLO is CHARACTER*1 */
/* > = 'U': Upper triangle of A is stored; */
/* > = 'L': Lower triangle of A is stored. */
/* > \endverbatim */
/* > */
/* > \param[in] N */
/* > \verbatim */
/* > N is INTEGER */
/* > The number of linear equations, i.e., the order of the */
/* > matrix A. N >= 0. */
/* > \endverbatim */
/* > */
/* > \param[in] NRHS */
/* > \verbatim */
/* > NRHS is INTEGER */
/* > The number of right hand sides, i.e., the number of columns */
/* > of the matrix B. NRHS >= 0. */
/* > \endverbatim */
/* > */
/* > \param[in,out] A */
/* > \verbatim */
/* > A is COMPLEX array, dimension (LDA,N) */
/* > On entry, the Hermitian matrix A. If UPLO = 'U', the leading */
/* > N-by-N upper triangular part of A contains the upper */
/* > triangular part of the matrix A, and the strictly lower */
/* > triangular part of A is not referenced. If UPLO = 'L', the */
/* > leading N-by-N lower triangular part of A contains the lower */
/* > triangular part of the matrix A, and the strictly upper */
/* > triangular part of A is not referenced. */
/* > */
/* > On exit, if INFO = 0, the factor U or L from the Cholesky */
/* > factorization A = U**H*U or A = L*L**H. */
/* > \endverbatim */
/* > */
/* > \param[in] LDA */
/* > \verbatim */
/* > LDA is INTEGER */
/* > The leading dimension of the array A. LDA >= f2cmax(1,N). */
/* > \endverbatim */
/* > */
/* > \param[in,out] B */
/* > \verbatim */
/* > B is COMPLEX array, dimension (LDB,NRHS) */
/* > On entry, the N-by-NRHS right hand side matrix B. */
/* > On exit, if INFO = 0, the N-by-NRHS solution matrix X. */
/* > \endverbatim */
/* > */
/* > \param[in] LDB */
/* > \verbatim */
/* > LDB is INTEGER */
/* > The leading dimension of the array B. LDB >= f2cmax(1,N). */
/* > \endverbatim */
/* > */
/* > \param[out] INFO */
/* > \verbatim */
/* > INFO is INTEGER */
/* > = 0: successful exit */
/* > < 0: if INFO = -i, the i-th argument had an illegal value */
/* > > 0: if INFO = i, the leading minor of order i of A is not */
/* > positive definite, so the factorization could not be */
/* > completed, and the solution has not been computed. */
/* > \endverbatim */
/* Authors: */
/* ======== */
/* > \author Univ. of Tennessee */
/* > \author Univ. of California Berkeley */
/* > \author Univ. of Colorado Denver */
/* > \author NAG Ltd. */
/* > \date December 2016 */
/* > \ingroup complexPOsolve */
/* ===================================================================== */
/* Subroutine */ int cposv_(char *uplo, integer *n, integer *nrhs, complex *a,
integer *lda, complex *b, integer *ldb, integer *info)
{
/* System generated locals */
integer a_dim1, a_offset, b_dim1, b_offset, i__1;
/* Local variables */
extern logical lsame_(char *, char *);
extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen), cpotrf_(
char *, integer *, complex *, integer *, integer *),
cpotrs_(char *, integer *, integer *, complex *, integer *,
complex *, integer *, integer *);
/* -- LAPACK driver routine (version 3.7.0) -- */
/* -- LAPACK is a software package provided by Univ. of Tennessee, -- */
/* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
/* December 2016 */
/* ===================================================================== */
/* Test the input parameters. */
/* Parameter adjustments */
a_dim1 = *lda;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
b_dim1 = *ldb;
b_offset = 1 + b_dim1 * 1;
b -= b_offset;
/* Function Body */
*info = 0;
if (! lsame_(uplo, "U") && ! lsame_(uplo, "L")) {
*info = -1;
} else if (*n < 0) {
*info = -2;
} else if (*nrhs < 0) {
*info = -3;
} else if (*lda < f2cmax(1,*n)) {
*info = -5;
} else if (*ldb < f2cmax(1,*n)) {
*info = -7;
}
if (*info != 0) {
i__1 = -(*info);
xerbla_("CPOSV ", &i__1, (ftnlen)6);
return 0;
}
/* Compute the Cholesky factorization A = U**H*U or A = L*L**H. */
cpotrf_(uplo, n, &a[a_offset], lda, info);
if (*info == 0) {
/* Solve the system A*X = B, overwriting B with X. */
cpotrs_(uplo, n, nrhs, &a[a_offset], lda, &b[b_offset], ldb, info);
}
return 0;
/* End of CPOSV */
} /* cposv_ */
|
the_stack_data/225142571.c | /*@
lemma_auto void length_nonnegative<t>(list<t> xs)
requires true;
ensures 0 <= length(xs);
{
switch (xs) {
case nil:
case cons(x, xs0):
length_nonnegative(xs0);
}
}
lemma void append_nil<t>(list<t> xs)
requires true;
ensures append(xs, nil) == xs;
{
switch (xs) {
case nil:
case cons(x, xs0):
append_nil(xs0);
}
}
lemma void append_assoc<t>(list<t> xs, list<t> ys, list<t> zs)
requires true;
ensures append(append(xs, ys), zs) == append(xs, append(ys, zs));
{
switch (xs) {
case nil:
case cons(x, xs0):
append_assoc(xs0, ys, zs);
}
}
lemma void length_append<t>(list<t> xs, list<t> ys)
requires true;
ensures length(append(xs, ys)) == length(xs) + length(ys);
{
switch(xs) {
case nil:
case cons(h, t):
length_append(t, ys);
}
}
lemma void reverse_append<t>(list<t> xs, list<t> ys)
requires true;
ensures reverse(append(xs, ys)) == append(reverse(ys), reverse(xs));
{
switch (xs) {
case nil:
append_nil(reverse(ys));
case cons(x, xs0):
reverse_append(xs0, ys);
append_assoc(reverse(ys), reverse(xs0), cons(x, nil));
}
}
lemma void reverse_reverse<t>(list<t> xs)
requires true;
ensures reverse(reverse(xs)) == xs;
{
switch (xs) {
case nil:
case cons(x, xs0):
reverse_reverse(xs0);
reverse_append(reverse(xs0), cons(x, nil));
}
}
lemma void mem_nth<t>(int n, list<t> xs)
requires 0 <= n &*& n < length(xs);
ensures mem(nth(n, xs), xs) == true;
{
switch (xs) {
case nil:
case cons(x, xs0):
if (n != 0) {
mem_nth(n - 1, xs0);
}
}
}
lemma_auto(mem(x, append(xs, ys))) void mem_append<t>(t x, list<t> xs, list<t> ys)
requires true;
ensures mem(x, append(xs, ys)) == (mem(x, xs) || mem(x, ys));
{
switch(xs) {
case nil:
case cons(h, t): mem_append(x, t, ys);
}
}
lemma void drop_0<t>(list<t> xs)
requires true;
ensures drop(0, xs) == xs;
{
switch (xs) {
case nil:
case cons(x, xs0):
}
}
lemma void take_0<t>(list<t> xs)
requires true;
ensures take(0, xs) == nil;
{
switch (xs) {
case nil:
case cons(x, xs0):
}
}
lemma void drop_n_plus_one<t>(int n, list<t> xs)
requires 0 <= n &*& n < length(xs);
ensures drop(n, xs) == cons(nth(n, xs), drop(n + 1, xs));
{
switch (xs) {
case nil:
case cons(x, xs0):
if (n == 0) {
switch (xs0) {
case nil:
case cons(x0, xs1):
}
} else {
drop_n_plus_one(n - 1, xs0);
}
}
}
lemma void take_length<t>(list<t> xs)
requires true;
ensures take(length(xs), xs) == xs;
{
switch (xs) {
case nil:
case cons(x, xs0):
length_nonnegative(xs0);
take_length(xs0);
}
}
lemma void length_remove<t>(t x, list<t> xs)
requires true;
ensures length(remove(x, xs)) == (mem(x, xs) ? length(xs) - 1 : length(xs));
{
switch (xs) {
case nil:
case cons(x0, xs0):
if (x != x0)
length_remove(x, xs0);
}
}
lemma void drop_length<t>(list<t> xs)
requires true;
ensures drop(length(xs), xs) == nil;
{
switch (xs) {
case nil:
case cons(x, xs0):
length_nonnegative(xs0);
drop_length(xs0);
}
}
lemma void length_drop<t>(int n, list<t> xs)
requires 0 <= n &*& n <= length(xs);
ensures length(drop(n, xs)) == length(xs) - n;
{
switch (xs) {
case nil:
case cons(x, xs0):
if (n != 0) {
length_drop(n - 1, xs0);
}
}
}
lemma void nth_append<t>(list<t> xs, list<t> ys, int i)
requires 0 <= i && i < length(xs);
ensures nth(i, xs) == nth(i, append(xs, ys));
{
switch(xs) {
case nil:
case cons(h, t): if(i != 0) nth_append(t, ys, i - 1);
}
}
lemma void nth_append_r<t>(list<t> xs, list<t> ys, int i)
requires 0 <= i && i < length(ys);
ensures nth(i, ys) == nth(length(xs) + i, append(xs, ys));
{
switch(xs) {
case nil:
case cons(h, t):
nth_append_r(t, ys, i);
}
}
lemma void length_take<a>(int n, list<a> xs)
requires 0 <= n &*& n <= length(xs);
ensures length(take(n, xs)) == n;
{
switch (xs) {
case nil:
case cons(x, xs0):
if (n != 0) {
length_take(n - 1, xs0);
}
}
}
lemma void drop_n_take_n<a>(int n, list<a> xs)
requires true;
ensures drop(n, take(n, xs)) == nil;
{
switch (xs) {
case nil:
case cons(x, xs0):
drop_n_take_n(n - 1, xs0);
}
}
lemma void nth_take<a>(int i, int n, list<a> xs)
requires 0 <= i &*& i < n &*& n <= length(xs);
ensures nth(i, take(n, xs)) == nth(i, xs);
{
switch (xs) {
case nil:
case cons(x, xs0):
if (i != 0) {
nth_take(i - 1, n - 1, xs0);
}
}
}
lemma void drop_take_remove_nth<t>(list<t> xs, int n)
requires 0<=n && n < length(xs);
ensures append(take(n, xs), tail(drop(n, xs))) == remove_nth(n, xs);
{
switch(xs) {
case nil:
case cons(h, t):
if(n == 0) {
} else {
drop_take_remove_nth(t, n - 1);
}
}
}
lemma void mem_index_of<t>(t x, list<t> xs)
requires mem(x, xs) == true;
ensures 0 <= index_of(x, xs) && index_of(x, xs) < length(xs);
{
switch (xs) {
case nil:
case cons(x0, xs0):
if (x != x0)
mem_index_of(x, xs0);
}
}
lemma void foreach_remove<t>(t x, list<t> xs)
requires foreach(xs, ?p) &*& mem(x, xs) == true;
ensures foreach(remove(x, xs), p) &*& p(x);
{
switch (xs) {
case nil:
case cons(x0, xs0):
open foreach<t>(xs, p);
if (x0 != x) {
foreach_remove(x, xs0);
close foreach<t>(remove(x, xs), p);
}
}
}
lemma void foreach_unremove<t>(t x, list<t> xs)
requires foreach(remove(x, xs), ?p) &*& mem(x, xs) == true &*& p(x);
ensures foreach(xs, p);
{
switch (xs) {
case nil:
case cons(x0, xs0):
if (x0 != x){
open foreach<t>(remove(x, xs), p);
foreach_unremove(x, xs0);
}
close foreach<t>(xs, p);
}
}
lemma void foreach_append<t>(list<t> xs, list<t> ys)
requires foreach(xs, ?p) &*& foreach(ys, p);
ensures foreach(append(xs, ys), p);
{
open foreach(xs, p);
switch (xs) {
case nil:
case cons(x, xs0):
foreach_append(xs0, ys);
close foreach(append(xs, ys), p);
}
}
lemma void nth_update<t>(int i, int j, t y, list<t> xs)
requires 0 <= i &*& i < length(xs) &*& 0 <= j &*& j < length(xs);
ensures nth(i, update(j, y, xs)) == (i == j ? y : nth(i, xs));
{
switch (xs) {
case nil:
case cons(x, xs0):
if (i != 0 && j != 0)
nth_update(i - 1, j - 1, y, xs0);
}
}
lemma void length_update<t>(int i, t y, list<t> xs)
requires true;
ensures length(update(i, y, xs)) == length(xs);
{
switch(xs) {
case nil:
case cons(h, t):
if(i != 0) {
length_update(i - 1, y, t);
}
}
}
lemma void all_eq_nth<t>(list<t> xs, t x, int i)
requires all_eq(xs, x) && 0 <= i &*& i < length(xs);
ensures nth(i, xs) == x;
{
switch (xs) {
case nil:
case cons(x0, xs0):
if (i == 0) {
} else {
all_eq_nth(xs0, x, i - 1);
}
}
}
lemma_auto(append(take(n, xs), drop(n, xs))) void append_take_drop_n<t>(list<t> xs, int n)
requires 0 <= n && n <= length(xs);
ensures append(take(n, xs), drop(n, xs)) == xs;
{
switch (xs) {
case nil:
case cons(x0, xs0):
if (n == 0) {
} else {
append_take_drop_n(xs0, n - 1);
}
}
}
lemma void count_nonnegative<t>(list<t> xs, fixpoint(t, bool) p)
requires true;
ensures 0 <= count(xs, p);
{
switch(xs) {
case nil:
case cons(h, t): count_nonnegative(t, p);
}
}
lemma void count_remove<t>(list<t> xs, fixpoint(t, bool) p, t x)
requires mem(x, xs) == true;
ensures count(remove(x, xs), p) == count(xs, p) - (p(x) ? 1 : 0);
{
switch(xs) {
case nil:
case cons(h, t): if(h != x) count_remove(t, p, x);
}
}
lemma void count_zero_mem<t>(list<t> xs, fixpoint(t, bool) p, t x)
requires count(xs, p) == 0 && mem(x, xs) == true;
ensures ! p(x);
{
switch(xs) {
case nil:
case cons(h, t):
count_nonnegative(t, p);
if(h != x) {
count_zero_mem(t, p, x);
}
}
}
lemma t count_non_zero<t>(list<t> xs, fixpoint(t, bool) p)
requires count(xs, p) != 0;
ensures mem(result, xs) && p(result);
{
switch(xs) {
case nil:
case cons(h, t):
if(p(h)) {
return h;
} else {
return count_non_zero(t, p);
}
}
}
lemma void count_append<t>(list<t> xs, list<t> ys, fixpoint(t, bool) p)
requires true;
ensures count(append(xs, ys), p) == count(xs, p) + count(ys, p);
{
switch(xs) {
case nil:
case cons(h, t):
count_append(t, ys, p);
}
}
@*/
|
the_stack_data/15763094.c | void fence() { asm("sync"); }
void lwfence() { asm("lwsync"); }
void isync() { asm("isync"); }
int __unbuffered_cnt=0;
int __unbuffered_p0_EAX=0;
int __unbuffered_p1_EAX=0;
int __unbuffered_p1_EBX=0;
int __unbuffered_p2_EAX=0;
int __unbuffered_p2_EBX=0;
int a=0;
int b=0;
int x=0;
int y=0;
int z=0;
void * P0(void * arg) {
b = 1;
__unbuffered_p0_EAX = x;
// Instrumentation for CPROVER
fence();
__unbuffered_cnt++;
}
void * P1(void * arg) {
x = 1;
y = 1;
__unbuffered_p1_EAX = y;
__unbuffered_p1_EBX = z;
// Instrumentation for CPROVER
fence();
__unbuffered_cnt++;
}
void * P2(void * arg) {
z = 1;
a = 1;
__unbuffered_p2_EAX = a;
__unbuffered_p2_EBX = b;
// Instrumentation for CPROVER
fence();
__unbuffered_cnt++;
}
int main() {
__CPROVER_ASYNC_0: P0(0);
__CPROVER_ASYNC_1: P1(0);
__CPROVER_ASYNC_2: P2(0);
__CPROVER_assume(__unbuffered_cnt==3);
fence();
// EXPECT:exists
__CPROVER_assert(!(__unbuffered_p0_EAX==0 && __unbuffered_p1_EAX==1 && __unbuffered_p1_EBX==0 && __unbuffered_p2_EAX==1 && __unbuffered_p2_EBX==0), "Program proven to be relaxed for X86, model checker says YES.");
return 0;
}
|
the_stack_data/143247.c | /*
* Benchmarks used in the paper "Commutativity of Reducers"
* which was published at TACAS 2015 and
* written by Yu-Fang Chen, Chih-Duo Hong, Nishant Sinha, and Bow-Yaw Wang.
* http://link.springer.com/chapter/10.1007%2F978-3-662-46681-0_9
*
* We checks if a function is "deterministic" w.r.t. all possible permutations
* of an input array. Such property is desirable for reducers in the
* map-reduce programming model. It ensures that the program always computes
* the same results on the same input data set.
*/
#define N 5
#define fun rangesum
extern void __VERIFIER_error() __attribute__ ((__noreturn__));
extern int __VERIFIER_nondet_int();
void init_nondet(int x[N]) {
int i;
for (i = 0; i < N; i++) {
x[i] = __VERIFIER_nondet_int();
}
}
int rangesum (int x[N])
{
int i;
long long ret;
ret = 0;
int cnt = 0;
for (i = 0; i < N; i++) {
if( i > N/2){
ret = ret + x[i];
cnt = cnt + 1;
}
}
if ( cnt !=0)
return ret / cnt;
else
return 0;
}
int main ()
{
int x[N];
init_nondet(x);
int temp;
int ret;
int ret2;
int ret5;
ret = fun(x);
temp=x[0];x[0] = x[1]; x[1] = temp;
ret2 = fun(x);
temp=x[0];
for(int i =0 ; i<N-1; i++){
x[i] = x[i+1];
}
x[N-1] = temp;
ret5 = fun(x);
if(ret != ret2 || ret !=ret5){
__VERIFIER_error();
}
return 1;
}
|
the_stack_data/181393930.c | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
char* word = argv[1];
FILE *input_text = fopen(argv[2], "r");
char ch;
char *specimen = malloc(sizeof(word));
int position = 0;
for (int i = 0; i < strlen(word); i++)
{
specimen[i] = fgetc(input_text);
position++;
}
while ((ch = fgetc(input_text)) != EOF)
{
if (!strcmp(specimen, word))
{
printf("The word \"%s\" has been found at the position %d\n", word, position);
}
position++;
specimen++;
specimen[strlen(word) - 1] = ch;
}
printf("The search has been finished");
return 0;
}
|
the_stack_data/50139016.c | #include<stdio.h>
main()
{
int i,j;
for(i=6;i>=1;i--)
{
for(j=1;j<=6-i;j++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf("%c",(char)(j+64));
}
for(j=i-1;j>=1;j--)
{
printf("%c",(char)(j+64));
}
printf("\n");
}
} |
the_stack_data/182952800.c | extern void foo(void);
void bar(void)
{
foo();
} |
the_stack_data/11075673.c | /* $XFree86: xc/config/util/chownxterm.c,v 1.3 2006/01/09 14:56:16 dawes Exp $ */
/*
Copyright (c) 1993, 1994, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
*/
/*
* chownxterm --- make xterm suid root
*
* By Stephen Gildea, December 1993
*/
#define XTERM_PATH "/x11/programs/xterm/xterm"
#include <stdio.h>
#include <errno.h>
char *prog_name;
void help()
{
setgid(getgid());
setuid(getuid());
printf("chown-xterm makes %s suid root\n", XTERM_PATH);
printf("This is necessary on Ultrix for /dev/tty operation.\n");
exit(0);
}
void print_error(err_string)
char *err_string;
{
setgid(getgid());
setuid(getuid());
fprintf(stderr, "%s: \"%s\"", prog_name, err_string);
perror(" failed");
exit(1);
}
main(argc, argv)
int argc;
char **argv;
{
prog_name = argv[0];
if (argc >= 2 && strcmp(argv[1], "-help") == 0) {
help();
} else {
if (chown(XTERM_PATH, 0, -1) != 0)
print_error("chown root " XTERM_PATH);
if (chmod(XTERM_PATH, 04555) != 0)
print_error("chmod 4555 " XTERM_PATH);
}
exit(0);
}
|
the_stack_data/184047.c | /* Autogenerated: src/ExtractionOCaml/bedrock2_word_by_word_montgomery --lang=bedrock2 --no-wide-int --widen-carry --widen-bytes --split-multiret --no-select p384 '2^384 - 2^128 - 2^96 + 2^32 - 1' 64 mul square add sub opp from_montgomery to_montgomery nonzero selectznz to_bytes from_bytes */
/* curve description: p384 */
/* requested operations: mul, square, add, sub, opp, from_montgomery, to_montgomery, nonzero, selectznz, to_bytes, from_bytes */
/* m = 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeffffffff0000000000000000ffffffff (from "2^384 - 2^128 - 2^96 + 2^32 - 1") */
/* machine_wordsize = 64 (from "64") */
/* */
/* NOTE: In addition to the bounds specified above each function, all */
/* functions synthesized for this Montgomery arithmetic require the */
/* input to be strictly less than the prime modulus (m), and also */
/* require the input to be in the unique saturated representation. */
/* All functions also ensure that these two properties are true of */
/* return values. */
/* */
/* Computed values: */
/* eval z = z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) + (z[4] << 256) + (z[5] << 0x140) */
/* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) + (z[32] << 256) + (z[33] << 0x108) + (z[34] << 0x110) + (z[35] << 0x118) + (z[36] << 0x120) + (z[37] << 0x128) + (z[38] << 0x130) + (z[39] << 0x138) + (z[40] << 0x140) + (z[41] << 0x148) + (z[42] << 0x150) + (z[43] << 0x158) + (z[44] << 0x160) + (z[45] << 0x168) + (z[46] << 0x170) + (z[47] << 0x178) */
#include <stdint.h>
/*
* Input Bounds:
* in0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* in1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* Output Bounds:
* out0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
*/
void fiat_p384_mul(uintptr_t in0, uintptr_t in1, uintptr_t out0) {
uintptr_t x1, x2, x3, x4, x5, x0, x17, x26, x29, x31, x27, x32, x24, x33, x35, x36, x25, x37, x22, x38, x40, x41, x23, x42, x20, x43, x45, x46, x21, x47, x18, x48, x50, x51, x19, x53, x62, x65, x67, x63, x68, x60, x69, x71, x72, x61, x73, x58, x74, x76, x77, x59, x78, x56, x79, x81, x82, x57, x83, x54, x84, x86, x87, x55, x64, x89, x28, x90, x30, x91, x66, x92, x94, x95, x34, x96, x70, x97, x99, x100, x39, x101, x75, x102, x104, x105, x44, x106, x80, x107, x109, x110, x49, x111, x85, x112, x114, x115, x52, x116, x88, x117, x119, x12, x129, x132, x134, x130, x135, x127, x136, x138, x139, x128, x140, x125, x141, x143, x144, x126, x145, x123, x146, x148, x149, x124, x150, x121, x151, x153, x154, x122, x131, x93, x157, x98, x158, x133, x159, x161, x162, x103, x163, x137, x164, x166, x167, x108, x168, x142, x169, x171, x172, x113, x173, x147, x174, x176, x177, x118, x178, x152, x179, x181, x182, x120, x183, x155, x184, x186, x188, x197, x200, x202, x198, x203, x195, x204, x206, x207, x196, x208, x193, x209, x211, x212, x194, x213, x191, x214, x216, x217, x192, x218, x189, x219, x221, x222, x190, x199, x224, x156, x225, x160, x226, x201, x227, x229, x230, x165, x231, x205, x232, x234, x235, x170, x236, x210, x237, x239, x240, x175, x241, x215, x242, x244, x245, x180, x246, x220, x247, x249, x250, x185, x251, x223, x252, x254, x255, x187, x13, x265, x268, x270, x266, x271, x263, x272, x274, x275, x264, x276, x261, x277, x279, x280, x262, x281, x259, x282, x284, x285, x260, x286, x257, x287, x289, x290, x258, x267, x228, x293, x233, x294, x269, x295, x297, x298, x238, x299, x273, x300, x302, x303, x243, x304, x278, x305, x307, x308, x248, x309, x283, x310, x312, x313, x253, x314, x288, x315, x317, x318, x256, x319, x291, x320, x322, x324, x333, x336, x338, x334, x339, x331, x340, x342, x343, x332, x344, x329, x345, x347, x348, x330, x349, x327, x350, x352, x353, x328, x354, x325, x355, x357, x358, x326, x335, x360, x292, x361, x296, x362, x337, x363, x365, x366, x301, x367, x341, x368, x370, x371, x306, x372, x346, x373, x375, x376, x311, x377, x351, x378, x380, x381, x316, x382, x356, x383, x385, x386, x321, x387, x359, x388, x390, x391, x323, x14, x401, x404, x406, x402, x407, x399, x408, x410, x411, x400, x412, x397, x413, x415, x416, x398, x417, x395, x418, x420, x421, x396, x422, x393, x423, x425, x426, x394, x403, x364, x429, x369, x430, x405, x431, x433, x434, x374, x435, x409, x436, x438, x439, x379, x440, x414, x441, x443, x444, x384, x445, x419, x446, x448, x449, x389, x450, x424, x451, x453, x454, x392, x455, x427, x456, x458, x460, x469, x472, x474, x470, x475, x467, x476, x478, x479, x468, x480, x465, x481, x483, x484, x466, x485, x463, x486, x488, x489, x464, x490, x461, x491, x493, x494, x462, x471, x496, x428, x497, x432, x498, x473, x499, x501, x502, x437, x503, x477, x504, x506, x507, x442, x508, x482, x509, x511, x512, x447, x513, x487, x514, x516, x517, x452, x518, x492, x519, x521, x522, x457, x523, x495, x524, x526, x527, x459, x15, x537, x540, x542, x538, x543, x535, x544, x546, x547, x536, x548, x533, x549, x551, x552, x534, x553, x531, x554, x556, x557, x532, x558, x529, x559, x561, x562, x530, x539, x500, x565, x505, x566, x541, x567, x569, x570, x510, x571, x545, x572, x574, x575, x515, x576, x550, x577, x579, x580, x520, x581, x555, x582, x584, x585, x525, x586, x560, x587, x589, x590, x528, x591, x563, x592, x594, x596, x605, x608, x610, x606, x611, x603, x612, x614, x615, x604, x616, x601, x617, x619, x620, x602, x621, x599, x622, x624, x625, x600, x626, x597, x627, x629, x630, x598, x607, x632, x564, x633, x568, x634, x609, x635, x637, x638, x573, x639, x613, x640, x642, x643, x578, x644, x618, x645, x647, x648, x583, x649, x623, x650, x652, x653, x588, x654, x628, x655, x657, x658, x593, x659, x631, x660, x662, x663, x595, x11, x10, x9, x8, x7, x16, x6, x673, x676, x678, x674, x679, x671, x680, x682, x683, x672, x684, x669, x685, x687, x688, x670, x689, x667, x690, x692, x693, x668, x694, x665, x695, x697, x698, x666, x675, x636, x701, x641, x702, x677, x703, x705, x706, x646, x707, x681, x708, x710, x711, x651, x712, x686, x713, x715, x716, x656, x717, x691, x718, x720, x721, x661, x722, x696, x723, x725, x726, x664, x727, x699, x728, x730, x732, x741, x744, x746, x742, x747, x739, x748, x750, x751, x740, x752, x737, x753, x755, x756, x738, x757, x735, x758, x760, x761, x736, x762, x733, x763, x765, x766, x734, x743, x768, x700, x769, x704, x770, x745, x771, x773, x774, x709, x775, x749, x776, x778, x779, x714, x780, x754, x781, x783, x784, x719, x785, x759, x786, x788, x789, x724, x790, x764, x791, x793, x794, x729, x795, x767, x796, x798, x799, x731, x802, x803, x804, x805, x806, x808, x809, x810, x811, x813, x814, x815, x816, x818, x819, x820, x821, x823, x824, x825, x826, x828, x829, x800, x831, x830, x832, x772, x834, x801, x835, x777, x837, x807, x838, x782, x840, x812, x841, x787, x843, x817, x844, x792, x846, x822, x847, x833, x797, x849, x827, x850, x836, x839, x842, x845, x848, x851, x852, x853, x854, x855, x856, x857;
x0 = *(uintptr_t*)((in0)+((uintptr_t)0ULL));
x1 = *(uintptr_t*)((in0)+((uintptr_t)8ULL));
x2 = *(uintptr_t*)((in0)+((uintptr_t)16ULL));
x3 = *(uintptr_t*)((in0)+((uintptr_t)24ULL));
x4 = *(uintptr_t*)((in0)+((uintptr_t)32ULL));
x5 = *(uintptr_t*)((in0)+((uintptr_t)40ULL));
/*skip*/
x6 = *(uintptr_t*)((in1)+((uintptr_t)0ULL));
x7 = *(uintptr_t*)((in1)+((uintptr_t)8ULL));
x8 = *(uintptr_t*)((in1)+((uintptr_t)16ULL));
x9 = *(uintptr_t*)((in1)+((uintptr_t)24ULL));
x10 = *(uintptr_t*)((in1)+((uintptr_t)32ULL));
x11 = *(uintptr_t*)((in1)+((uintptr_t)40ULL));
/*skip*/
/*skip*/
x12 = x1;
x13 = x2;
x14 = x3;
x15 = x4;
x16 = x5;
x17 = x0;
x18 = (x17)*(x11);
x19 = sizeof(intptr_t) == 4 ? ((uint64_t)(x17)*(x11))>>32 : ((__uint128_t)(x17)*(x11))>>64;
x20 = (x17)*(x10);
x21 = sizeof(intptr_t) == 4 ? ((uint64_t)(x17)*(x10))>>32 : ((__uint128_t)(x17)*(x10))>>64;
x22 = (x17)*(x9);
x23 = sizeof(intptr_t) == 4 ? ((uint64_t)(x17)*(x9))>>32 : ((__uint128_t)(x17)*(x9))>>64;
x24 = (x17)*(x8);
x25 = sizeof(intptr_t) == 4 ? ((uint64_t)(x17)*(x8))>>32 : ((__uint128_t)(x17)*(x8))>>64;
x26 = (x17)*(x7);
x27 = sizeof(intptr_t) == 4 ? ((uint64_t)(x17)*(x7))>>32 : ((__uint128_t)(x17)*(x7))>>64;
x28 = (x17)*(x6);
x29 = sizeof(intptr_t) == 4 ? ((uint64_t)(x17)*(x6))>>32 : ((__uint128_t)(x17)*(x6))>>64;
x30 = (x29)+(x26);
x31 = (x30)<(x29);
x32 = (x31)+(x27);
x33 = (x32)<(x27);
x34 = (x32)+(x24);
x35 = (x34)<(x24);
x36 = (x33)+(x35);
x37 = (x36)+(x25);
x38 = (x37)<(x25);
x39 = (x37)+(x22);
x40 = (x39)<(x22);
x41 = (x38)+(x40);
x42 = (x41)+(x23);
x43 = (x42)<(x23);
x44 = (x42)+(x20);
x45 = (x44)<(x20);
x46 = (x43)+(x45);
x47 = (x46)+(x21);
x48 = (x47)<(x21);
x49 = (x47)+(x18);
x50 = (x49)<(x18);
x51 = (x48)+(x50);
x52 = (x51)+(x19);
x53 = (x28)*((uintptr_t)4294967297ULL);
x54 = (x53)*((uintptr_t)18446744073709551615ULL);
x55 = sizeof(intptr_t) == 4 ? ((uint64_t)(x53)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x53)*((uintptr_t)18446744073709551615ULL))>>64;
x56 = (x53)*((uintptr_t)18446744073709551615ULL);
x57 = sizeof(intptr_t) == 4 ? ((uint64_t)(x53)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x53)*((uintptr_t)18446744073709551615ULL))>>64;
x58 = (x53)*((uintptr_t)18446744073709551615ULL);
x59 = sizeof(intptr_t) == 4 ? ((uint64_t)(x53)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x53)*((uintptr_t)18446744073709551615ULL))>>64;
x60 = (x53)*((uintptr_t)18446744073709551614ULL);
x61 = sizeof(intptr_t) == 4 ? ((uint64_t)(x53)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x53)*((uintptr_t)18446744073709551614ULL))>>64;
x62 = (x53)*((uintptr_t)18446744069414584320ULL);
x63 = sizeof(intptr_t) == 4 ? ((uint64_t)(x53)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x53)*((uintptr_t)18446744069414584320ULL))>>64;
x64 = (x53)*((uintptr_t)4294967295ULL);
x65 = sizeof(intptr_t) == 4 ? ((uint64_t)(x53)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x53)*((uintptr_t)4294967295ULL))>>64;
x66 = (x65)+(x62);
x67 = (x66)<(x65);
x68 = (x67)+(x63);
x69 = (x68)<(x63);
x70 = (x68)+(x60);
x71 = (x70)<(x60);
x72 = (x69)+(x71);
x73 = (x72)+(x61);
x74 = (x73)<(x61);
x75 = (x73)+(x58);
x76 = (x75)<(x58);
x77 = (x74)+(x76);
x78 = (x77)+(x59);
x79 = (x78)<(x59);
x80 = (x78)+(x56);
x81 = (x80)<(x56);
x82 = (x79)+(x81);
x83 = (x82)+(x57);
x84 = (x83)<(x57);
x85 = (x83)+(x54);
x86 = (x85)<(x54);
x87 = (x84)+(x86);
x88 = (x87)+(x55);
x89 = (x28)+(x64);
x90 = (x89)<(x28);
x91 = (x90)+(x30);
x92 = (x91)<(x30);
x93 = (x91)+(x66);
x94 = (x93)<(x66);
x95 = (x92)+(x94);
x96 = (x95)+(x34);
x97 = (x96)<(x34);
x98 = (x96)+(x70);
x99 = (x98)<(x70);
x100 = (x97)+(x99);
x101 = (x100)+(x39);
x102 = (x101)<(x39);
x103 = (x101)+(x75);
x104 = (x103)<(x75);
x105 = (x102)+(x104);
x106 = (x105)+(x44);
x107 = (x106)<(x44);
x108 = (x106)+(x80);
x109 = (x108)<(x80);
x110 = (x107)+(x109);
x111 = (x110)+(x49);
x112 = (x111)<(x49);
x113 = (x111)+(x85);
x114 = (x113)<(x85);
x115 = (x112)+(x114);
x116 = (x115)+(x52);
x117 = (x116)<(x52);
x118 = (x116)+(x88);
x119 = (x118)<(x88);
x120 = (x117)+(x119);
x121 = (x12)*(x11);
x122 = sizeof(intptr_t) == 4 ? ((uint64_t)(x12)*(x11))>>32 : ((__uint128_t)(x12)*(x11))>>64;
x123 = (x12)*(x10);
x124 = sizeof(intptr_t) == 4 ? ((uint64_t)(x12)*(x10))>>32 : ((__uint128_t)(x12)*(x10))>>64;
x125 = (x12)*(x9);
x126 = sizeof(intptr_t) == 4 ? ((uint64_t)(x12)*(x9))>>32 : ((__uint128_t)(x12)*(x9))>>64;
x127 = (x12)*(x8);
x128 = sizeof(intptr_t) == 4 ? ((uint64_t)(x12)*(x8))>>32 : ((__uint128_t)(x12)*(x8))>>64;
x129 = (x12)*(x7);
x130 = sizeof(intptr_t) == 4 ? ((uint64_t)(x12)*(x7))>>32 : ((__uint128_t)(x12)*(x7))>>64;
x131 = (x12)*(x6);
x132 = sizeof(intptr_t) == 4 ? ((uint64_t)(x12)*(x6))>>32 : ((__uint128_t)(x12)*(x6))>>64;
x133 = (x132)+(x129);
x134 = (x133)<(x132);
x135 = (x134)+(x130);
x136 = (x135)<(x130);
x137 = (x135)+(x127);
x138 = (x137)<(x127);
x139 = (x136)+(x138);
x140 = (x139)+(x128);
x141 = (x140)<(x128);
x142 = (x140)+(x125);
x143 = (x142)<(x125);
x144 = (x141)+(x143);
x145 = (x144)+(x126);
x146 = (x145)<(x126);
x147 = (x145)+(x123);
x148 = (x147)<(x123);
x149 = (x146)+(x148);
x150 = (x149)+(x124);
x151 = (x150)<(x124);
x152 = (x150)+(x121);
x153 = (x152)<(x121);
x154 = (x151)+(x153);
x155 = (x154)+(x122);
x156 = (x93)+(x131);
x157 = (x156)<(x93);
x158 = (x157)+(x98);
x159 = (x158)<(x98);
x160 = (x158)+(x133);
x161 = (x160)<(x133);
x162 = (x159)+(x161);
x163 = (x162)+(x103);
x164 = (x163)<(x103);
x165 = (x163)+(x137);
x166 = (x165)<(x137);
x167 = (x164)+(x166);
x168 = (x167)+(x108);
x169 = (x168)<(x108);
x170 = (x168)+(x142);
x171 = (x170)<(x142);
x172 = (x169)+(x171);
x173 = (x172)+(x113);
x174 = (x173)<(x113);
x175 = (x173)+(x147);
x176 = (x175)<(x147);
x177 = (x174)+(x176);
x178 = (x177)+(x118);
x179 = (x178)<(x118);
x180 = (x178)+(x152);
x181 = (x180)<(x152);
x182 = (x179)+(x181);
x183 = (x182)+(x120);
x184 = (x183)<(x120);
x185 = (x183)+(x155);
x186 = (x185)<(x155);
x187 = (x184)+(x186);
x188 = (x156)*((uintptr_t)4294967297ULL);
x189 = (x188)*((uintptr_t)18446744073709551615ULL);
x190 = sizeof(intptr_t) == 4 ? ((uint64_t)(x188)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x188)*((uintptr_t)18446744073709551615ULL))>>64;
x191 = (x188)*((uintptr_t)18446744073709551615ULL);
x192 = sizeof(intptr_t) == 4 ? ((uint64_t)(x188)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x188)*((uintptr_t)18446744073709551615ULL))>>64;
x193 = (x188)*((uintptr_t)18446744073709551615ULL);
x194 = sizeof(intptr_t) == 4 ? ((uint64_t)(x188)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x188)*((uintptr_t)18446744073709551615ULL))>>64;
x195 = (x188)*((uintptr_t)18446744073709551614ULL);
x196 = sizeof(intptr_t) == 4 ? ((uint64_t)(x188)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x188)*((uintptr_t)18446744073709551614ULL))>>64;
x197 = (x188)*((uintptr_t)18446744069414584320ULL);
x198 = sizeof(intptr_t) == 4 ? ((uint64_t)(x188)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x188)*((uintptr_t)18446744069414584320ULL))>>64;
x199 = (x188)*((uintptr_t)4294967295ULL);
x200 = sizeof(intptr_t) == 4 ? ((uint64_t)(x188)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x188)*((uintptr_t)4294967295ULL))>>64;
x201 = (x200)+(x197);
x202 = (x201)<(x200);
x203 = (x202)+(x198);
x204 = (x203)<(x198);
x205 = (x203)+(x195);
x206 = (x205)<(x195);
x207 = (x204)+(x206);
x208 = (x207)+(x196);
x209 = (x208)<(x196);
x210 = (x208)+(x193);
x211 = (x210)<(x193);
x212 = (x209)+(x211);
x213 = (x212)+(x194);
x214 = (x213)<(x194);
x215 = (x213)+(x191);
x216 = (x215)<(x191);
x217 = (x214)+(x216);
x218 = (x217)+(x192);
x219 = (x218)<(x192);
x220 = (x218)+(x189);
x221 = (x220)<(x189);
x222 = (x219)+(x221);
x223 = (x222)+(x190);
x224 = (x156)+(x199);
x225 = (x224)<(x156);
x226 = (x225)+(x160);
x227 = (x226)<(x160);
x228 = (x226)+(x201);
x229 = (x228)<(x201);
x230 = (x227)+(x229);
x231 = (x230)+(x165);
x232 = (x231)<(x165);
x233 = (x231)+(x205);
x234 = (x233)<(x205);
x235 = (x232)+(x234);
x236 = (x235)+(x170);
x237 = (x236)<(x170);
x238 = (x236)+(x210);
x239 = (x238)<(x210);
x240 = (x237)+(x239);
x241 = (x240)+(x175);
x242 = (x241)<(x175);
x243 = (x241)+(x215);
x244 = (x243)<(x215);
x245 = (x242)+(x244);
x246 = (x245)+(x180);
x247 = (x246)<(x180);
x248 = (x246)+(x220);
x249 = (x248)<(x220);
x250 = (x247)+(x249);
x251 = (x250)+(x185);
x252 = (x251)<(x185);
x253 = (x251)+(x223);
x254 = (x253)<(x223);
x255 = (x252)+(x254);
x256 = (x255)+(x187);
x257 = (x13)*(x11);
x258 = sizeof(intptr_t) == 4 ? ((uint64_t)(x13)*(x11))>>32 : ((__uint128_t)(x13)*(x11))>>64;
x259 = (x13)*(x10);
x260 = sizeof(intptr_t) == 4 ? ((uint64_t)(x13)*(x10))>>32 : ((__uint128_t)(x13)*(x10))>>64;
x261 = (x13)*(x9);
x262 = sizeof(intptr_t) == 4 ? ((uint64_t)(x13)*(x9))>>32 : ((__uint128_t)(x13)*(x9))>>64;
x263 = (x13)*(x8);
x264 = sizeof(intptr_t) == 4 ? ((uint64_t)(x13)*(x8))>>32 : ((__uint128_t)(x13)*(x8))>>64;
x265 = (x13)*(x7);
x266 = sizeof(intptr_t) == 4 ? ((uint64_t)(x13)*(x7))>>32 : ((__uint128_t)(x13)*(x7))>>64;
x267 = (x13)*(x6);
x268 = sizeof(intptr_t) == 4 ? ((uint64_t)(x13)*(x6))>>32 : ((__uint128_t)(x13)*(x6))>>64;
x269 = (x268)+(x265);
x270 = (x269)<(x268);
x271 = (x270)+(x266);
x272 = (x271)<(x266);
x273 = (x271)+(x263);
x274 = (x273)<(x263);
x275 = (x272)+(x274);
x276 = (x275)+(x264);
x277 = (x276)<(x264);
x278 = (x276)+(x261);
x279 = (x278)<(x261);
x280 = (x277)+(x279);
x281 = (x280)+(x262);
x282 = (x281)<(x262);
x283 = (x281)+(x259);
x284 = (x283)<(x259);
x285 = (x282)+(x284);
x286 = (x285)+(x260);
x287 = (x286)<(x260);
x288 = (x286)+(x257);
x289 = (x288)<(x257);
x290 = (x287)+(x289);
x291 = (x290)+(x258);
x292 = (x228)+(x267);
x293 = (x292)<(x228);
x294 = (x293)+(x233);
x295 = (x294)<(x233);
x296 = (x294)+(x269);
x297 = (x296)<(x269);
x298 = (x295)+(x297);
x299 = (x298)+(x238);
x300 = (x299)<(x238);
x301 = (x299)+(x273);
x302 = (x301)<(x273);
x303 = (x300)+(x302);
x304 = (x303)+(x243);
x305 = (x304)<(x243);
x306 = (x304)+(x278);
x307 = (x306)<(x278);
x308 = (x305)+(x307);
x309 = (x308)+(x248);
x310 = (x309)<(x248);
x311 = (x309)+(x283);
x312 = (x311)<(x283);
x313 = (x310)+(x312);
x314 = (x313)+(x253);
x315 = (x314)<(x253);
x316 = (x314)+(x288);
x317 = (x316)<(x288);
x318 = (x315)+(x317);
x319 = (x318)+(x256);
x320 = (x319)<(x256);
x321 = (x319)+(x291);
x322 = (x321)<(x291);
x323 = (x320)+(x322);
x324 = (x292)*((uintptr_t)4294967297ULL);
x325 = (x324)*((uintptr_t)18446744073709551615ULL);
x326 = sizeof(intptr_t) == 4 ? ((uint64_t)(x324)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x324)*((uintptr_t)18446744073709551615ULL))>>64;
x327 = (x324)*((uintptr_t)18446744073709551615ULL);
x328 = sizeof(intptr_t) == 4 ? ((uint64_t)(x324)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x324)*((uintptr_t)18446744073709551615ULL))>>64;
x329 = (x324)*((uintptr_t)18446744073709551615ULL);
x330 = sizeof(intptr_t) == 4 ? ((uint64_t)(x324)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x324)*((uintptr_t)18446744073709551615ULL))>>64;
x331 = (x324)*((uintptr_t)18446744073709551614ULL);
x332 = sizeof(intptr_t) == 4 ? ((uint64_t)(x324)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x324)*((uintptr_t)18446744073709551614ULL))>>64;
x333 = (x324)*((uintptr_t)18446744069414584320ULL);
x334 = sizeof(intptr_t) == 4 ? ((uint64_t)(x324)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x324)*((uintptr_t)18446744069414584320ULL))>>64;
x335 = (x324)*((uintptr_t)4294967295ULL);
x336 = sizeof(intptr_t) == 4 ? ((uint64_t)(x324)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x324)*((uintptr_t)4294967295ULL))>>64;
x337 = (x336)+(x333);
x338 = (x337)<(x336);
x339 = (x338)+(x334);
x340 = (x339)<(x334);
x341 = (x339)+(x331);
x342 = (x341)<(x331);
x343 = (x340)+(x342);
x344 = (x343)+(x332);
x345 = (x344)<(x332);
x346 = (x344)+(x329);
x347 = (x346)<(x329);
x348 = (x345)+(x347);
x349 = (x348)+(x330);
x350 = (x349)<(x330);
x351 = (x349)+(x327);
x352 = (x351)<(x327);
x353 = (x350)+(x352);
x354 = (x353)+(x328);
x355 = (x354)<(x328);
x356 = (x354)+(x325);
x357 = (x356)<(x325);
x358 = (x355)+(x357);
x359 = (x358)+(x326);
x360 = (x292)+(x335);
x361 = (x360)<(x292);
x362 = (x361)+(x296);
x363 = (x362)<(x296);
x364 = (x362)+(x337);
x365 = (x364)<(x337);
x366 = (x363)+(x365);
x367 = (x366)+(x301);
x368 = (x367)<(x301);
x369 = (x367)+(x341);
x370 = (x369)<(x341);
x371 = (x368)+(x370);
x372 = (x371)+(x306);
x373 = (x372)<(x306);
x374 = (x372)+(x346);
x375 = (x374)<(x346);
x376 = (x373)+(x375);
x377 = (x376)+(x311);
x378 = (x377)<(x311);
x379 = (x377)+(x351);
x380 = (x379)<(x351);
x381 = (x378)+(x380);
x382 = (x381)+(x316);
x383 = (x382)<(x316);
x384 = (x382)+(x356);
x385 = (x384)<(x356);
x386 = (x383)+(x385);
x387 = (x386)+(x321);
x388 = (x387)<(x321);
x389 = (x387)+(x359);
x390 = (x389)<(x359);
x391 = (x388)+(x390);
x392 = (x391)+(x323);
x393 = (x14)*(x11);
x394 = sizeof(intptr_t) == 4 ? ((uint64_t)(x14)*(x11))>>32 : ((__uint128_t)(x14)*(x11))>>64;
x395 = (x14)*(x10);
x396 = sizeof(intptr_t) == 4 ? ((uint64_t)(x14)*(x10))>>32 : ((__uint128_t)(x14)*(x10))>>64;
x397 = (x14)*(x9);
x398 = sizeof(intptr_t) == 4 ? ((uint64_t)(x14)*(x9))>>32 : ((__uint128_t)(x14)*(x9))>>64;
x399 = (x14)*(x8);
x400 = sizeof(intptr_t) == 4 ? ((uint64_t)(x14)*(x8))>>32 : ((__uint128_t)(x14)*(x8))>>64;
x401 = (x14)*(x7);
x402 = sizeof(intptr_t) == 4 ? ((uint64_t)(x14)*(x7))>>32 : ((__uint128_t)(x14)*(x7))>>64;
x403 = (x14)*(x6);
x404 = sizeof(intptr_t) == 4 ? ((uint64_t)(x14)*(x6))>>32 : ((__uint128_t)(x14)*(x6))>>64;
x405 = (x404)+(x401);
x406 = (x405)<(x404);
x407 = (x406)+(x402);
x408 = (x407)<(x402);
x409 = (x407)+(x399);
x410 = (x409)<(x399);
x411 = (x408)+(x410);
x412 = (x411)+(x400);
x413 = (x412)<(x400);
x414 = (x412)+(x397);
x415 = (x414)<(x397);
x416 = (x413)+(x415);
x417 = (x416)+(x398);
x418 = (x417)<(x398);
x419 = (x417)+(x395);
x420 = (x419)<(x395);
x421 = (x418)+(x420);
x422 = (x421)+(x396);
x423 = (x422)<(x396);
x424 = (x422)+(x393);
x425 = (x424)<(x393);
x426 = (x423)+(x425);
x427 = (x426)+(x394);
x428 = (x364)+(x403);
x429 = (x428)<(x364);
x430 = (x429)+(x369);
x431 = (x430)<(x369);
x432 = (x430)+(x405);
x433 = (x432)<(x405);
x434 = (x431)+(x433);
x435 = (x434)+(x374);
x436 = (x435)<(x374);
x437 = (x435)+(x409);
x438 = (x437)<(x409);
x439 = (x436)+(x438);
x440 = (x439)+(x379);
x441 = (x440)<(x379);
x442 = (x440)+(x414);
x443 = (x442)<(x414);
x444 = (x441)+(x443);
x445 = (x444)+(x384);
x446 = (x445)<(x384);
x447 = (x445)+(x419);
x448 = (x447)<(x419);
x449 = (x446)+(x448);
x450 = (x449)+(x389);
x451 = (x450)<(x389);
x452 = (x450)+(x424);
x453 = (x452)<(x424);
x454 = (x451)+(x453);
x455 = (x454)+(x392);
x456 = (x455)<(x392);
x457 = (x455)+(x427);
x458 = (x457)<(x427);
x459 = (x456)+(x458);
x460 = (x428)*((uintptr_t)4294967297ULL);
x461 = (x460)*((uintptr_t)18446744073709551615ULL);
x462 = sizeof(intptr_t) == 4 ? ((uint64_t)(x460)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x460)*((uintptr_t)18446744073709551615ULL))>>64;
x463 = (x460)*((uintptr_t)18446744073709551615ULL);
x464 = sizeof(intptr_t) == 4 ? ((uint64_t)(x460)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x460)*((uintptr_t)18446744073709551615ULL))>>64;
x465 = (x460)*((uintptr_t)18446744073709551615ULL);
x466 = sizeof(intptr_t) == 4 ? ((uint64_t)(x460)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x460)*((uintptr_t)18446744073709551615ULL))>>64;
x467 = (x460)*((uintptr_t)18446744073709551614ULL);
x468 = sizeof(intptr_t) == 4 ? ((uint64_t)(x460)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x460)*((uintptr_t)18446744073709551614ULL))>>64;
x469 = (x460)*((uintptr_t)18446744069414584320ULL);
x470 = sizeof(intptr_t) == 4 ? ((uint64_t)(x460)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x460)*((uintptr_t)18446744069414584320ULL))>>64;
x471 = (x460)*((uintptr_t)4294967295ULL);
x472 = sizeof(intptr_t) == 4 ? ((uint64_t)(x460)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x460)*((uintptr_t)4294967295ULL))>>64;
x473 = (x472)+(x469);
x474 = (x473)<(x472);
x475 = (x474)+(x470);
x476 = (x475)<(x470);
x477 = (x475)+(x467);
x478 = (x477)<(x467);
x479 = (x476)+(x478);
x480 = (x479)+(x468);
x481 = (x480)<(x468);
x482 = (x480)+(x465);
x483 = (x482)<(x465);
x484 = (x481)+(x483);
x485 = (x484)+(x466);
x486 = (x485)<(x466);
x487 = (x485)+(x463);
x488 = (x487)<(x463);
x489 = (x486)+(x488);
x490 = (x489)+(x464);
x491 = (x490)<(x464);
x492 = (x490)+(x461);
x493 = (x492)<(x461);
x494 = (x491)+(x493);
x495 = (x494)+(x462);
x496 = (x428)+(x471);
x497 = (x496)<(x428);
x498 = (x497)+(x432);
x499 = (x498)<(x432);
x500 = (x498)+(x473);
x501 = (x500)<(x473);
x502 = (x499)+(x501);
x503 = (x502)+(x437);
x504 = (x503)<(x437);
x505 = (x503)+(x477);
x506 = (x505)<(x477);
x507 = (x504)+(x506);
x508 = (x507)+(x442);
x509 = (x508)<(x442);
x510 = (x508)+(x482);
x511 = (x510)<(x482);
x512 = (x509)+(x511);
x513 = (x512)+(x447);
x514 = (x513)<(x447);
x515 = (x513)+(x487);
x516 = (x515)<(x487);
x517 = (x514)+(x516);
x518 = (x517)+(x452);
x519 = (x518)<(x452);
x520 = (x518)+(x492);
x521 = (x520)<(x492);
x522 = (x519)+(x521);
x523 = (x522)+(x457);
x524 = (x523)<(x457);
x525 = (x523)+(x495);
x526 = (x525)<(x495);
x527 = (x524)+(x526);
x528 = (x527)+(x459);
x529 = (x15)*(x11);
x530 = sizeof(intptr_t) == 4 ? ((uint64_t)(x15)*(x11))>>32 : ((__uint128_t)(x15)*(x11))>>64;
x531 = (x15)*(x10);
x532 = sizeof(intptr_t) == 4 ? ((uint64_t)(x15)*(x10))>>32 : ((__uint128_t)(x15)*(x10))>>64;
x533 = (x15)*(x9);
x534 = sizeof(intptr_t) == 4 ? ((uint64_t)(x15)*(x9))>>32 : ((__uint128_t)(x15)*(x9))>>64;
x535 = (x15)*(x8);
x536 = sizeof(intptr_t) == 4 ? ((uint64_t)(x15)*(x8))>>32 : ((__uint128_t)(x15)*(x8))>>64;
x537 = (x15)*(x7);
x538 = sizeof(intptr_t) == 4 ? ((uint64_t)(x15)*(x7))>>32 : ((__uint128_t)(x15)*(x7))>>64;
x539 = (x15)*(x6);
x540 = sizeof(intptr_t) == 4 ? ((uint64_t)(x15)*(x6))>>32 : ((__uint128_t)(x15)*(x6))>>64;
x541 = (x540)+(x537);
x542 = (x541)<(x540);
x543 = (x542)+(x538);
x544 = (x543)<(x538);
x545 = (x543)+(x535);
x546 = (x545)<(x535);
x547 = (x544)+(x546);
x548 = (x547)+(x536);
x549 = (x548)<(x536);
x550 = (x548)+(x533);
x551 = (x550)<(x533);
x552 = (x549)+(x551);
x553 = (x552)+(x534);
x554 = (x553)<(x534);
x555 = (x553)+(x531);
x556 = (x555)<(x531);
x557 = (x554)+(x556);
x558 = (x557)+(x532);
x559 = (x558)<(x532);
x560 = (x558)+(x529);
x561 = (x560)<(x529);
x562 = (x559)+(x561);
x563 = (x562)+(x530);
x564 = (x500)+(x539);
x565 = (x564)<(x500);
x566 = (x565)+(x505);
x567 = (x566)<(x505);
x568 = (x566)+(x541);
x569 = (x568)<(x541);
x570 = (x567)+(x569);
x571 = (x570)+(x510);
x572 = (x571)<(x510);
x573 = (x571)+(x545);
x574 = (x573)<(x545);
x575 = (x572)+(x574);
x576 = (x575)+(x515);
x577 = (x576)<(x515);
x578 = (x576)+(x550);
x579 = (x578)<(x550);
x580 = (x577)+(x579);
x581 = (x580)+(x520);
x582 = (x581)<(x520);
x583 = (x581)+(x555);
x584 = (x583)<(x555);
x585 = (x582)+(x584);
x586 = (x585)+(x525);
x587 = (x586)<(x525);
x588 = (x586)+(x560);
x589 = (x588)<(x560);
x590 = (x587)+(x589);
x591 = (x590)+(x528);
x592 = (x591)<(x528);
x593 = (x591)+(x563);
x594 = (x593)<(x563);
x595 = (x592)+(x594);
x596 = (x564)*((uintptr_t)4294967297ULL);
x597 = (x596)*((uintptr_t)18446744073709551615ULL);
x598 = sizeof(intptr_t) == 4 ? ((uint64_t)(x596)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x596)*((uintptr_t)18446744073709551615ULL))>>64;
x599 = (x596)*((uintptr_t)18446744073709551615ULL);
x600 = sizeof(intptr_t) == 4 ? ((uint64_t)(x596)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x596)*((uintptr_t)18446744073709551615ULL))>>64;
x601 = (x596)*((uintptr_t)18446744073709551615ULL);
x602 = sizeof(intptr_t) == 4 ? ((uint64_t)(x596)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x596)*((uintptr_t)18446744073709551615ULL))>>64;
x603 = (x596)*((uintptr_t)18446744073709551614ULL);
x604 = sizeof(intptr_t) == 4 ? ((uint64_t)(x596)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x596)*((uintptr_t)18446744073709551614ULL))>>64;
x605 = (x596)*((uintptr_t)18446744069414584320ULL);
x606 = sizeof(intptr_t) == 4 ? ((uint64_t)(x596)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x596)*((uintptr_t)18446744069414584320ULL))>>64;
x607 = (x596)*((uintptr_t)4294967295ULL);
x608 = sizeof(intptr_t) == 4 ? ((uint64_t)(x596)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x596)*((uintptr_t)4294967295ULL))>>64;
x609 = (x608)+(x605);
x610 = (x609)<(x608);
x611 = (x610)+(x606);
x612 = (x611)<(x606);
x613 = (x611)+(x603);
x614 = (x613)<(x603);
x615 = (x612)+(x614);
x616 = (x615)+(x604);
x617 = (x616)<(x604);
x618 = (x616)+(x601);
x619 = (x618)<(x601);
x620 = (x617)+(x619);
x621 = (x620)+(x602);
x622 = (x621)<(x602);
x623 = (x621)+(x599);
x624 = (x623)<(x599);
x625 = (x622)+(x624);
x626 = (x625)+(x600);
x627 = (x626)<(x600);
x628 = (x626)+(x597);
x629 = (x628)<(x597);
x630 = (x627)+(x629);
x631 = (x630)+(x598);
x632 = (x564)+(x607);
x633 = (x632)<(x564);
x634 = (x633)+(x568);
x635 = (x634)<(x568);
x636 = (x634)+(x609);
x637 = (x636)<(x609);
x638 = (x635)+(x637);
x639 = (x638)+(x573);
x640 = (x639)<(x573);
x641 = (x639)+(x613);
x642 = (x641)<(x613);
x643 = (x640)+(x642);
x644 = (x643)+(x578);
x645 = (x644)<(x578);
x646 = (x644)+(x618);
x647 = (x646)<(x618);
x648 = (x645)+(x647);
x649 = (x648)+(x583);
x650 = (x649)<(x583);
x651 = (x649)+(x623);
x652 = (x651)<(x623);
x653 = (x650)+(x652);
x654 = (x653)+(x588);
x655 = (x654)<(x588);
x656 = (x654)+(x628);
x657 = (x656)<(x628);
x658 = (x655)+(x657);
x659 = (x658)+(x593);
x660 = (x659)<(x593);
x661 = (x659)+(x631);
x662 = (x661)<(x631);
x663 = (x660)+(x662);
x664 = (x663)+(x595);
x665 = (x16)*(x11);
x666 = sizeof(intptr_t) == 4 ? ((uint64_t)(x16)*(x11))>>32 : ((__uint128_t)(x16)*(x11))>>64;
x667 = (x16)*(x10);
x668 = sizeof(intptr_t) == 4 ? ((uint64_t)(x16)*(x10))>>32 : ((__uint128_t)(x16)*(x10))>>64;
x669 = (x16)*(x9);
x670 = sizeof(intptr_t) == 4 ? ((uint64_t)(x16)*(x9))>>32 : ((__uint128_t)(x16)*(x9))>>64;
x671 = (x16)*(x8);
x672 = sizeof(intptr_t) == 4 ? ((uint64_t)(x16)*(x8))>>32 : ((__uint128_t)(x16)*(x8))>>64;
x673 = (x16)*(x7);
x674 = sizeof(intptr_t) == 4 ? ((uint64_t)(x16)*(x7))>>32 : ((__uint128_t)(x16)*(x7))>>64;
x675 = (x16)*(x6);
x676 = sizeof(intptr_t) == 4 ? ((uint64_t)(x16)*(x6))>>32 : ((__uint128_t)(x16)*(x6))>>64;
x677 = (x676)+(x673);
x678 = (x677)<(x676);
x679 = (x678)+(x674);
x680 = (x679)<(x674);
x681 = (x679)+(x671);
x682 = (x681)<(x671);
x683 = (x680)+(x682);
x684 = (x683)+(x672);
x685 = (x684)<(x672);
x686 = (x684)+(x669);
x687 = (x686)<(x669);
x688 = (x685)+(x687);
x689 = (x688)+(x670);
x690 = (x689)<(x670);
x691 = (x689)+(x667);
x692 = (x691)<(x667);
x693 = (x690)+(x692);
x694 = (x693)+(x668);
x695 = (x694)<(x668);
x696 = (x694)+(x665);
x697 = (x696)<(x665);
x698 = (x695)+(x697);
x699 = (x698)+(x666);
x700 = (x636)+(x675);
x701 = (x700)<(x636);
x702 = (x701)+(x641);
x703 = (x702)<(x641);
x704 = (x702)+(x677);
x705 = (x704)<(x677);
x706 = (x703)+(x705);
x707 = (x706)+(x646);
x708 = (x707)<(x646);
x709 = (x707)+(x681);
x710 = (x709)<(x681);
x711 = (x708)+(x710);
x712 = (x711)+(x651);
x713 = (x712)<(x651);
x714 = (x712)+(x686);
x715 = (x714)<(x686);
x716 = (x713)+(x715);
x717 = (x716)+(x656);
x718 = (x717)<(x656);
x719 = (x717)+(x691);
x720 = (x719)<(x691);
x721 = (x718)+(x720);
x722 = (x721)+(x661);
x723 = (x722)<(x661);
x724 = (x722)+(x696);
x725 = (x724)<(x696);
x726 = (x723)+(x725);
x727 = (x726)+(x664);
x728 = (x727)<(x664);
x729 = (x727)+(x699);
x730 = (x729)<(x699);
x731 = (x728)+(x730);
x732 = (x700)*((uintptr_t)4294967297ULL);
x733 = (x732)*((uintptr_t)18446744073709551615ULL);
x734 = sizeof(intptr_t) == 4 ? ((uint64_t)(x732)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x732)*((uintptr_t)18446744073709551615ULL))>>64;
x735 = (x732)*((uintptr_t)18446744073709551615ULL);
x736 = sizeof(intptr_t) == 4 ? ((uint64_t)(x732)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x732)*((uintptr_t)18446744073709551615ULL))>>64;
x737 = (x732)*((uintptr_t)18446744073709551615ULL);
x738 = sizeof(intptr_t) == 4 ? ((uint64_t)(x732)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x732)*((uintptr_t)18446744073709551615ULL))>>64;
x739 = (x732)*((uintptr_t)18446744073709551614ULL);
x740 = sizeof(intptr_t) == 4 ? ((uint64_t)(x732)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x732)*((uintptr_t)18446744073709551614ULL))>>64;
x741 = (x732)*((uintptr_t)18446744069414584320ULL);
x742 = sizeof(intptr_t) == 4 ? ((uint64_t)(x732)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x732)*((uintptr_t)18446744069414584320ULL))>>64;
x743 = (x732)*((uintptr_t)4294967295ULL);
x744 = sizeof(intptr_t) == 4 ? ((uint64_t)(x732)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x732)*((uintptr_t)4294967295ULL))>>64;
x745 = (x744)+(x741);
x746 = (x745)<(x744);
x747 = (x746)+(x742);
x748 = (x747)<(x742);
x749 = (x747)+(x739);
x750 = (x749)<(x739);
x751 = (x748)+(x750);
x752 = (x751)+(x740);
x753 = (x752)<(x740);
x754 = (x752)+(x737);
x755 = (x754)<(x737);
x756 = (x753)+(x755);
x757 = (x756)+(x738);
x758 = (x757)<(x738);
x759 = (x757)+(x735);
x760 = (x759)<(x735);
x761 = (x758)+(x760);
x762 = (x761)+(x736);
x763 = (x762)<(x736);
x764 = (x762)+(x733);
x765 = (x764)<(x733);
x766 = (x763)+(x765);
x767 = (x766)+(x734);
x768 = (x700)+(x743);
x769 = (x768)<(x700);
x770 = (x769)+(x704);
x771 = (x770)<(x704);
x772 = (x770)+(x745);
x773 = (x772)<(x745);
x774 = (x771)+(x773);
x775 = (x774)+(x709);
x776 = (x775)<(x709);
x777 = (x775)+(x749);
x778 = (x777)<(x749);
x779 = (x776)+(x778);
x780 = (x779)+(x714);
x781 = (x780)<(x714);
x782 = (x780)+(x754);
x783 = (x782)<(x754);
x784 = (x781)+(x783);
x785 = (x784)+(x719);
x786 = (x785)<(x719);
x787 = (x785)+(x759);
x788 = (x787)<(x759);
x789 = (x786)+(x788);
x790 = (x789)+(x724);
x791 = (x790)<(x724);
x792 = (x790)+(x764);
x793 = (x792)<(x764);
x794 = (x791)+(x793);
x795 = (x794)+(x729);
x796 = (x795)<(x729);
x797 = (x795)+(x767);
x798 = (x797)<(x767);
x799 = (x796)+(x798);
x800 = (x799)+(x731);
x801 = (x772)-((uintptr_t)4294967295ULL);
x802 = (x772)<(x801);
x803 = (x801)<(x801);
x804 = (x802)+(x803);
x805 = (x777)-((uintptr_t)18446744069414584320ULL);
x806 = (x777)<(x805);
x807 = (x805)-(x804);
x808 = (x805)<(x807);
x809 = (x806)+(x808);
x810 = (x782)-((uintptr_t)18446744073709551614ULL);
x811 = (x782)<(x810);
x812 = (x810)-(x809);
x813 = (x810)<(x812);
x814 = (x811)+(x813);
x815 = (x787)-((uintptr_t)18446744073709551615ULL);
x816 = (x787)<(x815);
x817 = (x815)-(x814);
x818 = (x815)<(x817);
x819 = (x816)+(x818);
x820 = (x792)-((uintptr_t)18446744073709551615ULL);
x821 = (x792)<(x820);
x822 = (x820)-(x819);
x823 = (x820)<(x822);
x824 = (x821)+(x823);
x825 = (x797)-((uintptr_t)18446744073709551615ULL);
x826 = (x797)<(x825);
x827 = (x825)-(x824);
x828 = (x825)<(x827);
x829 = (x826)+(x828);
x830 = (x800)<(x800);
x831 = (x800)-(x829);
x832 = (x800)<(x831);
x833 = (x830)+(x832);
x834 = ((uintptr_t)-1ULL)+((x833)==((uintptr_t)0ULL));
x835 = (x834)^((uintptr_t)18446744073709551615ULL);
x836 = ((x772)&(x834))|((x801)&(x835));
x837 = ((uintptr_t)-1ULL)+((x833)==((uintptr_t)0ULL));
x838 = (x837)^((uintptr_t)18446744073709551615ULL);
x839 = ((x777)&(x837))|((x807)&(x838));
x840 = ((uintptr_t)-1ULL)+((x833)==((uintptr_t)0ULL));
x841 = (x840)^((uintptr_t)18446744073709551615ULL);
x842 = ((x782)&(x840))|((x812)&(x841));
x843 = ((uintptr_t)-1ULL)+((x833)==((uintptr_t)0ULL));
x844 = (x843)^((uintptr_t)18446744073709551615ULL);
x845 = ((x787)&(x843))|((x817)&(x844));
x846 = ((uintptr_t)-1ULL)+((x833)==((uintptr_t)0ULL));
x847 = (x846)^((uintptr_t)18446744073709551615ULL);
x848 = ((x792)&(x846))|((x822)&(x847));
x849 = ((uintptr_t)-1ULL)+((x833)==((uintptr_t)0ULL));
x850 = (x849)^((uintptr_t)18446744073709551615ULL);
x851 = ((x797)&(x849))|((x827)&(x850));
x852 = x836;
x853 = x839;
x854 = x842;
x855 = x845;
x856 = x848;
x857 = x851;
/*skip*/
*(uintptr_t*)((out0)+((uintptr_t)0ULL)) = x852;
*(uintptr_t*)((out0)+((uintptr_t)8ULL)) = x853;
*(uintptr_t*)((out0)+((uintptr_t)16ULL)) = x854;
*(uintptr_t*)((out0)+((uintptr_t)24ULL)) = x855;
*(uintptr_t*)((out0)+((uintptr_t)32ULL)) = x856;
*(uintptr_t*)((out0)+((uintptr_t)40ULL)) = x857;
/*skip*/
return;
}
/*
* Input Bounds:
* in0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* Output Bounds:
* out0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
*/
void fiat_p384_square(uintptr_t in0, uintptr_t out0) {
uintptr_t x11, x20, x23, x25, x21, x26, x18, x27, x29, x30, x19, x31, x16, x32, x34, x35, x17, x36, x14, x37, x39, x40, x15, x41, x12, x42, x44, x45, x13, x47, x56, x59, x61, x57, x62, x54, x63, x65, x66, x55, x67, x52, x68, x70, x71, x53, x72, x50, x73, x75, x76, x51, x77, x48, x78, x80, x81, x49, x58, x83, x22, x84, x24, x85, x60, x86, x88, x89, x28, x90, x64, x91, x93, x94, x33, x95, x69, x96, x98, x99, x38, x100, x74, x101, x103, x104, x43, x105, x79, x106, x108, x109, x46, x110, x82, x111, x113, x6, x123, x126, x128, x124, x129, x121, x130, x132, x133, x122, x134, x119, x135, x137, x138, x120, x139, x117, x140, x142, x143, x118, x144, x115, x145, x147, x148, x116, x125, x87, x151, x92, x152, x127, x153, x155, x156, x97, x157, x131, x158, x160, x161, x102, x162, x136, x163, x165, x166, x107, x167, x141, x168, x170, x171, x112, x172, x146, x173, x175, x176, x114, x177, x149, x178, x180, x182, x191, x194, x196, x192, x197, x189, x198, x200, x201, x190, x202, x187, x203, x205, x206, x188, x207, x185, x208, x210, x211, x186, x212, x183, x213, x215, x216, x184, x193, x218, x150, x219, x154, x220, x195, x221, x223, x224, x159, x225, x199, x226, x228, x229, x164, x230, x204, x231, x233, x234, x169, x235, x209, x236, x238, x239, x174, x240, x214, x241, x243, x244, x179, x245, x217, x246, x248, x249, x181, x7, x259, x262, x264, x260, x265, x257, x266, x268, x269, x258, x270, x255, x271, x273, x274, x256, x275, x253, x276, x278, x279, x254, x280, x251, x281, x283, x284, x252, x261, x222, x287, x227, x288, x263, x289, x291, x292, x232, x293, x267, x294, x296, x297, x237, x298, x272, x299, x301, x302, x242, x303, x277, x304, x306, x307, x247, x308, x282, x309, x311, x312, x250, x313, x285, x314, x316, x318, x327, x330, x332, x328, x333, x325, x334, x336, x337, x326, x338, x323, x339, x341, x342, x324, x343, x321, x344, x346, x347, x322, x348, x319, x349, x351, x352, x320, x329, x354, x286, x355, x290, x356, x331, x357, x359, x360, x295, x361, x335, x362, x364, x365, x300, x366, x340, x367, x369, x370, x305, x371, x345, x372, x374, x375, x310, x376, x350, x377, x379, x380, x315, x381, x353, x382, x384, x385, x317, x8, x395, x398, x400, x396, x401, x393, x402, x404, x405, x394, x406, x391, x407, x409, x410, x392, x411, x389, x412, x414, x415, x390, x416, x387, x417, x419, x420, x388, x397, x358, x423, x363, x424, x399, x425, x427, x428, x368, x429, x403, x430, x432, x433, x373, x434, x408, x435, x437, x438, x378, x439, x413, x440, x442, x443, x383, x444, x418, x445, x447, x448, x386, x449, x421, x450, x452, x454, x463, x466, x468, x464, x469, x461, x470, x472, x473, x462, x474, x459, x475, x477, x478, x460, x479, x457, x480, x482, x483, x458, x484, x455, x485, x487, x488, x456, x465, x490, x422, x491, x426, x492, x467, x493, x495, x496, x431, x497, x471, x498, x500, x501, x436, x502, x476, x503, x505, x506, x441, x507, x481, x508, x510, x511, x446, x512, x486, x513, x515, x516, x451, x517, x489, x518, x520, x521, x453, x9, x531, x534, x536, x532, x537, x529, x538, x540, x541, x530, x542, x527, x543, x545, x546, x528, x547, x525, x548, x550, x551, x526, x552, x523, x553, x555, x556, x524, x533, x494, x559, x499, x560, x535, x561, x563, x564, x504, x565, x539, x566, x568, x569, x509, x570, x544, x571, x573, x574, x514, x575, x549, x576, x578, x579, x519, x580, x554, x581, x583, x584, x522, x585, x557, x586, x588, x590, x599, x602, x604, x600, x605, x597, x606, x608, x609, x598, x610, x595, x611, x613, x614, x596, x615, x593, x616, x618, x619, x594, x620, x591, x621, x623, x624, x592, x601, x626, x558, x627, x562, x628, x603, x629, x631, x632, x567, x633, x607, x634, x636, x637, x572, x638, x612, x639, x641, x642, x577, x643, x617, x644, x646, x647, x582, x648, x622, x649, x651, x652, x587, x653, x625, x654, x656, x657, x589, x5, x4, x3, x2, x1, x10, x0, x667, x670, x672, x668, x673, x665, x674, x676, x677, x666, x678, x663, x679, x681, x682, x664, x683, x661, x684, x686, x687, x662, x688, x659, x689, x691, x692, x660, x669, x630, x695, x635, x696, x671, x697, x699, x700, x640, x701, x675, x702, x704, x705, x645, x706, x680, x707, x709, x710, x650, x711, x685, x712, x714, x715, x655, x716, x690, x717, x719, x720, x658, x721, x693, x722, x724, x726, x735, x738, x740, x736, x741, x733, x742, x744, x745, x734, x746, x731, x747, x749, x750, x732, x751, x729, x752, x754, x755, x730, x756, x727, x757, x759, x760, x728, x737, x762, x694, x763, x698, x764, x739, x765, x767, x768, x703, x769, x743, x770, x772, x773, x708, x774, x748, x775, x777, x778, x713, x779, x753, x780, x782, x783, x718, x784, x758, x785, x787, x788, x723, x789, x761, x790, x792, x793, x725, x796, x797, x798, x799, x800, x802, x803, x804, x805, x807, x808, x809, x810, x812, x813, x814, x815, x817, x818, x819, x820, x822, x823, x794, x825, x824, x826, x766, x828, x795, x829, x771, x831, x801, x832, x776, x834, x806, x835, x781, x837, x811, x838, x786, x840, x816, x841, x827, x791, x843, x821, x844, x830, x833, x836, x839, x842, x845, x846, x847, x848, x849, x850, x851;
x0 = *(uintptr_t*)((in0)+((uintptr_t)0ULL));
x1 = *(uintptr_t*)((in0)+((uintptr_t)8ULL));
x2 = *(uintptr_t*)((in0)+((uintptr_t)16ULL));
x3 = *(uintptr_t*)((in0)+((uintptr_t)24ULL));
x4 = *(uintptr_t*)((in0)+((uintptr_t)32ULL));
x5 = *(uintptr_t*)((in0)+((uintptr_t)40ULL));
/*skip*/
/*skip*/
x6 = x1;
x7 = x2;
x8 = x3;
x9 = x4;
x10 = x5;
x11 = x0;
x12 = (x11)*(x5);
x13 = sizeof(intptr_t) == 4 ? ((uint64_t)(x11)*(x5))>>32 : ((__uint128_t)(x11)*(x5))>>64;
x14 = (x11)*(x4);
x15 = sizeof(intptr_t) == 4 ? ((uint64_t)(x11)*(x4))>>32 : ((__uint128_t)(x11)*(x4))>>64;
x16 = (x11)*(x3);
x17 = sizeof(intptr_t) == 4 ? ((uint64_t)(x11)*(x3))>>32 : ((__uint128_t)(x11)*(x3))>>64;
x18 = (x11)*(x2);
x19 = sizeof(intptr_t) == 4 ? ((uint64_t)(x11)*(x2))>>32 : ((__uint128_t)(x11)*(x2))>>64;
x20 = (x11)*(x1);
x21 = sizeof(intptr_t) == 4 ? ((uint64_t)(x11)*(x1))>>32 : ((__uint128_t)(x11)*(x1))>>64;
x22 = (x11)*(x0);
x23 = sizeof(intptr_t) == 4 ? ((uint64_t)(x11)*(x0))>>32 : ((__uint128_t)(x11)*(x0))>>64;
x24 = (x23)+(x20);
x25 = (x24)<(x23);
x26 = (x25)+(x21);
x27 = (x26)<(x21);
x28 = (x26)+(x18);
x29 = (x28)<(x18);
x30 = (x27)+(x29);
x31 = (x30)+(x19);
x32 = (x31)<(x19);
x33 = (x31)+(x16);
x34 = (x33)<(x16);
x35 = (x32)+(x34);
x36 = (x35)+(x17);
x37 = (x36)<(x17);
x38 = (x36)+(x14);
x39 = (x38)<(x14);
x40 = (x37)+(x39);
x41 = (x40)+(x15);
x42 = (x41)<(x15);
x43 = (x41)+(x12);
x44 = (x43)<(x12);
x45 = (x42)+(x44);
x46 = (x45)+(x13);
x47 = (x22)*((uintptr_t)4294967297ULL);
x48 = (x47)*((uintptr_t)18446744073709551615ULL);
x49 = sizeof(intptr_t) == 4 ? ((uint64_t)(x47)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x47)*((uintptr_t)18446744073709551615ULL))>>64;
x50 = (x47)*((uintptr_t)18446744073709551615ULL);
x51 = sizeof(intptr_t) == 4 ? ((uint64_t)(x47)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x47)*((uintptr_t)18446744073709551615ULL))>>64;
x52 = (x47)*((uintptr_t)18446744073709551615ULL);
x53 = sizeof(intptr_t) == 4 ? ((uint64_t)(x47)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x47)*((uintptr_t)18446744073709551615ULL))>>64;
x54 = (x47)*((uintptr_t)18446744073709551614ULL);
x55 = sizeof(intptr_t) == 4 ? ((uint64_t)(x47)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x47)*((uintptr_t)18446744073709551614ULL))>>64;
x56 = (x47)*((uintptr_t)18446744069414584320ULL);
x57 = sizeof(intptr_t) == 4 ? ((uint64_t)(x47)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x47)*((uintptr_t)18446744069414584320ULL))>>64;
x58 = (x47)*((uintptr_t)4294967295ULL);
x59 = sizeof(intptr_t) == 4 ? ((uint64_t)(x47)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x47)*((uintptr_t)4294967295ULL))>>64;
x60 = (x59)+(x56);
x61 = (x60)<(x59);
x62 = (x61)+(x57);
x63 = (x62)<(x57);
x64 = (x62)+(x54);
x65 = (x64)<(x54);
x66 = (x63)+(x65);
x67 = (x66)+(x55);
x68 = (x67)<(x55);
x69 = (x67)+(x52);
x70 = (x69)<(x52);
x71 = (x68)+(x70);
x72 = (x71)+(x53);
x73 = (x72)<(x53);
x74 = (x72)+(x50);
x75 = (x74)<(x50);
x76 = (x73)+(x75);
x77 = (x76)+(x51);
x78 = (x77)<(x51);
x79 = (x77)+(x48);
x80 = (x79)<(x48);
x81 = (x78)+(x80);
x82 = (x81)+(x49);
x83 = (x22)+(x58);
x84 = (x83)<(x22);
x85 = (x84)+(x24);
x86 = (x85)<(x24);
x87 = (x85)+(x60);
x88 = (x87)<(x60);
x89 = (x86)+(x88);
x90 = (x89)+(x28);
x91 = (x90)<(x28);
x92 = (x90)+(x64);
x93 = (x92)<(x64);
x94 = (x91)+(x93);
x95 = (x94)+(x33);
x96 = (x95)<(x33);
x97 = (x95)+(x69);
x98 = (x97)<(x69);
x99 = (x96)+(x98);
x100 = (x99)+(x38);
x101 = (x100)<(x38);
x102 = (x100)+(x74);
x103 = (x102)<(x74);
x104 = (x101)+(x103);
x105 = (x104)+(x43);
x106 = (x105)<(x43);
x107 = (x105)+(x79);
x108 = (x107)<(x79);
x109 = (x106)+(x108);
x110 = (x109)+(x46);
x111 = (x110)<(x46);
x112 = (x110)+(x82);
x113 = (x112)<(x82);
x114 = (x111)+(x113);
x115 = (x6)*(x5);
x116 = sizeof(intptr_t) == 4 ? ((uint64_t)(x6)*(x5))>>32 : ((__uint128_t)(x6)*(x5))>>64;
x117 = (x6)*(x4);
x118 = sizeof(intptr_t) == 4 ? ((uint64_t)(x6)*(x4))>>32 : ((__uint128_t)(x6)*(x4))>>64;
x119 = (x6)*(x3);
x120 = sizeof(intptr_t) == 4 ? ((uint64_t)(x6)*(x3))>>32 : ((__uint128_t)(x6)*(x3))>>64;
x121 = (x6)*(x2);
x122 = sizeof(intptr_t) == 4 ? ((uint64_t)(x6)*(x2))>>32 : ((__uint128_t)(x6)*(x2))>>64;
x123 = (x6)*(x1);
x124 = sizeof(intptr_t) == 4 ? ((uint64_t)(x6)*(x1))>>32 : ((__uint128_t)(x6)*(x1))>>64;
x125 = (x6)*(x0);
x126 = sizeof(intptr_t) == 4 ? ((uint64_t)(x6)*(x0))>>32 : ((__uint128_t)(x6)*(x0))>>64;
x127 = (x126)+(x123);
x128 = (x127)<(x126);
x129 = (x128)+(x124);
x130 = (x129)<(x124);
x131 = (x129)+(x121);
x132 = (x131)<(x121);
x133 = (x130)+(x132);
x134 = (x133)+(x122);
x135 = (x134)<(x122);
x136 = (x134)+(x119);
x137 = (x136)<(x119);
x138 = (x135)+(x137);
x139 = (x138)+(x120);
x140 = (x139)<(x120);
x141 = (x139)+(x117);
x142 = (x141)<(x117);
x143 = (x140)+(x142);
x144 = (x143)+(x118);
x145 = (x144)<(x118);
x146 = (x144)+(x115);
x147 = (x146)<(x115);
x148 = (x145)+(x147);
x149 = (x148)+(x116);
x150 = (x87)+(x125);
x151 = (x150)<(x87);
x152 = (x151)+(x92);
x153 = (x152)<(x92);
x154 = (x152)+(x127);
x155 = (x154)<(x127);
x156 = (x153)+(x155);
x157 = (x156)+(x97);
x158 = (x157)<(x97);
x159 = (x157)+(x131);
x160 = (x159)<(x131);
x161 = (x158)+(x160);
x162 = (x161)+(x102);
x163 = (x162)<(x102);
x164 = (x162)+(x136);
x165 = (x164)<(x136);
x166 = (x163)+(x165);
x167 = (x166)+(x107);
x168 = (x167)<(x107);
x169 = (x167)+(x141);
x170 = (x169)<(x141);
x171 = (x168)+(x170);
x172 = (x171)+(x112);
x173 = (x172)<(x112);
x174 = (x172)+(x146);
x175 = (x174)<(x146);
x176 = (x173)+(x175);
x177 = (x176)+(x114);
x178 = (x177)<(x114);
x179 = (x177)+(x149);
x180 = (x179)<(x149);
x181 = (x178)+(x180);
x182 = (x150)*((uintptr_t)4294967297ULL);
x183 = (x182)*((uintptr_t)18446744073709551615ULL);
x184 = sizeof(intptr_t) == 4 ? ((uint64_t)(x182)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x182)*((uintptr_t)18446744073709551615ULL))>>64;
x185 = (x182)*((uintptr_t)18446744073709551615ULL);
x186 = sizeof(intptr_t) == 4 ? ((uint64_t)(x182)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x182)*((uintptr_t)18446744073709551615ULL))>>64;
x187 = (x182)*((uintptr_t)18446744073709551615ULL);
x188 = sizeof(intptr_t) == 4 ? ((uint64_t)(x182)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x182)*((uintptr_t)18446744073709551615ULL))>>64;
x189 = (x182)*((uintptr_t)18446744073709551614ULL);
x190 = sizeof(intptr_t) == 4 ? ((uint64_t)(x182)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x182)*((uintptr_t)18446744073709551614ULL))>>64;
x191 = (x182)*((uintptr_t)18446744069414584320ULL);
x192 = sizeof(intptr_t) == 4 ? ((uint64_t)(x182)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x182)*((uintptr_t)18446744069414584320ULL))>>64;
x193 = (x182)*((uintptr_t)4294967295ULL);
x194 = sizeof(intptr_t) == 4 ? ((uint64_t)(x182)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x182)*((uintptr_t)4294967295ULL))>>64;
x195 = (x194)+(x191);
x196 = (x195)<(x194);
x197 = (x196)+(x192);
x198 = (x197)<(x192);
x199 = (x197)+(x189);
x200 = (x199)<(x189);
x201 = (x198)+(x200);
x202 = (x201)+(x190);
x203 = (x202)<(x190);
x204 = (x202)+(x187);
x205 = (x204)<(x187);
x206 = (x203)+(x205);
x207 = (x206)+(x188);
x208 = (x207)<(x188);
x209 = (x207)+(x185);
x210 = (x209)<(x185);
x211 = (x208)+(x210);
x212 = (x211)+(x186);
x213 = (x212)<(x186);
x214 = (x212)+(x183);
x215 = (x214)<(x183);
x216 = (x213)+(x215);
x217 = (x216)+(x184);
x218 = (x150)+(x193);
x219 = (x218)<(x150);
x220 = (x219)+(x154);
x221 = (x220)<(x154);
x222 = (x220)+(x195);
x223 = (x222)<(x195);
x224 = (x221)+(x223);
x225 = (x224)+(x159);
x226 = (x225)<(x159);
x227 = (x225)+(x199);
x228 = (x227)<(x199);
x229 = (x226)+(x228);
x230 = (x229)+(x164);
x231 = (x230)<(x164);
x232 = (x230)+(x204);
x233 = (x232)<(x204);
x234 = (x231)+(x233);
x235 = (x234)+(x169);
x236 = (x235)<(x169);
x237 = (x235)+(x209);
x238 = (x237)<(x209);
x239 = (x236)+(x238);
x240 = (x239)+(x174);
x241 = (x240)<(x174);
x242 = (x240)+(x214);
x243 = (x242)<(x214);
x244 = (x241)+(x243);
x245 = (x244)+(x179);
x246 = (x245)<(x179);
x247 = (x245)+(x217);
x248 = (x247)<(x217);
x249 = (x246)+(x248);
x250 = (x249)+(x181);
x251 = (x7)*(x5);
x252 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*(x5))>>32 : ((__uint128_t)(x7)*(x5))>>64;
x253 = (x7)*(x4);
x254 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*(x4))>>32 : ((__uint128_t)(x7)*(x4))>>64;
x255 = (x7)*(x3);
x256 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*(x3))>>32 : ((__uint128_t)(x7)*(x3))>>64;
x257 = (x7)*(x2);
x258 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*(x2))>>32 : ((__uint128_t)(x7)*(x2))>>64;
x259 = (x7)*(x1);
x260 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*(x1))>>32 : ((__uint128_t)(x7)*(x1))>>64;
x261 = (x7)*(x0);
x262 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*(x0))>>32 : ((__uint128_t)(x7)*(x0))>>64;
x263 = (x262)+(x259);
x264 = (x263)<(x262);
x265 = (x264)+(x260);
x266 = (x265)<(x260);
x267 = (x265)+(x257);
x268 = (x267)<(x257);
x269 = (x266)+(x268);
x270 = (x269)+(x258);
x271 = (x270)<(x258);
x272 = (x270)+(x255);
x273 = (x272)<(x255);
x274 = (x271)+(x273);
x275 = (x274)+(x256);
x276 = (x275)<(x256);
x277 = (x275)+(x253);
x278 = (x277)<(x253);
x279 = (x276)+(x278);
x280 = (x279)+(x254);
x281 = (x280)<(x254);
x282 = (x280)+(x251);
x283 = (x282)<(x251);
x284 = (x281)+(x283);
x285 = (x284)+(x252);
x286 = (x222)+(x261);
x287 = (x286)<(x222);
x288 = (x287)+(x227);
x289 = (x288)<(x227);
x290 = (x288)+(x263);
x291 = (x290)<(x263);
x292 = (x289)+(x291);
x293 = (x292)+(x232);
x294 = (x293)<(x232);
x295 = (x293)+(x267);
x296 = (x295)<(x267);
x297 = (x294)+(x296);
x298 = (x297)+(x237);
x299 = (x298)<(x237);
x300 = (x298)+(x272);
x301 = (x300)<(x272);
x302 = (x299)+(x301);
x303 = (x302)+(x242);
x304 = (x303)<(x242);
x305 = (x303)+(x277);
x306 = (x305)<(x277);
x307 = (x304)+(x306);
x308 = (x307)+(x247);
x309 = (x308)<(x247);
x310 = (x308)+(x282);
x311 = (x310)<(x282);
x312 = (x309)+(x311);
x313 = (x312)+(x250);
x314 = (x313)<(x250);
x315 = (x313)+(x285);
x316 = (x315)<(x285);
x317 = (x314)+(x316);
x318 = (x286)*((uintptr_t)4294967297ULL);
x319 = (x318)*((uintptr_t)18446744073709551615ULL);
x320 = sizeof(intptr_t) == 4 ? ((uint64_t)(x318)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x318)*((uintptr_t)18446744073709551615ULL))>>64;
x321 = (x318)*((uintptr_t)18446744073709551615ULL);
x322 = sizeof(intptr_t) == 4 ? ((uint64_t)(x318)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x318)*((uintptr_t)18446744073709551615ULL))>>64;
x323 = (x318)*((uintptr_t)18446744073709551615ULL);
x324 = sizeof(intptr_t) == 4 ? ((uint64_t)(x318)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x318)*((uintptr_t)18446744073709551615ULL))>>64;
x325 = (x318)*((uintptr_t)18446744073709551614ULL);
x326 = sizeof(intptr_t) == 4 ? ((uint64_t)(x318)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x318)*((uintptr_t)18446744073709551614ULL))>>64;
x327 = (x318)*((uintptr_t)18446744069414584320ULL);
x328 = sizeof(intptr_t) == 4 ? ((uint64_t)(x318)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x318)*((uintptr_t)18446744069414584320ULL))>>64;
x329 = (x318)*((uintptr_t)4294967295ULL);
x330 = sizeof(intptr_t) == 4 ? ((uint64_t)(x318)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x318)*((uintptr_t)4294967295ULL))>>64;
x331 = (x330)+(x327);
x332 = (x331)<(x330);
x333 = (x332)+(x328);
x334 = (x333)<(x328);
x335 = (x333)+(x325);
x336 = (x335)<(x325);
x337 = (x334)+(x336);
x338 = (x337)+(x326);
x339 = (x338)<(x326);
x340 = (x338)+(x323);
x341 = (x340)<(x323);
x342 = (x339)+(x341);
x343 = (x342)+(x324);
x344 = (x343)<(x324);
x345 = (x343)+(x321);
x346 = (x345)<(x321);
x347 = (x344)+(x346);
x348 = (x347)+(x322);
x349 = (x348)<(x322);
x350 = (x348)+(x319);
x351 = (x350)<(x319);
x352 = (x349)+(x351);
x353 = (x352)+(x320);
x354 = (x286)+(x329);
x355 = (x354)<(x286);
x356 = (x355)+(x290);
x357 = (x356)<(x290);
x358 = (x356)+(x331);
x359 = (x358)<(x331);
x360 = (x357)+(x359);
x361 = (x360)+(x295);
x362 = (x361)<(x295);
x363 = (x361)+(x335);
x364 = (x363)<(x335);
x365 = (x362)+(x364);
x366 = (x365)+(x300);
x367 = (x366)<(x300);
x368 = (x366)+(x340);
x369 = (x368)<(x340);
x370 = (x367)+(x369);
x371 = (x370)+(x305);
x372 = (x371)<(x305);
x373 = (x371)+(x345);
x374 = (x373)<(x345);
x375 = (x372)+(x374);
x376 = (x375)+(x310);
x377 = (x376)<(x310);
x378 = (x376)+(x350);
x379 = (x378)<(x350);
x380 = (x377)+(x379);
x381 = (x380)+(x315);
x382 = (x381)<(x315);
x383 = (x381)+(x353);
x384 = (x383)<(x353);
x385 = (x382)+(x384);
x386 = (x385)+(x317);
x387 = (x8)*(x5);
x388 = sizeof(intptr_t) == 4 ? ((uint64_t)(x8)*(x5))>>32 : ((__uint128_t)(x8)*(x5))>>64;
x389 = (x8)*(x4);
x390 = sizeof(intptr_t) == 4 ? ((uint64_t)(x8)*(x4))>>32 : ((__uint128_t)(x8)*(x4))>>64;
x391 = (x8)*(x3);
x392 = sizeof(intptr_t) == 4 ? ((uint64_t)(x8)*(x3))>>32 : ((__uint128_t)(x8)*(x3))>>64;
x393 = (x8)*(x2);
x394 = sizeof(intptr_t) == 4 ? ((uint64_t)(x8)*(x2))>>32 : ((__uint128_t)(x8)*(x2))>>64;
x395 = (x8)*(x1);
x396 = sizeof(intptr_t) == 4 ? ((uint64_t)(x8)*(x1))>>32 : ((__uint128_t)(x8)*(x1))>>64;
x397 = (x8)*(x0);
x398 = sizeof(intptr_t) == 4 ? ((uint64_t)(x8)*(x0))>>32 : ((__uint128_t)(x8)*(x0))>>64;
x399 = (x398)+(x395);
x400 = (x399)<(x398);
x401 = (x400)+(x396);
x402 = (x401)<(x396);
x403 = (x401)+(x393);
x404 = (x403)<(x393);
x405 = (x402)+(x404);
x406 = (x405)+(x394);
x407 = (x406)<(x394);
x408 = (x406)+(x391);
x409 = (x408)<(x391);
x410 = (x407)+(x409);
x411 = (x410)+(x392);
x412 = (x411)<(x392);
x413 = (x411)+(x389);
x414 = (x413)<(x389);
x415 = (x412)+(x414);
x416 = (x415)+(x390);
x417 = (x416)<(x390);
x418 = (x416)+(x387);
x419 = (x418)<(x387);
x420 = (x417)+(x419);
x421 = (x420)+(x388);
x422 = (x358)+(x397);
x423 = (x422)<(x358);
x424 = (x423)+(x363);
x425 = (x424)<(x363);
x426 = (x424)+(x399);
x427 = (x426)<(x399);
x428 = (x425)+(x427);
x429 = (x428)+(x368);
x430 = (x429)<(x368);
x431 = (x429)+(x403);
x432 = (x431)<(x403);
x433 = (x430)+(x432);
x434 = (x433)+(x373);
x435 = (x434)<(x373);
x436 = (x434)+(x408);
x437 = (x436)<(x408);
x438 = (x435)+(x437);
x439 = (x438)+(x378);
x440 = (x439)<(x378);
x441 = (x439)+(x413);
x442 = (x441)<(x413);
x443 = (x440)+(x442);
x444 = (x443)+(x383);
x445 = (x444)<(x383);
x446 = (x444)+(x418);
x447 = (x446)<(x418);
x448 = (x445)+(x447);
x449 = (x448)+(x386);
x450 = (x449)<(x386);
x451 = (x449)+(x421);
x452 = (x451)<(x421);
x453 = (x450)+(x452);
x454 = (x422)*((uintptr_t)4294967297ULL);
x455 = (x454)*((uintptr_t)18446744073709551615ULL);
x456 = sizeof(intptr_t) == 4 ? ((uint64_t)(x454)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x454)*((uintptr_t)18446744073709551615ULL))>>64;
x457 = (x454)*((uintptr_t)18446744073709551615ULL);
x458 = sizeof(intptr_t) == 4 ? ((uint64_t)(x454)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x454)*((uintptr_t)18446744073709551615ULL))>>64;
x459 = (x454)*((uintptr_t)18446744073709551615ULL);
x460 = sizeof(intptr_t) == 4 ? ((uint64_t)(x454)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x454)*((uintptr_t)18446744073709551615ULL))>>64;
x461 = (x454)*((uintptr_t)18446744073709551614ULL);
x462 = sizeof(intptr_t) == 4 ? ((uint64_t)(x454)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x454)*((uintptr_t)18446744073709551614ULL))>>64;
x463 = (x454)*((uintptr_t)18446744069414584320ULL);
x464 = sizeof(intptr_t) == 4 ? ((uint64_t)(x454)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x454)*((uintptr_t)18446744069414584320ULL))>>64;
x465 = (x454)*((uintptr_t)4294967295ULL);
x466 = sizeof(intptr_t) == 4 ? ((uint64_t)(x454)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x454)*((uintptr_t)4294967295ULL))>>64;
x467 = (x466)+(x463);
x468 = (x467)<(x466);
x469 = (x468)+(x464);
x470 = (x469)<(x464);
x471 = (x469)+(x461);
x472 = (x471)<(x461);
x473 = (x470)+(x472);
x474 = (x473)+(x462);
x475 = (x474)<(x462);
x476 = (x474)+(x459);
x477 = (x476)<(x459);
x478 = (x475)+(x477);
x479 = (x478)+(x460);
x480 = (x479)<(x460);
x481 = (x479)+(x457);
x482 = (x481)<(x457);
x483 = (x480)+(x482);
x484 = (x483)+(x458);
x485 = (x484)<(x458);
x486 = (x484)+(x455);
x487 = (x486)<(x455);
x488 = (x485)+(x487);
x489 = (x488)+(x456);
x490 = (x422)+(x465);
x491 = (x490)<(x422);
x492 = (x491)+(x426);
x493 = (x492)<(x426);
x494 = (x492)+(x467);
x495 = (x494)<(x467);
x496 = (x493)+(x495);
x497 = (x496)+(x431);
x498 = (x497)<(x431);
x499 = (x497)+(x471);
x500 = (x499)<(x471);
x501 = (x498)+(x500);
x502 = (x501)+(x436);
x503 = (x502)<(x436);
x504 = (x502)+(x476);
x505 = (x504)<(x476);
x506 = (x503)+(x505);
x507 = (x506)+(x441);
x508 = (x507)<(x441);
x509 = (x507)+(x481);
x510 = (x509)<(x481);
x511 = (x508)+(x510);
x512 = (x511)+(x446);
x513 = (x512)<(x446);
x514 = (x512)+(x486);
x515 = (x514)<(x486);
x516 = (x513)+(x515);
x517 = (x516)+(x451);
x518 = (x517)<(x451);
x519 = (x517)+(x489);
x520 = (x519)<(x489);
x521 = (x518)+(x520);
x522 = (x521)+(x453);
x523 = (x9)*(x5);
x524 = sizeof(intptr_t) == 4 ? ((uint64_t)(x9)*(x5))>>32 : ((__uint128_t)(x9)*(x5))>>64;
x525 = (x9)*(x4);
x526 = sizeof(intptr_t) == 4 ? ((uint64_t)(x9)*(x4))>>32 : ((__uint128_t)(x9)*(x4))>>64;
x527 = (x9)*(x3);
x528 = sizeof(intptr_t) == 4 ? ((uint64_t)(x9)*(x3))>>32 : ((__uint128_t)(x9)*(x3))>>64;
x529 = (x9)*(x2);
x530 = sizeof(intptr_t) == 4 ? ((uint64_t)(x9)*(x2))>>32 : ((__uint128_t)(x9)*(x2))>>64;
x531 = (x9)*(x1);
x532 = sizeof(intptr_t) == 4 ? ((uint64_t)(x9)*(x1))>>32 : ((__uint128_t)(x9)*(x1))>>64;
x533 = (x9)*(x0);
x534 = sizeof(intptr_t) == 4 ? ((uint64_t)(x9)*(x0))>>32 : ((__uint128_t)(x9)*(x0))>>64;
x535 = (x534)+(x531);
x536 = (x535)<(x534);
x537 = (x536)+(x532);
x538 = (x537)<(x532);
x539 = (x537)+(x529);
x540 = (x539)<(x529);
x541 = (x538)+(x540);
x542 = (x541)+(x530);
x543 = (x542)<(x530);
x544 = (x542)+(x527);
x545 = (x544)<(x527);
x546 = (x543)+(x545);
x547 = (x546)+(x528);
x548 = (x547)<(x528);
x549 = (x547)+(x525);
x550 = (x549)<(x525);
x551 = (x548)+(x550);
x552 = (x551)+(x526);
x553 = (x552)<(x526);
x554 = (x552)+(x523);
x555 = (x554)<(x523);
x556 = (x553)+(x555);
x557 = (x556)+(x524);
x558 = (x494)+(x533);
x559 = (x558)<(x494);
x560 = (x559)+(x499);
x561 = (x560)<(x499);
x562 = (x560)+(x535);
x563 = (x562)<(x535);
x564 = (x561)+(x563);
x565 = (x564)+(x504);
x566 = (x565)<(x504);
x567 = (x565)+(x539);
x568 = (x567)<(x539);
x569 = (x566)+(x568);
x570 = (x569)+(x509);
x571 = (x570)<(x509);
x572 = (x570)+(x544);
x573 = (x572)<(x544);
x574 = (x571)+(x573);
x575 = (x574)+(x514);
x576 = (x575)<(x514);
x577 = (x575)+(x549);
x578 = (x577)<(x549);
x579 = (x576)+(x578);
x580 = (x579)+(x519);
x581 = (x580)<(x519);
x582 = (x580)+(x554);
x583 = (x582)<(x554);
x584 = (x581)+(x583);
x585 = (x584)+(x522);
x586 = (x585)<(x522);
x587 = (x585)+(x557);
x588 = (x587)<(x557);
x589 = (x586)+(x588);
x590 = (x558)*((uintptr_t)4294967297ULL);
x591 = (x590)*((uintptr_t)18446744073709551615ULL);
x592 = sizeof(intptr_t) == 4 ? ((uint64_t)(x590)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x590)*((uintptr_t)18446744073709551615ULL))>>64;
x593 = (x590)*((uintptr_t)18446744073709551615ULL);
x594 = sizeof(intptr_t) == 4 ? ((uint64_t)(x590)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x590)*((uintptr_t)18446744073709551615ULL))>>64;
x595 = (x590)*((uintptr_t)18446744073709551615ULL);
x596 = sizeof(intptr_t) == 4 ? ((uint64_t)(x590)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x590)*((uintptr_t)18446744073709551615ULL))>>64;
x597 = (x590)*((uintptr_t)18446744073709551614ULL);
x598 = sizeof(intptr_t) == 4 ? ((uint64_t)(x590)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x590)*((uintptr_t)18446744073709551614ULL))>>64;
x599 = (x590)*((uintptr_t)18446744069414584320ULL);
x600 = sizeof(intptr_t) == 4 ? ((uint64_t)(x590)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x590)*((uintptr_t)18446744069414584320ULL))>>64;
x601 = (x590)*((uintptr_t)4294967295ULL);
x602 = sizeof(intptr_t) == 4 ? ((uint64_t)(x590)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x590)*((uintptr_t)4294967295ULL))>>64;
x603 = (x602)+(x599);
x604 = (x603)<(x602);
x605 = (x604)+(x600);
x606 = (x605)<(x600);
x607 = (x605)+(x597);
x608 = (x607)<(x597);
x609 = (x606)+(x608);
x610 = (x609)+(x598);
x611 = (x610)<(x598);
x612 = (x610)+(x595);
x613 = (x612)<(x595);
x614 = (x611)+(x613);
x615 = (x614)+(x596);
x616 = (x615)<(x596);
x617 = (x615)+(x593);
x618 = (x617)<(x593);
x619 = (x616)+(x618);
x620 = (x619)+(x594);
x621 = (x620)<(x594);
x622 = (x620)+(x591);
x623 = (x622)<(x591);
x624 = (x621)+(x623);
x625 = (x624)+(x592);
x626 = (x558)+(x601);
x627 = (x626)<(x558);
x628 = (x627)+(x562);
x629 = (x628)<(x562);
x630 = (x628)+(x603);
x631 = (x630)<(x603);
x632 = (x629)+(x631);
x633 = (x632)+(x567);
x634 = (x633)<(x567);
x635 = (x633)+(x607);
x636 = (x635)<(x607);
x637 = (x634)+(x636);
x638 = (x637)+(x572);
x639 = (x638)<(x572);
x640 = (x638)+(x612);
x641 = (x640)<(x612);
x642 = (x639)+(x641);
x643 = (x642)+(x577);
x644 = (x643)<(x577);
x645 = (x643)+(x617);
x646 = (x645)<(x617);
x647 = (x644)+(x646);
x648 = (x647)+(x582);
x649 = (x648)<(x582);
x650 = (x648)+(x622);
x651 = (x650)<(x622);
x652 = (x649)+(x651);
x653 = (x652)+(x587);
x654 = (x653)<(x587);
x655 = (x653)+(x625);
x656 = (x655)<(x625);
x657 = (x654)+(x656);
x658 = (x657)+(x589);
x659 = (x10)*(x5);
x660 = sizeof(intptr_t) == 4 ? ((uint64_t)(x10)*(x5))>>32 : ((__uint128_t)(x10)*(x5))>>64;
x661 = (x10)*(x4);
x662 = sizeof(intptr_t) == 4 ? ((uint64_t)(x10)*(x4))>>32 : ((__uint128_t)(x10)*(x4))>>64;
x663 = (x10)*(x3);
x664 = sizeof(intptr_t) == 4 ? ((uint64_t)(x10)*(x3))>>32 : ((__uint128_t)(x10)*(x3))>>64;
x665 = (x10)*(x2);
x666 = sizeof(intptr_t) == 4 ? ((uint64_t)(x10)*(x2))>>32 : ((__uint128_t)(x10)*(x2))>>64;
x667 = (x10)*(x1);
x668 = sizeof(intptr_t) == 4 ? ((uint64_t)(x10)*(x1))>>32 : ((__uint128_t)(x10)*(x1))>>64;
x669 = (x10)*(x0);
x670 = sizeof(intptr_t) == 4 ? ((uint64_t)(x10)*(x0))>>32 : ((__uint128_t)(x10)*(x0))>>64;
x671 = (x670)+(x667);
x672 = (x671)<(x670);
x673 = (x672)+(x668);
x674 = (x673)<(x668);
x675 = (x673)+(x665);
x676 = (x675)<(x665);
x677 = (x674)+(x676);
x678 = (x677)+(x666);
x679 = (x678)<(x666);
x680 = (x678)+(x663);
x681 = (x680)<(x663);
x682 = (x679)+(x681);
x683 = (x682)+(x664);
x684 = (x683)<(x664);
x685 = (x683)+(x661);
x686 = (x685)<(x661);
x687 = (x684)+(x686);
x688 = (x687)+(x662);
x689 = (x688)<(x662);
x690 = (x688)+(x659);
x691 = (x690)<(x659);
x692 = (x689)+(x691);
x693 = (x692)+(x660);
x694 = (x630)+(x669);
x695 = (x694)<(x630);
x696 = (x695)+(x635);
x697 = (x696)<(x635);
x698 = (x696)+(x671);
x699 = (x698)<(x671);
x700 = (x697)+(x699);
x701 = (x700)+(x640);
x702 = (x701)<(x640);
x703 = (x701)+(x675);
x704 = (x703)<(x675);
x705 = (x702)+(x704);
x706 = (x705)+(x645);
x707 = (x706)<(x645);
x708 = (x706)+(x680);
x709 = (x708)<(x680);
x710 = (x707)+(x709);
x711 = (x710)+(x650);
x712 = (x711)<(x650);
x713 = (x711)+(x685);
x714 = (x713)<(x685);
x715 = (x712)+(x714);
x716 = (x715)+(x655);
x717 = (x716)<(x655);
x718 = (x716)+(x690);
x719 = (x718)<(x690);
x720 = (x717)+(x719);
x721 = (x720)+(x658);
x722 = (x721)<(x658);
x723 = (x721)+(x693);
x724 = (x723)<(x693);
x725 = (x722)+(x724);
x726 = (x694)*((uintptr_t)4294967297ULL);
x727 = (x726)*((uintptr_t)18446744073709551615ULL);
x728 = sizeof(intptr_t) == 4 ? ((uint64_t)(x726)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x726)*((uintptr_t)18446744073709551615ULL))>>64;
x729 = (x726)*((uintptr_t)18446744073709551615ULL);
x730 = sizeof(intptr_t) == 4 ? ((uint64_t)(x726)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x726)*((uintptr_t)18446744073709551615ULL))>>64;
x731 = (x726)*((uintptr_t)18446744073709551615ULL);
x732 = sizeof(intptr_t) == 4 ? ((uint64_t)(x726)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x726)*((uintptr_t)18446744073709551615ULL))>>64;
x733 = (x726)*((uintptr_t)18446744073709551614ULL);
x734 = sizeof(intptr_t) == 4 ? ((uint64_t)(x726)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x726)*((uintptr_t)18446744073709551614ULL))>>64;
x735 = (x726)*((uintptr_t)18446744069414584320ULL);
x736 = sizeof(intptr_t) == 4 ? ((uint64_t)(x726)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x726)*((uintptr_t)18446744069414584320ULL))>>64;
x737 = (x726)*((uintptr_t)4294967295ULL);
x738 = sizeof(intptr_t) == 4 ? ((uint64_t)(x726)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x726)*((uintptr_t)4294967295ULL))>>64;
x739 = (x738)+(x735);
x740 = (x739)<(x738);
x741 = (x740)+(x736);
x742 = (x741)<(x736);
x743 = (x741)+(x733);
x744 = (x743)<(x733);
x745 = (x742)+(x744);
x746 = (x745)+(x734);
x747 = (x746)<(x734);
x748 = (x746)+(x731);
x749 = (x748)<(x731);
x750 = (x747)+(x749);
x751 = (x750)+(x732);
x752 = (x751)<(x732);
x753 = (x751)+(x729);
x754 = (x753)<(x729);
x755 = (x752)+(x754);
x756 = (x755)+(x730);
x757 = (x756)<(x730);
x758 = (x756)+(x727);
x759 = (x758)<(x727);
x760 = (x757)+(x759);
x761 = (x760)+(x728);
x762 = (x694)+(x737);
x763 = (x762)<(x694);
x764 = (x763)+(x698);
x765 = (x764)<(x698);
x766 = (x764)+(x739);
x767 = (x766)<(x739);
x768 = (x765)+(x767);
x769 = (x768)+(x703);
x770 = (x769)<(x703);
x771 = (x769)+(x743);
x772 = (x771)<(x743);
x773 = (x770)+(x772);
x774 = (x773)+(x708);
x775 = (x774)<(x708);
x776 = (x774)+(x748);
x777 = (x776)<(x748);
x778 = (x775)+(x777);
x779 = (x778)+(x713);
x780 = (x779)<(x713);
x781 = (x779)+(x753);
x782 = (x781)<(x753);
x783 = (x780)+(x782);
x784 = (x783)+(x718);
x785 = (x784)<(x718);
x786 = (x784)+(x758);
x787 = (x786)<(x758);
x788 = (x785)+(x787);
x789 = (x788)+(x723);
x790 = (x789)<(x723);
x791 = (x789)+(x761);
x792 = (x791)<(x761);
x793 = (x790)+(x792);
x794 = (x793)+(x725);
x795 = (x766)-((uintptr_t)4294967295ULL);
x796 = (x766)<(x795);
x797 = (x795)<(x795);
x798 = (x796)+(x797);
x799 = (x771)-((uintptr_t)18446744069414584320ULL);
x800 = (x771)<(x799);
x801 = (x799)-(x798);
x802 = (x799)<(x801);
x803 = (x800)+(x802);
x804 = (x776)-((uintptr_t)18446744073709551614ULL);
x805 = (x776)<(x804);
x806 = (x804)-(x803);
x807 = (x804)<(x806);
x808 = (x805)+(x807);
x809 = (x781)-((uintptr_t)18446744073709551615ULL);
x810 = (x781)<(x809);
x811 = (x809)-(x808);
x812 = (x809)<(x811);
x813 = (x810)+(x812);
x814 = (x786)-((uintptr_t)18446744073709551615ULL);
x815 = (x786)<(x814);
x816 = (x814)-(x813);
x817 = (x814)<(x816);
x818 = (x815)+(x817);
x819 = (x791)-((uintptr_t)18446744073709551615ULL);
x820 = (x791)<(x819);
x821 = (x819)-(x818);
x822 = (x819)<(x821);
x823 = (x820)+(x822);
x824 = (x794)<(x794);
x825 = (x794)-(x823);
x826 = (x794)<(x825);
x827 = (x824)+(x826);
x828 = ((uintptr_t)-1ULL)+((x827)==((uintptr_t)0ULL));
x829 = (x828)^((uintptr_t)18446744073709551615ULL);
x830 = ((x766)&(x828))|((x795)&(x829));
x831 = ((uintptr_t)-1ULL)+((x827)==((uintptr_t)0ULL));
x832 = (x831)^((uintptr_t)18446744073709551615ULL);
x833 = ((x771)&(x831))|((x801)&(x832));
x834 = ((uintptr_t)-1ULL)+((x827)==((uintptr_t)0ULL));
x835 = (x834)^((uintptr_t)18446744073709551615ULL);
x836 = ((x776)&(x834))|((x806)&(x835));
x837 = ((uintptr_t)-1ULL)+((x827)==((uintptr_t)0ULL));
x838 = (x837)^((uintptr_t)18446744073709551615ULL);
x839 = ((x781)&(x837))|((x811)&(x838));
x840 = ((uintptr_t)-1ULL)+((x827)==((uintptr_t)0ULL));
x841 = (x840)^((uintptr_t)18446744073709551615ULL);
x842 = ((x786)&(x840))|((x816)&(x841));
x843 = ((uintptr_t)-1ULL)+((x827)==((uintptr_t)0ULL));
x844 = (x843)^((uintptr_t)18446744073709551615ULL);
x845 = ((x791)&(x843))|((x821)&(x844));
x846 = x830;
x847 = x833;
x848 = x836;
x849 = x839;
x850 = x842;
x851 = x845;
/*skip*/
*(uintptr_t*)((out0)+((uintptr_t)0ULL)) = x846;
*(uintptr_t*)((out0)+((uintptr_t)8ULL)) = x847;
*(uintptr_t*)((out0)+((uintptr_t)16ULL)) = x848;
*(uintptr_t*)((out0)+((uintptr_t)24ULL)) = x849;
*(uintptr_t*)((out0)+((uintptr_t)32ULL)) = x850;
*(uintptr_t*)((out0)+((uintptr_t)40ULL)) = x851;
/*skip*/
return;
}
/*
* Input Bounds:
* in0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* in1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* Output Bounds:
* out0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
*/
void fiat_p384_add(uintptr_t in0, uintptr_t in1, uintptr_t out0) {
uintptr_t x6, x0, x13, x1, x7, x15, x2, x8, x17, x3, x9, x19, x4, x10, x21, x5, x11, x25, x27, x29, x31, x23, x33, x12, x36, x24, x37, x14, x39, x26, x40, x16, x42, x28, x43, x18, x45, x30, x46, x20, x48, x32, x49, x35, x22, x51, x34, x52, x38, x41, x44, x47, x50, x53, x54, x55, x56, x57, x58, x59;
x0 = *(uintptr_t*)((in0)+((uintptr_t)0ULL));
x1 = *(uintptr_t*)((in0)+((uintptr_t)8ULL));
x2 = *(uintptr_t*)((in0)+((uintptr_t)16ULL));
x3 = *(uintptr_t*)((in0)+((uintptr_t)24ULL));
x4 = *(uintptr_t*)((in0)+((uintptr_t)32ULL));
x5 = *(uintptr_t*)((in0)+((uintptr_t)40ULL));
/*skip*/
x6 = *(uintptr_t*)((in1)+((uintptr_t)0ULL));
x7 = *(uintptr_t*)((in1)+((uintptr_t)8ULL));
x8 = *(uintptr_t*)((in1)+((uintptr_t)16ULL));
x9 = *(uintptr_t*)((in1)+((uintptr_t)24ULL));
x10 = *(uintptr_t*)((in1)+((uintptr_t)32ULL));
x11 = *(uintptr_t*)((in1)+((uintptr_t)40ULL));
/*skip*/
/*skip*/
x12 = (x0)+(x6);
x13 = ((x12)<(x0))+(x1);
x14 = (x13)+(x7);
x15 = (((x13)<(x1))+((x14)<(x7)))+(x2);
x16 = (x15)+(x8);
x17 = (((x15)<(x2))+((x16)<(x8)))+(x3);
x18 = (x17)+(x9);
x19 = (((x17)<(x3))+((x18)<(x9)))+(x4);
x20 = (x19)+(x10);
x21 = (((x19)<(x4))+((x20)<(x10)))+(x5);
x22 = (x21)+(x11);
x23 = ((x21)<(x5))+((x22)<(x11));
x24 = (x12)-((uintptr_t)4294967295ULL);
x25 = (x14)-((uintptr_t)18446744069414584320ULL);
x26 = (x25)-(((x12)<(x24))+((x24)<(x24)));
x27 = (x16)-((uintptr_t)18446744073709551614ULL);
x28 = (x27)-(((x14)<(x25))+((x25)<(x26)));
x29 = (x18)-((uintptr_t)18446744073709551615ULL);
x30 = (x29)-(((x16)<(x27))+((x27)<(x28)));
x31 = (x20)-((uintptr_t)18446744073709551615ULL);
x32 = (x31)-(((x18)<(x29))+((x29)<(x30)));
x33 = (x22)-((uintptr_t)18446744073709551615ULL);
x34 = (x33)-(((x20)<(x31))+((x31)<(x32)));
x35 = ((x23)<(x23))+((x23)<((x23)-(((x22)<(x33))+((x33)<(x34)))));
x36 = ((uintptr_t)-1ULL)+((x35)==((uintptr_t)0ULL));
x37 = (x36)^((uintptr_t)18446744073709551615ULL);
x38 = ((x12)&(x36))|((x24)&(x37));
x39 = ((uintptr_t)-1ULL)+((x35)==((uintptr_t)0ULL));
x40 = (x39)^((uintptr_t)18446744073709551615ULL);
x41 = ((x14)&(x39))|((x26)&(x40));
x42 = ((uintptr_t)-1ULL)+((x35)==((uintptr_t)0ULL));
x43 = (x42)^((uintptr_t)18446744073709551615ULL);
x44 = ((x16)&(x42))|((x28)&(x43));
x45 = ((uintptr_t)-1ULL)+((x35)==((uintptr_t)0ULL));
x46 = (x45)^((uintptr_t)18446744073709551615ULL);
x47 = ((x18)&(x45))|((x30)&(x46));
x48 = ((uintptr_t)-1ULL)+((x35)==((uintptr_t)0ULL));
x49 = (x48)^((uintptr_t)18446744073709551615ULL);
x50 = ((x20)&(x48))|((x32)&(x49));
x51 = ((uintptr_t)-1ULL)+((x35)==((uintptr_t)0ULL));
x52 = (x51)^((uintptr_t)18446744073709551615ULL);
x53 = ((x22)&(x51))|((x34)&(x52));
x54 = x38;
x55 = x41;
x56 = x44;
x57 = x47;
x58 = x50;
x59 = x53;
/*skip*/
*(uintptr_t*)((out0)+((uintptr_t)0ULL)) = x54;
*(uintptr_t*)((out0)+((uintptr_t)8ULL)) = x55;
*(uintptr_t*)((out0)+((uintptr_t)16ULL)) = x56;
*(uintptr_t*)((out0)+((uintptr_t)24ULL)) = x57;
*(uintptr_t*)((out0)+((uintptr_t)32ULL)) = x58;
*(uintptr_t*)((out0)+((uintptr_t)40ULL)) = x59;
/*skip*/
return;
}
/*
* Input Bounds:
* in0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* in1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* Output Bounds:
* out0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
*/
void fiat_p384_sub(uintptr_t in0, uintptr_t in1, uintptr_t out0) {
uintptr_t x6, x7, x0, x8, x1, x13, x9, x2, x15, x10, x3, x17, x11, x4, x19, x5, x21, x12, x25, x14, x27, x16, x29, x18, x31, x20, x22, x23, x24, x26, x28, x30, x32, x33, x34, x35, x36, x37, x38, x39;
x0 = *(uintptr_t*)((in0)+((uintptr_t)0ULL));
x1 = *(uintptr_t*)((in0)+((uintptr_t)8ULL));
x2 = *(uintptr_t*)((in0)+((uintptr_t)16ULL));
x3 = *(uintptr_t*)((in0)+((uintptr_t)24ULL));
x4 = *(uintptr_t*)((in0)+((uintptr_t)32ULL));
x5 = *(uintptr_t*)((in0)+((uintptr_t)40ULL));
/*skip*/
x6 = *(uintptr_t*)((in1)+((uintptr_t)0ULL));
x7 = *(uintptr_t*)((in1)+((uintptr_t)8ULL));
x8 = *(uintptr_t*)((in1)+((uintptr_t)16ULL));
x9 = *(uintptr_t*)((in1)+((uintptr_t)24ULL));
x10 = *(uintptr_t*)((in1)+((uintptr_t)32ULL));
x11 = *(uintptr_t*)((in1)+((uintptr_t)40ULL));
/*skip*/
/*skip*/
x12 = (x0)-(x6);
x13 = (x1)-(x7);
x14 = (x13)-((x0)<(x12));
x15 = (x2)-(x8);
x16 = (x15)-(((x1)<(x13))+((x13)<(x14)));
x17 = (x3)-(x9);
x18 = (x17)-(((x2)<(x15))+((x15)<(x16)));
x19 = (x4)-(x10);
x20 = (x19)-(((x3)<(x17))+((x17)<(x18)));
x21 = (x5)-(x11);
x22 = (x21)-(((x4)<(x19))+((x19)<(x20)));
x23 = ((uintptr_t)-1ULL)+((((x5)<(x21))+((x21)<(x22)))==((uintptr_t)0ULL));
x24 = (x12)+((x23)&((uintptr_t)4294967295ULL));
x25 = ((x24)<(x12))+(x14);
x26 = (x25)+((x23)&((uintptr_t)18446744069414584320ULL));
x27 = (((x25)<(x14))+((x26)<((x23)&((uintptr_t)18446744069414584320ULL))))+(x16);
x28 = (x27)+((x23)&((uintptr_t)18446744073709551614ULL));
x29 = (((x27)<(x16))+((x28)<((x23)&((uintptr_t)18446744073709551614ULL))))+(x18);
x30 = (x29)+((x23)&((uintptr_t)18446744073709551615ULL));
x31 = (((x29)<(x18))+((x30)<((x23)&((uintptr_t)18446744073709551615ULL))))+(x20);
x32 = (x31)+((x23)&((uintptr_t)18446744073709551615ULL));
x33 = ((((x31)<(x20))+((x32)<((x23)&((uintptr_t)18446744073709551615ULL))))+(x22))+((x23)&((uintptr_t)18446744073709551615ULL));
x34 = x24;
x35 = x26;
x36 = x28;
x37 = x30;
x38 = x32;
x39 = x33;
/*skip*/
*(uintptr_t*)((out0)+((uintptr_t)0ULL)) = x34;
*(uintptr_t*)((out0)+((uintptr_t)8ULL)) = x35;
*(uintptr_t*)((out0)+((uintptr_t)16ULL)) = x36;
*(uintptr_t*)((out0)+((uintptr_t)24ULL)) = x37;
*(uintptr_t*)((out0)+((uintptr_t)32ULL)) = x38;
*(uintptr_t*)((out0)+((uintptr_t)40ULL)) = x39;
/*skip*/
return;
}
/*
* Input Bounds:
* in0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* Output Bounds:
* out0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
*/
void fiat_p384_opp(uintptr_t in0, uintptr_t out0) {
uintptr_t x0, x1, x2, x7, x3, x9, x4, x11, x5, x13, x15, x6, x19, x8, x21, x10, x23, x12, x25, x14, x16, x17, x18, x20, x22, x24, x26, x27, x28, x29, x30, x31, x32, x33;
x0 = *(uintptr_t*)((in0)+((uintptr_t)0ULL));
x1 = *(uintptr_t*)((in0)+((uintptr_t)8ULL));
x2 = *(uintptr_t*)((in0)+((uintptr_t)16ULL));
x3 = *(uintptr_t*)((in0)+((uintptr_t)24ULL));
x4 = *(uintptr_t*)((in0)+((uintptr_t)32ULL));
x5 = *(uintptr_t*)((in0)+((uintptr_t)40ULL));
/*skip*/
/*skip*/
x6 = ((uintptr_t)0ULL)-(x0);
x7 = ((uintptr_t)0ULL)-(x1);
x8 = (x7)-(((uintptr_t)0ULL)<(x6));
x9 = ((uintptr_t)0ULL)-(x2);
x10 = (x9)-((((uintptr_t)0ULL)<(x7))+((x7)<(x8)));
x11 = ((uintptr_t)0ULL)-(x3);
x12 = (x11)-((((uintptr_t)0ULL)<(x9))+((x9)<(x10)));
x13 = ((uintptr_t)0ULL)-(x4);
x14 = (x13)-((((uintptr_t)0ULL)<(x11))+((x11)<(x12)));
x15 = ((uintptr_t)0ULL)-(x5);
x16 = (x15)-((((uintptr_t)0ULL)<(x13))+((x13)<(x14)));
x17 = ((uintptr_t)-1ULL)+(((((uintptr_t)0ULL)<(x15))+((x15)<(x16)))==((uintptr_t)0ULL));
x18 = (x6)+((x17)&((uintptr_t)4294967295ULL));
x19 = ((x18)<(x6))+(x8);
x20 = (x19)+((x17)&((uintptr_t)18446744069414584320ULL));
x21 = (((x19)<(x8))+((x20)<((x17)&((uintptr_t)18446744069414584320ULL))))+(x10);
x22 = (x21)+((x17)&((uintptr_t)18446744073709551614ULL));
x23 = (((x21)<(x10))+((x22)<((x17)&((uintptr_t)18446744073709551614ULL))))+(x12);
x24 = (x23)+((x17)&((uintptr_t)18446744073709551615ULL));
x25 = (((x23)<(x12))+((x24)<((x17)&((uintptr_t)18446744073709551615ULL))))+(x14);
x26 = (x25)+((x17)&((uintptr_t)18446744073709551615ULL));
x27 = ((((x25)<(x14))+((x26)<((x17)&((uintptr_t)18446744073709551615ULL))))+(x16))+((x17)&((uintptr_t)18446744073709551615ULL));
x28 = x18;
x29 = x20;
x30 = x22;
x31 = x24;
x32 = x26;
x33 = x27;
/*skip*/
*(uintptr_t*)((out0)+((uintptr_t)0ULL)) = x28;
*(uintptr_t*)((out0)+((uintptr_t)8ULL)) = x29;
*(uintptr_t*)((out0)+((uintptr_t)16ULL)) = x30;
*(uintptr_t*)((out0)+((uintptr_t)24ULL)) = x31;
*(uintptr_t*)((out0)+((uintptr_t)32ULL)) = x32;
*(uintptr_t*)((out0)+((uintptr_t)40ULL)) = x33;
/*skip*/
return;
}
/*
* Input Bounds:
* in0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* Output Bounds:
* out0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
*/
void fiat_p384_from_montgomery(uintptr_t in0, uintptr_t out0) {
uintptr_t x0, x17, x19, x16, x14, x21, x15, x12, x23, x13, x10, x25, x11, x8, x7, x6, x18, x20, x22, x24, x26, x27, x9, x1, x28, x29, x30, x31, x32, x33, x52, x54, x51, x49, x56, x50, x47, x58, x48, x45, x60, x46, x43, x42, x35, x63, x36, x53, x65, x37, x55, x67, x38, x57, x69, x39, x59, x71, x40, x61, x73, x41, x34, x62, x44, x2, x64, x66, x68, x70, x72, x74, x93, x95, x92, x90, x97, x91, x88, x99, x89, x86, x101, x87, x84, x83, x76, x104, x77, x94, x106, x78, x96, x108, x79, x98, x110, x80, x100, x112, x81, x102, x114, x82, x75, x103, x85, x3, x105, x107, x109, x111, x113, x115, x134, x136, x133, x131, x138, x132, x129, x140, x130, x127, x142, x128, x125, x124, x117, x145, x118, x135, x147, x119, x137, x149, x120, x139, x151, x121, x141, x153, x122, x143, x155, x123, x116, x144, x126, x4, x146, x148, x150, x152, x154, x156, x175, x177, x174, x172, x179, x173, x170, x181, x171, x168, x183, x169, x166, x165, x158, x186, x159, x176, x188, x160, x178, x190, x161, x180, x192, x162, x182, x194, x163, x184, x196, x164, x157, x185, x167, x5, x187, x189, x191, x193, x195, x197, x216, x218, x215, x213, x220, x214, x211, x222, x212, x209, x224, x210, x207, x206, x199, x227, x200, x217, x229, x201, x219, x231, x202, x221, x233, x203, x223, x235, x204, x225, x237, x205, x198, x226, x208, x241, x243, x245, x247, x239, x249, x228, x252, x240, x253, x230, x255, x242, x256, x232, x258, x244, x259, x234, x261, x246, x262, x236, x264, x248, x265, x251, x238, x267, x250, x268, x254, x257, x260, x263, x266, x269, x270, x271, x272, x273, x274, x275;
x0 = *(uintptr_t*)((in0)+((uintptr_t)0ULL));
x1 = *(uintptr_t*)((in0)+((uintptr_t)8ULL));
x2 = *(uintptr_t*)((in0)+((uintptr_t)16ULL));
x3 = *(uintptr_t*)((in0)+((uintptr_t)24ULL));
x4 = *(uintptr_t*)((in0)+((uintptr_t)32ULL));
x5 = *(uintptr_t*)((in0)+((uintptr_t)40ULL));
/*skip*/
/*skip*/
x6 = x0;
x7 = (x6)*((uintptr_t)4294967297ULL);
x8 = (x7)*((uintptr_t)18446744073709551615ULL);
x9 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x7)*((uintptr_t)18446744073709551615ULL))>>64;
x10 = (x7)*((uintptr_t)18446744073709551615ULL);
x11 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x7)*((uintptr_t)18446744073709551615ULL))>>64;
x12 = (x7)*((uintptr_t)18446744073709551615ULL);
x13 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x7)*((uintptr_t)18446744073709551615ULL))>>64;
x14 = (x7)*((uintptr_t)18446744073709551614ULL);
x15 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x7)*((uintptr_t)18446744073709551614ULL))>>64;
x16 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x7)*((uintptr_t)18446744069414584320ULL))>>64;
x17 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x7)*((uintptr_t)4294967295ULL))>>64;
x18 = (x17)+((x7)*((uintptr_t)18446744069414584320ULL));
x19 = ((x18)<(x17))+(x16);
x20 = (x19)+(x14);
x21 = (((x19)<(x16))+((x20)<(x14)))+(x15);
x22 = (x21)+(x12);
x23 = (((x21)<(x15))+((x22)<(x12)))+(x13);
x24 = (x23)+(x10);
x25 = (((x23)<(x13))+((x24)<(x10)))+(x11);
x26 = (x25)+(x8);
x27 = ((x25)<(x11))+((x26)<(x8));
x28 = (((x6)+((x7)*((uintptr_t)4294967295ULL)))<(x6))+(x18);
x29 = ((x28)<(x18))+(x20);
x30 = ((x29)<(x20))+(x22);
x31 = ((x30)<(x22))+(x24);
x32 = ((x31)<(x24))+(x26);
x33 = ((x32)<(x26))+((x27)+(x9));
x34 = (x33)<((x27)+(x9));
x35 = (x28)+(x1);
x36 = ((x35)<(x28))+(x29);
x37 = ((x36)<(x29))+(x30);
x38 = ((x37)<(x30))+(x31);
x39 = ((x38)<(x31))+(x32);
x40 = ((x39)<(x32))+(x33);
x41 = (x40)<(x33);
x42 = (x35)*((uintptr_t)4294967297ULL);
x43 = (x42)*((uintptr_t)18446744073709551615ULL);
x44 = sizeof(intptr_t) == 4 ? ((uint64_t)(x42)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x42)*((uintptr_t)18446744073709551615ULL))>>64;
x45 = (x42)*((uintptr_t)18446744073709551615ULL);
x46 = sizeof(intptr_t) == 4 ? ((uint64_t)(x42)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x42)*((uintptr_t)18446744073709551615ULL))>>64;
x47 = (x42)*((uintptr_t)18446744073709551615ULL);
x48 = sizeof(intptr_t) == 4 ? ((uint64_t)(x42)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x42)*((uintptr_t)18446744073709551615ULL))>>64;
x49 = (x42)*((uintptr_t)18446744073709551614ULL);
x50 = sizeof(intptr_t) == 4 ? ((uint64_t)(x42)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x42)*((uintptr_t)18446744073709551614ULL))>>64;
x51 = sizeof(intptr_t) == 4 ? ((uint64_t)(x42)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x42)*((uintptr_t)18446744069414584320ULL))>>64;
x52 = sizeof(intptr_t) == 4 ? ((uint64_t)(x42)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x42)*((uintptr_t)4294967295ULL))>>64;
x53 = (x52)+((x42)*((uintptr_t)18446744069414584320ULL));
x54 = ((x53)<(x52))+(x51);
x55 = (x54)+(x49);
x56 = (((x54)<(x51))+((x55)<(x49)))+(x50);
x57 = (x56)+(x47);
x58 = (((x56)<(x50))+((x57)<(x47)))+(x48);
x59 = (x58)+(x45);
x60 = (((x58)<(x48))+((x59)<(x45)))+(x46);
x61 = (x60)+(x43);
x62 = ((x60)<(x46))+((x61)<(x43));
x63 = (((x35)+((x42)*((uintptr_t)4294967295ULL)))<(x35))+(x36);
x64 = (x63)+(x53);
x65 = (((x63)<(x36))+((x64)<(x53)))+(x37);
x66 = (x65)+(x55);
x67 = (((x65)<(x37))+((x66)<(x55)))+(x38);
x68 = (x67)+(x57);
x69 = (((x67)<(x38))+((x68)<(x57)))+(x39);
x70 = (x69)+(x59);
x71 = (((x69)<(x39))+((x70)<(x59)))+(x40);
x72 = (x71)+(x61);
x73 = (((x71)<(x40))+((x72)<(x61)))+((x41)+(x34));
x74 = (x73)+((x62)+(x44));
x75 = ((x73)<((x41)+(x34)))+((x74)<((x62)+(x44)));
x76 = (x64)+(x2);
x77 = ((x76)<(x64))+(x66);
x78 = ((x77)<(x66))+(x68);
x79 = ((x78)<(x68))+(x70);
x80 = ((x79)<(x70))+(x72);
x81 = ((x80)<(x72))+(x74);
x82 = (x81)<(x74);
x83 = (x76)*((uintptr_t)4294967297ULL);
x84 = (x83)*((uintptr_t)18446744073709551615ULL);
x85 = sizeof(intptr_t) == 4 ? ((uint64_t)(x83)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x83)*((uintptr_t)18446744073709551615ULL))>>64;
x86 = (x83)*((uintptr_t)18446744073709551615ULL);
x87 = sizeof(intptr_t) == 4 ? ((uint64_t)(x83)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x83)*((uintptr_t)18446744073709551615ULL))>>64;
x88 = (x83)*((uintptr_t)18446744073709551615ULL);
x89 = sizeof(intptr_t) == 4 ? ((uint64_t)(x83)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x83)*((uintptr_t)18446744073709551615ULL))>>64;
x90 = (x83)*((uintptr_t)18446744073709551614ULL);
x91 = sizeof(intptr_t) == 4 ? ((uint64_t)(x83)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x83)*((uintptr_t)18446744073709551614ULL))>>64;
x92 = sizeof(intptr_t) == 4 ? ((uint64_t)(x83)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x83)*((uintptr_t)18446744069414584320ULL))>>64;
x93 = sizeof(intptr_t) == 4 ? ((uint64_t)(x83)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x83)*((uintptr_t)4294967295ULL))>>64;
x94 = (x93)+((x83)*((uintptr_t)18446744069414584320ULL));
x95 = ((x94)<(x93))+(x92);
x96 = (x95)+(x90);
x97 = (((x95)<(x92))+((x96)<(x90)))+(x91);
x98 = (x97)+(x88);
x99 = (((x97)<(x91))+((x98)<(x88)))+(x89);
x100 = (x99)+(x86);
x101 = (((x99)<(x89))+((x100)<(x86)))+(x87);
x102 = (x101)+(x84);
x103 = ((x101)<(x87))+((x102)<(x84));
x104 = (((x76)+((x83)*((uintptr_t)4294967295ULL)))<(x76))+(x77);
x105 = (x104)+(x94);
x106 = (((x104)<(x77))+((x105)<(x94)))+(x78);
x107 = (x106)+(x96);
x108 = (((x106)<(x78))+((x107)<(x96)))+(x79);
x109 = (x108)+(x98);
x110 = (((x108)<(x79))+((x109)<(x98)))+(x80);
x111 = (x110)+(x100);
x112 = (((x110)<(x80))+((x111)<(x100)))+(x81);
x113 = (x112)+(x102);
x114 = (((x112)<(x81))+((x113)<(x102)))+((x82)+(x75));
x115 = (x114)+((x103)+(x85));
x116 = ((x114)<((x82)+(x75)))+((x115)<((x103)+(x85)));
x117 = (x105)+(x3);
x118 = ((x117)<(x105))+(x107);
x119 = ((x118)<(x107))+(x109);
x120 = ((x119)<(x109))+(x111);
x121 = ((x120)<(x111))+(x113);
x122 = ((x121)<(x113))+(x115);
x123 = (x122)<(x115);
x124 = (x117)*((uintptr_t)4294967297ULL);
x125 = (x124)*((uintptr_t)18446744073709551615ULL);
x126 = sizeof(intptr_t) == 4 ? ((uint64_t)(x124)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x124)*((uintptr_t)18446744073709551615ULL))>>64;
x127 = (x124)*((uintptr_t)18446744073709551615ULL);
x128 = sizeof(intptr_t) == 4 ? ((uint64_t)(x124)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x124)*((uintptr_t)18446744073709551615ULL))>>64;
x129 = (x124)*((uintptr_t)18446744073709551615ULL);
x130 = sizeof(intptr_t) == 4 ? ((uint64_t)(x124)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x124)*((uintptr_t)18446744073709551615ULL))>>64;
x131 = (x124)*((uintptr_t)18446744073709551614ULL);
x132 = sizeof(intptr_t) == 4 ? ((uint64_t)(x124)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x124)*((uintptr_t)18446744073709551614ULL))>>64;
x133 = sizeof(intptr_t) == 4 ? ((uint64_t)(x124)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x124)*((uintptr_t)18446744069414584320ULL))>>64;
x134 = sizeof(intptr_t) == 4 ? ((uint64_t)(x124)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x124)*((uintptr_t)4294967295ULL))>>64;
x135 = (x134)+((x124)*((uintptr_t)18446744069414584320ULL));
x136 = ((x135)<(x134))+(x133);
x137 = (x136)+(x131);
x138 = (((x136)<(x133))+((x137)<(x131)))+(x132);
x139 = (x138)+(x129);
x140 = (((x138)<(x132))+((x139)<(x129)))+(x130);
x141 = (x140)+(x127);
x142 = (((x140)<(x130))+((x141)<(x127)))+(x128);
x143 = (x142)+(x125);
x144 = ((x142)<(x128))+((x143)<(x125));
x145 = (((x117)+((x124)*((uintptr_t)4294967295ULL)))<(x117))+(x118);
x146 = (x145)+(x135);
x147 = (((x145)<(x118))+((x146)<(x135)))+(x119);
x148 = (x147)+(x137);
x149 = (((x147)<(x119))+((x148)<(x137)))+(x120);
x150 = (x149)+(x139);
x151 = (((x149)<(x120))+((x150)<(x139)))+(x121);
x152 = (x151)+(x141);
x153 = (((x151)<(x121))+((x152)<(x141)))+(x122);
x154 = (x153)+(x143);
x155 = (((x153)<(x122))+((x154)<(x143)))+((x123)+(x116));
x156 = (x155)+((x144)+(x126));
x157 = ((x155)<((x123)+(x116)))+((x156)<((x144)+(x126)));
x158 = (x146)+(x4);
x159 = ((x158)<(x146))+(x148);
x160 = ((x159)<(x148))+(x150);
x161 = ((x160)<(x150))+(x152);
x162 = ((x161)<(x152))+(x154);
x163 = ((x162)<(x154))+(x156);
x164 = (x163)<(x156);
x165 = (x158)*((uintptr_t)4294967297ULL);
x166 = (x165)*((uintptr_t)18446744073709551615ULL);
x167 = sizeof(intptr_t) == 4 ? ((uint64_t)(x165)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x165)*((uintptr_t)18446744073709551615ULL))>>64;
x168 = (x165)*((uintptr_t)18446744073709551615ULL);
x169 = sizeof(intptr_t) == 4 ? ((uint64_t)(x165)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x165)*((uintptr_t)18446744073709551615ULL))>>64;
x170 = (x165)*((uintptr_t)18446744073709551615ULL);
x171 = sizeof(intptr_t) == 4 ? ((uint64_t)(x165)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x165)*((uintptr_t)18446744073709551615ULL))>>64;
x172 = (x165)*((uintptr_t)18446744073709551614ULL);
x173 = sizeof(intptr_t) == 4 ? ((uint64_t)(x165)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x165)*((uintptr_t)18446744073709551614ULL))>>64;
x174 = sizeof(intptr_t) == 4 ? ((uint64_t)(x165)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x165)*((uintptr_t)18446744069414584320ULL))>>64;
x175 = sizeof(intptr_t) == 4 ? ((uint64_t)(x165)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x165)*((uintptr_t)4294967295ULL))>>64;
x176 = (x175)+((x165)*((uintptr_t)18446744069414584320ULL));
x177 = ((x176)<(x175))+(x174);
x178 = (x177)+(x172);
x179 = (((x177)<(x174))+((x178)<(x172)))+(x173);
x180 = (x179)+(x170);
x181 = (((x179)<(x173))+((x180)<(x170)))+(x171);
x182 = (x181)+(x168);
x183 = (((x181)<(x171))+((x182)<(x168)))+(x169);
x184 = (x183)+(x166);
x185 = ((x183)<(x169))+((x184)<(x166));
x186 = (((x158)+((x165)*((uintptr_t)4294967295ULL)))<(x158))+(x159);
x187 = (x186)+(x176);
x188 = (((x186)<(x159))+((x187)<(x176)))+(x160);
x189 = (x188)+(x178);
x190 = (((x188)<(x160))+((x189)<(x178)))+(x161);
x191 = (x190)+(x180);
x192 = (((x190)<(x161))+((x191)<(x180)))+(x162);
x193 = (x192)+(x182);
x194 = (((x192)<(x162))+((x193)<(x182)))+(x163);
x195 = (x194)+(x184);
x196 = (((x194)<(x163))+((x195)<(x184)))+((x164)+(x157));
x197 = (x196)+((x185)+(x167));
x198 = ((x196)<((x164)+(x157)))+((x197)<((x185)+(x167)));
x199 = (x187)+(x5);
x200 = ((x199)<(x187))+(x189);
x201 = ((x200)<(x189))+(x191);
x202 = ((x201)<(x191))+(x193);
x203 = ((x202)<(x193))+(x195);
x204 = ((x203)<(x195))+(x197);
x205 = (x204)<(x197);
x206 = (x199)*((uintptr_t)4294967297ULL);
x207 = (x206)*((uintptr_t)18446744073709551615ULL);
x208 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)18446744073709551615ULL))>>64;
x209 = (x206)*((uintptr_t)18446744073709551615ULL);
x210 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)18446744073709551615ULL))>>64;
x211 = (x206)*((uintptr_t)18446744073709551615ULL);
x212 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)18446744073709551615ULL))>>64;
x213 = (x206)*((uintptr_t)18446744073709551614ULL);
x214 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)18446744073709551614ULL))>>64;
x215 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)18446744069414584320ULL))>>64;
x216 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)4294967295ULL))>>64;
x217 = (x216)+((x206)*((uintptr_t)18446744069414584320ULL));
x218 = ((x217)<(x216))+(x215);
x219 = (x218)+(x213);
x220 = (((x218)<(x215))+((x219)<(x213)))+(x214);
x221 = (x220)+(x211);
x222 = (((x220)<(x214))+((x221)<(x211)))+(x212);
x223 = (x222)+(x209);
x224 = (((x222)<(x212))+((x223)<(x209)))+(x210);
x225 = (x224)+(x207);
x226 = ((x224)<(x210))+((x225)<(x207));
x227 = (((x199)+((x206)*((uintptr_t)4294967295ULL)))<(x199))+(x200);
x228 = (x227)+(x217);
x229 = (((x227)<(x200))+((x228)<(x217)))+(x201);
x230 = (x229)+(x219);
x231 = (((x229)<(x201))+((x230)<(x219)))+(x202);
x232 = (x231)+(x221);
x233 = (((x231)<(x202))+((x232)<(x221)))+(x203);
x234 = (x233)+(x223);
x235 = (((x233)<(x203))+((x234)<(x223)))+(x204);
x236 = (x235)+(x225);
x237 = (((x235)<(x204))+((x236)<(x225)))+((x205)+(x198));
x238 = (x237)+((x226)+(x208));
x239 = ((x237)<((x205)+(x198)))+((x238)<((x226)+(x208)));
x240 = (x228)-((uintptr_t)4294967295ULL);
x241 = (x230)-((uintptr_t)18446744069414584320ULL);
x242 = (x241)-(((x228)<(x240))+((x240)<(x240)));
x243 = (x232)-((uintptr_t)18446744073709551614ULL);
x244 = (x243)-(((x230)<(x241))+((x241)<(x242)));
x245 = (x234)-((uintptr_t)18446744073709551615ULL);
x246 = (x245)-(((x232)<(x243))+((x243)<(x244)));
x247 = (x236)-((uintptr_t)18446744073709551615ULL);
x248 = (x247)-(((x234)<(x245))+((x245)<(x246)));
x249 = (x238)-((uintptr_t)18446744073709551615ULL);
x250 = (x249)-(((x236)<(x247))+((x247)<(x248)));
x251 = ((x239)<(x239))+((x239)<((x239)-(((x238)<(x249))+((x249)<(x250)))));
x252 = ((uintptr_t)-1ULL)+((x251)==((uintptr_t)0ULL));
x253 = (x252)^((uintptr_t)18446744073709551615ULL);
x254 = ((x228)&(x252))|((x240)&(x253));
x255 = ((uintptr_t)-1ULL)+((x251)==((uintptr_t)0ULL));
x256 = (x255)^((uintptr_t)18446744073709551615ULL);
x257 = ((x230)&(x255))|((x242)&(x256));
x258 = ((uintptr_t)-1ULL)+((x251)==((uintptr_t)0ULL));
x259 = (x258)^((uintptr_t)18446744073709551615ULL);
x260 = ((x232)&(x258))|((x244)&(x259));
x261 = ((uintptr_t)-1ULL)+((x251)==((uintptr_t)0ULL));
x262 = (x261)^((uintptr_t)18446744073709551615ULL);
x263 = ((x234)&(x261))|((x246)&(x262));
x264 = ((uintptr_t)-1ULL)+((x251)==((uintptr_t)0ULL));
x265 = (x264)^((uintptr_t)18446744073709551615ULL);
x266 = ((x236)&(x264))|((x248)&(x265));
x267 = ((uintptr_t)-1ULL)+((x251)==((uintptr_t)0ULL));
x268 = (x267)^((uintptr_t)18446744073709551615ULL);
x269 = ((x238)&(x267))|((x250)&(x268));
x270 = x254;
x271 = x257;
x272 = x260;
x273 = x263;
x274 = x266;
x275 = x269;
/*skip*/
*(uintptr_t*)((out0)+((uintptr_t)0ULL)) = x270;
*(uintptr_t*)((out0)+((uintptr_t)8ULL)) = x271;
*(uintptr_t*)((out0)+((uintptr_t)16ULL)) = x272;
*(uintptr_t*)((out0)+((uintptr_t)24ULL)) = x273;
*(uintptr_t*)((out0)+((uintptr_t)32ULL)) = x274;
*(uintptr_t*)((out0)+((uintptr_t)40ULL)) = x275;
/*skip*/
return;
}
/*
* Input Bounds:
* in0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* Output Bounds:
* out0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
*/
void fiat_p384_to_montgomery(uintptr_t in0, uintptr_t out0) {
uintptr_t x1, x2, x3, x4, x5, x0, x18, x20, x16, x14, x22, x15, x12, x24, x13, x11, x37, x39, x36, x34, x41, x35, x32, x43, x33, x30, x45, x31, x28, x27, x17, x48, x19, x38, x50, x21, x40, x52, x23, x42, x54, x25, x44, x56, x26, x46, x47, x29, x65, x67, x64, x62, x69, x63, x60, x71, x61, x6, x49, x75, x51, x66, x77, x53, x68, x79, x55, x70, x81, x57, x72, x83, x58, x73, x96, x98, x95, x93, x100, x94, x91, x102, x92, x89, x104, x90, x87, x86, x74, x107, x76, x97, x109, x78, x99, x111, x80, x101, x113, x82, x103, x115, x84, x105, x117, x85, x59, x106, x88, x125, x127, x124, x122, x129, x123, x120, x131, x121, x7, x108, x135, x110, x126, x137, x112, x128, x139, x114, x130, x141, x116, x132, x143, x118, x133, x156, x158, x155, x153, x160, x154, x151, x162, x152, x149, x164, x150, x147, x146, x134, x167, x136, x157, x169, x138, x159, x171, x140, x161, x173, x142, x163, x175, x144, x165, x177, x145, x119, x166, x148, x185, x187, x184, x182, x189, x183, x180, x191, x181, x8, x168, x195, x170, x186, x197, x172, x188, x199, x174, x190, x201, x176, x192, x203, x178, x193, x216, x218, x215, x213, x220, x214, x211, x222, x212, x209, x224, x210, x207, x206, x194, x227, x196, x217, x229, x198, x219, x231, x200, x221, x233, x202, x223, x235, x204, x225, x237, x205, x179, x226, x208, x245, x247, x244, x242, x249, x243, x240, x251, x241, x9, x228, x255, x230, x246, x257, x232, x248, x259, x234, x250, x261, x236, x252, x263, x238, x253, x276, x278, x275, x273, x280, x274, x271, x282, x272, x269, x284, x270, x267, x266, x254, x287, x256, x277, x289, x258, x279, x291, x260, x281, x293, x262, x283, x295, x264, x285, x297, x265, x239, x286, x268, x305, x307, x304, x302, x309, x303, x300, x311, x301, x10, x288, x315, x290, x306, x317, x292, x308, x319, x294, x310, x321, x296, x312, x323, x298, x313, x336, x338, x335, x333, x340, x334, x331, x342, x332, x329, x344, x330, x327, x326, x314, x347, x316, x337, x349, x318, x339, x351, x320, x341, x353, x322, x343, x355, x324, x345, x357, x325, x299, x346, x328, x361, x363, x365, x367, x359, x369, x348, x372, x360, x373, x350, x375, x362, x376, x352, x378, x364, x379, x354, x381, x366, x382, x356, x384, x368, x385, x371, x358, x387, x370, x388, x374, x377, x380, x383, x386, x389, x390, x391, x392, x393, x394, x395;
x0 = *(uintptr_t*)((in0)+((uintptr_t)0ULL));
x1 = *(uintptr_t*)((in0)+((uintptr_t)8ULL));
x2 = *(uintptr_t*)((in0)+((uintptr_t)16ULL));
x3 = *(uintptr_t*)((in0)+((uintptr_t)24ULL));
x4 = *(uintptr_t*)((in0)+((uintptr_t)32ULL));
x5 = *(uintptr_t*)((in0)+((uintptr_t)40ULL));
/*skip*/
/*skip*/
x6 = x1;
x7 = x2;
x8 = x3;
x9 = x4;
x10 = x5;
x11 = x0;
x12 = (x11)*((uintptr_t)8589934592ULL);
x13 = sizeof(intptr_t) == 4 ? ((uint64_t)(x11)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x11)*((uintptr_t)8589934592ULL))>>64;
x14 = (x11)*((uintptr_t)18446744065119617024ULL);
x15 = sizeof(intptr_t) == 4 ? ((uint64_t)(x11)*((uintptr_t)18446744065119617024ULL))>>32 : ((__uint128_t)(x11)*((uintptr_t)18446744065119617024ULL))>>64;
x16 = sizeof(intptr_t) == 4 ? ((uint64_t)(x11)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x11)*((uintptr_t)8589934592ULL))>>64;
x17 = (x11)*((uintptr_t)18446744065119617025ULL);
x18 = sizeof(intptr_t) == 4 ? ((uint64_t)(x11)*((uintptr_t)18446744065119617025ULL))>>32 : ((__uint128_t)(x11)*((uintptr_t)18446744065119617025ULL))>>64;
x19 = (x18)+((x11)*((uintptr_t)8589934592ULL));
x20 = ((x19)<(x18))+(x16);
x21 = (x20)+(x14);
x22 = (((x20)<(x16))+((x21)<(x14)))+(x15);
x23 = (x22)+(x12);
x24 = (((x22)<(x15))+((x23)<(x12)))+(x13);
x25 = (x24)+(x11);
x26 = ((x24)<(x13))+((x25)<(x11));
x27 = (x17)*((uintptr_t)4294967297ULL);
x28 = (x27)*((uintptr_t)18446744073709551615ULL);
x29 = sizeof(intptr_t) == 4 ? ((uint64_t)(x27)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x27)*((uintptr_t)18446744073709551615ULL))>>64;
x30 = (x27)*((uintptr_t)18446744073709551615ULL);
x31 = sizeof(intptr_t) == 4 ? ((uint64_t)(x27)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x27)*((uintptr_t)18446744073709551615ULL))>>64;
x32 = (x27)*((uintptr_t)18446744073709551615ULL);
x33 = sizeof(intptr_t) == 4 ? ((uint64_t)(x27)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x27)*((uintptr_t)18446744073709551615ULL))>>64;
x34 = (x27)*((uintptr_t)18446744073709551614ULL);
x35 = sizeof(intptr_t) == 4 ? ((uint64_t)(x27)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x27)*((uintptr_t)18446744073709551614ULL))>>64;
x36 = sizeof(intptr_t) == 4 ? ((uint64_t)(x27)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x27)*((uintptr_t)18446744069414584320ULL))>>64;
x37 = sizeof(intptr_t) == 4 ? ((uint64_t)(x27)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x27)*((uintptr_t)4294967295ULL))>>64;
x38 = (x37)+((x27)*((uintptr_t)18446744069414584320ULL));
x39 = ((x38)<(x37))+(x36);
x40 = (x39)+(x34);
x41 = (((x39)<(x36))+((x40)<(x34)))+(x35);
x42 = (x41)+(x32);
x43 = (((x41)<(x35))+((x42)<(x32)))+(x33);
x44 = (x43)+(x30);
x45 = (((x43)<(x33))+((x44)<(x30)))+(x31);
x46 = (x45)+(x28);
x47 = ((x45)<(x31))+((x46)<(x28));
x48 = (((x17)+((x27)*((uintptr_t)4294967295ULL)))<(x17))+(x19);
x49 = (x48)+(x38);
x50 = (((x48)<(x19))+((x49)<(x38)))+(x21);
x51 = (x50)+(x40);
x52 = (((x50)<(x21))+((x51)<(x40)))+(x23);
x53 = (x52)+(x42);
x54 = (((x52)<(x23))+((x53)<(x42)))+(x25);
x55 = (x54)+(x44);
x56 = (((x54)<(x25))+((x55)<(x44)))+(x26);
x57 = (x56)+(x46);
x58 = (((x56)<(x26))+((x57)<(x46)))+((x47)+(x29));
x59 = (x58)<((x47)+(x29));
x60 = (x6)*((uintptr_t)8589934592ULL);
x61 = sizeof(intptr_t) == 4 ? ((uint64_t)(x6)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x6)*((uintptr_t)8589934592ULL))>>64;
x62 = (x6)*((uintptr_t)18446744065119617024ULL);
x63 = sizeof(intptr_t) == 4 ? ((uint64_t)(x6)*((uintptr_t)18446744065119617024ULL))>>32 : ((__uint128_t)(x6)*((uintptr_t)18446744065119617024ULL))>>64;
x64 = sizeof(intptr_t) == 4 ? ((uint64_t)(x6)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x6)*((uintptr_t)8589934592ULL))>>64;
x65 = sizeof(intptr_t) == 4 ? ((uint64_t)(x6)*((uintptr_t)18446744065119617025ULL))>>32 : ((__uint128_t)(x6)*((uintptr_t)18446744065119617025ULL))>>64;
x66 = (x65)+((x6)*((uintptr_t)8589934592ULL));
x67 = ((x66)<(x65))+(x64);
x68 = (x67)+(x62);
x69 = (((x67)<(x64))+((x68)<(x62)))+(x63);
x70 = (x69)+(x60);
x71 = (((x69)<(x63))+((x70)<(x60)))+(x61);
x72 = (x71)+(x6);
x73 = ((x71)<(x61))+((x72)<(x6));
x74 = (x49)+((x6)*((uintptr_t)18446744065119617025ULL));
x75 = ((x74)<(x49))+(x51);
x76 = (x75)+(x66);
x77 = (((x75)<(x51))+((x76)<(x66)))+(x53);
x78 = (x77)+(x68);
x79 = (((x77)<(x53))+((x78)<(x68)))+(x55);
x80 = (x79)+(x70);
x81 = (((x79)<(x55))+((x80)<(x70)))+(x57);
x82 = (x81)+(x72);
x83 = (((x81)<(x57))+((x82)<(x72)))+(x58);
x84 = (x83)+(x73);
x85 = ((x83)<(x58))+((x84)<(x73));
x86 = (x74)*((uintptr_t)4294967297ULL);
x87 = (x86)*((uintptr_t)18446744073709551615ULL);
x88 = sizeof(intptr_t) == 4 ? ((uint64_t)(x86)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x86)*((uintptr_t)18446744073709551615ULL))>>64;
x89 = (x86)*((uintptr_t)18446744073709551615ULL);
x90 = sizeof(intptr_t) == 4 ? ((uint64_t)(x86)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x86)*((uintptr_t)18446744073709551615ULL))>>64;
x91 = (x86)*((uintptr_t)18446744073709551615ULL);
x92 = sizeof(intptr_t) == 4 ? ((uint64_t)(x86)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x86)*((uintptr_t)18446744073709551615ULL))>>64;
x93 = (x86)*((uintptr_t)18446744073709551614ULL);
x94 = sizeof(intptr_t) == 4 ? ((uint64_t)(x86)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x86)*((uintptr_t)18446744073709551614ULL))>>64;
x95 = sizeof(intptr_t) == 4 ? ((uint64_t)(x86)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x86)*((uintptr_t)18446744069414584320ULL))>>64;
x96 = sizeof(intptr_t) == 4 ? ((uint64_t)(x86)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x86)*((uintptr_t)4294967295ULL))>>64;
x97 = (x96)+((x86)*((uintptr_t)18446744069414584320ULL));
x98 = ((x97)<(x96))+(x95);
x99 = (x98)+(x93);
x100 = (((x98)<(x95))+((x99)<(x93)))+(x94);
x101 = (x100)+(x91);
x102 = (((x100)<(x94))+((x101)<(x91)))+(x92);
x103 = (x102)+(x89);
x104 = (((x102)<(x92))+((x103)<(x89)))+(x90);
x105 = (x104)+(x87);
x106 = ((x104)<(x90))+((x105)<(x87));
x107 = (((x74)+((x86)*((uintptr_t)4294967295ULL)))<(x74))+(x76);
x108 = (x107)+(x97);
x109 = (((x107)<(x76))+((x108)<(x97)))+(x78);
x110 = (x109)+(x99);
x111 = (((x109)<(x78))+((x110)<(x99)))+(x80);
x112 = (x111)+(x101);
x113 = (((x111)<(x80))+((x112)<(x101)))+(x82);
x114 = (x113)+(x103);
x115 = (((x113)<(x82))+((x114)<(x103)))+(x84);
x116 = (x115)+(x105);
x117 = (((x115)<(x84))+((x116)<(x105)))+((x85)+(x59));
x118 = (x117)+((x106)+(x88));
x119 = ((x117)<((x85)+(x59)))+((x118)<((x106)+(x88)));
x120 = (x7)*((uintptr_t)8589934592ULL);
x121 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x7)*((uintptr_t)8589934592ULL))>>64;
x122 = (x7)*((uintptr_t)18446744065119617024ULL);
x123 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*((uintptr_t)18446744065119617024ULL))>>32 : ((__uint128_t)(x7)*((uintptr_t)18446744065119617024ULL))>>64;
x124 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x7)*((uintptr_t)8589934592ULL))>>64;
x125 = sizeof(intptr_t) == 4 ? ((uint64_t)(x7)*((uintptr_t)18446744065119617025ULL))>>32 : ((__uint128_t)(x7)*((uintptr_t)18446744065119617025ULL))>>64;
x126 = (x125)+((x7)*((uintptr_t)8589934592ULL));
x127 = ((x126)<(x125))+(x124);
x128 = (x127)+(x122);
x129 = (((x127)<(x124))+((x128)<(x122)))+(x123);
x130 = (x129)+(x120);
x131 = (((x129)<(x123))+((x130)<(x120)))+(x121);
x132 = (x131)+(x7);
x133 = ((x131)<(x121))+((x132)<(x7));
x134 = (x108)+((x7)*((uintptr_t)18446744065119617025ULL));
x135 = ((x134)<(x108))+(x110);
x136 = (x135)+(x126);
x137 = (((x135)<(x110))+((x136)<(x126)))+(x112);
x138 = (x137)+(x128);
x139 = (((x137)<(x112))+((x138)<(x128)))+(x114);
x140 = (x139)+(x130);
x141 = (((x139)<(x114))+((x140)<(x130)))+(x116);
x142 = (x141)+(x132);
x143 = (((x141)<(x116))+((x142)<(x132)))+(x118);
x144 = (x143)+(x133);
x145 = ((x143)<(x118))+((x144)<(x133));
x146 = (x134)*((uintptr_t)4294967297ULL);
x147 = (x146)*((uintptr_t)18446744073709551615ULL);
x148 = sizeof(intptr_t) == 4 ? ((uint64_t)(x146)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x146)*((uintptr_t)18446744073709551615ULL))>>64;
x149 = (x146)*((uintptr_t)18446744073709551615ULL);
x150 = sizeof(intptr_t) == 4 ? ((uint64_t)(x146)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x146)*((uintptr_t)18446744073709551615ULL))>>64;
x151 = (x146)*((uintptr_t)18446744073709551615ULL);
x152 = sizeof(intptr_t) == 4 ? ((uint64_t)(x146)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x146)*((uintptr_t)18446744073709551615ULL))>>64;
x153 = (x146)*((uintptr_t)18446744073709551614ULL);
x154 = sizeof(intptr_t) == 4 ? ((uint64_t)(x146)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x146)*((uintptr_t)18446744073709551614ULL))>>64;
x155 = sizeof(intptr_t) == 4 ? ((uint64_t)(x146)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x146)*((uintptr_t)18446744069414584320ULL))>>64;
x156 = sizeof(intptr_t) == 4 ? ((uint64_t)(x146)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x146)*((uintptr_t)4294967295ULL))>>64;
x157 = (x156)+((x146)*((uintptr_t)18446744069414584320ULL));
x158 = ((x157)<(x156))+(x155);
x159 = (x158)+(x153);
x160 = (((x158)<(x155))+((x159)<(x153)))+(x154);
x161 = (x160)+(x151);
x162 = (((x160)<(x154))+((x161)<(x151)))+(x152);
x163 = (x162)+(x149);
x164 = (((x162)<(x152))+((x163)<(x149)))+(x150);
x165 = (x164)+(x147);
x166 = ((x164)<(x150))+((x165)<(x147));
x167 = (((x134)+((x146)*((uintptr_t)4294967295ULL)))<(x134))+(x136);
x168 = (x167)+(x157);
x169 = (((x167)<(x136))+((x168)<(x157)))+(x138);
x170 = (x169)+(x159);
x171 = (((x169)<(x138))+((x170)<(x159)))+(x140);
x172 = (x171)+(x161);
x173 = (((x171)<(x140))+((x172)<(x161)))+(x142);
x174 = (x173)+(x163);
x175 = (((x173)<(x142))+((x174)<(x163)))+(x144);
x176 = (x175)+(x165);
x177 = (((x175)<(x144))+((x176)<(x165)))+((x145)+(x119));
x178 = (x177)+((x166)+(x148));
x179 = ((x177)<((x145)+(x119)))+((x178)<((x166)+(x148)));
x180 = (x8)*((uintptr_t)8589934592ULL);
x181 = sizeof(intptr_t) == 4 ? ((uint64_t)(x8)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x8)*((uintptr_t)8589934592ULL))>>64;
x182 = (x8)*((uintptr_t)18446744065119617024ULL);
x183 = sizeof(intptr_t) == 4 ? ((uint64_t)(x8)*((uintptr_t)18446744065119617024ULL))>>32 : ((__uint128_t)(x8)*((uintptr_t)18446744065119617024ULL))>>64;
x184 = sizeof(intptr_t) == 4 ? ((uint64_t)(x8)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x8)*((uintptr_t)8589934592ULL))>>64;
x185 = sizeof(intptr_t) == 4 ? ((uint64_t)(x8)*((uintptr_t)18446744065119617025ULL))>>32 : ((__uint128_t)(x8)*((uintptr_t)18446744065119617025ULL))>>64;
x186 = (x185)+((x8)*((uintptr_t)8589934592ULL));
x187 = ((x186)<(x185))+(x184);
x188 = (x187)+(x182);
x189 = (((x187)<(x184))+((x188)<(x182)))+(x183);
x190 = (x189)+(x180);
x191 = (((x189)<(x183))+((x190)<(x180)))+(x181);
x192 = (x191)+(x8);
x193 = ((x191)<(x181))+((x192)<(x8));
x194 = (x168)+((x8)*((uintptr_t)18446744065119617025ULL));
x195 = ((x194)<(x168))+(x170);
x196 = (x195)+(x186);
x197 = (((x195)<(x170))+((x196)<(x186)))+(x172);
x198 = (x197)+(x188);
x199 = (((x197)<(x172))+((x198)<(x188)))+(x174);
x200 = (x199)+(x190);
x201 = (((x199)<(x174))+((x200)<(x190)))+(x176);
x202 = (x201)+(x192);
x203 = (((x201)<(x176))+((x202)<(x192)))+(x178);
x204 = (x203)+(x193);
x205 = ((x203)<(x178))+((x204)<(x193));
x206 = (x194)*((uintptr_t)4294967297ULL);
x207 = (x206)*((uintptr_t)18446744073709551615ULL);
x208 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)18446744073709551615ULL))>>64;
x209 = (x206)*((uintptr_t)18446744073709551615ULL);
x210 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)18446744073709551615ULL))>>64;
x211 = (x206)*((uintptr_t)18446744073709551615ULL);
x212 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)18446744073709551615ULL))>>64;
x213 = (x206)*((uintptr_t)18446744073709551614ULL);
x214 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)18446744073709551614ULL))>>64;
x215 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)18446744069414584320ULL))>>64;
x216 = sizeof(intptr_t) == 4 ? ((uint64_t)(x206)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x206)*((uintptr_t)4294967295ULL))>>64;
x217 = (x216)+((x206)*((uintptr_t)18446744069414584320ULL));
x218 = ((x217)<(x216))+(x215);
x219 = (x218)+(x213);
x220 = (((x218)<(x215))+((x219)<(x213)))+(x214);
x221 = (x220)+(x211);
x222 = (((x220)<(x214))+((x221)<(x211)))+(x212);
x223 = (x222)+(x209);
x224 = (((x222)<(x212))+((x223)<(x209)))+(x210);
x225 = (x224)+(x207);
x226 = ((x224)<(x210))+((x225)<(x207));
x227 = (((x194)+((x206)*((uintptr_t)4294967295ULL)))<(x194))+(x196);
x228 = (x227)+(x217);
x229 = (((x227)<(x196))+((x228)<(x217)))+(x198);
x230 = (x229)+(x219);
x231 = (((x229)<(x198))+((x230)<(x219)))+(x200);
x232 = (x231)+(x221);
x233 = (((x231)<(x200))+((x232)<(x221)))+(x202);
x234 = (x233)+(x223);
x235 = (((x233)<(x202))+((x234)<(x223)))+(x204);
x236 = (x235)+(x225);
x237 = (((x235)<(x204))+((x236)<(x225)))+((x205)+(x179));
x238 = (x237)+((x226)+(x208));
x239 = ((x237)<((x205)+(x179)))+((x238)<((x226)+(x208)));
x240 = (x9)*((uintptr_t)8589934592ULL);
x241 = sizeof(intptr_t) == 4 ? ((uint64_t)(x9)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x9)*((uintptr_t)8589934592ULL))>>64;
x242 = (x9)*((uintptr_t)18446744065119617024ULL);
x243 = sizeof(intptr_t) == 4 ? ((uint64_t)(x9)*((uintptr_t)18446744065119617024ULL))>>32 : ((__uint128_t)(x9)*((uintptr_t)18446744065119617024ULL))>>64;
x244 = sizeof(intptr_t) == 4 ? ((uint64_t)(x9)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x9)*((uintptr_t)8589934592ULL))>>64;
x245 = sizeof(intptr_t) == 4 ? ((uint64_t)(x9)*((uintptr_t)18446744065119617025ULL))>>32 : ((__uint128_t)(x9)*((uintptr_t)18446744065119617025ULL))>>64;
x246 = (x245)+((x9)*((uintptr_t)8589934592ULL));
x247 = ((x246)<(x245))+(x244);
x248 = (x247)+(x242);
x249 = (((x247)<(x244))+((x248)<(x242)))+(x243);
x250 = (x249)+(x240);
x251 = (((x249)<(x243))+((x250)<(x240)))+(x241);
x252 = (x251)+(x9);
x253 = ((x251)<(x241))+((x252)<(x9));
x254 = (x228)+((x9)*((uintptr_t)18446744065119617025ULL));
x255 = ((x254)<(x228))+(x230);
x256 = (x255)+(x246);
x257 = (((x255)<(x230))+((x256)<(x246)))+(x232);
x258 = (x257)+(x248);
x259 = (((x257)<(x232))+((x258)<(x248)))+(x234);
x260 = (x259)+(x250);
x261 = (((x259)<(x234))+((x260)<(x250)))+(x236);
x262 = (x261)+(x252);
x263 = (((x261)<(x236))+((x262)<(x252)))+(x238);
x264 = (x263)+(x253);
x265 = ((x263)<(x238))+((x264)<(x253));
x266 = (x254)*((uintptr_t)4294967297ULL);
x267 = (x266)*((uintptr_t)18446744073709551615ULL);
x268 = sizeof(intptr_t) == 4 ? ((uint64_t)(x266)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x266)*((uintptr_t)18446744073709551615ULL))>>64;
x269 = (x266)*((uintptr_t)18446744073709551615ULL);
x270 = sizeof(intptr_t) == 4 ? ((uint64_t)(x266)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x266)*((uintptr_t)18446744073709551615ULL))>>64;
x271 = (x266)*((uintptr_t)18446744073709551615ULL);
x272 = sizeof(intptr_t) == 4 ? ((uint64_t)(x266)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x266)*((uintptr_t)18446744073709551615ULL))>>64;
x273 = (x266)*((uintptr_t)18446744073709551614ULL);
x274 = sizeof(intptr_t) == 4 ? ((uint64_t)(x266)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x266)*((uintptr_t)18446744073709551614ULL))>>64;
x275 = sizeof(intptr_t) == 4 ? ((uint64_t)(x266)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x266)*((uintptr_t)18446744069414584320ULL))>>64;
x276 = sizeof(intptr_t) == 4 ? ((uint64_t)(x266)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x266)*((uintptr_t)4294967295ULL))>>64;
x277 = (x276)+((x266)*((uintptr_t)18446744069414584320ULL));
x278 = ((x277)<(x276))+(x275);
x279 = (x278)+(x273);
x280 = (((x278)<(x275))+((x279)<(x273)))+(x274);
x281 = (x280)+(x271);
x282 = (((x280)<(x274))+((x281)<(x271)))+(x272);
x283 = (x282)+(x269);
x284 = (((x282)<(x272))+((x283)<(x269)))+(x270);
x285 = (x284)+(x267);
x286 = ((x284)<(x270))+((x285)<(x267));
x287 = (((x254)+((x266)*((uintptr_t)4294967295ULL)))<(x254))+(x256);
x288 = (x287)+(x277);
x289 = (((x287)<(x256))+((x288)<(x277)))+(x258);
x290 = (x289)+(x279);
x291 = (((x289)<(x258))+((x290)<(x279)))+(x260);
x292 = (x291)+(x281);
x293 = (((x291)<(x260))+((x292)<(x281)))+(x262);
x294 = (x293)+(x283);
x295 = (((x293)<(x262))+((x294)<(x283)))+(x264);
x296 = (x295)+(x285);
x297 = (((x295)<(x264))+((x296)<(x285)))+((x265)+(x239));
x298 = (x297)+((x286)+(x268));
x299 = ((x297)<((x265)+(x239)))+((x298)<((x286)+(x268)));
x300 = (x10)*((uintptr_t)8589934592ULL);
x301 = sizeof(intptr_t) == 4 ? ((uint64_t)(x10)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x10)*((uintptr_t)8589934592ULL))>>64;
x302 = (x10)*((uintptr_t)18446744065119617024ULL);
x303 = sizeof(intptr_t) == 4 ? ((uint64_t)(x10)*((uintptr_t)18446744065119617024ULL))>>32 : ((__uint128_t)(x10)*((uintptr_t)18446744065119617024ULL))>>64;
x304 = sizeof(intptr_t) == 4 ? ((uint64_t)(x10)*((uintptr_t)8589934592ULL))>>32 : ((__uint128_t)(x10)*((uintptr_t)8589934592ULL))>>64;
x305 = sizeof(intptr_t) == 4 ? ((uint64_t)(x10)*((uintptr_t)18446744065119617025ULL))>>32 : ((__uint128_t)(x10)*((uintptr_t)18446744065119617025ULL))>>64;
x306 = (x305)+((x10)*((uintptr_t)8589934592ULL));
x307 = ((x306)<(x305))+(x304);
x308 = (x307)+(x302);
x309 = (((x307)<(x304))+((x308)<(x302)))+(x303);
x310 = (x309)+(x300);
x311 = (((x309)<(x303))+((x310)<(x300)))+(x301);
x312 = (x311)+(x10);
x313 = ((x311)<(x301))+((x312)<(x10));
x314 = (x288)+((x10)*((uintptr_t)18446744065119617025ULL));
x315 = ((x314)<(x288))+(x290);
x316 = (x315)+(x306);
x317 = (((x315)<(x290))+((x316)<(x306)))+(x292);
x318 = (x317)+(x308);
x319 = (((x317)<(x292))+((x318)<(x308)))+(x294);
x320 = (x319)+(x310);
x321 = (((x319)<(x294))+((x320)<(x310)))+(x296);
x322 = (x321)+(x312);
x323 = (((x321)<(x296))+((x322)<(x312)))+(x298);
x324 = (x323)+(x313);
x325 = ((x323)<(x298))+((x324)<(x313));
x326 = (x314)*((uintptr_t)4294967297ULL);
x327 = (x326)*((uintptr_t)18446744073709551615ULL);
x328 = sizeof(intptr_t) == 4 ? ((uint64_t)(x326)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x326)*((uintptr_t)18446744073709551615ULL))>>64;
x329 = (x326)*((uintptr_t)18446744073709551615ULL);
x330 = sizeof(intptr_t) == 4 ? ((uint64_t)(x326)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x326)*((uintptr_t)18446744073709551615ULL))>>64;
x331 = (x326)*((uintptr_t)18446744073709551615ULL);
x332 = sizeof(intptr_t) == 4 ? ((uint64_t)(x326)*((uintptr_t)18446744073709551615ULL))>>32 : ((__uint128_t)(x326)*((uintptr_t)18446744073709551615ULL))>>64;
x333 = (x326)*((uintptr_t)18446744073709551614ULL);
x334 = sizeof(intptr_t) == 4 ? ((uint64_t)(x326)*((uintptr_t)18446744073709551614ULL))>>32 : ((__uint128_t)(x326)*((uintptr_t)18446744073709551614ULL))>>64;
x335 = sizeof(intptr_t) == 4 ? ((uint64_t)(x326)*((uintptr_t)18446744069414584320ULL))>>32 : ((__uint128_t)(x326)*((uintptr_t)18446744069414584320ULL))>>64;
x336 = sizeof(intptr_t) == 4 ? ((uint64_t)(x326)*((uintptr_t)4294967295ULL))>>32 : ((__uint128_t)(x326)*((uintptr_t)4294967295ULL))>>64;
x337 = (x336)+((x326)*((uintptr_t)18446744069414584320ULL));
x338 = ((x337)<(x336))+(x335);
x339 = (x338)+(x333);
x340 = (((x338)<(x335))+((x339)<(x333)))+(x334);
x341 = (x340)+(x331);
x342 = (((x340)<(x334))+((x341)<(x331)))+(x332);
x343 = (x342)+(x329);
x344 = (((x342)<(x332))+((x343)<(x329)))+(x330);
x345 = (x344)+(x327);
x346 = ((x344)<(x330))+((x345)<(x327));
x347 = (((x314)+((x326)*((uintptr_t)4294967295ULL)))<(x314))+(x316);
x348 = (x347)+(x337);
x349 = (((x347)<(x316))+((x348)<(x337)))+(x318);
x350 = (x349)+(x339);
x351 = (((x349)<(x318))+((x350)<(x339)))+(x320);
x352 = (x351)+(x341);
x353 = (((x351)<(x320))+((x352)<(x341)))+(x322);
x354 = (x353)+(x343);
x355 = (((x353)<(x322))+((x354)<(x343)))+(x324);
x356 = (x355)+(x345);
x357 = (((x355)<(x324))+((x356)<(x345)))+((x325)+(x299));
x358 = (x357)+((x346)+(x328));
x359 = ((x357)<((x325)+(x299)))+((x358)<((x346)+(x328)));
x360 = (x348)-((uintptr_t)4294967295ULL);
x361 = (x350)-((uintptr_t)18446744069414584320ULL);
x362 = (x361)-(((x348)<(x360))+((x360)<(x360)));
x363 = (x352)-((uintptr_t)18446744073709551614ULL);
x364 = (x363)-(((x350)<(x361))+((x361)<(x362)));
x365 = (x354)-((uintptr_t)18446744073709551615ULL);
x366 = (x365)-(((x352)<(x363))+((x363)<(x364)));
x367 = (x356)-((uintptr_t)18446744073709551615ULL);
x368 = (x367)-(((x354)<(x365))+((x365)<(x366)));
x369 = (x358)-((uintptr_t)18446744073709551615ULL);
x370 = (x369)-(((x356)<(x367))+((x367)<(x368)));
x371 = ((x359)<(x359))+((x359)<((x359)-(((x358)<(x369))+((x369)<(x370)))));
x372 = ((uintptr_t)-1ULL)+((x371)==((uintptr_t)0ULL));
x373 = (x372)^((uintptr_t)18446744073709551615ULL);
x374 = ((x348)&(x372))|((x360)&(x373));
x375 = ((uintptr_t)-1ULL)+((x371)==((uintptr_t)0ULL));
x376 = (x375)^((uintptr_t)18446744073709551615ULL);
x377 = ((x350)&(x375))|((x362)&(x376));
x378 = ((uintptr_t)-1ULL)+((x371)==((uintptr_t)0ULL));
x379 = (x378)^((uintptr_t)18446744073709551615ULL);
x380 = ((x352)&(x378))|((x364)&(x379));
x381 = ((uintptr_t)-1ULL)+((x371)==((uintptr_t)0ULL));
x382 = (x381)^((uintptr_t)18446744073709551615ULL);
x383 = ((x354)&(x381))|((x366)&(x382));
x384 = ((uintptr_t)-1ULL)+((x371)==((uintptr_t)0ULL));
x385 = (x384)^((uintptr_t)18446744073709551615ULL);
x386 = ((x356)&(x384))|((x368)&(x385));
x387 = ((uintptr_t)-1ULL)+((x371)==((uintptr_t)0ULL));
x388 = (x387)^((uintptr_t)18446744073709551615ULL);
x389 = ((x358)&(x387))|((x370)&(x388));
x390 = x374;
x391 = x377;
x392 = x380;
x393 = x383;
x394 = x386;
x395 = x389;
/*skip*/
*(uintptr_t*)((out0)+((uintptr_t)0ULL)) = x390;
*(uintptr_t*)((out0)+((uintptr_t)8ULL)) = x391;
*(uintptr_t*)((out0)+((uintptr_t)16ULL)) = x392;
*(uintptr_t*)((out0)+((uintptr_t)24ULL)) = x393;
*(uintptr_t*)((out0)+((uintptr_t)32ULL)) = x394;
*(uintptr_t*)((out0)+((uintptr_t)40ULL)) = x395;
/*skip*/
return;
}
/*
* Input Bounds:
* in0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* Output Bounds:
* out0: [0x0 ~> 0xffffffffffffffff]
*/
uintptr_t fiat_p384_nonzero(uintptr_t in0) {
uintptr_t x0, x1, x2, x3, x4, x5, x6, out0, x7;
x0 = *(uintptr_t*)((in0)+((uintptr_t)0ULL));
x1 = *(uintptr_t*)((in0)+((uintptr_t)8ULL));
x2 = *(uintptr_t*)((in0)+((uintptr_t)16ULL));
x3 = *(uintptr_t*)((in0)+((uintptr_t)24ULL));
x4 = *(uintptr_t*)((in0)+((uintptr_t)32ULL));
x5 = *(uintptr_t*)((in0)+((uintptr_t)40ULL));
/*skip*/
/*skip*/
x6 = (x0)|((x1)|((x2)|((x3)|((x4)|((x5)|((uintptr_t)0ULL))))));
x7 = x6;
out0 = x7;
return out0;
}
/*
* Input Bounds:
* in0: [0x0 ~> 0x1]
* in1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* in2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* Output Bounds:
* out0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
*/
void fiat_p384_selectznz(uintptr_t in0, uintptr_t in1, uintptr_t in2, uintptr_t out0) {
uintptr_t x6, x12, x0, x13, x7, x15, x1, x16, x8, x18, x2, x19, x9, x21, x3, x22, x10, x24, x4, x25, x11, x27, x5, x28, x14, x17, x20, x23, x26, x29, x30, x31, x32, x33, x34, x35;
/*skip*/
x0 = *(uintptr_t*)((in1)+((uintptr_t)0ULL));
x1 = *(uintptr_t*)((in1)+((uintptr_t)8ULL));
x2 = *(uintptr_t*)((in1)+((uintptr_t)16ULL));
x3 = *(uintptr_t*)((in1)+((uintptr_t)24ULL));
x4 = *(uintptr_t*)((in1)+((uintptr_t)32ULL));
x5 = *(uintptr_t*)((in1)+((uintptr_t)40ULL));
/*skip*/
x6 = *(uintptr_t*)((in2)+((uintptr_t)0ULL));
x7 = *(uintptr_t*)((in2)+((uintptr_t)8ULL));
x8 = *(uintptr_t*)((in2)+((uintptr_t)16ULL));
x9 = *(uintptr_t*)((in2)+((uintptr_t)24ULL));
x10 = *(uintptr_t*)((in2)+((uintptr_t)32ULL));
x11 = *(uintptr_t*)((in2)+((uintptr_t)40ULL));
/*skip*/
/*skip*/
x12 = ((uintptr_t)-1ULL)+((in0)==((uintptr_t)0ULL));
x13 = (x12)^((uintptr_t)18446744073709551615ULL);
x14 = ((x6)&(x12))|((x0)&(x13));
x15 = ((uintptr_t)-1ULL)+((in0)==((uintptr_t)0ULL));
x16 = (x15)^((uintptr_t)18446744073709551615ULL);
x17 = ((x7)&(x15))|((x1)&(x16));
x18 = ((uintptr_t)-1ULL)+((in0)==((uintptr_t)0ULL));
x19 = (x18)^((uintptr_t)18446744073709551615ULL);
x20 = ((x8)&(x18))|((x2)&(x19));
x21 = ((uintptr_t)-1ULL)+((in0)==((uintptr_t)0ULL));
x22 = (x21)^((uintptr_t)18446744073709551615ULL);
x23 = ((x9)&(x21))|((x3)&(x22));
x24 = ((uintptr_t)-1ULL)+((in0)==((uintptr_t)0ULL));
x25 = (x24)^((uintptr_t)18446744073709551615ULL);
x26 = ((x10)&(x24))|((x4)&(x25));
x27 = ((uintptr_t)-1ULL)+((in0)==((uintptr_t)0ULL));
x28 = (x27)^((uintptr_t)18446744073709551615ULL);
x29 = ((x11)&(x27))|((x5)&(x28));
x30 = x14;
x31 = x17;
x32 = x20;
x33 = x23;
x34 = x26;
x35 = x29;
/*skip*/
*(uintptr_t*)((out0)+((uintptr_t)0ULL)) = x30;
*(uintptr_t*)((out0)+((uintptr_t)8ULL)) = x31;
*(uintptr_t*)((out0)+((uintptr_t)16ULL)) = x32;
*(uintptr_t*)((out0)+((uintptr_t)24ULL)) = x33;
*(uintptr_t*)((out0)+((uintptr_t)32ULL)) = x34;
*(uintptr_t*)((out0)+((uintptr_t)40ULL)) = x35;
/*skip*/
return;
}
/*
* Input Bounds:
* in0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
* Output Bounds:
* out0: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]]
*/
void fiat_p384_to_bytes(uintptr_t in0, uintptr_t out0) {
uintptr_t x5, x4, x3, x2, x1, x0, x11, x12, x14, x16, x18, x20, x22, x24, x10, x27, x29, x31, x33, x35, x37, x39, x9, x42, x44, x46, x48, x50, x52, x54, x8, x57, x59, x61, x63, x65, x67, x69, x7, x72, x74, x76, x78, x80, x82, x84, x6, x87, x89, x91, x93, x95, x97, x13, x15, x17, x19, x21, x23, x25, x26, x28, x30, x32, x34, x36, x38, x40, x41, x43, x45, x47, x49, x51, x53, x55, x56, x58, x60, x62, x64, x66, x68, x70, x71, x73, x75, x77, x79, x81, x83, x85, x86, x88, x90, x92, x94, x96, x98, x100, x99, x101, x102, x103, x104, x105, x106, x107, x108, x109, x110, x111, x112, x113, x114, x115, x116, x117, x118, x119, x120, x121, x122, x123, x124, x125, x126, x127, x128, x129, x130, x131, x132, x133, x134, x135, x136, x137, x138, x139, x140, x141, x142, x143, x144, x145, x146, x147, x148;
x0 = *(uintptr_t*)((in0)+((uintptr_t)0ULL));
x1 = *(uintptr_t*)((in0)+((uintptr_t)8ULL));
x2 = *(uintptr_t*)((in0)+((uintptr_t)16ULL));
x3 = *(uintptr_t*)((in0)+((uintptr_t)24ULL));
x4 = *(uintptr_t*)((in0)+((uintptr_t)32ULL));
x5 = *(uintptr_t*)((in0)+((uintptr_t)40ULL));
/*skip*/
/*skip*/
x6 = x5;
x7 = x4;
x8 = x3;
x9 = x2;
x10 = x1;
x11 = x0;
x12 = (x11)>>((uintptr_t)8ULL);
x13 = (x11)&((uintptr_t)255ULL);
x14 = (x12)>>((uintptr_t)8ULL);
x15 = (x12)&((uintptr_t)255ULL);
x16 = (x14)>>((uintptr_t)8ULL);
x17 = (x14)&((uintptr_t)255ULL);
x18 = (x16)>>((uintptr_t)8ULL);
x19 = (x16)&((uintptr_t)255ULL);
x20 = (x18)>>((uintptr_t)8ULL);
x21 = (x18)&((uintptr_t)255ULL);
x22 = (x20)>>((uintptr_t)8ULL);
x23 = (x20)&((uintptr_t)255ULL);
x24 = (x22)>>((uintptr_t)8ULL);
x25 = (x22)&((uintptr_t)255ULL);
x26 = (x24)&((uintptr_t)255ULL);
x27 = (x10)>>((uintptr_t)8ULL);
x28 = (x10)&((uintptr_t)255ULL);
x29 = (x27)>>((uintptr_t)8ULL);
x30 = (x27)&((uintptr_t)255ULL);
x31 = (x29)>>((uintptr_t)8ULL);
x32 = (x29)&((uintptr_t)255ULL);
x33 = (x31)>>((uintptr_t)8ULL);
x34 = (x31)&((uintptr_t)255ULL);
x35 = (x33)>>((uintptr_t)8ULL);
x36 = (x33)&((uintptr_t)255ULL);
x37 = (x35)>>((uintptr_t)8ULL);
x38 = (x35)&((uintptr_t)255ULL);
x39 = (x37)>>((uintptr_t)8ULL);
x40 = (x37)&((uintptr_t)255ULL);
x41 = (x39)&((uintptr_t)255ULL);
x42 = (x9)>>((uintptr_t)8ULL);
x43 = (x9)&((uintptr_t)255ULL);
x44 = (x42)>>((uintptr_t)8ULL);
x45 = (x42)&((uintptr_t)255ULL);
x46 = (x44)>>((uintptr_t)8ULL);
x47 = (x44)&((uintptr_t)255ULL);
x48 = (x46)>>((uintptr_t)8ULL);
x49 = (x46)&((uintptr_t)255ULL);
x50 = (x48)>>((uintptr_t)8ULL);
x51 = (x48)&((uintptr_t)255ULL);
x52 = (x50)>>((uintptr_t)8ULL);
x53 = (x50)&((uintptr_t)255ULL);
x54 = (x52)>>((uintptr_t)8ULL);
x55 = (x52)&((uintptr_t)255ULL);
x56 = (x54)&((uintptr_t)255ULL);
x57 = (x8)>>((uintptr_t)8ULL);
x58 = (x8)&((uintptr_t)255ULL);
x59 = (x57)>>((uintptr_t)8ULL);
x60 = (x57)&((uintptr_t)255ULL);
x61 = (x59)>>((uintptr_t)8ULL);
x62 = (x59)&((uintptr_t)255ULL);
x63 = (x61)>>((uintptr_t)8ULL);
x64 = (x61)&((uintptr_t)255ULL);
x65 = (x63)>>((uintptr_t)8ULL);
x66 = (x63)&((uintptr_t)255ULL);
x67 = (x65)>>((uintptr_t)8ULL);
x68 = (x65)&((uintptr_t)255ULL);
x69 = (x67)>>((uintptr_t)8ULL);
x70 = (x67)&((uintptr_t)255ULL);
x71 = (x69)&((uintptr_t)255ULL);
x72 = (x7)>>((uintptr_t)8ULL);
x73 = (x7)&((uintptr_t)255ULL);
x74 = (x72)>>((uintptr_t)8ULL);
x75 = (x72)&((uintptr_t)255ULL);
x76 = (x74)>>((uintptr_t)8ULL);
x77 = (x74)&((uintptr_t)255ULL);
x78 = (x76)>>((uintptr_t)8ULL);
x79 = (x76)&((uintptr_t)255ULL);
x80 = (x78)>>((uintptr_t)8ULL);
x81 = (x78)&((uintptr_t)255ULL);
x82 = (x80)>>((uintptr_t)8ULL);
x83 = (x80)&((uintptr_t)255ULL);
x84 = (x82)>>((uintptr_t)8ULL);
x85 = (x82)&((uintptr_t)255ULL);
x86 = (x84)&((uintptr_t)255ULL);
x87 = (x6)>>((uintptr_t)8ULL);
x88 = (x6)&((uintptr_t)255ULL);
x89 = (x87)>>((uintptr_t)8ULL);
x90 = (x87)&((uintptr_t)255ULL);
x91 = (x89)>>((uintptr_t)8ULL);
x92 = (x89)&((uintptr_t)255ULL);
x93 = (x91)>>((uintptr_t)8ULL);
x94 = (x91)&((uintptr_t)255ULL);
x95 = (x93)>>((uintptr_t)8ULL);
x96 = (x93)&((uintptr_t)255ULL);
x97 = (x95)>>((uintptr_t)8ULL);
x98 = (x95)&((uintptr_t)255ULL);
x99 = (x97)>>((uintptr_t)8ULL);
x100 = (x97)&((uintptr_t)255ULL);
x101 = x13;
x102 = x15;
x103 = x17;
x104 = x19;
x105 = x21;
x106 = x23;
x107 = x25;
x108 = x26;
x109 = x28;
x110 = x30;
x111 = x32;
x112 = x34;
x113 = x36;
x114 = x38;
x115 = x40;
x116 = x41;
x117 = x43;
x118 = x45;
x119 = x47;
x120 = x49;
x121 = x51;
x122 = x53;
x123 = x55;
x124 = x56;
x125 = x58;
x126 = x60;
x127 = x62;
x128 = x64;
x129 = x66;
x130 = x68;
x131 = x70;
x132 = x71;
x133 = x73;
x134 = x75;
x135 = x77;
x136 = x79;
x137 = x81;
x138 = x83;
x139 = x85;
x140 = x86;
x141 = x88;
x142 = x90;
x143 = x92;
x144 = x94;
x145 = x96;
x146 = x98;
x147 = x100;
x148 = x99;
/*skip*/
*(uint8_t*)((out0)+((uintptr_t)0ULL)) = x101;
*(uint8_t*)((out0)+((uintptr_t)1ULL)) = x102;
*(uint8_t*)((out0)+((uintptr_t)2ULL)) = x103;
*(uint8_t*)((out0)+((uintptr_t)3ULL)) = x104;
*(uint8_t*)((out0)+((uintptr_t)4ULL)) = x105;
*(uint8_t*)((out0)+((uintptr_t)5ULL)) = x106;
*(uint8_t*)((out0)+((uintptr_t)6ULL)) = x107;
*(uint8_t*)((out0)+((uintptr_t)7ULL)) = x108;
*(uint8_t*)((out0)+((uintptr_t)8ULL)) = x109;
*(uint8_t*)((out0)+((uintptr_t)9ULL)) = x110;
*(uint8_t*)((out0)+((uintptr_t)10ULL)) = x111;
*(uint8_t*)((out0)+((uintptr_t)11ULL)) = x112;
*(uint8_t*)((out0)+((uintptr_t)12ULL)) = x113;
*(uint8_t*)((out0)+((uintptr_t)13ULL)) = x114;
*(uint8_t*)((out0)+((uintptr_t)14ULL)) = x115;
*(uint8_t*)((out0)+((uintptr_t)15ULL)) = x116;
*(uint8_t*)((out0)+((uintptr_t)16ULL)) = x117;
*(uint8_t*)((out0)+((uintptr_t)17ULL)) = x118;
*(uint8_t*)((out0)+((uintptr_t)18ULL)) = x119;
*(uint8_t*)((out0)+((uintptr_t)19ULL)) = x120;
*(uint8_t*)((out0)+((uintptr_t)20ULL)) = x121;
*(uint8_t*)((out0)+((uintptr_t)21ULL)) = x122;
*(uint8_t*)((out0)+((uintptr_t)22ULL)) = x123;
*(uint8_t*)((out0)+((uintptr_t)23ULL)) = x124;
*(uint8_t*)((out0)+((uintptr_t)24ULL)) = x125;
*(uint8_t*)((out0)+((uintptr_t)25ULL)) = x126;
*(uint8_t*)((out0)+((uintptr_t)26ULL)) = x127;
*(uint8_t*)((out0)+((uintptr_t)27ULL)) = x128;
*(uint8_t*)((out0)+((uintptr_t)28ULL)) = x129;
*(uint8_t*)((out0)+((uintptr_t)29ULL)) = x130;
*(uint8_t*)((out0)+((uintptr_t)30ULL)) = x131;
*(uint8_t*)((out0)+((uintptr_t)31ULL)) = x132;
*(uint8_t*)((out0)+((uintptr_t)32ULL)) = x133;
*(uint8_t*)((out0)+((uintptr_t)33ULL)) = x134;
*(uint8_t*)((out0)+((uintptr_t)34ULL)) = x135;
*(uint8_t*)((out0)+((uintptr_t)35ULL)) = x136;
*(uint8_t*)((out0)+((uintptr_t)36ULL)) = x137;
*(uint8_t*)((out0)+((uintptr_t)37ULL)) = x138;
*(uint8_t*)((out0)+((uintptr_t)38ULL)) = x139;
*(uint8_t*)((out0)+((uintptr_t)39ULL)) = x140;
*(uint8_t*)((out0)+((uintptr_t)40ULL)) = x141;
*(uint8_t*)((out0)+((uintptr_t)41ULL)) = x142;
*(uint8_t*)((out0)+((uintptr_t)42ULL)) = x143;
*(uint8_t*)((out0)+((uintptr_t)43ULL)) = x144;
*(uint8_t*)((out0)+((uintptr_t)44ULL)) = x145;
*(uint8_t*)((out0)+((uintptr_t)45ULL)) = x146;
*(uint8_t*)((out0)+((uintptr_t)46ULL)) = x147;
*(uint8_t*)((out0)+((uintptr_t)47ULL)) = x148;
/*skip*/
return;
}
/*
* Input Bounds:
* in0: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]]
* Output Bounds:
* out0: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
*/
void fiat_p384_from_bytes(uintptr_t in0, uintptr_t out0) {
uintptr_t x47, x46, x45, x44, x43, x42, x41, x40, x39, x38, x37, x36, x35, x34, x33, x32, x31, x30, x29, x28, x27, x26, x25, x24, x23, x22, x21, x20, x19, x18, x17, x16, x15, x14, x13, x12, x11, x10, x9, x8, x7, x6, x5, x4, x3, x2, x1, x0, x95, x94, x93, x92, x91, x90, x89, x88, x96, x55, x54, x53, x52, x51, x50, x49, x48, x63, x62, x61, x60, x59, x58, x57, x56, x71, x70, x69, x68, x67, x66, x65, x64, x79, x78, x77, x76, x75, x74, x73, x72, x87, x86, x85, x84, x83, x82, x81, x80, x102, x101, x100, x99, x97, x103, x104, x105, x106, x98, x107, x108, x109, x110, x111, x112;
x0 = *(uint8_t*)((in0)+((uintptr_t)0ULL));
x1 = *(uint8_t*)((in0)+((uintptr_t)1ULL));
x2 = *(uint8_t*)((in0)+((uintptr_t)2ULL));
x3 = *(uint8_t*)((in0)+((uintptr_t)3ULL));
x4 = *(uint8_t*)((in0)+((uintptr_t)4ULL));
x5 = *(uint8_t*)((in0)+((uintptr_t)5ULL));
x6 = *(uint8_t*)((in0)+((uintptr_t)6ULL));
x7 = *(uint8_t*)((in0)+((uintptr_t)7ULL));
x8 = *(uint8_t*)((in0)+((uintptr_t)8ULL));
x9 = *(uint8_t*)((in0)+((uintptr_t)9ULL));
x10 = *(uint8_t*)((in0)+((uintptr_t)10ULL));
x11 = *(uint8_t*)((in0)+((uintptr_t)11ULL));
x12 = *(uint8_t*)((in0)+((uintptr_t)12ULL));
x13 = *(uint8_t*)((in0)+((uintptr_t)13ULL));
x14 = *(uint8_t*)((in0)+((uintptr_t)14ULL));
x15 = *(uint8_t*)((in0)+((uintptr_t)15ULL));
x16 = *(uint8_t*)((in0)+((uintptr_t)16ULL));
x17 = *(uint8_t*)((in0)+((uintptr_t)17ULL));
x18 = *(uint8_t*)((in0)+((uintptr_t)18ULL));
x19 = *(uint8_t*)((in0)+((uintptr_t)19ULL));
x20 = *(uint8_t*)((in0)+((uintptr_t)20ULL));
x21 = *(uint8_t*)((in0)+((uintptr_t)21ULL));
x22 = *(uint8_t*)((in0)+((uintptr_t)22ULL));
x23 = *(uint8_t*)((in0)+((uintptr_t)23ULL));
x24 = *(uint8_t*)((in0)+((uintptr_t)24ULL));
x25 = *(uint8_t*)((in0)+((uintptr_t)25ULL));
x26 = *(uint8_t*)((in0)+((uintptr_t)26ULL));
x27 = *(uint8_t*)((in0)+((uintptr_t)27ULL));
x28 = *(uint8_t*)((in0)+((uintptr_t)28ULL));
x29 = *(uint8_t*)((in0)+((uintptr_t)29ULL));
x30 = *(uint8_t*)((in0)+((uintptr_t)30ULL));
x31 = *(uint8_t*)((in0)+((uintptr_t)31ULL));
x32 = *(uint8_t*)((in0)+((uintptr_t)32ULL));
x33 = *(uint8_t*)((in0)+((uintptr_t)33ULL));
x34 = *(uint8_t*)((in0)+((uintptr_t)34ULL));
x35 = *(uint8_t*)((in0)+((uintptr_t)35ULL));
x36 = *(uint8_t*)((in0)+((uintptr_t)36ULL));
x37 = *(uint8_t*)((in0)+((uintptr_t)37ULL));
x38 = *(uint8_t*)((in0)+((uintptr_t)38ULL));
x39 = *(uint8_t*)((in0)+((uintptr_t)39ULL));
x40 = *(uint8_t*)((in0)+((uintptr_t)40ULL));
x41 = *(uint8_t*)((in0)+((uintptr_t)41ULL));
x42 = *(uint8_t*)((in0)+((uintptr_t)42ULL));
x43 = *(uint8_t*)((in0)+((uintptr_t)43ULL));
x44 = *(uint8_t*)((in0)+((uintptr_t)44ULL));
x45 = *(uint8_t*)((in0)+((uintptr_t)45ULL));
x46 = *(uint8_t*)((in0)+((uintptr_t)46ULL));
x47 = *(uint8_t*)((in0)+((uintptr_t)47ULL));
/*skip*/
/*skip*/
x48 = (x47)<<((uintptr_t)56ULL);
x49 = (x46)<<((uintptr_t)48ULL);
x50 = (x45)<<((uintptr_t)40ULL);
x51 = (x44)<<((uintptr_t)32ULL);
x52 = (x43)<<((uintptr_t)24ULL);
x53 = (x42)<<((uintptr_t)16ULL);
x54 = (x41)<<((uintptr_t)8ULL);
x55 = x40;
x56 = (x39)<<((uintptr_t)56ULL);
x57 = (x38)<<((uintptr_t)48ULL);
x58 = (x37)<<((uintptr_t)40ULL);
x59 = (x36)<<((uintptr_t)32ULL);
x60 = (x35)<<((uintptr_t)24ULL);
x61 = (x34)<<((uintptr_t)16ULL);
x62 = (x33)<<((uintptr_t)8ULL);
x63 = x32;
x64 = (x31)<<((uintptr_t)56ULL);
x65 = (x30)<<((uintptr_t)48ULL);
x66 = (x29)<<((uintptr_t)40ULL);
x67 = (x28)<<((uintptr_t)32ULL);
x68 = (x27)<<((uintptr_t)24ULL);
x69 = (x26)<<((uintptr_t)16ULL);
x70 = (x25)<<((uintptr_t)8ULL);
x71 = x24;
x72 = (x23)<<((uintptr_t)56ULL);
x73 = (x22)<<((uintptr_t)48ULL);
x74 = (x21)<<((uintptr_t)40ULL);
x75 = (x20)<<((uintptr_t)32ULL);
x76 = (x19)<<((uintptr_t)24ULL);
x77 = (x18)<<((uintptr_t)16ULL);
x78 = (x17)<<((uintptr_t)8ULL);
x79 = x16;
x80 = (x15)<<((uintptr_t)56ULL);
x81 = (x14)<<((uintptr_t)48ULL);
x82 = (x13)<<((uintptr_t)40ULL);
x83 = (x12)<<((uintptr_t)32ULL);
x84 = (x11)<<((uintptr_t)24ULL);
x85 = (x10)<<((uintptr_t)16ULL);
x86 = (x9)<<((uintptr_t)8ULL);
x87 = x8;
x88 = (x7)<<((uintptr_t)56ULL);
x89 = (x6)<<((uintptr_t)48ULL);
x90 = (x5)<<((uintptr_t)40ULL);
x91 = (x4)<<((uintptr_t)32ULL);
x92 = (x3)<<((uintptr_t)24ULL);
x93 = (x2)<<((uintptr_t)16ULL);
x94 = (x1)<<((uintptr_t)8ULL);
x95 = x0;
x96 = (x95)+((x94)+((x93)+((x92)+((x91)+((x90)+((x89)+(x88)))))));
x97 = (x96)&((uintptr_t)18446744073709551615ULL);
x98 = (x55)+((x54)+((x53)+((x52)+((x51)+((x50)+((x49)+(x48)))))));
x99 = (x63)+((x62)+((x61)+((x60)+((x59)+((x58)+((x57)+(x56)))))));
x100 = (x71)+((x70)+((x69)+((x68)+((x67)+((x66)+((x65)+(x64)))))));
x101 = (x79)+((x78)+((x77)+((x76)+((x75)+((x74)+((x73)+(x72)))))));
x102 = (x87)+((x86)+((x85)+((x84)+((x83)+((x82)+((x81)+(x80)))))));
x103 = (x102)&((uintptr_t)18446744073709551615ULL);
x104 = (x101)&((uintptr_t)18446744073709551615ULL);
x105 = (x100)&((uintptr_t)18446744073709551615ULL);
x106 = (x99)&((uintptr_t)18446744073709551615ULL);
x107 = x97;
x108 = x103;
x109 = x104;
x110 = x105;
x111 = x106;
x112 = x98;
/*skip*/
*(uintptr_t*)((out0)+((uintptr_t)0ULL)) = x107;
*(uintptr_t*)((out0)+((uintptr_t)8ULL)) = x108;
*(uintptr_t*)((out0)+((uintptr_t)16ULL)) = x109;
*(uintptr_t*)((out0)+((uintptr_t)24ULL)) = x110;
*(uintptr_t*)((out0)+((uintptr_t)32ULL)) = x111;
*(uintptr_t*)((out0)+((uintptr_t)40ULL)) = x112;
/*skip*/
return;
}
|
the_stack_data/12637202.c | #include <stdio.h>
#include <stdlib.h>
#define ARSIZE 1000
int main(){
double numbers[ARSIZE];
double value;
const char * file = "number.dat";
int i;
long pos;
FILE *iofile;
for (i = 0; i < ARSIZE; i++)
numbers[i] = 100.0 * i + 1.0/ (i+1);
if ((iofile = fopen(file, "wb")) == NULL){
fprintf(stderr, "FileOpenError: Counld not open file %s for output.\n", file);
exit(EXIT_FAILURE);
}
fwrite(numbers, sizeof(double), ARSIZE, iofile);
fclose(iofile);
if ((iofile = fopen(file, "rb")) == NULL){
fprintf(stderr, "FileOpenError: Counld not open file %s for random access.\n", file);
exit(EXIT_FAILURE);
}
printf("Enter an index in the range 0-%d.\n", ARSIZE - 1);
while (scanf("%d", &i) == 1 && i >= 0 && i <= ARSIZE){
pos = (long) i * sizeof(double);
fseek(iofile, pos, SEEK_SET);
fread(&value, sizeof(double), 1, iofile);
printf("The valye there is %f.\n", value);
printf("Next index (out of range to quit):\n");
}
fclose(iofile);
puts("Bye!");
return 0;
} |
the_stack_data/434114.c | #include <stdio.h>
struct big_struct { char a[262144]; };
static const char str[] = "abcdefghijklmnopqrstuvwxyz";
int
main (void)
{
char *p;
char tmp[100];
int r = 0;
#if defined __BOUNDS_CHECKING_ON || defined BC_ON
printf("BOUNDS ON:\n");
#else
printf("BOUNDS OFF:\n");
#endif
if (r != 0)
__builtin_abort();
r = (__builtin_offsetof(struct big_struct, a) != 0);
printf(" 1:%d", !r);
p = __builtin_memcpy (tmp, str, sizeof(str));
r = (p != tmp);
printf(" 2:%d", !r);
r = __builtin_memcmp (p, str, sizeof(str));
printf(" 3:%d", !r);
p = __builtin_memmove(tmp, str, sizeof(str));
r = (__builtin_memcmp (p, str, sizeof(str)));
printf(" 4:%d", !r);
p = __builtin_memset(tmp, 0, sizeof (tmp));
r = (p != tmp || tmp[0] != 0 || tmp[99] != 0);
printf(" 5:%d", !r);
r = (__builtin_strlen(str) != sizeof(str) - 1);
printf(" 6:%d", !r);
p = __builtin_strcpy(tmp, str);
r = (__builtin_memcmp (p, str, sizeof(str)));
printf(" 7:%d", !r);
p = __builtin_strncpy(tmp, str, sizeof(str));
r = (__builtin_memcmp (p, str, sizeof(str)));
printf(" 8:%d", !r);
r = (__builtin_strcmp (p, str));
printf(" 9:%d", !r);
r = (__builtin_strncmp (p, str, sizeof(str)));
printf(" 10:%d", !r);
tmp[0] = '\0';
p = __builtin_strcat(tmp, str);
r = (__builtin_memcmp (p, str, sizeof(str)));
printf(" 11:%d", !r);
r = (__builtin_strchr(p, 'z') != &p[25]);
printf(" 12:%d", !r);
p = __builtin_strdup (str);
r = (__builtin_memcmp (p, str, sizeof(str)));
printf(" 13:%d", !r);
__builtin_free(p);
p = __builtin_malloc (100);
__builtin_memset(p, 0, 100);
p = __builtin_realloc (p, 1000);
__builtin_memset(p, 0, 1000);
__builtin_free(p);
p = __builtin_calloc(10, 10);
__builtin_memset(p, 0, 100);
__builtin_free(p);
#if defined(__i386__) || defined(__x86_64__)
p = __builtin_alloca(100);
__builtin_memset(p, 0, 100);
#endif
printf("\n");
}
|
the_stack_data/92732.c | /* Report the number of zero bits, the number of one bits,
and the ratio of zero to total bits for a file. */
/*
* Copyright ยฉ 2015 Bart Massey
* [This program is licensed under the "MIT License"]
* Please see the file COPYING in the source
* distribution of this software for license terms.
*/
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
static int popcount_table[256];
inline static int popcount_byte(int byte) {
int ones = 0;
for (int i = 0; i < 8; i++)
ones += (byte >> i) & 1;
return ones;
}
static void build_popcount_table(void) {
for (int i = 0; i < 256; i++)
popcount_table[i] = popcount_byte(i);
}
int main() {
int byte;
uint64_t zeros = 0;
uint64_t ones = 0;
build_popcount_table();
while((byte = getchar()) != EOF) {
int byte_ones = popcount_table[byte];
int byte_zeros = 8 - byte_ones;
zeros += byte_zeros;
ones += byte_ones;
}
if (zeros + ones > 0)
printf("%" PRIu64 " %" PRIu64 " %g\n",
zeros, ones, (double) zeros / (zeros + ones));
return 0;
}
|
the_stack_data/1104414.c | #include <stdio.h>
int main()
{
int i = 1, t = 6;
while ( i <= 10 )
{
printf("6x%d=", i);
i = i + 1;
printf("%d\n", t);
t = i * 6;
}
return 0;
}
|
the_stack_data/134949.c | /*
* $Id: Fsplit.c,v 1.4 2008-07-23 17:06:38 kennison Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*
* This program (Fsplit) is meant to replace the system "fsplit", which varies
* from one Unix system to another (and sometimes isn't there). Fsplit creates
* files with lower-case names. It leaves out comment lines between the end
* of one routine and the beginning of the next. By default, it supplies the
* appropriate CVS comment lines and copyright lines at the beginning of each
* file; use "-cvs", "-copyright", or "-both" to suppress the CVS comment lines,
* the copyright lines, or both, respectively.
*
* Fsplit reports the presence of tabs and the presence of non-blank characters
* past column 72. It depends on the input to be in undisguised FORTRAN form
* (for example, the word "SUBROUTINE" should not be spread over more than one
* line, and, if there is a main program, it should have a "PROGRAM" statement).
*
* (03/25/2008) I have added a new feature: If any comment line between the
* end of one routine and the beginning of the next contains, in columns 2-8,
* the characters "NOSPLIT", the two routines will be put in the same file.
*/
main(int argc, char **argv) {
char *objectname;
char *type[] = {"program","function","blockdata","subroutine",
"realfunction","doublefunction","integerfunction",
"logicalfunction","characterfunction",
"doubleprecisionfunction"};
int tlen[sizeof(type)/sizeof(char*)];
char keyword[73],*pkeyword=keyword;
char chsaved[73],*pchsaved=chsaved;
char lastfile[73];
char nscode[]="NOSPLIT";
int c,collecting,column=0,comment,cvs=3,chrspast72=0,
errorflag=0,found,i,match,nosplit=0,tabs=0;
FILE *psrc,*pdst;
for (i=0;i<sizeof(type)/sizeof(char*);i++) tlen[i]=strlen(type[i]);
lastfile[1]='\0';
objectname=*argv;
if (argc<2||argc>3) {
fprintf(stderr,"%s: Wrong number of arguments.\n",objectname);
fprintf(stderr,"Use \"%s [-cvs|-copyright|-both] source_file_name\".\n",
objectname);
return errorflag=1;
} else if (argc==3) {
if (strcmp(*++argv,"-cvs")==0) {
cvs=1;
} else if (strcmp(*argv,"-copyright")==0) {
cvs=2;
} else if (strcmp(*argv,"-both")==0) {
cvs=0;
} else {
fprintf(stderr,"%s: Bad argument \"%s\".\n",objectname,*argv);
fprintf(stderr,"Use \"%s [-cvs|-copyright|-both] source_file_name\".\n",
objectname);
return errorflag=2;
}
}
if ((psrc=fopen(*++argv,"r"))==(FILE*)NULL) {
fprintf(stderr,"%s: Can't open \"%s\".\n",objectname,*argv);
return errorflag=3;
}
pdst=(FILE*)NULL;
while ((c=getc(psrc))!=EOF) {
++column;
if (column==1) {
collecting=!(comment=(c=='c'||c=='C'))&&isspace(c);
pchsaved=chsaved;
} else if (column<7) {
if (!isspace(c)) collecting=0;
} else if (column>72 && c!='\n') {
collecting=0;
chrspast72=1;
} else {
if (collecting && c!=' ' && c!='\t') {
if (isalpha(c))
*pkeyword++=tolower(c),*pkeyword='\0';
else if (pkeyword!=keyword)
if (pkeyword-keyword==9 &&
strcmp(keyword,"character")==0 &&
(c=='*'||isdigit(c)) )
;
else if (isdigit(c))
*pkeyword++=c,*pkeyword='\0';
else
collecting=0;
else if (c!='\n')
collecting=0;
}
}
if (pdst==(FILE*)NULL) {
if (!comment) {
if (collecting)
*pchsaved++=c,*pchsaved='\0';
else {
*pkeyword++='.',*pkeyword++='f',*pkeyword='\0';
for (i=0,found=0;i<sizeof(type)/sizeof(char*);i++) {
if (pkeyword-keyword<=tlen[i]) break;
if (strncmp(keyword,type[i],tlen[i])==0) {
found=1;
pkeyword=keyword+tlen[i];
break;
}
}
if (!found) {
fprintf(stderr,"%s: Can't find output file name.\n",objectname);
return errorflag=4;
} else if (!nosplit&&(pdst=fopen(pkeyword,"w"))==(FILE*)NULL) {
fprintf(stderr,"%s: Can't open file \"%s\".\n",objectname,pkeyword);
return errorflag=5;
} else if (nosplit&&(pdst=fopen(pkeyword=lastfile,"a"))==(FILE*)NULL) {
fprintf(stderr,"%s: Can't reopen file \"%s\".\n",objectname,pkeyword);
return errorflag=6;
} else printf("%s: Opening file \"%s\".\n",objectname,pkeyword);
if (lastfile != pkeyword) strcpy(lastfile,pkeyword);
if (!nosplit) {
if (cvs==2||cvs==3) {
fprintf(pdst,"C\nC $I");
fprintf(pdst, "d$\nC\n");
}
if (cvs==1||cvs==3) {
fprintf(pdst,"C Copyright (C) 2000\n");
fprintf(pdst,"C University Corporation for Atmospheric Research\n");
fprintf(pdst,"C All Rights Reserved\n");
fprintf(pdst,"C\n");
fprintf(pdst,"C The use of this Software is governed by a License Agreement.\n");
fprintf(pdst,"C\n");
}
}
fprintf(pdst,"%s",chsaved);
pchsaved=chsaved;
putc(c,pdst);
}
} else if (lastfile[1]!='\0') {
if (column==1) match=0;
else if (column<=8&&c==nscode[column-2]) if (++match==7) nosplit=1;
}
} else {
putc(c,pdst);
if (c=='\n' && pkeyword-keyword==3 && strcmp(keyword,"end")==0) {
if (fclose(pdst)!=0) {
fprintf(stderr,"%s: Can't close output file.\n",objectname);
return errorflag=7;
}
pdst=(FILE*)NULL;
nosplit=0;
}
}
if (c=='\t') column=((column+7)/8)*8,tabs=1;
else if (c=='\n') column=0,*(pkeyword=keyword)='\0';
}
if (pdst!=(FILE*)NULL) {
fprintf(stderr,"%s: No \"END\" statement in final routine.\n",objectname);
errorflag=8;
if (fclose(pdst)!=0) {
fprintf(stderr,"%s: Can't close output file.\n",objectname);
errorflag=9;
}
}
if (fclose(psrc)!=0) {
fprintf(stderr,"%s: Can't close source file.\n",objectname);
errorflag=10;
}
if (tabs!=0) {
fprintf(stderr,"%s: There were tabs in the source file.\n",objectname);
errorflag=11;
}
if (chrspast72!=0) {
fprintf(stderr,"%s: There were non-blank",objectname);
fprintf(stderr," characters past column 72 in the source file.\n");
errorflag=12;
}
return errorflag;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.