file
stringlengths
18
26
data
stringlengths
2
1.05M
the_stack_data/23461.c
#include <stdio.h> int main(){ long a[10]; long *b; printf("%d %d %d\n", sizeof(a), sizeof(*a), sizeof(a[0])); printf("%d %d\n", sizeof(b), sizeof(*b)); }
the_stack_data/198580026.c
/* ID: sespiros PROG: beads LANG: C */ #include <stdio.h> int flag1,flag2,n; char neckl[350]; int checker(int i,int pl,int N,int arg,int arg2){ char stand; //printf ("Checker function in progress..."); if (arg==0){ flag1=0; if(arg2)stand=neckl[n-1]; while(i<=N && flag1==0){ if(neckl[i]==neckl[i-1]||neckl[i]=='w'){ if(neckl[i]!='w')stand=neckl[i]; if(neckl[i-1]!='w')stand=neckl[i-1]; pl++; i++; }else if(neckl[i]==stand){ pl++; i++; }else{ flag1=i; } } }else{ flag2=0; if(arg2)stand=neckl[0]; while(i>N && flag2==0){ if(neckl[i]==neckl[i-1]||neckl[i-1]=='w'){ if(neckl[i]!='w')stand=neckl[i]; if(neckl[i-1]!='w')stand=neckl[i-1]; pl++; i--; }else if(neckl[i-1]==stand){ pl++; i--; }else{ flag2=i; } } } //printf("%d\n",pl); return pl; } int main(void){ int maxcut,i,cut[351],j; FILE *fin, *fout; fin=fopen("beads.in","r"); fout=fopen("beads.out","w"); fscanf(fin,"%d\n",&n); for(i=0;i<n;i++){neckl[i]=fgetc(fin);} for(i=27;i<n;i++){ cut[i]=2; cut[i]=checker(i+2,cut[i],n,0,0); cut[i]=checker(i,cut[i],0,1,0); if(flag1==n+1 && (neckl[n-1]==neckl[0]||neckl[n-1]=='w'||neckl[0]=='w')){ cut[i]++; cut[i]=checker(n-1,cut[i],flag1,1,1); }else if(flag2==n-cut[i] && (neckl[n-1]==neckl[0]||neckl[n-1]=='w'||neckl[0]=='w')){ cut[i]++; cut[i]=checker(1,cut[i],flag2-1,0,1); } printf(""); } maxcut=cut[0]; for(i=1;i<n;i++){ printf("%d\n",cut[i]); if(cut[i]>maxcut){ maxcut=cut[i]; } } printf("%d",maxcut); fprintf(fout,"%d\n",maxcut); fclose(fin); fclose(fout); return 0; }
the_stack_data/15763941.c
#include <stdio.h> // - the label mentioned within the goto statement must be defined somewhere inside the enclosing function body; // this also means that the goto statement must not lead to: // - outside a function; // - inside other function. // - any label defined within a particular function doesn’t have to be used in the goto statement. // - jump is possible backward and forward // - a goto statement may lead to the outside of a compound statement int main (void) { int i = 5; back: while (i > 0) { int j = 5; while (j > 0) { printf ("%d %d\n", i, j); if (i == 4 && j == 4) { goto out; } j--; } i--; goto back; } out: return 0; }
the_stack_data/37637738.c
/* PR c/11420 */ /* { dg-do link { target fpic } } */ /* { dg-options "-O2 -fpic" } */ /* { dg-bogus "\[Uu\]nresolved symbol .(_GLOBAL_OFFSET_TABLE_|\[_.A-Za-z\]\[_.0-9A-Za-z\]*@(PLT|GOT|GOTOFF))" "PIC unsupported" { xfail *-*-netware* } 0 } */ void (* volatile fn) (void); static void foo (void) { } int main (void) { fn = foo; return 0; }
the_stack_data/151706426.c
/* * Use sqlite_main() entry point in sqliteodbc.dll/sqliteodbcu.dll * to provide an SQLite shell, compile with * * tcc -o sqlite.exe -lsqlite sqlite.c * tcc -o sqliteu.exe -lsqliteu sqlite.c */ extern int sqlite_main(int, char **); int main(int argc, char **argv) { return sqlite_main(argc, argv); }
the_stack_data/465701.c
#include <stdio.h> int main() { int f=0,s=1,nxt,no; printf("Enter the No. to check fibonacci Number :"); scanf("%d",&no); for (int i=0; i<no; i++) { if (i<=1) { nxt = i; } else{ nxt = f+s; f=s; s = nxt; } printf(" %d ",nxt); } printf("\n"); }
the_stack_data/704276.c
/* Copyright JS Foundation and other contributors, http://js.foundation * * 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. */ /* * This source contains libc overrides for the sake of stable benchmarking. If * building a binary for the purpose of benchmarking, the object compiled from * this source is to be injected into the list of objects-to-be-linked before * the list of libraries-to-be-linked to ensure that the linker picks up these * implementations. */ #ifdef __GNUC__ /* * Note: * This is nasty and dangerous. However, we only need the timeval structure * from sys/time.h. Unfortunately, the same header also declares * gettimeofday, which has different declarations on different platforms * (e.g., macOS, Linux). So, instead of #ifdef'ing for platforms, we simply * tweak the header to declare another function. Don't try this at home. */ #define gettimeofday __prevent_conflicting_gettimeofday_declarations__ #include <sys/time.h> #undef gettimeofday int gettimeofday (struct timeval *, void *); /** * Useless but stable gettimeofday implementation. Returns Epoch. Ensures that * test cases relying on "now" yield stable results. */ int gettimeofday (struct timeval *tv, void *tz) { (void) tz; tv->tv_sec = 0; tv->tv_usec = 0; return 0; } /* gettimeofday */ #endif /* __GNUC__ */ int rand (void); /** * Useless but stable rand implementation. Returns 4. Ensures that test cases * relying on randomness yield stable results. */ int rand (void) { return 4; /* Chosen by fair dice roll. Guaranteed to be random. */ } /* rand */
the_stack_data/63973.c
#include <math.h> #include <stdio.h> #define max(a, b, c) (a) >= (b) ? ((a) >= (c) ? (a) : (c)) : ((b >= c) ? (b) : (c)) #define min(a, b, c) (a) <= (b) ? ((a) <= (c) ? (a) : (c)) : ((b <= c) ? (b) : (c)) #define mid(a, b, c) (a) >= (b) ? ((a) <= (c) ? (a) : ((b) >= (c) ? (b) : (c))) : ((a) >= (c) ? (a) : ((b) <= (c) ? (b) : (c))) #define s(a, b, c) ((double)(a + b + c) / 2.0) #define area(a, b, c, s) sqrt(s *(s - a) * (s - b) * (s - c)) int main() { double max, mid, min; double a, b, c, s, area; printf("please input three sides:"); while (scanf("%lf %lf %lf", &a, &b, &c) != EOF) { max = max(a, b, c); mid = mid(a, b, c); min = min(a, b, c); if ((min + mid) > max) { s = s(a, b, c); area = area(a, b, c, s); printf("the s is %lf\nthe area is %lf", s, area); } else printf("Error! please input again\n"); } return 0; }
the_stack_data/102508.c
#include<stdio.h> #define ROW 5 #define COLUMN 6 void method1(); void method2(); void method3(); int main() { method1(); printf("\n============================\n"); method2(); printf("\n============================\n"); method3(); printf("\n"); return 0; } void method1() { int i,j,n=0; for(i = 1; i < ROW; i++) { for(j = 1; j < COLUMN;j++,n++) { if(n % 5 == 0) { printf("\n"); } printf("%d*%d=%d\t",i,j,i*j); } } } void method2() { int i,j,n=0; for(i = 1; i < ROW; i++) { for(j = 1; j < COLUMN;j++,n++) { if(n % 5 == 0) { printf("\n"); } if(i == 3 && j == 1) { break; } printf("%d*%d=%d\t",i,j,i*j); } } } void method3() { int i,j,n=0; for(i = 1; i < ROW; i++) { for(j = 1; j < COLUMN;j++,n++) { if(n % 5 == 0) { printf("\n"); } if(i == 3 && j == 1) { continue; } printf("%d*%d=%d\t",i,j,i*j); } } }
the_stack_data/90762750.c
#include <err.h> #include <sys/types.h> #include <fcntl.h> #include <stdbool.h> #include <unistd.h> enum { BUF_SIZE = 512 }; bool is_zero(const char buf[], const size_t len) { for (size_t i = 0; i < len; ++i) { if (buf[i] != 0) { return false; } } return true; } int main(int argc, char *argv[]) { if (argc != 3) { errx(1, "Usage: %s SOURCE DEST", argv[0]); } int source = open(argv[1], O_RDONLY); if (source == -1) { err(1, "Failed to open source '%s' for reading", argv[1]); } int dest = creat(argv[2], 0644); if (dest == -1) { err(1, "Failed to open destination '%s' for writing", argv[2]); } char buf[BUF_SIZE]; ssize_t len; bool ends_with_hole = false; while (0 < (len = read(source, buf, sizeof(buf)))) { if (is_zero(buf, len)) { if (-1 == lseek(dest, len, SEEK_CUR)) { err(1, "lseek failed"); } ends_with_hole = true; } else { ssize_t len_written = write(dest, buf, len); if (len_written < len) { err(1, "Failed to write %llu bytes to destination '%s'", (unsigned long long)len, argv[2]); } ends_with_hole = false; } } // Write a byte at the end so the destination gets a final hole as well. if (ends_with_hole) { if (-1 == lseek(dest, -1, SEEK_CUR)) { err(1, "lseek failed"); } char zero = 0; if (write(dest, &zero, 1) <= 0) { err(1, "Failed to write final byte"); } } if (len == -1) { err(1, "Failed to read from source"); } if (close(dest) == -1) { err(1, "Failed to close destination"); } if (close(source) == -1) { err(1, "Failed to close source"); } return 0; }
the_stack_data/115764815.c
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> enum { MAX_SECTIONS = 16, NUM_DATA_DIRECTORIES = 16, IMPORT_DIRECTORY = 1, MAX_IMPORT_DESCRIPTORS = 64, MAX_SECTION_NAME = 8, MAX_DLL_NAME = 128 }; enum { OK, ERR_CANT_OPEN, ERR_CANT_READ, ERR_BLACK_MAGIC, ERR_BAD_RVA, ERR_BAD_OFFSET, ERR_NO_MATCH, ERR_NO_CAVE, ERR_CANT_WRITE, ERR_TOO_LONG }; #define CHECK(expr) \ do { \ if ((err = (expr)) != OK) \ return err; \ } while(0) #define CHECK_S(str, expr) \ do { \ if ((err = (expr)) != OK) { \ *errstr = (str); \ return err; \ } \ } while(0) struct section_header { char name[MAX_SECTION_NAME + 1]; unsigned int virtual_size; unsigned int virtual_address; unsigned int raw_size; unsigned int raw_offset; unsigned int header_offset; unsigned int characteristics; }; struct data_directory { unsigned int virtual_address; unsigned int size; unsigned int directory_offset; }; struct pe_info { unsigned int num_sections; struct section_header section_headers[MAX_SECTIONS]; struct data_directory data_directories[NUM_DATA_DIRECTORIES]; }; struct import_descriptor { char name[MAX_DLL_NAME + 1]; unsigned int name_offset; unsigned int descriptor_offset; }; int read_u16(FILE *stream, unsigned int *data); int read_u32(FILE *stream, unsigned int *data); int write_u32(FILE *stream, unsigned int data); int seek_pe_header(FILE *stream); int read_pe_info(FILE *stream, struct pe_info *info); int rva_to_section_index(const struct pe_info *info, unsigned int rva, int *index); int rva_to_section_header(struct pe_info *info, unsigned int rva, struct section_header **header); int import_directory_section_header(struct pe_info *info, struct section_header **header); int rva_to_offset(const struct pe_info *info, unsigned int rva, unsigned int *offset); int read_import_descriptors(FILE *stream, const struct pe_info *info, struct import_descriptor *descriptors, int *ndescriptors); int read_ntcs(FILE *stream, char *string, int n); int write_ntcs(FILE *stream, const char *string); int patch_in_place(FILE *stream, const struct import_descriptor *descriptor, const char *new_name); int patch_in_cave(FILE *stream, struct section_header *header, struct import_descriptor *descriptor, const char *new_name); int patch_in_cave_alt(FILE *stream, struct pe_info *info, struct section_header *header, struct import_descriptor *descriptor, const char *new_name); int rename_import_dll(const char *pe_file, const char *old_name, const char *new_name, const char **errstr); int main(int argc, char *argv[]) { int err; const char *errstr; printf("Rename Import DLL / [email protected] / compiled " __DATE__ "\n\n"); if (argc < 2) { fprintf(stderr, "Usage: %s <pe-file> [<old-dll-name> <new-dll-name>]\n", argv[0]); return 1; } errstr = NULL; if (argc < 4) { err = rename_import_dll(argv[1], "", "", &errstr); } else { err = rename_import_dll(argv[1], argv[2], argv[3], &errstr); } if (err != OK) { fprintf(stderr, "Error: %s (code %d)\n\n", errstr ? errstr : "Unknown", err); return 1; } return 0; } int rename_import_dll(const char *pe_file, const char *old_name, const char *new_name, const char **errstr) { FILE *stream; struct pe_info info; struct import_descriptor descriptors[MAX_IMPORT_DESCRIPTORS]; struct section_header *import_header; int ndescriptors; int descriptor_index; int i; int err; if (strlen(old_name) > MAX_DLL_NAME) { *errstr = "Old DLL name is too long"; return ERR_TOO_LONG; } if (strlen(new_name) > MAX_DLL_NAME) { *errstr = "New DLL name is too long"; return ERR_TOO_LONG; } if ((stream = fopen(pe_file, "r+b")) == NULL) { *errstr = "Can't open pe file"; return ERR_CANT_OPEN; } CHECK_S("Can't read pe info", read_pe_info(stream, &info)); printf("Sections:\n"); for (i = 0; i < (int)info.num_sections; i++) { const struct section_header *header = &info.section_headers[i]; printf(" %2d. %-8s %10u %10u %10u %10u (%4u)\n", i, header->name, header->virtual_address, header->virtual_size, header->raw_offset, header->raw_size, header->raw_size > header->virtual_size ? header->raw_size - header->virtual_size : 0); } printf("\n"); CHECK_S("Can't read import descriptors", read_import_descriptors(stream, &info, descriptors, &ndescriptors)); printf("Import DLLs:\n"); descriptor_index = -1; for (i = 0; i < ndescriptors; i++) { if (strcmp(descriptors[i].name, old_name) == 0) { descriptor_index = i; printf(" %s -> %s\n", descriptors[i].name, new_name); } else { printf(" %s\n", descriptors[i].name); } } printf("\n"); if (*old_name) { if (descriptor_index == -1) { *errstr = "no matching import dll name"; return ERR_NO_MATCH; } if (strlen(descriptors[descriptor_index].name) >= strlen(new_name)) { CHECK_S("Can't patch in-place", patch_in_place(stream, &descriptors[descriptor_index], new_name)); printf("Patched in-place\n\n"); } else { CHECK_S("Can't get section header for import directory", import_directory_section_header(&info, &import_header)); err = patch_in_cave(stream, import_header, &descriptors[descriptor_index], new_name); if (err != OK) { printf("Couldn't patch in import directory's section, trying alternative sections\n"); CHECK_S("Can't patch in cave", patch_in_cave_alt(stream, &info, import_header, &descriptors[descriptor_index], new_name)); } printf("Patched in cave\n\n"); } } fclose(stream); return OK; } int read_u16(FILE *stream, unsigned int *data) { unsigned char buffer[2]; if (fread(buffer, 1, 2, stream) != 2) return ERR_CANT_READ; *data = buffer[0] | (buffer[1] << 8); return OK; } int read_u32(FILE *stream, unsigned int *data) { unsigned char buffer[4]; if (fread(buffer, 1, 4, stream) != 4) return ERR_CANT_READ; *data = buffer[0] | (buffer[1] << 8) | (buffer[2] << 16) | (buffer[3] << 24); return OK; } int write_u32(FILE *stream, unsigned int data) { unsigned char buffer[4]; buffer[0] = data & 0xFF; buffer[1] = (data >> 8) & 0xFF; buffer[2] = (data >> 16) & 0xFF; buffer[3] = (data >> 24) & 0xFF; if (fwrite(buffer, 1, 4, stream) != 4) return ERR_CANT_WRITE; return OK; } #define U16(stream, outvar) CHECK(read_u16((stream), (outvar))) #define U32(stream, outvar) CHECK(read_u32((stream), (outvar))) int seek_pe_header(FILE *stream) { unsigned int data; unsigned int lfanew; int err; fseek(stream, 0, SEEK_SET); U16(stream, &data); if (data != 0x5A4D) return ERR_BLACK_MAGIC; fseek(stream, 60, SEEK_SET); U32(stream, &lfanew); fseek(stream, lfanew, SEEK_SET); U32(stream, &data); if (data != 0x4550) return ERR_BLACK_MAGIC; fseek(stream, -4, SEEK_CUR); return OK; } int read_pe_info(FILE *stream, struct pe_info *info) { int err; int i; unsigned int magic; int skip; CHECK(seek_pe_header(stream)); fseek(stream, 6, SEEK_CUR); U16(stream, &info->num_sections); if (info->num_sections > MAX_SECTIONS) { fprintf(stderr, "Warning: more than max expected sections in pe file\n"); info->num_sections = MAX_SECTIONS; } fseek(stream, 16, SEEK_CUR); U16(stream, &magic); switch (magic) { case 0x10B: skip = 94; break; case 0x20B: skip = 110; break; default: return ERR_BLACK_MAGIC; } fseek(stream, skip, SEEK_CUR); for (i = 0; i < NUM_DATA_DIRECTORIES; i++) { struct data_directory *directory = &info->data_directories[i]; directory->directory_offset = ftell(stream); U32(stream, &directory->virtual_address); U32(stream, &directory->size); } for (i = 0; i < (int)info->num_sections; i++) { struct section_header *header = &info->section_headers[i]; header->header_offset = ftell(stream); if (fread(&header->name, 1, MAX_SECTION_NAME, stream) != 8) return ERR_CANT_READ; header->name[MAX_SECTION_NAME] = '\0'; U32(stream, &header->virtual_size); U32(stream, &header->virtual_address); U32(stream, &header->raw_size); U32(stream, &header->raw_offset); fseek(stream, 12, SEEK_CUR); U32(stream, &header->characteristics); } return OK; } int rva_to_section_index(const struct pe_info *info, unsigned int rva, int *index) { int i; for (i = 0; i < (int)info->num_sections; i++) { const struct section_header *header = &info->section_headers[i]; if (rva >= header->virtual_address && rva < (header->virtual_address + header->virtual_size)) { *index = i; return OK; } } return ERR_BAD_RVA; } int rva_to_section_header(struct pe_info *info, unsigned int rva, struct section_header **header) { int err; int section_index; CHECK(rva_to_section_index(info, rva, &section_index)); *header = &info->section_headers[section_index]; return OK; } int import_directory_section_header(struct pe_info *info, struct section_header **header) { return rva_to_section_header(info, info->data_directories[IMPORT_DIRECTORY].virtual_address, header); } int rva_to_offset(const struct pe_info *info, unsigned int rva, unsigned int *offset) { int i; int err; const struct section_header *header; CHECK(rva_to_section_index(info, rva, &i)); header = &info->section_headers[i]; *offset = rva - header->virtual_address; if (*offset > header->raw_size) return ERR_BAD_OFFSET; *offset += header->raw_offset; return OK; } int read_import_descriptors(FILE *stream, const struct pe_info *info, struct import_descriptor *descriptors, int *ndescriptors) { unsigned int offset; int err; CHECK(rva_to_offset(info, info->data_directories[IMPORT_DIRECTORY].virtual_address, &offset)); fseek(stream, offset, SEEK_SET); *ndescriptors = 0; while (*ndescriptors < MAX_IMPORT_DESCRIPTORS) { unsigned int name_address; unsigned int save_offset; descriptors[*ndescriptors].descriptor_offset = ftell(stream); fseek(stream, 12, SEEK_CUR); U32(stream, &name_address); fseek(stream, 4, SEEK_CUR); if (name_address == 0) break; save_offset = ftell(stream); CHECK(rva_to_offset(info, name_address, &descriptors[*ndescriptors].name_offset)); fseek(stream, descriptors[*ndescriptors].name_offset, SEEK_SET); CHECK(read_ntcs(stream, descriptors[*ndescriptors].name, MAX_DLL_NAME + 1)); fseek(stream, save_offset, SEEK_SET); (*ndescriptors)++; } return OK; } int read_ntcs(FILE *stream, char *string, int n) { int i; string[n - 1] = '\0'; for (i = 0; i < n - 1; i++) { string[i] = fgetc(stream); if (string[i] == '\0') break; } return OK; } int write_ntcs(FILE *stream, const char *string) { int n = strlen(string) + 1; if (fwrite(string, 1, n, stream) != n) return ERR_CANT_WRITE; return OK; } int patch_in_place(FILE *stream, const struct import_descriptor *descriptor, const char *new_name) { int err; fseek(stream, descriptor->name_offset, SEEK_SET); CHECK(write_ntcs(stream, new_name)); return OK; } int patch_in_cave(FILE *stream, struct section_header *header, struct import_descriptor *descriptor, const char *new_name) { int err; unsigned int cave_capacity; unsigned int cave_offset; unsigned int cave_rva; unsigned int name_size; if (header->raw_size <= header->virtual_size) return ERR_NO_CAVE; name_size = strlen(new_name) + 1; cave_capacity = header->raw_size - header->virtual_size; cave_offset = header->raw_offset + header->virtual_size; cave_rva = header->virtual_address + header->virtual_size; printf("Cave offset %u, capacity %u\n", cave_offset, cave_capacity); if (cave_capacity < name_size) return ERR_NO_CAVE; fseek(stream, cave_offset, SEEK_SET); CHECK(write_ntcs(stream, new_name)); fseek(stream, descriptor->descriptor_offset + 12, SEEK_SET); CHECK(write_u32(stream, cave_rva)); fseek(stream, header->header_offset + 8, SEEK_SET); CHECK(write_u32(stream, header->virtual_size + name_size)); strcpy(descriptor->name, new_name); descriptor->name_offset = cave_offset; header->virtual_size += name_size; return OK; } int patch_in_cave_alt(FILE *stream, struct pe_info *info, struct section_header *import_header, struct import_descriptor *descriptor, const char *new_name) { int err = ERR_NO_CAVE; int i; struct section_header *header; for (i = 0; i < (int)info->num_sections; i++) { header = &info->section_headers[i]; if (header != import_header && header->characteristics == import_header->characteristics) { err = patch_in_cave(stream, header, descriptor, new_name); if (err == OK) break; } } return err; }
the_stack_data/231394490.c
/* * Sorting Algorithms * Bubble Sort (C implementation) * Author: Priyank Chheda * E: [email protected] * W: https://github.com/x899 * * Bubble sort is a simple sorting algorithm that repeatedly steps through * the list to be sorted, compares each pair of adjacent items and swaps * them if they are in the wrong order. The pass through the list is repeated * until no swaps are needed, which indicates that the list is sorted. */ #include <stdio.h> /* Function Declaration */ void bubble_sort(int array[], size_t array_size); static void print_array(int array[], size_t array_size); static void swap(int *a, int *b); /* Main Operational Function */ int main(int argc, char *argv[]) { int array[] = {229, 79, 46, 12, 58, 31, 34, 67, 89, 12, 67, 2}; size_t array_size = sizeof(array) / sizeof(array[0]); bubble_sort(array, array_size); print_array(array, array_size); return 0; } /** * Bubble Sort Function * @param array actual array to sort * @param array_size size of array */ void bubble_sort(int array[], size_t array_size) { int swapped; for (size_t i = 0; i < (array_size - 1); i++) { swapped = 0; for (size_t j = 0; j < (array_size - 1); j++) { if (array[j] > array[j+1]) { swap(&array[j], &array[j+1]); swapped = 1; } } if (swapped == 0) break; } } /** * Pretty print array Function * @param array actual array to sort * @param array_size size of array */ static void print_array(int array[], size_t array_size) { for (size_t i = 0; i < array_size; i++) { printf("%d ", array[i]); } printf("\n"); } /** * Swapping two array elements * @param a an integer to swap * @param b an integer to swap */ static void swap(int* a, int* b) { int temp = *a; *a = *b; *b = temp; }
the_stack_data/51701572.c
#include <stdio.h> #define LEN 8 int a[LEN] = { 5, 2, 4, 7, 1, 3, 2, 6 }; void merge(int start, int mid, int end) { int n1 = mid - start + 1; int n2 = end - mid; int left[n1], right[n2]; int i, j, k; for (i = 0; i < n1; i++) /* left holds a[start..mid] */ left[i] = a[start+i]; for (j = 0; j < n2; j++) /* right holds a[mid+1..end] */ right[j] = a[mid+1+j]; i = j = 0; k = start; while (i < n1 && j < n2) if (left[i] < right[j]) a[k++] = left[i++]; else a[k++] = right[j++]; while (i < n1) /* left[] is not exhausted */ a[k++] = left[i++]; while (j < n2) /* right[] is not exhausted */ a[k++] = right[j++]; } void sort(int start, int end) { int mid; if (start < end) { mid = (start + end) / 2; printf("sort (%d-%d, %d-%d) %d %d %d %d %d %d %d %d\n", start, mid, mid+1, end, a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7]); sort(start, mid); sort(mid+1, end); merge(start, mid, end); printf("merge (%d-%d, %d-%d) to %d %d %d %d %d %d %d %d\n", start, mid, mid+1, end, a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7]); } } int main(void) { sort(0, LEN-1); return 0; }
the_stack_data/232954628.c
/* strptr.c -- strings as pointers */ #include <stdio.h> int main(void) { printf("%s, %p, %c\n", "We", "are", *"space farers"); return 0; }
the_stack_data/103680.c
/* * Copyright (C) 2018 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. * */ /** * @ingroup sys_auto_init_saul * @{ * * @file * @brief Auto initialization of LIS2DH12 accelerometers * * @author Hauke Petersen <[email protected]> * * @} */ #ifdef MODULE_LIS2DH12 #include "log.h" #include "assert.h" #include "saul_reg.h" #include "lis2dh12.h" #include "lis2dh12_params.h" /** * @brief Number of configured sensors */ #define LIS2DH12_NUM ARRAY_SIZE(lis2dh12_params) /** * @brief Number of defined SAUL registry info entries */ #define LIS2DH12_SAULINFO_NUM (sizeof(lis2dh12_saul_info) / \ sizeof(lis2dh12_saul_info[0])) /** * @brief Allocate memory for the device descriptors */ static lis2dh12_t lis2dh12_devs[LIS2DH12_NUM]; /** * @brief Memory for the SAUL registry entries */ static saul_reg_t saul_entries[LIS2DH12_NUM]; void auto_init_lis2dh12(void) { assert(LIS2DH12_NUM == LIS2DH12_SAULINFO_NUM); for (unsigned int i = 0; i < LIS2DH12_NUM; i++) { int res; LOG_DEBUG("[auto_init_saul] initializing lis2dh12 #%u\n", i); res = lis2dh12_init(&lis2dh12_devs[i], &lis2dh12_params[i]); if (res < 0) { LOG_ERROR("[auto_init_saul] error initializing lis2dh12 #%u\n", i); continue; } saul_entries[i].dev = &(lis2dh12_devs[i]); saul_entries[i].name = lis2dh12_saul_info[i].name; saul_entries[i].driver = &lis2dh12_saul_driver; saul_reg_add(&(saul_entries[i])); } } #else typedef int dont_be_pedantic; #endif /* MODULE_LIS2DH12 */
the_stack_data/192330222.c
#include<stdio.h> union INFO { int a; int b; int c; }; int main() { union INFO A; A.a=1; A.b=2; A.c=3; printf("a:%d\n",A.a); printf("b:%d\n",A.b); printf("c:%d\n",A.c); return 0; }
the_stack_data/494095.c
/* Copyright (c) 2011 The WebM project authors. All Rights Reserved. */ /* */ /* Use of this source code is governed by a BSD-style license */ /* that can be found in the LICENSE file in the root of the source */ /* tree. An additional intellectual property rights grant can be found */ /* in the file PATENTS. All contributing project authors may */ /* be found in the AUTHORS file in the root of the source tree. */ static const char* const cfg = "--target=x86_64-linux-gcc --enable-pic --enable-error-concealment --disable-install-docs --disable-install-srcs --disable-examples --disable-internal-stats --disable-install-libs --disable-install-bins --enable-realtime-only"; const char *vpx_codec_build_config(void) {return cfg;}
the_stack_data/193893975.c
#include <stdio.h> static struct sss{ long f; struct {long m;} snd; } sss; #define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16) int main (void) { printf ("+++Struct long inside struct starting with long:\n"); printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss)); printf ("offset-long=%d,offset-sss-long=%d,\nalign-long=%d,align-sss-long=%d\n", _offsetof (struct sss, f), _offsetof (struct sss, snd), __alignof__ (sss.f), __alignof__ (sss.snd)); return 0; }
the_stack_data/89201036.c
//@ ltl invariant negative: ( ( ([] (<> ( (! AP((p0_l3 != 0))) && ( AP((p0_l2 != 0)) && ( AP((p0_l1 != 0)) && (! AP((p0_l0 != 0)))))))) || (! ([] (<> AP((v1 == 1)))))) || (! ([] (<> AP((1.0 <= _diverge_delta)))))); extern float __VERIFIER_nondet_float(void); extern int __VERIFIER_nondet_int(void); char __VERIFIER_nondet_bool(void) { return __VERIFIER_nondet_int() != 0; } char p10_l3, _x_p10_l3; char p10_l2, _x_p10_l2; char p10_l1, _x_p10_l1; char p10_l0, _x_p10_l0; char p10_evt, _x_p10_evt; float p10_c, _x_p10_c; char p3_l3, _x_p3_l3; char p3_evt, _x_p3_evt; char p0_l2, _x_p0_l2; char p8_l3, _x_p8_l3; char p0_l1, _x_p0_l1; char p2_l3, _x_p2_l3; char p2_evt, _x_p2_evt; float delta, _x_delta; int v1, _x_v1; char v2, _x_v2; float p8_c, _x_p8_c; char p0_l3, _x_p0_l3; char p8_evt, _x_p8_evt; char p8_l2, _x_p8_l2; char p4_evt, _x_p4_evt; float p1_c, _x_p1_c; char p9_l3, _x_p9_l3; char p3_l2, _x_p3_l2; char p6_l3, _x_p6_l3; char p1_l3, _x_p1_l3; float _diverge_delta, _x__diverge_delta; char p0_l0, _x_p0_l0; char p8_l1, _x_p8_l1; char p1_evt, _x_p1_evt; char p1_l1, _x_p1_l1; char p7_l3, _x_p7_l3; char p4_l2, _x_p4_l2; char p1_l2, _x_p1_l2; char p4_l3, _x_p4_l3; float p5_c, _x_p5_c; float p2_c, _x_p2_c; char p5_evt, _x_p5_evt; float p0_c, _x_p0_c; char p5_l0, _x_p5_l0; char p2_l0, _x_p2_l0; char p0_evt, _x_p0_evt; char p5_l1, _x_p5_l1; char p2_l1, _x_p2_l1; char p5_l2, _x_p5_l2; char p2_l2, _x_p2_l2; char p5_l3, _x_p5_l3; char p9_l0, _x_p9_l0; char p6_l0, _x_p6_l0; char p9_l1, _x_p9_l1; char p3_l0, _x_p3_l0; char p6_l1, _x_p6_l1; char p9_l2, _x_p9_l2; char p3_l1, _x_p3_l1; char p6_l2, _x_p6_l2; float p7_c, _x_p7_c; float p4_c, _x_p4_c; char p7_evt, _x_p7_evt; char p7_l0, _x_p7_l0; char p4_l0, _x_p4_l0; char p7_l1, _x_p7_l1; char p1_l0, _x_p1_l0; char p4_l1, _x_p4_l1; char p7_l2, _x_p7_l2; char p8_l0, _x_p8_l0; float p6_c, _x_p6_c; float p9_c, _x_p9_c; float p3_c, _x_p3_c; char p6_evt, _x_p6_evt; char p9_evt, _x_p9_evt; int main() { p10_l3 = __VERIFIER_nondet_bool(); p10_l2 = __VERIFIER_nondet_bool(); p10_l1 = __VERIFIER_nondet_bool(); p10_l0 = __VERIFIER_nondet_bool(); p10_evt = __VERIFIER_nondet_bool(); p10_c = __VERIFIER_nondet_float(); p3_l3 = __VERIFIER_nondet_bool(); p3_evt = __VERIFIER_nondet_bool(); p0_l2 = __VERIFIER_nondet_bool(); p8_l3 = __VERIFIER_nondet_bool(); p0_l1 = __VERIFIER_nondet_bool(); p2_l3 = __VERIFIER_nondet_bool(); p2_evt = __VERIFIER_nondet_bool(); delta = __VERIFIER_nondet_float(); v1 = __VERIFIER_nondet_int(); v2 = __VERIFIER_nondet_bool(); p8_c = __VERIFIER_nondet_float(); p0_l3 = __VERIFIER_nondet_bool(); p8_evt = __VERIFIER_nondet_bool(); p8_l2 = __VERIFIER_nondet_bool(); p4_evt = __VERIFIER_nondet_bool(); p1_c = __VERIFIER_nondet_float(); p9_l3 = __VERIFIER_nondet_bool(); p3_l2 = __VERIFIER_nondet_bool(); p6_l3 = __VERIFIER_nondet_bool(); p1_l3 = __VERIFIER_nondet_bool(); _diverge_delta = __VERIFIER_nondet_float(); p0_l0 = __VERIFIER_nondet_bool(); p8_l1 = __VERIFIER_nondet_bool(); p1_evt = __VERIFIER_nondet_bool(); p1_l1 = __VERIFIER_nondet_bool(); p7_l3 = __VERIFIER_nondet_bool(); p4_l2 = __VERIFIER_nondet_bool(); p1_l2 = __VERIFIER_nondet_bool(); p4_l3 = __VERIFIER_nondet_bool(); p5_c = __VERIFIER_nondet_float(); p2_c = __VERIFIER_nondet_float(); p5_evt = __VERIFIER_nondet_bool(); p0_c = __VERIFIER_nondet_float(); p5_l0 = __VERIFIER_nondet_bool(); p2_l0 = __VERIFIER_nondet_bool(); p0_evt = __VERIFIER_nondet_bool(); p5_l1 = __VERIFIER_nondet_bool(); p2_l1 = __VERIFIER_nondet_bool(); p5_l2 = __VERIFIER_nondet_bool(); p2_l2 = __VERIFIER_nondet_bool(); p5_l3 = __VERIFIER_nondet_bool(); p9_l0 = __VERIFIER_nondet_bool(); p6_l0 = __VERIFIER_nondet_bool(); p9_l1 = __VERIFIER_nondet_bool(); p3_l0 = __VERIFIER_nondet_bool(); p6_l1 = __VERIFIER_nondet_bool(); p9_l2 = __VERIFIER_nondet_bool(); p3_l1 = __VERIFIER_nondet_bool(); p6_l2 = __VERIFIER_nondet_bool(); p7_c = __VERIFIER_nondet_float(); p4_c = __VERIFIER_nondet_float(); p7_evt = __VERIFIER_nondet_bool(); p7_l0 = __VERIFIER_nondet_bool(); p4_l0 = __VERIFIER_nondet_bool(); p7_l1 = __VERIFIER_nondet_bool(); p1_l0 = __VERIFIER_nondet_bool(); p4_l1 = __VERIFIER_nondet_bool(); p7_l2 = __VERIFIER_nondet_bool(); p8_l0 = __VERIFIER_nondet_bool(); p6_c = __VERIFIER_nondet_float(); p9_c = __VERIFIER_nondet_float(); p3_c = __VERIFIER_nondet_float(); p6_evt = __VERIFIER_nondet_bool(); p9_evt = __VERIFIER_nondet_bool(); int __ok = ((((((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && (( !(p10_l0 != 0)) && ( !(p10_l1 != 0))))) && (p10_c == 0.0)) && (((p10_l3 != 0) && (( !(p10_l2 != 0)) && (( !(p10_l0 != 0)) && ( !(p10_l1 != 0))))) || ((( !(p10_l3 != 0)) && ((p10_l2 != 0) && ((p10_l0 != 0) && (p10_l1 != 0)))) || ((( !(p10_l3 != 0)) && ((p10_l2 != 0) && ((p10_l1 != 0) && ( !(p10_l0 != 0))))) || ((( !(p10_l3 != 0)) && ((p10_l2 != 0) && ((p10_l0 != 0) && ( !(p10_l1 != 0))))) || ((( !(p10_l3 != 0)) && ((p10_l2 != 0) && (( !(p10_l0 != 0)) && ( !(p10_l1 != 0))))) || ((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && ((p10_l0 != 0) && (p10_l1 != 0)))) || ((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && ((p10_l1 != 0) && ( !(p10_l0 != 0))))) || ((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && (( !(p10_l0 != 0)) && ( !(p10_l1 != 0))))) || (( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && ((p10_l0 != 0) && ( !(p10_l1 != 0)))))))))))))) && ((p10_c <= 16.0) || ( !(((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && ((p10_l0 != 0) && ( !(p10_l1 != 0))))) || (( !(p10_l3 != 0)) && ((p10_l2 != 0) && (( !(p10_l0 != 0)) && ( !(p10_l1 != 0)))))) || ((( !(p10_l3 != 0)) && ((p10_l2 != 0) && ((p10_l0 != 0) && (p10_l1 != 0)))) || ((p10_l3 != 0) && (( !(p10_l2 != 0)) && (( !(p10_l0 != 0)) && ( !(p10_l1 != 0)))))))))) && (((((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && (( !(p9_l0 != 0)) && ( !(p9_l1 != 0))))) && (p9_c == 0.0)) && (((p9_l3 != 0) && (( !(p9_l2 != 0)) && (( !(p9_l0 != 0)) && ( !(p9_l1 != 0))))) || ((( !(p9_l3 != 0)) && ((p9_l2 != 0) && ((p9_l0 != 0) && (p9_l1 != 0)))) || ((( !(p9_l3 != 0)) && ((p9_l2 != 0) && ((p9_l1 != 0) && ( !(p9_l0 != 0))))) || ((( !(p9_l3 != 0)) && ((p9_l2 != 0) && ((p9_l0 != 0) && ( !(p9_l1 != 0))))) || ((( !(p9_l3 != 0)) && ((p9_l2 != 0) && (( !(p9_l0 != 0)) && ( !(p9_l1 != 0))))) || ((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && ((p9_l0 != 0) && (p9_l1 != 0)))) || ((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && ((p9_l1 != 0) && ( !(p9_l0 != 0))))) || ((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && (( !(p9_l0 != 0)) && ( !(p9_l1 != 0))))) || (( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && ((p9_l0 != 0) && ( !(p9_l1 != 0)))))))))))))) && ((p9_c <= 16.0) || ( !(((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && ((p9_l0 != 0) && ( !(p9_l1 != 0))))) || (( !(p9_l3 != 0)) && ((p9_l2 != 0) && (( !(p9_l0 != 0)) && ( !(p9_l1 != 0)))))) || ((( !(p9_l3 != 0)) && ((p9_l2 != 0) && ((p9_l0 != 0) && (p9_l1 != 0)))) || ((p9_l3 != 0) && (( !(p9_l2 != 0)) && (( !(p9_l0 != 0)) && ( !(p9_l1 != 0)))))))))) && (((((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && (( !(p8_l0 != 0)) && ( !(p8_l1 != 0))))) && (p8_c == 0.0)) && (((p8_l3 != 0) && (( !(p8_l2 != 0)) && (( !(p8_l0 != 0)) && ( !(p8_l1 != 0))))) || ((( !(p8_l3 != 0)) && ((p8_l2 != 0) && ((p8_l0 != 0) && (p8_l1 != 0)))) || ((( !(p8_l3 != 0)) && ((p8_l2 != 0) && ((p8_l1 != 0) && ( !(p8_l0 != 0))))) || ((( !(p8_l3 != 0)) && ((p8_l2 != 0) && ((p8_l0 != 0) && ( !(p8_l1 != 0))))) || ((( !(p8_l3 != 0)) && ((p8_l2 != 0) && (( !(p8_l0 != 0)) && ( !(p8_l1 != 0))))) || ((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && ((p8_l0 != 0) && (p8_l1 != 0)))) || ((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && ((p8_l1 != 0) && ( !(p8_l0 != 0))))) || ((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && (( !(p8_l0 != 0)) && ( !(p8_l1 != 0))))) || (( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && ((p8_l0 != 0) && ( !(p8_l1 != 0)))))))))))))) && ((p8_c <= 16.0) || ( !(((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && ((p8_l0 != 0) && ( !(p8_l1 != 0))))) || (( !(p8_l3 != 0)) && ((p8_l2 != 0) && (( !(p8_l0 != 0)) && ( !(p8_l1 != 0)))))) || ((( !(p8_l3 != 0)) && ((p8_l2 != 0) && ((p8_l0 != 0) && (p8_l1 != 0)))) || ((p8_l3 != 0) && (( !(p8_l2 != 0)) && (( !(p8_l0 != 0)) && ( !(p8_l1 != 0)))))))))) && (((((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && (( !(p7_l0 != 0)) && ( !(p7_l1 != 0))))) && (p7_c == 0.0)) && (((p7_l3 != 0) && (( !(p7_l2 != 0)) && (( !(p7_l0 != 0)) && ( !(p7_l1 != 0))))) || ((( !(p7_l3 != 0)) && ((p7_l2 != 0) && ((p7_l0 != 0) && (p7_l1 != 0)))) || ((( !(p7_l3 != 0)) && ((p7_l2 != 0) && ((p7_l1 != 0) && ( !(p7_l0 != 0))))) || ((( !(p7_l3 != 0)) && ((p7_l2 != 0) && ((p7_l0 != 0) && ( !(p7_l1 != 0))))) || ((( !(p7_l3 != 0)) && ((p7_l2 != 0) && (( !(p7_l0 != 0)) && ( !(p7_l1 != 0))))) || ((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && ((p7_l0 != 0) && (p7_l1 != 0)))) || ((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && ((p7_l1 != 0) && ( !(p7_l0 != 0))))) || ((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && (( !(p7_l0 != 0)) && ( !(p7_l1 != 0))))) || (( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && ((p7_l0 != 0) && ( !(p7_l1 != 0)))))))))))))) && ((p7_c <= 16.0) || ( !(((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && ((p7_l0 != 0) && ( !(p7_l1 != 0))))) || (( !(p7_l3 != 0)) && ((p7_l2 != 0) && (( !(p7_l0 != 0)) && ( !(p7_l1 != 0)))))) || ((( !(p7_l3 != 0)) && ((p7_l2 != 0) && ((p7_l0 != 0) && (p7_l1 != 0)))) || ((p7_l3 != 0) && (( !(p7_l2 != 0)) && (( !(p7_l0 != 0)) && ( !(p7_l1 != 0)))))))))) && (((((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && (( !(p6_l0 != 0)) && ( !(p6_l1 != 0))))) && (p6_c == 0.0)) && (((p6_l3 != 0) && (( !(p6_l2 != 0)) && (( !(p6_l0 != 0)) && ( !(p6_l1 != 0))))) || ((( !(p6_l3 != 0)) && ((p6_l2 != 0) && ((p6_l0 != 0) && (p6_l1 != 0)))) || ((( !(p6_l3 != 0)) && ((p6_l2 != 0) && ((p6_l1 != 0) && ( !(p6_l0 != 0))))) || ((( !(p6_l3 != 0)) && ((p6_l2 != 0) && ((p6_l0 != 0) && ( !(p6_l1 != 0))))) || ((( !(p6_l3 != 0)) && ((p6_l2 != 0) && (( !(p6_l0 != 0)) && ( !(p6_l1 != 0))))) || ((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && ((p6_l0 != 0) && (p6_l1 != 0)))) || ((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && ((p6_l1 != 0) && ( !(p6_l0 != 0))))) || ((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && (( !(p6_l0 != 0)) && ( !(p6_l1 != 0))))) || (( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && ((p6_l0 != 0) && ( !(p6_l1 != 0)))))))))))))) && ((p6_c <= 16.0) || ( !(((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && ((p6_l0 != 0) && ( !(p6_l1 != 0))))) || (( !(p6_l3 != 0)) && ((p6_l2 != 0) && (( !(p6_l0 != 0)) && ( !(p6_l1 != 0)))))) || ((( !(p6_l3 != 0)) && ((p6_l2 != 0) && ((p6_l0 != 0) && (p6_l1 != 0)))) || ((p6_l3 != 0) && (( !(p6_l2 != 0)) && (( !(p6_l0 != 0)) && ( !(p6_l1 != 0)))))))))) && (((((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && (( !(p5_l0 != 0)) && ( !(p5_l1 != 0))))) && (p5_c == 0.0)) && (((p5_l3 != 0) && (( !(p5_l2 != 0)) && (( !(p5_l0 != 0)) && ( !(p5_l1 != 0))))) || ((( !(p5_l3 != 0)) && ((p5_l2 != 0) && ((p5_l0 != 0) && (p5_l1 != 0)))) || ((( !(p5_l3 != 0)) && ((p5_l2 != 0) && ((p5_l1 != 0) && ( !(p5_l0 != 0))))) || ((( !(p5_l3 != 0)) && ((p5_l2 != 0) && ((p5_l0 != 0) && ( !(p5_l1 != 0))))) || ((( !(p5_l3 != 0)) && ((p5_l2 != 0) && (( !(p5_l0 != 0)) && ( !(p5_l1 != 0))))) || ((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && ((p5_l0 != 0) && (p5_l1 != 0)))) || ((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && ((p5_l1 != 0) && ( !(p5_l0 != 0))))) || ((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && (( !(p5_l0 != 0)) && ( !(p5_l1 != 0))))) || (( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && ((p5_l0 != 0) && ( !(p5_l1 != 0)))))))))))))) && ((p5_c <= 16.0) || ( !(((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && ((p5_l0 != 0) && ( !(p5_l1 != 0))))) || (( !(p5_l3 != 0)) && ((p5_l2 != 0) && (( !(p5_l0 != 0)) && ( !(p5_l1 != 0)))))) || ((( !(p5_l3 != 0)) && ((p5_l2 != 0) && ((p5_l0 != 0) && (p5_l1 != 0)))) || ((p5_l3 != 0) && (( !(p5_l2 != 0)) && (( !(p5_l0 != 0)) && ( !(p5_l1 != 0)))))))))) && (((((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && (( !(p4_l0 != 0)) && ( !(p4_l1 != 0))))) && (p4_c == 0.0)) && (((p4_l3 != 0) && (( !(p4_l2 != 0)) && (( !(p4_l0 != 0)) && ( !(p4_l1 != 0))))) || ((( !(p4_l3 != 0)) && ((p4_l2 != 0) && ((p4_l0 != 0) && (p4_l1 != 0)))) || ((( !(p4_l3 != 0)) && ((p4_l2 != 0) && ((p4_l1 != 0) && ( !(p4_l0 != 0))))) || ((( !(p4_l3 != 0)) && ((p4_l2 != 0) && ((p4_l0 != 0) && ( !(p4_l1 != 0))))) || ((( !(p4_l3 != 0)) && ((p4_l2 != 0) && (( !(p4_l0 != 0)) && ( !(p4_l1 != 0))))) || ((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && ((p4_l0 != 0) && (p4_l1 != 0)))) || ((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && ((p4_l1 != 0) && ( !(p4_l0 != 0))))) || ((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && (( !(p4_l0 != 0)) && ( !(p4_l1 != 0))))) || (( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && ((p4_l0 != 0) && ( !(p4_l1 != 0)))))))))))))) && ((p4_c <= 16.0) || ( !(((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && ((p4_l0 != 0) && ( !(p4_l1 != 0))))) || (( !(p4_l3 != 0)) && ((p4_l2 != 0) && (( !(p4_l0 != 0)) && ( !(p4_l1 != 0)))))) || ((( !(p4_l3 != 0)) && ((p4_l2 != 0) && ((p4_l0 != 0) && (p4_l1 != 0)))) || ((p4_l3 != 0) && (( !(p4_l2 != 0)) && (( !(p4_l0 != 0)) && ( !(p4_l1 != 0)))))))))) && (((((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && (( !(p3_l0 != 0)) && ( !(p3_l1 != 0))))) && (p3_c == 0.0)) && (((p3_l3 != 0) && (( !(p3_l2 != 0)) && (( !(p3_l0 != 0)) && ( !(p3_l1 != 0))))) || ((( !(p3_l3 != 0)) && ((p3_l2 != 0) && ((p3_l0 != 0) && (p3_l1 != 0)))) || ((( !(p3_l3 != 0)) && ((p3_l2 != 0) && ((p3_l1 != 0) && ( !(p3_l0 != 0))))) || ((( !(p3_l3 != 0)) && ((p3_l2 != 0) && ((p3_l0 != 0) && ( !(p3_l1 != 0))))) || ((( !(p3_l3 != 0)) && ((p3_l2 != 0) && (( !(p3_l0 != 0)) && ( !(p3_l1 != 0))))) || ((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && ((p3_l0 != 0) && (p3_l1 != 0)))) || ((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && ((p3_l1 != 0) && ( !(p3_l0 != 0))))) || ((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && (( !(p3_l0 != 0)) && ( !(p3_l1 != 0))))) || (( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && ((p3_l0 != 0) && ( !(p3_l1 != 0)))))))))))))) && ((p3_c <= 16.0) || ( !(((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && ((p3_l0 != 0) && ( !(p3_l1 != 0))))) || (( !(p3_l3 != 0)) && ((p3_l2 != 0) && (( !(p3_l0 != 0)) && ( !(p3_l1 != 0)))))) || ((( !(p3_l3 != 0)) && ((p3_l2 != 0) && ((p3_l0 != 0) && (p3_l1 != 0)))) || ((p3_l3 != 0) && (( !(p3_l2 != 0)) && (( !(p3_l0 != 0)) && ( !(p3_l1 != 0)))))))))) && (((((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && (( !(p2_l0 != 0)) && ( !(p2_l1 != 0))))) && (p2_c == 0.0)) && (((p2_l3 != 0) && (( !(p2_l2 != 0)) && (( !(p2_l0 != 0)) && ( !(p2_l1 != 0))))) || ((( !(p2_l3 != 0)) && ((p2_l2 != 0) && ((p2_l0 != 0) && (p2_l1 != 0)))) || ((( !(p2_l3 != 0)) && ((p2_l2 != 0) && ((p2_l1 != 0) && ( !(p2_l0 != 0))))) || ((( !(p2_l3 != 0)) && ((p2_l2 != 0) && ((p2_l0 != 0) && ( !(p2_l1 != 0))))) || ((( !(p2_l3 != 0)) && ((p2_l2 != 0) && (( !(p2_l0 != 0)) && ( !(p2_l1 != 0))))) || ((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && ((p2_l0 != 0) && (p2_l1 != 0)))) || ((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && ((p2_l1 != 0) && ( !(p2_l0 != 0))))) || ((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && (( !(p2_l0 != 0)) && ( !(p2_l1 != 0))))) || (( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && ((p2_l0 != 0) && ( !(p2_l1 != 0)))))))))))))) && ((p2_c <= 16.0) || ( !(((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && ((p2_l0 != 0) && ( !(p2_l1 != 0))))) || (( !(p2_l3 != 0)) && ((p2_l2 != 0) && (( !(p2_l0 != 0)) && ( !(p2_l1 != 0)))))) || ((( !(p2_l3 != 0)) && ((p2_l2 != 0) && ((p2_l0 != 0) && (p2_l1 != 0)))) || ((p2_l3 != 0) && (( !(p2_l2 != 0)) && (( !(p2_l0 != 0)) && ( !(p2_l1 != 0)))))))))) && (((((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && (( !(p1_l0 != 0)) && ( !(p1_l1 != 0))))) && (p1_c == 0.0)) && (((p1_l3 != 0) && (( !(p1_l2 != 0)) && (( !(p1_l0 != 0)) && ( !(p1_l1 != 0))))) || ((( !(p1_l3 != 0)) && ((p1_l2 != 0) && ((p1_l0 != 0) && (p1_l1 != 0)))) || ((( !(p1_l3 != 0)) && ((p1_l2 != 0) && ((p1_l1 != 0) && ( !(p1_l0 != 0))))) || ((( !(p1_l3 != 0)) && ((p1_l2 != 0) && ((p1_l0 != 0) && ( !(p1_l1 != 0))))) || ((( !(p1_l3 != 0)) && ((p1_l2 != 0) && (( !(p1_l0 != 0)) && ( !(p1_l1 != 0))))) || ((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && ((p1_l0 != 0) && (p1_l1 != 0)))) || ((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && ((p1_l1 != 0) && ( !(p1_l0 != 0))))) || ((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && (( !(p1_l0 != 0)) && ( !(p1_l1 != 0))))) || (( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && ((p1_l0 != 0) && ( !(p1_l1 != 0)))))))))))))) && ((p1_c <= 16.0) || ( !(((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && ((p1_l0 != 0) && ( !(p1_l1 != 0))))) || (( !(p1_l3 != 0)) && ((p1_l2 != 0) && (( !(p1_l0 != 0)) && ( !(p1_l1 != 0)))))) || ((( !(p1_l3 != 0)) && ((p1_l2 != 0) && ((p1_l0 != 0) && (p1_l1 != 0)))) || ((p1_l3 != 0) && (( !(p1_l2 != 0)) && (( !(p1_l0 != 0)) && ( !(p1_l1 != 0)))))))))) && (((((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && (( !(p0_l0 != 0)) && ( !(p0_l1 != 0))))) && (p0_c == 0.0)) && (((p0_l3 != 0) && (( !(p0_l2 != 0)) && (( !(p0_l0 != 0)) && ( !(p0_l1 != 0))))) || ((( !(p0_l3 != 0)) && ((p0_l2 != 0) && ((p0_l0 != 0) && (p0_l1 != 0)))) || ((( !(p0_l3 != 0)) && ((p0_l2 != 0) && ((p0_l1 != 0) && ( !(p0_l0 != 0))))) || ((( !(p0_l3 != 0)) && ((p0_l2 != 0) && ((p0_l0 != 0) && ( !(p0_l1 != 0))))) || ((( !(p0_l3 != 0)) && ((p0_l2 != 0) && (( !(p0_l0 != 0)) && ( !(p0_l1 != 0))))) || ((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && ((p0_l0 != 0) && (p0_l1 != 0)))) || ((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && ((p0_l1 != 0) && ( !(p0_l0 != 0))))) || ((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && (( !(p0_l0 != 0)) && ( !(p0_l1 != 0))))) || (( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && ((p0_l0 != 0) && ( !(p0_l1 != 0)))))))))))))) && ((p0_c <= 16.0) || ( !(((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && ((p0_l0 != 0) && ( !(p0_l1 != 0))))) || (( !(p0_l3 != 0)) && ((p0_l2 != 0) && (( !(p0_l0 != 0)) && ( !(p0_l1 != 0)))))) || ((( !(p0_l3 != 0)) && ((p0_l2 != 0) && ((p0_l0 != 0) && (p0_l1 != 0)))) || ((p0_l3 != 0) && (( !(p0_l2 != 0)) && (( !(p0_l0 != 0)) && ( !(p0_l1 != 0)))))))))) && ((0.0 <= delta) && ((v1 == 11) || ((v1 == 10) || ((v1 == 9) || ((v1 == 8) || ((v1 == 7) || ((v1 == 6) || ((v1 == 5) || ((v1 == 4) || ((v1 == 3) || ((v1 == 2) || ((v1 == 0) || (v1 == 1)))))))))))))))))))))))) && (delta == _diverge_delta)); while (__ok) { _x_p10_l3 = __VERIFIER_nondet_bool(); _x_p10_l2 = __VERIFIER_nondet_bool(); _x_p10_l1 = __VERIFIER_nondet_bool(); _x_p10_l0 = __VERIFIER_nondet_bool(); _x_p10_evt = __VERIFIER_nondet_bool(); _x_p10_c = __VERIFIER_nondet_float(); _x_p3_l3 = __VERIFIER_nondet_bool(); _x_p3_evt = __VERIFIER_nondet_bool(); _x_p0_l2 = __VERIFIER_nondet_bool(); _x_p8_l3 = __VERIFIER_nondet_bool(); _x_p0_l1 = __VERIFIER_nondet_bool(); _x_p2_l3 = __VERIFIER_nondet_bool(); _x_p2_evt = __VERIFIER_nondet_bool(); _x_delta = __VERIFIER_nondet_float(); _x_v1 = __VERIFIER_nondet_int(); _x_v2 = __VERIFIER_nondet_bool(); _x_p8_c = __VERIFIER_nondet_float(); _x_p0_l3 = __VERIFIER_nondet_bool(); _x_p8_evt = __VERIFIER_nondet_bool(); _x_p8_l2 = __VERIFIER_nondet_bool(); _x_p4_evt = __VERIFIER_nondet_bool(); _x_p1_c = __VERIFIER_nondet_float(); _x_p9_l3 = __VERIFIER_nondet_bool(); _x_p3_l2 = __VERIFIER_nondet_bool(); _x_p6_l3 = __VERIFIER_nondet_bool(); _x_p1_l3 = __VERIFIER_nondet_bool(); _x__diverge_delta = __VERIFIER_nondet_float(); _x_p0_l0 = __VERIFIER_nondet_bool(); _x_p8_l1 = __VERIFIER_nondet_bool(); _x_p1_evt = __VERIFIER_nondet_bool(); _x_p1_l1 = __VERIFIER_nondet_bool(); _x_p7_l3 = __VERIFIER_nondet_bool(); _x_p4_l2 = __VERIFIER_nondet_bool(); _x_p1_l2 = __VERIFIER_nondet_bool(); _x_p4_l3 = __VERIFIER_nondet_bool(); _x_p5_c = __VERIFIER_nondet_float(); _x_p2_c = __VERIFIER_nondet_float(); _x_p5_evt = __VERIFIER_nondet_bool(); _x_p0_c = __VERIFIER_nondet_float(); _x_p5_l0 = __VERIFIER_nondet_bool(); _x_p2_l0 = __VERIFIER_nondet_bool(); _x_p0_evt = __VERIFIER_nondet_bool(); _x_p5_l1 = __VERIFIER_nondet_bool(); _x_p2_l1 = __VERIFIER_nondet_bool(); _x_p5_l2 = __VERIFIER_nondet_bool(); _x_p2_l2 = __VERIFIER_nondet_bool(); _x_p5_l3 = __VERIFIER_nondet_bool(); _x_p9_l0 = __VERIFIER_nondet_bool(); _x_p6_l0 = __VERIFIER_nondet_bool(); _x_p9_l1 = __VERIFIER_nondet_bool(); _x_p3_l0 = __VERIFIER_nondet_bool(); _x_p6_l1 = __VERIFIER_nondet_bool(); _x_p9_l2 = __VERIFIER_nondet_bool(); _x_p3_l1 = __VERIFIER_nondet_bool(); _x_p6_l2 = __VERIFIER_nondet_bool(); _x_p7_c = __VERIFIER_nondet_float(); _x_p4_c = __VERIFIER_nondet_float(); _x_p7_evt = __VERIFIER_nondet_bool(); _x_p7_l0 = __VERIFIER_nondet_bool(); _x_p4_l0 = __VERIFIER_nondet_bool(); _x_p7_l1 = __VERIFIER_nondet_bool(); _x_p1_l0 = __VERIFIER_nondet_bool(); _x_p4_l1 = __VERIFIER_nondet_bool(); _x_p7_l2 = __VERIFIER_nondet_bool(); _x_p8_l0 = __VERIFIER_nondet_bool(); _x_p6_c = __VERIFIER_nondet_float(); _x_p9_c = __VERIFIER_nondet_float(); _x_p3_c = __VERIFIER_nondet_float(); _x_p6_evt = __VERIFIER_nondet_bool(); _x_p9_evt = __VERIFIER_nondet_bool(); __ok = ((((((((((((((((((((((((_x_p10_l3 != 0) && (( !(_x_p10_l2 != 0)) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0))))) || ((( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && ((_x_p10_l0 != 0) && (_x_p10_l1 != 0)))) || ((( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && ((_x_p10_l1 != 0) && ( !(_x_p10_l0 != 0))))) || ((( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && ((_x_p10_l0 != 0) && ( !(_x_p10_l1 != 0))))) || ((( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0))))) || ((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && ((_x_p10_l0 != 0) && (_x_p10_l1 != 0)))) || ((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && ((_x_p10_l1 != 0) && ( !(_x_p10_l0 != 0))))) || ((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0))))) || (( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && ((_x_p10_l0 != 0) && ( !(_x_p10_l1 != 0))))))))))))) && ((_x_p10_c <= 16.0) || ( !(((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && ((_x_p10_l0 != 0) && ( !(_x_p10_l1 != 0))))) || (( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0)))))) || ((( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && ((_x_p10_l0 != 0) && (_x_p10_l1 != 0)))) || ((_x_p10_l3 != 0) && (( !(_x_p10_l2 != 0)) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0)))))))))) && ((delta <= 0.0) || ((((((p10_l0 != 0) == (_x_p10_l0 != 0)) && ((p10_l1 != 0) == (_x_p10_l1 != 0))) && ((p10_l2 != 0) == (_x_p10_l2 != 0))) && ((p10_l3 != 0) == (_x_p10_l3 != 0))) && ((delta + (p10_c + (-1.0 * _x_p10_c))) == 0.0)))) && ((p10_evt != 0) || ((((((p10_l0 != 0) == (_x_p10_l0 != 0)) && ((p10_l1 != 0) == (_x_p10_l1 != 0))) && ((p10_l2 != 0) == (_x_p10_l2 != 0))) && ((p10_l3 != 0) == (_x_p10_l3 != 0))) && ((delta + (p10_c + (-1.0 * _x_p10_c))) == 0.0)))) && (((v1 == _x_v1) && (((v1 == 0) && (( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && ((_x_p10_l0 != 0) && ( !(_x_p10_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (_x_p10_c == 0.0)))) || ( !((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && (( !(p10_l0 != 0)) && ( !(p10_l1 != 0))))) && ((delta == 0.0) && (p10_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (_x_p10_c == 0.0)) && ((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && ((_x_p10_l1 != 0) && ( !(_x_p10_l0 != 0))))) && (_x_v1 == 11))) || ( !((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && ((p10_l0 != 0) && ( !(p10_l1 != 0))))) && ((delta == 0.0) && (p10_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && (((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0))))) || (( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && ((_x_p10_l0 != 0) && (_x_p10_l1 != 0))))) && (p10_c == _x_p10_c))) || ( !((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && ((p10_l1 != 0) && ( !(p10_l0 != 0))))) && ((delta == 0.0) && (p10_evt != 0)))))) && (( !(v1 == 11)) || ( !((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0))))) && ((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && ((p10_l1 != 0) && ( !(p10_l0 != 0))))) && ((delta == 0.0) && (p10_evt != 0))))))) && (((v1 == 11) && ( !(p10_c <= 16.0))) || ( !((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && ((_x_p10_l0 != 0) && (_x_p10_l1 != 0)))) && ((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && ((p10_l1 != 0) && ( !(p10_l0 != 0))))) && ((delta == 0.0) && (p10_evt != 0))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0))))) || (( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0))))))) || ( !((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && ((p10_l0 != 0) && (p10_l1 != 0)))) && ((delta == 0.0) && (p10_evt != 0)))))) && (((v2 != 0) && (p10_c == _x_p10_c)) || ( !(((delta == 0.0) && (p10_evt != 0)) && ((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0))))) && (( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && ((p10_l0 != 0) && (p10_l1 != 0))))))))) && ((( !(v2 != 0)) && (_x_p10_c == 0.0)) || ( !(((delta == 0.0) && (p10_evt != 0)) && ((( !(p10_l3 != 0)) && (( !(p10_l2 != 0)) && ((p10_l0 != 0) && (p10_l1 != 0)))) && (( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0)))))))))) && ((((_x_v2 != 0) && (( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && ((_x_p10_l0 != 0) && ( !(_x_p10_l1 != 0)))))) && ((v1 == _x_v1) && (_x_p10_c == 0.0))) || ( !((( !(p10_l3 != 0)) && ((p10_l2 != 0) && (( !(p10_l0 != 0)) && ( !(p10_l1 != 0))))) && ((delta == 0.0) && (p10_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((p10_c == _x_p10_c) && ((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0))))) || (( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && ((_x_p10_l1 != 0) && ( !(_x_p10_l0 != 0)))))))) || ( !((( !(p10_l3 != 0)) && ((p10_l2 != 0) && ((p10_l0 != 0) && ( !(p10_l1 != 0))))) && ((delta == 0.0) && (p10_evt != 0)))))) && (( !(v1 == 11)) || ( !(((delta == 0.0) && (p10_evt != 0)) && ((( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0))))) && (( !(p10_l3 != 0)) && ((p10_l2 != 0) && ((p10_l0 != 0) && ( !(p10_l1 != 0)))))))))) && ((v1 == 11) || ( !(((delta == 0.0) && (p10_evt != 0)) && ((( !(p10_l3 != 0)) && ((p10_l2 != 0) && ((p10_l0 != 0) && ( !(p10_l1 != 0))))) && (( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && ((_x_p10_l1 != 0) && ( !(_x_p10_l0 != 0)))))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p10_l3 != 0)) && ((_x_p10_l2 != 0) && ((_x_p10_l0 != 0) && (_x_p10_l1 != 0)))) && (_x_p10_c == 0.0))) || ( !((( !(p10_l3 != 0)) && ((p10_l2 != 0) && ((p10_l1 != 0) && ( !(p10_l0 != 0))))) && ((delta == 0.0) && (p10_evt != 0)))))) && ((((v1 == _x_v1) && (_x_p10_c == 0.0)) && (( !(_x_v2 != 0)) && ((_x_p10_l3 != 0) && (( !(_x_p10_l2 != 0)) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0))))))) || ( !((( !(p10_l3 != 0)) && ((p10_l2 != 0) && ((p10_l0 != 0) && (p10_l1 != 0)))) && ((delta == 0.0) && (p10_evt != 0)))))) && ((((_x_v1 == 0) && (( !(_x_p10_l3 != 0)) && (( !(_x_p10_l2 != 0)) && (( !(_x_p10_l0 != 0)) && ( !(_x_p10_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (p10_c == _x_p10_c))) || ( !(((p10_l3 != 0) && (( !(p10_l2 != 0)) && (( !(p10_l0 != 0)) && ( !(p10_l1 != 0))))) && ((delta == 0.0) && (p10_evt != 0)))))) && ((((((((((((((((((((((_x_p9_l3 != 0) && (( !(_x_p9_l2 != 0)) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0))))) || ((( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && ((_x_p9_l0 != 0) && (_x_p9_l1 != 0)))) || ((( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && ((_x_p9_l1 != 0) && ( !(_x_p9_l0 != 0))))) || ((( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && ((_x_p9_l0 != 0) && ( !(_x_p9_l1 != 0))))) || ((( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0))))) || ((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && ((_x_p9_l0 != 0) && (_x_p9_l1 != 0)))) || ((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && ((_x_p9_l1 != 0) && ( !(_x_p9_l0 != 0))))) || ((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0))))) || (( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && ((_x_p9_l0 != 0) && ( !(_x_p9_l1 != 0))))))))))))) && ((_x_p9_c <= 16.0) || ( !(((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && ((_x_p9_l0 != 0) && ( !(_x_p9_l1 != 0))))) || (( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0)))))) || ((( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && ((_x_p9_l0 != 0) && (_x_p9_l1 != 0)))) || ((_x_p9_l3 != 0) && (( !(_x_p9_l2 != 0)) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0)))))))))) && ((delta <= 0.0) || ((((((p9_l0 != 0) == (_x_p9_l0 != 0)) && ((p9_l1 != 0) == (_x_p9_l1 != 0))) && ((p9_l2 != 0) == (_x_p9_l2 != 0))) && ((p9_l3 != 0) == (_x_p9_l3 != 0))) && ((delta + (p9_c + (-1.0 * _x_p9_c))) == 0.0)))) && ((p9_evt != 0) || ((((((p9_l0 != 0) == (_x_p9_l0 != 0)) && ((p9_l1 != 0) == (_x_p9_l1 != 0))) && ((p9_l2 != 0) == (_x_p9_l2 != 0))) && ((p9_l3 != 0) == (_x_p9_l3 != 0))) && ((delta + (p9_c + (-1.0 * _x_p9_c))) == 0.0)))) && (((v1 == _x_v1) && (((v1 == 0) && (( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && ((_x_p9_l0 != 0) && ( !(_x_p9_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (_x_p9_c == 0.0)))) || ( !((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && (( !(p9_l0 != 0)) && ( !(p9_l1 != 0))))) && ((delta == 0.0) && (p9_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (_x_p9_c == 0.0)) && ((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && ((_x_p9_l1 != 0) && ( !(_x_p9_l0 != 0))))) && (_x_v1 == 10))) || ( !((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && ((p9_l0 != 0) && ( !(p9_l1 != 0))))) && ((delta == 0.0) && (p9_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && (((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0))))) || (( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && ((_x_p9_l0 != 0) && (_x_p9_l1 != 0))))) && (p9_c == _x_p9_c))) || ( !((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && ((p9_l1 != 0) && ( !(p9_l0 != 0))))) && ((delta == 0.0) && (p9_evt != 0)))))) && (( !(v1 == 10)) || ( !((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0))))) && ((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && ((p9_l1 != 0) && ( !(p9_l0 != 0))))) && ((delta == 0.0) && (p9_evt != 0))))))) && (((v1 == 10) && ( !(p9_c <= 16.0))) || ( !((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && ((_x_p9_l0 != 0) && (_x_p9_l1 != 0)))) && ((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && ((p9_l1 != 0) && ( !(p9_l0 != 0))))) && ((delta == 0.0) && (p9_evt != 0))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0))))) || (( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0))))))) || ( !((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && ((p9_l0 != 0) && (p9_l1 != 0)))) && ((delta == 0.0) && (p9_evt != 0)))))) && (((v2 != 0) && (p9_c == _x_p9_c)) || ( !(((delta == 0.0) && (p9_evt != 0)) && ((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0))))) && (( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && ((p9_l0 != 0) && (p9_l1 != 0))))))))) && ((( !(v2 != 0)) && (_x_p9_c == 0.0)) || ( !(((delta == 0.0) && (p9_evt != 0)) && ((( !(p9_l3 != 0)) && (( !(p9_l2 != 0)) && ((p9_l0 != 0) && (p9_l1 != 0)))) && (( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0)))))))))) && ((((_x_v2 != 0) && (( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && ((_x_p9_l0 != 0) && ( !(_x_p9_l1 != 0)))))) && ((v1 == _x_v1) && (_x_p9_c == 0.0))) || ( !((( !(p9_l3 != 0)) && ((p9_l2 != 0) && (( !(p9_l0 != 0)) && ( !(p9_l1 != 0))))) && ((delta == 0.0) && (p9_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((p9_c == _x_p9_c) && ((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0))))) || (( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && ((_x_p9_l1 != 0) && ( !(_x_p9_l0 != 0)))))))) || ( !((( !(p9_l3 != 0)) && ((p9_l2 != 0) && ((p9_l0 != 0) && ( !(p9_l1 != 0))))) && ((delta == 0.0) && (p9_evt != 0)))))) && (( !(v1 == 10)) || ( !(((delta == 0.0) && (p9_evt != 0)) && ((( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0))))) && (( !(p9_l3 != 0)) && ((p9_l2 != 0) && ((p9_l0 != 0) && ( !(p9_l1 != 0)))))))))) && ((v1 == 10) || ( !(((delta == 0.0) && (p9_evt != 0)) && ((( !(p9_l3 != 0)) && ((p9_l2 != 0) && ((p9_l0 != 0) && ( !(p9_l1 != 0))))) && (( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && ((_x_p9_l1 != 0) && ( !(_x_p9_l0 != 0)))))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p9_l3 != 0)) && ((_x_p9_l2 != 0) && ((_x_p9_l0 != 0) && (_x_p9_l1 != 0)))) && (_x_p9_c == 0.0))) || ( !((( !(p9_l3 != 0)) && ((p9_l2 != 0) && ((p9_l1 != 0) && ( !(p9_l0 != 0))))) && ((delta == 0.0) && (p9_evt != 0)))))) && ((((v1 == _x_v1) && (_x_p9_c == 0.0)) && (( !(_x_v2 != 0)) && ((_x_p9_l3 != 0) && (( !(_x_p9_l2 != 0)) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0))))))) || ( !((( !(p9_l3 != 0)) && ((p9_l2 != 0) && ((p9_l0 != 0) && (p9_l1 != 0)))) && ((delta == 0.0) && (p9_evt != 0)))))) && ((((_x_v1 == 0) && (( !(_x_p9_l3 != 0)) && (( !(_x_p9_l2 != 0)) && (( !(_x_p9_l0 != 0)) && ( !(_x_p9_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (p9_c == _x_p9_c))) || ( !(((p9_l3 != 0) && (( !(p9_l2 != 0)) && (( !(p9_l0 != 0)) && ( !(p9_l1 != 0))))) && ((delta == 0.0) && (p9_evt != 0)))))) && ((((((((((((((((((((((_x_p8_l3 != 0) && (( !(_x_p8_l2 != 0)) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))))) || ((( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && ((_x_p8_l0 != 0) && (_x_p8_l1 != 0)))) || ((( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && ((_x_p8_l1 != 0) && ( !(_x_p8_l0 != 0))))) || ((( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && ((_x_p8_l0 != 0) && ( !(_x_p8_l1 != 0))))) || ((( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))))) || ((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && ((_x_p8_l0 != 0) && (_x_p8_l1 != 0)))) || ((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && ((_x_p8_l1 != 0) && ( !(_x_p8_l0 != 0))))) || ((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))))) || (( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && ((_x_p8_l0 != 0) && ( !(_x_p8_l1 != 0))))))))))))) && ((_x_p8_c <= 16.0) || ( !(((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && ((_x_p8_l0 != 0) && ( !(_x_p8_l1 != 0))))) || (( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0)))))) || ((( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && ((_x_p8_l0 != 0) && (_x_p8_l1 != 0)))) || ((_x_p8_l3 != 0) && (( !(_x_p8_l2 != 0)) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0)))))))))) && ((delta <= 0.0) || ((((((p8_l0 != 0) == (_x_p8_l0 != 0)) && ((p8_l1 != 0) == (_x_p8_l1 != 0))) && ((p8_l2 != 0) == (_x_p8_l2 != 0))) && ((p8_l3 != 0) == (_x_p8_l3 != 0))) && ((delta + (p8_c + (-1.0 * _x_p8_c))) == 0.0)))) && ((p8_evt != 0) || ((((((p8_l0 != 0) == (_x_p8_l0 != 0)) && ((p8_l1 != 0) == (_x_p8_l1 != 0))) && ((p8_l2 != 0) == (_x_p8_l2 != 0))) && ((p8_l3 != 0) == (_x_p8_l3 != 0))) && ((delta + (p8_c + (-1.0 * _x_p8_c))) == 0.0)))) && (((v1 == _x_v1) && (((v1 == 0) && (( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && ((_x_p8_l0 != 0) && ( !(_x_p8_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (_x_p8_c == 0.0)))) || ( !((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && (( !(p8_l0 != 0)) && ( !(p8_l1 != 0))))) && ((delta == 0.0) && (p8_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (_x_p8_c == 0.0)) && ((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && ((_x_p8_l1 != 0) && ( !(_x_p8_l0 != 0))))) && (_x_v1 == 9))) || ( !((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && ((p8_l0 != 0) && ( !(p8_l1 != 0))))) && ((delta == 0.0) && (p8_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && (((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))))) || (( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && ((_x_p8_l0 != 0) && (_x_p8_l1 != 0))))) && (p8_c == _x_p8_c))) || ( !((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && ((p8_l1 != 0) && ( !(p8_l0 != 0))))) && ((delta == 0.0) && (p8_evt != 0)))))) && (( !(v1 == 9)) || ( !((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))))) && ((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && ((p8_l1 != 0) && ( !(p8_l0 != 0))))) && ((delta == 0.0) && (p8_evt != 0))))))) && (((v1 == 9) && ( !(p8_c <= 16.0))) || ( !((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && ((_x_p8_l0 != 0) && (_x_p8_l1 != 0)))) && ((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && ((p8_l1 != 0) && ( !(p8_l0 != 0))))) && ((delta == 0.0) && (p8_evt != 0))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))))) || (( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))))))) || ( !((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && ((p8_l0 != 0) && (p8_l1 != 0)))) && ((delta == 0.0) && (p8_evt != 0)))))) && (((v2 != 0) && (p8_c == _x_p8_c)) || ( !(((delta == 0.0) && (p8_evt != 0)) && ((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))))) && (( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && ((p8_l0 != 0) && (p8_l1 != 0))))))))) && ((( !(v2 != 0)) && (_x_p8_c == 0.0)) || ( !(((delta == 0.0) && (p8_evt != 0)) && ((( !(p8_l3 != 0)) && (( !(p8_l2 != 0)) && ((p8_l0 != 0) && (p8_l1 != 0)))) && (( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0)))))))))) && ((((_x_v2 != 0) && (( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && ((_x_p8_l0 != 0) && ( !(_x_p8_l1 != 0)))))) && ((v1 == _x_v1) && (_x_p8_c == 0.0))) || ( !((( !(p8_l3 != 0)) && ((p8_l2 != 0) && (( !(p8_l0 != 0)) && ( !(p8_l1 != 0))))) && ((delta == 0.0) && (p8_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((p8_c == _x_p8_c) && ((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))))) || (( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && ((_x_p8_l1 != 0) && ( !(_x_p8_l0 != 0)))))))) || ( !((( !(p8_l3 != 0)) && ((p8_l2 != 0) && ((p8_l0 != 0) && ( !(p8_l1 != 0))))) && ((delta == 0.0) && (p8_evt != 0)))))) && (( !(v1 == 9)) || ( !(((delta == 0.0) && (p8_evt != 0)) && ((( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))))) && (( !(p8_l3 != 0)) && ((p8_l2 != 0) && ((p8_l0 != 0) && ( !(p8_l1 != 0)))))))))) && ((v1 == 9) || ( !(((delta == 0.0) && (p8_evt != 0)) && ((( !(p8_l3 != 0)) && ((p8_l2 != 0) && ((p8_l0 != 0) && ( !(p8_l1 != 0))))) && (( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && ((_x_p8_l1 != 0) && ( !(_x_p8_l0 != 0)))))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p8_l3 != 0)) && ((_x_p8_l2 != 0) && ((_x_p8_l0 != 0) && (_x_p8_l1 != 0)))) && (_x_p8_c == 0.0))) || ( !((( !(p8_l3 != 0)) && ((p8_l2 != 0) && ((p8_l1 != 0) && ( !(p8_l0 != 0))))) && ((delta == 0.0) && (p8_evt != 0)))))) && ((((v1 == _x_v1) && (_x_p8_c == 0.0)) && (( !(_x_v2 != 0)) && ((_x_p8_l3 != 0) && (( !(_x_p8_l2 != 0)) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))))))) || ( !((( !(p8_l3 != 0)) && ((p8_l2 != 0) && ((p8_l0 != 0) && (p8_l1 != 0)))) && ((delta == 0.0) && (p8_evt != 0)))))) && ((((_x_v1 == 0) && (( !(_x_p8_l3 != 0)) && (( !(_x_p8_l2 != 0)) && (( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (p8_c == _x_p8_c))) || ( !(((p8_l3 != 0) && (( !(p8_l2 != 0)) && (( !(p8_l0 != 0)) && ( !(p8_l1 != 0))))) && ((delta == 0.0) && (p8_evt != 0)))))) && ((((((((((((((((((((((_x_p7_l3 != 0) && (( !(_x_p7_l2 != 0)) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))))) || ((( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && ((_x_p7_l0 != 0) && (_x_p7_l1 != 0)))) || ((( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && ((_x_p7_l1 != 0) && ( !(_x_p7_l0 != 0))))) || ((( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && ((_x_p7_l0 != 0) && ( !(_x_p7_l1 != 0))))) || ((( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))))) || ((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && ((_x_p7_l0 != 0) && (_x_p7_l1 != 0)))) || ((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && ((_x_p7_l1 != 0) && ( !(_x_p7_l0 != 0))))) || ((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))))) || (( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && ((_x_p7_l0 != 0) && ( !(_x_p7_l1 != 0))))))))))))) && ((_x_p7_c <= 16.0) || ( !(((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && ((_x_p7_l0 != 0) && ( !(_x_p7_l1 != 0))))) || (( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0)))))) || ((( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && ((_x_p7_l0 != 0) && (_x_p7_l1 != 0)))) || ((_x_p7_l3 != 0) && (( !(_x_p7_l2 != 0)) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0)))))))))) && ((delta <= 0.0) || ((((((p7_l0 != 0) == (_x_p7_l0 != 0)) && ((p7_l1 != 0) == (_x_p7_l1 != 0))) && ((p7_l2 != 0) == (_x_p7_l2 != 0))) && ((p7_l3 != 0) == (_x_p7_l3 != 0))) && ((delta + (p7_c + (-1.0 * _x_p7_c))) == 0.0)))) && ((p7_evt != 0) || ((((((p7_l0 != 0) == (_x_p7_l0 != 0)) && ((p7_l1 != 0) == (_x_p7_l1 != 0))) && ((p7_l2 != 0) == (_x_p7_l2 != 0))) && ((p7_l3 != 0) == (_x_p7_l3 != 0))) && ((delta + (p7_c + (-1.0 * _x_p7_c))) == 0.0)))) && (((v1 == _x_v1) && (((v1 == 0) && (( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && ((_x_p7_l0 != 0) && ( !(_x_p7_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (_x_p7_c == 0.0)))) || ( !((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && (( !(p7_l0 != 0)) && ( !(p7_l1 != 0))))) && ((delta == 0.0) && (p7_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (_x_p7_c == 0.0)) && ((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && ((_x_p7_l1 != 0) && ( !(_x_p7_l0 != 0))))) && (_x_v1 == 8))) || ( !((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && ((p7_l0 != 0) && ( !(p7_l1 != 0))))) && ((delta == 0.0) && (p7_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && (((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))))) || (( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && ((_x_p7_l0 != 0) && (_x_p7_l1 != 0))))) && (p7_c == _x_p7_c))) || ( !((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && ((p7_l1 != 0) && ( !(p7_l0 != 0))))) && ((delta == 0.0) && (p7_evt != 0)))))) && (( !(v1 == 8)) || ( !((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))))) && ((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && ((p7_l1 != 0) && ( !(p7_l0 != 0))))) && ((delta == 0.0) && (p7_evt != 0))))))) && (((v1 == 8) && ( !(p7_c <= 16.0))) || ( !((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && ((_x_p7_l0 != 0) && (_x_p7_l1 != 0)))) && ((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && ((p7_l1 != 0) && ( !(p7_l0 != 0))))) && ((delta == 0.0) && (p7_evt != 0))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))))) || (( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))))))) || ( !((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && ((p7_l0 != 0) && (p7_l1 != 0)))) && ((delta == 0.0) && (p7_evt != 0)))))) && (((v2 != 0) && (p7_c == _x_p7_c)) || ( !(((delta == 0.0) && (p7_evt != 0)) && ((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))))) && (( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && ((p7_l0 != 0) && (p7_l1 != 0))))))))) && ((( !(v2 != 0)) && (_x_p7_c == 0.0)) || ( !(((delta == 0.0) && (p7_evt != 0)) && ((( !(p7_l3 != 0)) && (( !(p7_l2 != 0)) && ((p7_l0 != 0) && (p7_l1 != 0)))) && (( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0)))))))))) && ((((_x_v2 != 0) && (( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && ((_x_p7_l0 != 0) && ( !(_x_p7_l1 != 0)))))) && ((v1 == _x_v1) && (_x_p7_c == 0.0))) || ( !((( !(p7_l3 != 0)) && ((p7_l2 != 0) && (( !(p7_l0 != 0)) && ( !(p7_l1 != 0))))) && ((delta == 0.0) && (p7_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((p7_c == _x_p7_c) && ((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))))) || (( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && ((_x_p7_l1 != 0) && ( !(_x_p7_l0 != 0)))))))) || ( !((( !(p7_l3 != 0)) && ((p7_l2 != 0) && ((p7_l0 != 0) && ( !(p7_l1 != 0))))) && ((delta == 0.0) && (p7_evt != 0)))))) && (( !(v1 == 8)) || ( !(((delta == 0.0) && (p7_evt != 0)) && ((( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))))) && (( !(p7_l3 != 0)) && ((p7_l2 != 0) && ((p7_l0 != 0) && ( !(p7_l1 != 0)))))))))) && ((v1 == 8) || ( !(((delta == 0.0) && (p7_evt != 0)) && ((( !(p7_l3 != 0)) && ((p7_l2 != 0) && ((p7_l0 != 0) && ( !(p7_l1 != 0))))) && (( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && ((_x_p7_l1 != 0) && ( !(_x_p7_l0 != 0)))))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p7_l3 != 0)) && ((_x_p7_l2 != 0) && ((_x_p7_l0 != 0) && (_x_p7_l1 != 0)))) && (_x_p7_c == 0.0))) || ( !((( !(p7_l3 != 0)) && ((p7_l2 != 0) && ((p7_l1 != 0) && ( !(p7_l0 != 0))))) && ((delta == 0.0) && (p7_evt != 0)))))) && ((((v1 == _x_v1) && (_x_p7_c == 0.0)) && (( !(_x_v2 != 0)) && ((_x_p7_l3 != 0) && (( !(_x_p7_l2 != 0)) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))))))) || ( !((( !(p7_l3 != 0)) && ((p7_l2 != 0) && ((p7_l0 != 0) && (p7_l1 != 0)))) && ((delta == 0.0) && (p7_evt != 0)))))) && ((((_x_v1 == 0) && (( !(_x_p7_l3 != 0)) && (( !(_x_p7_l2 != 0)) && (( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (p7_c == _x_p7_c))) || ( !(((p7_l3 != 0) && (( !(p7_l2 != 0)) && (( !(p7_l0 != 0)) && ( !(p7_l1 != 0))))) && ((delta == 0.0) && (p7_evt != 0)))))) && ((((((((((((((((((((((_x_p6_l3 != 0) && (( !(_x_p6_l2 != 0)) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))))) || ((( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && ((_x_p6_l0 != 0) && (_x_p6_l1 != 0)))) || ((( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && ((_x_p6_l1 != 0) && ( !(_x_p6_l0 != 0))))) || ((( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && ((_x_p6_l0 != 0) && ( !(_x_p6_l1 != 0))))) || ((( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))))) || ((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && ((_x_p6_l0 != 0) && (_x_p6_l1 != 0)))) || ((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && ((_x_p6_l1 != 0) && ( !(_x_p6_l0 != 0))))) || ((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))))) || (( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && ((_x_p6_l0 != 0) && ( !(_x_p6_l1 != 0))))))))))))) && ((_x_p6_c <= 16.0) || ( !(((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && ((_x_p6_l0 != 0) && ( !(_x_p6_l1 != 0))))) || (( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0)))))) || ((( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && ((_x_p6_l0 != 0) && (_x_p6_l1 != 0)))) || ((_x_p6_l3 != 0) && (( !(_x_p6_l2 != 0)) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0)))))))))) && ((delta <= 0.0) || ((((((p6_l0 != 0) == (_x_p6_l0 != 0)) && ((p6_l1 != 0) == (_x_p6_l1 != 0))) && ((p6_l2 != 0) == (_x_p6_l2 != 0))) && ((p6_l3 != 0) == (_x_p6_l3 != 0))) && ((delta + (p6_c + (-1.0 * _x_p6_c))) == 0.0)))) && ((p6_evt != 0) || ((((((p6_l0 != 0) == (_x_p6_l0 != 0)) && ((p6_l1 != 0) == (_x_p6_l1 != 0))) && ((p6_l2 != 0) == (_x_p6_l2 != 0))) && ((p6_l3 != 0) == (_x_p6_l3 != 0))) && ((delta + (p6_c + (-1.0 * _x_p6_c))) == 0.0)))) && (((v1 == _x_v1) && (((v1 == 0) && (( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && ((_x_p6_l0 != 0) && ( !(_x_p6_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (_x_p6_c == 0.0)))) || ( !((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && (( !(p6_l0 != 0)) && ( !(p6_l1 != 0))))) && ((delta == 0.0) && (p6_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (_x_p6_c == 0.0)) && ((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && ((_x_p6_l1 != 0) && ( !(_x_p6_l0 != 0))))) && (_x_v1 == 7))) || ( !((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && ((p6_l0 != 0) && ( !(p6_l1 != 0))))) && ((delta == 0.0) && (p6_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && (((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))))) || (( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && ((_x_p6_l0 != 0) && (_x_p6_l1 != 0))))) && (p6_c == _x_p6_c))) || ( !((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && ((p6_l1 != 0) && ( !(p6_l0 != 0))))) && ((delta == 0.0) && (p6_evt != 0)))))) && (( !(v1 == 7)) || ( !((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))))) && ((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && ((p6_l1 != 0) && ( !(p6_l0 != 0))))) && ((delta == 0.0) && (p6_evt != 0))))))) && (((v1 == 7) && ( !(p6_c <= 16.0))) || ( !((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && ((_x_p6_l0 != 0) && (_x_p6_l1 != 0)))) && ((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && ((p6_l1 != 0) && ( !(p6_l0 != 0))))) && ((delta == 0.0) && (p6_evt != 0))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))))) || (( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))))))) || ( !((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && ((p6_l0 != 0) && (p6_l1 != 0)))) && ((delta == 0.0) && (p6_evt != 0)))))) && (((v2 != 0) && (p6_c == _x_p6_c)) || ( !(((delta == 0.0) && (p6_evt != 0)) && ((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))))) && (( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && ((p6_l0 != 0) && (p6_l1 != 0))))))))) && ((( !(v2 != 0)) && (_x_p6_c == 0.0)) || ( !(((delta == 0.0) && (p6_evt != 0)) && ((( !(p6_l3 != 0)) && (( !(p6_l2 != 0)) && ((p6_l0 != 0) && (p6_l1 != 0)))) && (( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0)))))))))) && ((((_x_v2 != 0) && (( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && ((_x_p6_l0 != 0) && ( !(_x_p6_l1 != 0)))))) && ((v1 == _x_v1) && (_x_p6_c == 0.0))) || ( !((( !(p6_l3 != 0)) && ((p6_l2 != 0) && (( !(p6_l0 != 0)) && ( !(p6_l1 != 0))))) && ((delta == 0.0) && (p6_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((p6_c == _x_p6_c) && ((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))))) || (( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && ((_x_p6_l1 != 0) && ( !(_x_p6_l0 != 0)))))))) || ( !((( !(p6_l3 != 0)) && ((p6_l2 != 0) && ((p6_l0 != 0) && ( !(p6_l1 != 0))))) && ((delta == 0.0) && (p6_evt != 0)))))) && (( !(v1 == 7)) || ( !(((delta == 0.0) && (p6_evt != 0)) && ((( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))))) && (( !(p6_l3 != 0)) && ((p6_l2 != 0) && ((p6_l0 != 0) && ( !(p6_l1 != 0)))))))))) && ((v1 == 7) || ( !(((delta == 0.0) && (p6_evt != 0)) && ((( !(p6_l3 != 0)) && ((p6_l2 != 0) && ((p6_l0 != 0) && ( !(p6_l1 != 0))))) && (( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && ((_x_p6_l1 != 0) && ( !(_x_p6_l0 != 0)))))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p6_l3 != 0)) && ((_x_p6_l2 != 0) && ((_x_p6_l0 != 0) && (_x_p6_l1 != 0)))) && (_x_p6_c == 0.0))) || ( !((( !(p6_l3 != 0)) && ((p6_l2 != 0) && ((p6_l1 != 0) && ( !(p6_l0 != 0))))) && ((delta == 0.0) && (p6_evt != 0)))))) && ((((v1 == _x_v1) && (_x_p6_c == 0.0)) && (( !(_x_v2 != 0)) && ((_x_p6_l3 != 0) && (( !(_x_p6_l2 != 0)) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))))))) || ( !((( !(p6_l3 != 0)) && ((p6_l2 != 0) && ((p6_l0 != 0) && (p6_l1 != 0)))) && ((delta == 0.0) && (p6_evt != 0)))))) && ((((_x_v1 == 0) && (( !(_x_p6_l3 != 0)) && (( !(_x_p6_l2 != 0)) && (( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (p6_c == _x_p6_c))) || ( !(((p6_l3 != 0) && (( !(p6_l2 != 0)) && (( !(p6_l0 != 0)) && ( !(p6_l1 != 0))))) && ((delta == 0.0) && (p6_evt != 0)))))) && ((((((((((((((((((((((_x_p5_l3 != 0) && (( !(_x_p5_l2 != 0)) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))))) || ((( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && ((_x_p5_l0 != 0) && (_x_p5_l1 != 0)))) || ((( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && ((_x_p5_l1 != 0) && ( !(_x_p5_l0 != 0))))) || ((( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && ((_x_p5_l0 != 0) && ( !(_x_p5_l1 != 0))))) || ((( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))))) || ((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && ((_x_p5_l0 != 0) && (_x_p5_l1 != 0)))) || ((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && ((_x_p5_l1 != 0) && ( !(_x_p5_l0 != 0))))) || ((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))))) || (( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && ((_x_p5_l0 != 0) && ( !(_x_p5_l1 != 0))))))))))))) && ((_x_p5_c <= 16.0) || ( !(((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && ((_x_p5_l0 != 0) && ( !(_x_p5_l1 != 0))))) || (( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0)))))) || ((( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && ((_x_p5_l0 != 0) && (_x_p5_l1 != 0)))) || ((_x_p5_l3 != 0) && (( !(_x_p5_l2 != 0)) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0)))))))))) && ((delta <= 0.0) || ((((((p5_l0 != 0) == (_x_p5_l0 != 0)) && ((p5_l1 != 0) == (_x_p5_l1 != 0))) && ((p5_l2 != 0) == (_x_p5_l2 != 0))) && ((p5_l3 != 0) == (_x_p5_l3 != 0))) && ((delta + (p5_c + (-1.0 * _x_p5_c))) == 0.0)))) && ((p5_evt != 0) || ((((((p5_l0 != 0) == (_x_p5_l0 != 0)) && ((p5_l1 != 0) == (_x_p5_l1 != 0))) && ((p5_l2 != 0) == (_x_p5_l2 != 0))) && ((p5_l3 != 0) == (_x_p5_l3 != 0))) && ((delta + (p5_c + (-1.0 * _x_p5_c))) == 0.0)))) && (((v1 == _x_v1) && (((v1 == 0) && (( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && ((_x_p5_l0 != 0) && ( !(_x_p5_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (_x_p5_c == 0.0)))) || ( !((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && (( !(p5_l0 != 0)) && ( !(p5_l1 != 0))))) && ((delta == 0.0) && (p5_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (_x_p5_c == 0.0)) && ((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && ((_x_p5_l1 != 0) && ( !(_x_p5_l0 != 0))))) && (_x_v1 == 6))) || ( !((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && ((p5_l0 != 0) && ( !(p5_l1 != 0))))) && ((delta == 0.0) && (p5_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && (((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))))) || (( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && ((_x_p5_l0 != 0) && (_x_p5_l1 != 0))))) && (p5_c == _x_p5_c))) || ( !((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && ((p5_l1 != 0) && ( !(p5_l0 != 0))))) && ((delta == 0.0) && (p5_evt != 0)))))) && (( !(v1 == 6)) || ( !((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))))) && ((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && ((p5_l1 != 0) && ( !(p5_l0 != 0))))) && ((delta == 0.0) && (p5_evt != 0))))))) && (((v1 == 6) && ( !(p5_c <= 16.0))) || ( !((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && ((_x_p5_l0 != 0) && (_x_p5_l1 != 0)))) && ((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && ((p5_l1 != 0) && ( !(p5_l0 != 0))))) && ((delta == 0.0) && (p5_evt != 0))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))))) || (( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))))))) || ( !((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && ((p5_l0 != 0) && (p5_l1 != 0)))) && ((delta == 0.0) && (p5_evt != 0)))))) && (((v2 != 0) && (p5_c == _x_p5_c)) || ( !(((delta == 0.0) && (p5_evt != 0)) && ((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))))) && (( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && ((p5_l0 != 0) && (p5_l1 != 0))))))))) && ((( !(v2 != 0)) && (_x_p5_c == 0.0)) || ( !(((delta == 0.0) && (p5_evt != 0)) && ((( !(p5_l3 != 0)) && (( !(p5_l2 != 0)) && ((p5_l0 != 0) && (p5_l1 != 0)))) && (( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0)))))))))) && ((((_x_v2 != 0) && (( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && ((_x_p5_l0 != 0) && ( !(_x_p5_l1 != 0)))))) && ((v1 == _x_v1) && (_x_p5_c == 0.0))) || ( !((( !(p5_l3 != 0)) && ((p5_l2 != 0) && (( !(p5_l0 != 0)) && ( !(p5_l1 != 0))))) && ((delta == 0.0) && (p5_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((p5_c == _x_p5_c) && ((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))))) || (( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && ((_x_p5_l1 != 0) && ( !(_x_p5_l0 != 0)))))))) || ( !((( !(p5_l3 != 0)) && ((p5_l2 != 0) && ((p5_l0 != 0) && ( !(p5_l1 != 0))))) && ((delta == 0.0) && (p5_evt != 0)))))) && (( !(v1 == 6)) || ( !(((delta == 0.0) && (p5_evt != 0)) && ((( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))))) && (( !(p5_l3 != 0)) && ((p5_l2 != 0) && ((p5_l0 != 0) && ( !(p5_l1 != 0)))))))))) && ((v1 == 6) || ( !(((delta == 0.0) && (p5_evt != 0)) && ((( !(p5_l3 != 0)) && ((p5_l2 != 0) && ((p5_l0 != 0) && ( !(p5_l1 != 0))))) && (( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && ((_x_p5_l1 != 0) && ( !(_x_p5_l0 != 0)))))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p5_l3 != 0)) && ((_x_p5_l2 != 0) && ((_x_p5_l0 != 0) && (_x_p5_l1 != 0)))) && (_x_p5_c == 0.0))) || ( !((( !(p5_l3 != 0)) && ((p5_l2 != 0) && ((p5_l1 != 0) && ( !(p5_l0 != 0))))) && ((delta == 0.0) && (p5_evt != 0)))))) && ((((v1 == _x_v1) && (_x_p5_c == 0.0)) && (( !(_x_v2 != 0)) && ((_x_p5_l3 != 0) && (( !(_x_p5_l2 != 0)) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))))))) || ( !((( !(p5_l3 != 0)) && ((p5_l2 != 0) && ((p5_l0 != 0) && (p5_l1 != 0)))) && ((delta == 0.0) && (p5_evt != 0)))))) && ((((_x_v1 == 0) && (( !(_x_p5_l3 != 0)) && (( !(_x_p5_l2 != 0)) && (( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (p5_c == _x_p5_c))) || ( !(((p5_l3 != 0) && (( !(p5_l2 != 0)) && (( !(p5_l0 != 0)) && ( !(p5_l1 != 0))))) && ((delta == 0.0) && (p5_evt != 0)))))) && ((((((((((((((((((((((_x_p4_l3 != 0) && (( !(_x_p4_l2 != 0)) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))))) || ((( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && ((_x_p4_l0 != 0) && (_x_p4_l1 != 0)))) || ((( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && ((_x_p4_l1 != 0) && ( !(_x_p4_l0 != 0))))) || ((( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && ((_x_p4_l0 != 0) && ( !(_x_p4_l1 != 0))))) || ((( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))))) || ((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && ((_x_p4_l0 != 0) && (_x_p4_l1 != 0)))) || ((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && ((_x_p4_l1 != 0) && ( !(_x_p4_l0 != 0))))) || ((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))))) || (( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && ((_x_p4_l0 != 0) && ( !(_x_p4_l1 != 0))))))))))))) && ((_x_p4_c <= 16.0) || ( !(((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && ((_x_p4_l0 != 0) && ( !(_x_p4_l1 != 0))))) || (( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0)))))) || ((( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && ((_x_p4_l0 != 0) && (_x_p4_l1 != 0)))) || ((_x_p4_l3 != 0) && (( !(_x_p4_l2 != 0)) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0)))))))))) && ((delta <= 0.0) || ((((((p4_l0 != 0) == (_x_p4_l0 != 0)) && ((p4_l1 != 0) == (_x_p4_l1 != 0))) && ((p4_l2 != 0) == (_x_p4_l2 != 0))) && ((p4_l3 != 0) == (_x_p4_l3 != 0))) && ((delta + (p4_c + (-1.0 * _x_p4_c))) == 0.0)))) && ((p4_evt != 0) || ((((((p4_l0 != 0) == (_x_p4_l0 != 0)) && ((p4_l1 != 0) == (_x_p4_l1 != 0))) && ((p4_l2 != 0) == (_x_p4_l2 != 0))) && ((p4_l3 != 0) == (_x_p4_l3 != 0))) && ((delta + (p4_c + (-1.0 * _x_p4_c))) == 0.0)))) && (((v1 == _x_v1) && (((v1 == 0) && (( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && ((_x_p4_l0 != 0) && ( !(_x_p4_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (_x_p4_c == 0.0)))) || ( !((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && (( !(p4_l0 != 0)) && ( !(p4_l1 != 0))))) && ((delta == 0.0) && (p4_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (_x_p4_c == 0.0)) && ((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && ((_x_p4_l1 != 0) && ( !(_x_p4_l0 != 0))))) && (_x_v1 == 5))) || ( !((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && ((p4_l0 != 0) && ( !(p4_l1 != 0))))) && ((delta == 0.0) && (p4_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && (((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))))) || (( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && ((_x_p4_l0 != 0) && (_x_p4_l1 != 0))))) && (p4_c == _x_p4_c))) || ( !((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && ((p4_l1 != 0) && ( !(p4_l0 != 0))))) && ((delta == 0.0) && (p4_evt != 0)))))) && (( !(v1 == 5)) || ( !((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))))) && ((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && ((p4_l1 != 0) && ( !(p4_l0 != 0))))) && ((delta == 0.0) && (p4_evt != 0))))))) && (((v1 == 5) && ( !(p4_c <= 16.0))) || ( !((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && ((_x_p4_l0 != 0) && (_x_p4_l1 != 0)))) && ((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && ((p4_l1 != 0) && ( !(p4_l0 != 0))))) && ((delta == 0.0) && (p4_evt != 0))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))))) || (( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))))))) || ( !((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && ((p4_l0 != 0) && (p4_l1 != 0)))) && ((delta == 0.0) && (p4_evt != 0)))))) && (((v2 != 0) && (p4_c == _x_p4_c)) || ( !(((delta == 0.0) && (p4_evt != 0)) && ((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))))) && (( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && ((p4_l0 != 0) && (p4_l1 != 0))))))))) && ((( !(v2 != 0)) && (_x_p4_c == 0.0)) || ( !(((delta == 0.0) && (p4_evt != 0)) && ((( !(p4_l3 != 0)) && (( !(p4_l2 != 0)) && ((p4_l0 != 0) && (p4_l1 != 0)))) && (( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0)))))))))) && ((((_x_v2 != 0) && (( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && ((_x_p4_l0 != 0) && ( !(_x_p4_l1 != 0)))))) && ((v1 == _x_v1) && (_x_p4_c == 0.0))) || ( !((( !(p4_l3 != 0)) && ((p4_l2 != 0) && (( !(p4_l0 != 0)) && ( !(p4_l1 != 0))))) && ((delta == 0.0) && (p4_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((p4_c == _x_p4_c) && ((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))))) || (( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && ((_x_p4_l1 != 0) && ( !(_x_p4_l0 != 0)))))))) || ( !((( !(p4_l3 != 0)) && ((p4_l2 != 0) && ((p4_l0 != 0) && ( !(p4_l1 != 0))))) && ((delta == 0.0) && (p4_evt != 0)))))) && (( !(v1 == 5)) || ( !(((delta == 0.0) && (p4_evt != 0)) && ((( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))))) && (( !(p4_l3 != 0)) && ((p4_l2 != 0) && ((p4_l0 != 0) && ( !(p4_l1 != 0)))))))))) && ((v1 == 5) || ( !(((delta == 0.0) && (p4_evt != 0)) && ((( !(p4_l3 != 0)) && ((p4_l2 != 0) && ((p4_l0 != 0) && ( !(p4_l1 != 0))))) && (( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && ((_x_p4_l1 != 0) && ( !(_x_p4_l0 != 0)))))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p4_l3 != 0)) && ((_x_p4_l2 != 0) && ((_x_p4_l0 != 0) && (_x_p4_l1 != 0)))) && (_x_p4_c == 0.0))) || ( !((( !(p4_l3 != 0)) && ((p4_l2 != 0) && ((p4_l1 != 0) && ( !(p4_l0 != 0))))) && ((delta == 0.0) && (p4_evt != 0)))))) && ((((v1 == _x_v1) && (_x_p4_c == 0.0)) && (( !(_x_v2 != 0)) && ((_x_p4_l3 != 0) && (( !(_x_p4_l2 != 0)) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))))))) || ( !((( !(p4_l3 != 0)) && ((p4_l2 != 0) && ((p4_l0 != 0) && (p4_l1 != 0)))) && ((delta == 0.0) && (p4_evt != 0)))))) && ((((_x_v1 == 0) && (( !(_x_p4_l3 != 0)) && (( !(_x_p4_l2 != 0)) && (( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (p4_c == _x_p4_c))) || ( !(((p4_l3 != 0) && (( !(p4_l2 != 0)) && (( !(p4_l0 != 0)) && ( !(p4_l1 != 0))))) && ((delta == 0.0) && (p4_evt != 0)))))) && ((((((((((((((((((((((_x_p3_l3 != 0) && (( !(_x_p3_l2 != 0)) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))))) || ((( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && ((_x_p3_l0 != 0) && (_x_p3_l1 != 0)))) || ((( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && ((_x_p3_l1 != 0) && ( !(_x_p3_l0 != 0))))) || ((( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && ((_x_p3_l0 != 0) && ( !(_x_p3_l1 != 0))))) || ((( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))))) || ((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && ((_x_p3_l0 != 0) && (_x_p3_l1 != 0)))) || ((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && ((_x_p3_l1 != 0) && ( !(_x_p3_l0 != 0))))) || ((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))))) || (( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && ((_x_p3_l0 != 0) && ( !(_x_p3_l1 != 0))))))))))))) && ((_x_p3_c <= 16.0) || ( !(((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && ((_x_p3_l0 != 0) && ( !(_x_p3_l1 != 0))))) || (( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0)))))) || ((( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && ((_x_p3_l0 != 0) && (_x_p3_l1 != 0)))) || ((_x_p3_l3 != 0) && (( !(_x_p3_l2 != 0)) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0)))))))))) && ((delta <= 0.0) || ((((((p3_l0 != 0) == (_x_p3_l0 != 0)) && ((p3_l1 != 0) == (_x_p3_l1 != 0))) && ((p3_l2 != 0) == (_x_p3_l2 != 0))) && ((p3_l3 != 0) == (_x_p3_l3 != 0))) && ((delta + (p3_c + (-1.0 * _x_p3_c))) == 0.0)))) && ((p3_evt != 0) || ((((((p3_l0 != 0) == (_x_p3_l0 != 0)) && ((p3_l1 != 0) == (_x_p3_l1 != 0))) && ((p3_l2 != 0) == (_x_p3_l2 != 0))) && ((p3_l3 != 0) == (_x_p3_l3 != 0))) && ((delta + (p3_c + (-1.0 * _x_p3_c))) == 0.0)))) && (((v1 == _x_v1) && (((v1 == 0) && (( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && ((_x_p3_l0 != 0) && ( !(_x_p3_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (_x_p3_c == 0.0)))) || ( !((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && (( !(p3_l0 != 0)) && ( !(p3_l1 != 0))))) && ((delta == 0.0) && (p3_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (_x_p3_c == 0.0)) && ((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && ((_x_p3_l1 != 0) && ( !(_x_p3_l0 != 0))))) && (_x_v1 == 4))) || ( !((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && ((p3_l0 != 0) && ( !(p3_l1 != 0))))) && ((delta == 0.0) && (p3_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && (((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))))) || (( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && ((_x_p3_l0 != 0) && (_x_p3_l1 != 0))))) && (p3_c == _x_p3_c))) || ( !((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && ((p3_l1 != 0) && ( !(p3_l0 != 0))))) && ((delta == 0.0) && (p3_evt != 0)))))) && (( !(v1 == 4)) || ( !((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))))) && ((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && ((p3_l1 != 0) && ( !(p3_l0 != 0))))) && ((delta == 0.0) && (p3_evt != 0))))))) && (((v1 == 4) && ( !(p3_c <= 16.0))) || ( !((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && ((_x_p3_l0 != 0) && (_x_p3_l1 != 0)))) && ((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && ((p3_l1 != 0) && ( !(p3_l0 != 0))))) && ((delta == 0.0) && (p3_evt != 0))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))))) || (( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))))))) || ( !((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && ((p3_l0 != 0) && (p3_l1 != 0)))) && ((delta == 0.0) && (p3_evt != 0)))))) && (((v2 != 0) && (p3_c == _x_p3_c)) || ( !(((delta == 0.0) && (p3_evt != 0)) && ((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))))) && (( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && ((p3_l0 != 0) && (p3_l1 != 0))))))))) && ((( !(v2 != 0)) && (_x_p3_c == 0.0)) || ( !(((delta == 0.0) && (p3_evt != 0)) && ((( !(p3_l3 != 0)) && (( !(p3_l2 != 0)) && ((p3_l0 != 0) && (p3_l1 != 0)))) && (( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0)))))))))) && ((((_x_v2 != 0) && (( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && ((_x_p3_l0 != 0) && ( !(_x_p3_l1 != 0)))))) && ((v1 == _x_v1) && (_x_p3_c == 0.0))) || ( !((( !(p3_l3 != 0)) && ((p3_l2 != 0) && (( !(p3_l0 != 0)) && ( !(p3_l1 != 0))))) && ((delta == 0.0) && (p3_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((p3_c == _x_p3_c) && ((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))))) || (( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && ((_x_p3_l1 != 0) && ( !(_x_p3_l0 != 0)))))))) || ( !((( !(p3_l3 != 0)) && ((p3_l2 != 0) && ((p3_l0 != 0) && ( !(p3_l1 != 0))))) && ((delta == 0.0) && (p3_evt != 0)))))) && (( !(v1 == 4)) || ( !(((delta == 0.0) && (p3_evt != 0)) && ((( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))))) && (( !(p3_l3 != 0)) && ((p3_l2 != 0) && ((p3_l0 != 0) && ( !(p3_l1 != 0)))))))))) && ((v1 == 4) || ( !(((delta == 0.0) && (p3_evt != 0)) && ((( !(p3_l3 != 0)) && ((p3_l2 != 0) && ((p3_l0 != 0) && ( !(p3_l1 != 0))))) && (( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && ((_x_p3_l1 != 0) && ( !(_x_p3_l0 != 0)))))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p3_l3 != 0)) && ((_x_p3_l2 != 0) && ((_x_p3_l0 != 0) && (_x_p3_l1 != 0)))) && (_x_p3_c == 0.0))) || ( !((( !(p3_l3 != 0)) && ((p3_l2 != 0) && ((p3_l1 != 0) && ( !(p3_l0 != 0))))) && ((delta == 0.0) && (p3_evt != 0)))))) && ((((v1 == _x_v1) && (_x_p3_c == 0.0)) && (( !(_x_v2 != 0)) && ((_x_p3_l3 != 0) && (( !(_x_p3_l2 != 0)) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))))))) || ( !((( !(p3_l3 != 0)) && ((p3_l2 != 0) && ((p3_l0 != 0) && (p3_l1 != 0)))) && ((delta == 0.0) && (p3_evt != 0)))))) && ((((_x_v1 == 0) && (( !(_x_p3_l3 != 0)) && (( !(_x_p3_l2 != 0)) && (( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (p3_c == _x_p3_c))) || ( !(((p3_l3 != 0) && (( !(p3_l2 != 0)) && (( !(p3_l0 != 0)) && ( !(p3_l1 != 0))))) && ((delta == 0.0) && (p3_evt != 0)))))) && ((((((((((((((((((((((_x_p2_l3 != 0) && (( !(_x_p2_l2 != 0)) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))))) || ((( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && ((_x_p2_l0 != 0) && (_x_p2_l1 != 0)))) || ((( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && ((_x_p2_l1 != 0) && ( !(_x_p2_l0 != 0))))) || ((( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && ((_x_p2_l0 != 0) && ( !(_x_p2_l1 != 0))))) || ((( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))))) || ((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && ((_x_p2_l0 != 0) && (_x_p2_l1 != 0)))) || ((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && ((_x_p2_l1 != 0) && ( !(_x_p2_l0 != 0))))) || ((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))))) || (( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && ((_x_p2_l0 != 0) && ( !(_x_p2_l1 != 0))))))))))))) && ((_x_p2_c <= 16.0) || ( !(((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && ((_x_p2_l0 != 0) && ( !(_x_p2_l1 != 0))))) || (( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0)))))) || ((( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && ((_x_p2_l0 != 0) && (_x_p2_l1 != 0)))) || ((_x_p2_l3 != 0) && (( !(_x_p2_l2 != 0)) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0)))))))))) && ((delta <= 0.0) || ((((((p2_l0 != 0) == (_x_p2_l0 != 0)) && ((p2_l1 != 0) == (_x_p2_l1 != 0))) && ((p2_l2 != 0) == (_x_p2_l2 != 0))) && ((p2_l3 != 0) == (_x_p2_l3 != 0))) && ((delta + (p2_c + (-1.0 * _x_p2_c))) == 0.0)))) && ((p2_evt != 0) || ((((((p2_l0 != 0) == (_x_p2_l0 != 0)) && ((p2_l1 != 0) == (_x_p2_l1 != 0))) && ((p2_l2 != 0) == (_x_p2_l2 != 0))) && ((p2_l3 != 0) == (_x_p2_l3 != 0))) && ((delta + (p2_c + (-1.0 * _x_p2_c))) == 0.0)))) && (((v1 == _x_v1) && (((v1 == 0) && (( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && ((_x_p2_l0 != 0) && ( !(_x_p2_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (_x_p2_c == 0.0)))) || ( !((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && (( !(p2_l0 != 0)) && ( !(p2_l1 != 0))))) && ((delta == 0.0) && (p2_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (_x_p2_c == 0.0)) && ((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && ((_x_p2_l1 != 0) && ( !(_x_p2_l0 != 0))))) && (_x_v1 == 3))) || ( !((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && ((p2_l0 != 0) && ( !(p2_l1 != 0))))) && ((delta == 0.0) && (p2_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && (((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))))) || (( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && ((_x_p2_l0 != 0) && (_x_p2_l1 != 0))))) && (p2_c == _x_p2_c))) || ( !((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && ((p2_l1 != 0) && ( !(p2_l0 != 0))))) && ((delta == 0.0) && (p2_evt != 0)))))) && (( !(v1 == 3)) || ( !((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))))) && ((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && ((p2_l1 != 0) && ( !(p2_l0 != 0))))) && ((delta == 0.0) && (p2_evt != 0))))))) && (((v1 == 3) && ( !(p2_c <= 16.0))) || ( !((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && ((_x_p2_l0 != 0) && (_x_p2_l1 != 0)))) && ((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && ((p2_l1 != 0) && ( !(p2_l0 != 0))))) && ((delta == 0.0) && (p2_evt != 0))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))))) || (( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))))))) || ( !((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && ((p2_l0 != 0) && (p2_l1 != 0)))) && ((delta == 0.0) && (p2_evt != 0)))))) && (((v2 != 0) && (p2_c == _x_p2_c)) || ( !(((delta == 0.0) && (p2_evt != 0)) && ((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))))) && (( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && ((p2_l0 != 0) && (p2_l1 != 0))))))))) && ((( !(v2 != 0)) && (_x_p2_c == 0.0)) || ( !(((delta == 0.0) && (p2_evt != 0)) && ((( !(p2_l3 != 0)) && (( !(p2_l2 != 0)) && ((p2_l0 != 0) && (p2_l1 != 0)))) && (( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0)))))))))) && ((((_x_v2 != 0) && (( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && ((_x_p2_l0 != 0) && ( !(_x_p2_l1 != 0)))))) && ((v1 == _x_v1) && (_x_p2_c == 0.0))) || ( !((( !(p2_l3 != 0)) && ((p2_l2 != 0) && (( !(p2_l0 != 0)) && ( !(p2_l1 != 0))))) && ((delta == 0.0) && (p2_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((p2_c == _x_p2_c) && ((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))))) || (( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && ((_x_p2_l1 != 0) && ( !(_x_p2_l0 != 0)))))))) || ( !((( !(p2_l3 != 0)) && ((p2_l2 != 0) && ((p2_l0 != 0) && ( !(p2_l1 != 0))))) && ((delta == 0.0) && (p2_evt != 0)))))) && (( !(v1 == 3)) || ( !(((delta == 0.0) && (p2_evt != 0)) && ((( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))))) && (( !(p2_l3 != 0)) && ((p2_l2 != 0) && ((p2_l0 != 0) && ( !(p2_l1 != 0)))))))))) && ((v1 == 3) || ( !(((delta == 0.0) && (p2_evt != 0)) && ((( !(p2_l3 != 0)) && ((p2_l2 != 0) && ((p2_l0 != 0) && ( !(p2_l1 != 0))))) && (( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && ((_x_p2_l1 != 0) && ( !(_x_p2_l0 != 0)))))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p2_l3 != 0)) && ((_x_p2_l2 != 0) && ((_x_p2_l0 != 0) && (_x_p2_l1 != 0)))) && (_x_p2_c == 0.0))) || ( !((( !(p2_l3 != 0)) && ((p2_l2 != 0) && ((p2_l1 != 0) && ( !(p2_l0 != 0))))) && ((delta == 0.0) && (p2_evt != 0)))))) && ((((v1 == _x_v1) && (_x_p2_c == 0.0)) && (( !(_x_v2 != 0)) && ((_x_p2_l3 != 0) && (( !(_x_p2_l2 != 0)) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))))))) || ( !((( !(p2_l3 != 0)) && ((p2_l2 != 0) && ((p2_l0 != 0) && (p2_l1 != 0)))) && ((delta == 0.0) && (p2_evt != 0)))))) && ((((_x_v1 == 0) && (( !(_x_p2_l3 != 0)) && (( !(_x_p2_l2 != 0)) && (( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (p2_c == _x_p2_c))) || ( !(((p2_l3 != 0) && (( !(p2_l2 != 0)) && (( !(p2_l0 != 0)) && ( !(p2_l1 != 0))))) && ((delta == 0.0) && (p2_evt != 0)))))) && ((((((((((((((((((((((_x_p1_l3 != 0) && (( !(_x_p1_l2 != 0)) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))))) || ((( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && ((_x_p1_l0 != 0) && (_x_p1_l1 != 0)))) || ((( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && ((_x_p1_l1 != 0) && ( !(_x_p1_l0 != 0))))) || ((( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && ((_x_p1_l0 != 0) && ( !(_x_p1_l1 != 0))))) || ((( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))))) || ((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && ((_x_p1_l0 != 0) && (_x_p1_l1 != 0)))) || ((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && ((_x_p1_l1 != 0) && ( !(_x_p1_l0 != 0))))) || ((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))))) || (( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && ((_x_p1_l0 != 0) && ( !(_x_p1_l1 != 0))))))))))))) && ((_x_p1_c <= 16.0) || ( !(((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && ((_x_p1_l0 != 0) && ( !(_x_p1_l1 != 0))))) || (( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0)))))) || ((( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && ((_x_p1_l0 != 0) && (_x_p1_l1 != 0)))) || ((_x_p1_l3 != 0) && (( !(_x_p1_l2 != 0)) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0)))))))))) && ((delta <= 0.0) || ((((((p1_l0 != 0) == (_x_p1_l0 != 0)) && ((p1_l1 != 0) == (_x_p1_l1 != 0))) && ((p1_l2 != 0) == (_x_p1_l2 != 0))) && ((p1_l3 != 0) == (_x_p1_l3 != 0))) && ((delta + (p1_c + (-1.0 * _x_p1_c))) == 0.0)))) && ((p1_evt != 0) || ((((((p1_l0 != 0) == (_x_p1_l0 != 0)) && ((p1_l1 != 0) == (_x_p1_l1 != 0))) && ((p1_l2 != 0) == (_x_p1_l2 != 0))) && ((p1_l3 != 0) == (_x_p1_l3 != 0))) && ((delta + (p1_c + (-1.0 * _x_p1_c))) == 0.0)))) && (((v1 == _x_v1) && (((v1 == 0) && (( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && ((_x_p1_l0 != 0) && ( !(_x_p1_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (_x_p1_c == 0.0)))) || ( !((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && (( !(p1_l0 != 0)) && ( !(p1_l1 != 0))))) && ((delta == 0.0) && (p1_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (_x_p1_c == 0.0)) && ((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && ((_x_p1_l1 != 0) && ( !(_x_p1_l0 != 0))))) && (_x_v1 == 2))) || ( !((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && ((p1_l0 != 0) && ( !(p1_l1 != 0))))) && ((delta == 0.0) && (p1_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && (((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))))) || (( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && ((_x_p1_l0 != 0) && (_x_p1_l1 != 0))))) && (p1_c == _x_p1_c))) || ( !((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && ((p1_l1 != 0) && ( !(p1_l0 != 0))))) && ((delta == 0.0) && (p1_evt != 0)))))) && (( !(v1 == 2)) || ( !((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))))) && ((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && ((p1_l1 != 0) && ( !(p1_l0 != 0))))) && ((delta == 0.0) && (p1_evt != 0))))))) && (((v1 == 2) && ( !(p1_c <= 16.0))) || ( !((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && ((_x_p1_l0 != 0) && (_x_p1_l1 != 0)))) && ((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && ((p1_l1 != 0) && ( !(p1_l0 != 0))))) && ((delta == 0.0) && (p1_evt != 0))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))))) || (( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))))))) || ( !((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && ((p1_l0 != 0) && (p1_l1 != 0)))) && ((delta == 0.0) && (p1_evt != 0)))))) && (((v2 != 0) && (p1_c == _x_p1_c)) || ( !(((delta == 0.0) && (p1_evt != 0)) && ((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))))) && (( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && ((p1_l0 != 0) && (p1_l1 != 0))))))))) && ((( !(v2 != 0)) && (_x_p1_c == 0.0)) || ( !(((delta == 0.0) && (p1_evt != 0)) && ((( !(p1_l3 != 0)) && (( !(p1_l2 != 0)) && ((p1_l0 != 0) && (p1_l1 != 0)))) && (( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0)))))))))) && ((((_x_v2 != 0) && (( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && ((_x_p1_l0 != 0) && ( !(_x_p1_l1 != 0)))))) && ((v1 == _x_v1) && (_x_p1_c == 0.0))) || ( !((( !(p1_l3 != 0)) && ((p1_l2 != 0) && (( !(p1_l0 != 0)) && ( !(p1_l1 != 0))))) && ((delta == 0.0) && (p1_evt != 0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((p1_c == _x_p1_c) && ((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))))) || (( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && ((_x_p1_l1 != 0) && ( !(_x_p1_l0 != 0)))))))) || ( !((( !(p1_l3 != 0)) && ((p1_l2 != 0) && ((p1_l0 != 0) && ( !(p1_l1 != 0))))) && ((delta == 0.0) && (p1_evt != 0)))))) && (( !(v1 == 2)) || ( !(((delta == 0.0) && (p1_evt != 0)) && ((( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))))) && (( !(p1_l3 != 0)) && ((p1_l2 != 0) && ((p1_l0 != 0) && ( !(p1_l1 != 0)))))))))) && ((v1 == 2) || ( !(((delta == 0.0) && (p1_evt != 0)) && ((( !(p1_l3 != 0)) && ((p1_l2 != 0) && ((p1_l0 != 0) && ( !(p1_l1 != 0))))) && (( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && ((_x_p1_l1 != 0) && ( !(_x_p1_l0 != 0)))))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p1_l3 != 0)) && ((_x_p1_l2 != 0) && ((_x_p1_l0 != 0) && (_x_p1_l1 != 0)))) && (_x_p1_c == 0.0))) || ( !((( !(p1_l3 != 0)) && ((p1_l2 != 0) && ((p1_l1 != 0) && ( !(p1_l0 != 0))))) && ((delta == 0.0) && (p1_evt != 0)))))) && ((((v1 == _x_v1) && (_x_p1_c == 0.0)) && (( !(_x_v2 != 0)) && ((_x_p1_l3 != 0) && (( !(_x_p1_l2 != 0)) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))))))) || ( !((( !(p1_l3 != 0)) && ((p1_l2 != 0) && ((p1_l0 != 0) && (p1_l1 != 0)))) && ((delta == 0.0) && (p1_evt != 0)))))) && ((((_x_v1 == 0) && (( !(_x_p1_l3 != 0)) && (( !(_x_p1_l2 != 0)) && (( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0)))))) && (((v2 != 0) == (_x_v2 != 0)) && (p1_c == _x_p1_c))) || ( !(((p1_l3 != 0) && (( !(p1_l2 != 0)) && (( !(p1_l0 != 0)) && ( !(p1_l1 != 0))))) && ((delta == 0.0) && (p1_evt != 0)))))) && ((((((((((((((((((((((_x_p0_l3 != 0) && (( !(_x_p0_l2 != 0)) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))) || ((( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && ((_x_p0_l0 != 0) && (_x_p0_l1 != 0)))) || ((( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && ((_x_p0_l1 != 0) && ( !(_x_p0_l0 != 0))))) || ((( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && ((_x_p0_l0 != 0) && ( !(_x_p0_l1 != 0))))) || ((( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))) || ((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && ((_x_p0_l0 != 0) && (_x_p0_l1 != 0)))) || ((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && ((_x_p0_l1 != 0) && ( !(_x_p0_l0 != 0))))) || ((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))) || (( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && ((_x_p0_l0 != 0) && ( !(_x_p0_l1 != 0))))))))))))) && ((_x_p0_c <= 16.0) || ( !(((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && ((_x_p0_l0 != 0) && ( !(_x_p0_l1 != 0))))) || (( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0)))))) || ((( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && ((_x_p0_l0 != 0) && (_x_p0_l1 != 0)))) || ((_x_p0_l3 != 0) && (( !(_x_p0_l2 != 0)) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0)))))))))) && ((delta <= 0.0) || ((((((p0_l0 != 0) == (_x_p0_l0 != 0)) && ((p0_l1 != 0) == (_x_p0_l1 != 0))) && ((p0_l2 != 0) == (_x_p0_l2 != 0))) && ((p0_l3 != 0) == (_x_p0_l3 != 0))) && ((delta + (p0_c + (-1.0 * _x_p0_c))) == 0.0)))) && ((p0_evt != 0) || ((((((p0_l0 != 0) == (_x_p0_l0 != 0)) && ((p0_l1 != 0) == (_x_p0_l1 != 0))) && ((p0_l2 != 0) == (_x_p0_l2 != 0))) && ((p0_l3 != 0) == (_x_p0_l3 != 0))) && ((delta + (p0_c + (-1.0 * _x_p0_c))) == 0.0)))) && (((((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && ((_x_p0_l0 != 0) && ( !(_x_p0_l1 != 0))))) && (v1 == 0)) && ((_x_p0_c == 0.0) && ((v2 != 0) == (_x_v2 != 0)))) && (v1 == _x_v1)) || ( !((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && (( !(p0_l0 != 0)) && ( !(p0_l1 != 0))))) && ((p0_evt != 0) && (delta == 0.0)))))) && ((((_x_p0_c == 0.0) && ((v2 != 0) == (_x_v2 != 0))) && ((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && ((_x_p0_l1 != 0) && ( !(_x_p0_l0 != 0))))) && (_x_v1 == 1))) || ( !((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && ((p0_l0 != 0) && ( !(p0_l1 != 0))))) && ((p0_evt != 0) && (delta == 0.0)))))) && (((((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))) || (( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && ((_x_p0_l0 != 0) && (_x_p0_l1 != 0))))) && (p0_c == _x_p0_c)) && (((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1))) || ( !((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && ((p0_l1 != 0) && ( !(p0_l0 != 0))))) && ((p0_evt != 0) && (delta == 0.0)))))) && (( !(v1 == 1)) || ( !((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))) && ((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && ((p0_l1 != 0) && ( !(p0_l0 != 0))))) && ((p0_evt != 0) && (delta == 0.0))))))) && (((v1 == 1) && ( !(p0_c <= 16.0))) || ( !((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && ((_x_p0_l0 != 0) && (_x_p0_l1 != 0)))) && ((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && ((p0_l1 != 0) && ( !(p0_l0 != 0))))) && ((p0_evt != 0) && (delta == 0.0))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))) || (( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))))) || ( !((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && ((p0_l0 != 0) && (p0_l1 != 0)))) && ((p0_evt != 0) && (delta == 0.0)))))) && (((v2 != 0) && (p0_c == _x_p0_c)) || ( !(((p0_evt != 0) && (delta == 0.0)) && ((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))) && (( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && ((p0_l0 != 0) && (p0_l1 != 0))))))))) && (((_x_p0_c == 0.0) && ( !(v2 != 0))) || ( !(((p0_evt != 0) && (delta == 0.0)) && ((( !(p0_l3 != 0)) && (( !(p0_l2 != 0)) && ((p0_l0 != 0) && (p0_l1 != 0)))) && (( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0)))))))))) && ((((_x_v2 != 0) && (( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && ((_x_p0_l0 != 0) && ( !(_x_p0_l1 != 0)))))) && ((_x_p0_c == 0.0) && (v1 == _x_v1))) || ( !((( !(p0_l3 != 0)) && ((p0_l2 != 0) && (( !(p0_l0 != 0)) && ( !(p0_l1 != 0))))) && ((p0_evt != 0) && (delta == 0.0)))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((p0_c == _x_p0_c) && ((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))) || (( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && ((_x_p0_l1 != 0) && ( !(_x_p0_l0 != 0)))))))) || ( !((( !(p0_l3 != 0)) && ((p0_l2 != 0) && ((p0_l0 != 0) && ( !(p0_l1 != 0))))) && ((p0_evt != 0) && (delta == 0.0)))))) && (( !(v1 == 1)) || ( !(((p0_evt != 0) && (delta == 0.0)) && ((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))) && (( !(p0_l3 != 0)) && ((p0_l2 != 0) && ((p0_l0 != 0) && ( !(p0_l1 != 0)))))))))) && ((v1 == 1) || ( !(((p0_evt != 0) && (delta == 0.0)) && ((( !(p0_l3 != 0)) && ((p0_l2 != 0) && ((p0_l0 != 0) && ( !(p0_l1 != 0))))) && (( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && ((_x_p0_l1 != 0) && ( !(_x_p0_l0 != 0)))))))))) && (((((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1)) && ((( !(_x_p0_l3 != 0)) && ((_x_p0_l2 != 0) && ((_x_p0_l0 != 0) && (_x_p0_l1 != 0)))) && (_x_p0_c == 0.0))) || ( !((( !(p0_l3 != 0)) && ((p0_l2 != 0) && ((p0_l1 != 0) && ( !(p0_l0 != 0))))) && ((p0_evt != 0) && (delta == 0.0)))))) && ((((_x_p0_c == 0.0) && (v1 == _x_v1)) && (((_x_p0_l3 != 0) && (( !(_x_p0_l2 != 0)) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))) && ( !(_x_v2 != 0)))) || ( !((( !(p0_l3 != 0)) && ((p0_l2 != 0) && ((p0_l0 != 0) && (p0_l1 != 0)))) && ((p0_evt != 0) && (delta == 0.0)))))) && ((((( !(_x_p0_l3 != 0)) && (( !(_x_p0_l2 != 0)) && (( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))))) && (_x_v1 == 0)) && (((v2 != 0) == (_x_v2 != 0)) && (p0_c == _x_p0_c))) || ( !(((p0_l3 != 0) && (( !(p0_l2 != 0)) && (( !(p0_l0 != 0)) && ( !(p0_l1 != 0))))) && ((p0_evt != 0) && (delta == 0.0)))))) && ((((_x_v1 == 11) || ((_x_v1 == 10) || ((_x_v1 == 9) || ((_x_v1 == 8) || ((_x_v1 == 7) || ((_x_v1 == 6) || ((_x_v1 == 5) || ((_x_v1 == 4) || ((_x_v1 == 3) || ((_x_v1 == 2) || ((_x_v1 == 1) || (_x_v1 == 0)))))))))))) && (0.0 <= _x_delta)) && ((delta <= 0.0) || (((v2 != 0) == (_x_v2 != 0)) && (v1 == _x_v1))))))))))))))) && (( !(( !(p10_evt != 0)) && (( !(p9_evt != 0)) && (( !(p8_evt != 0)) && (( !(p7_evt != 0)) && (( !(p6_evt != 0)) && (( !(p5_evt != 0)) && (( !(p4_evt != 0)) && (( !(p3_evt != 0)) && (( !(p2_evt != 0)) && (( !(p0_evt != 0)) && ( !(p1_evt != 0))))))))))))) || ( !(delta == 0.0)))) && (((delta == _x__diverge_delta) || ( !(1.0 <= _diverge_delta))) && ((1.0 <= _diverge_delta) || ((delta + (_diverge_delta + (-1.0 * _x__diverge_delta))) == 0.0)))); p10_l3 = _x_p10_l3; p10_l2 = _x_p10_l2; p10_l1 = _x_p10_l1; p10_l0 = _x_p10_l0; p10_evt = _x_p10_evt; p10_c = _x_p10_c; p3_l3 = _x_p3_l3; p3_evt = _x_p3_evt; p0_l2 = _x_p0_l2; p8_l3 = _x_p8_l3; p0_l1 = _x_p0_l1; p2_l3 = _x_p2_l3; p2_evt = _x_p2_evt; delta = _x_delta; v1 = _x_v1; v2 = _x_v2; p8_c = _x_p8_c; p0_l3 = _x_p0_l3; p8_evt = _x_p8_evt; p8_l2 = _x_p8_l2; p4_evt = _x_p4_evt; p1_c = _x_p1_c; p9_l3 = _x_p9_l3; p3_l2 = _x_p3_l2; p6_l3 = _x_p6_l3; p1_l3 = _x_p1_l3; _diverge_delta = _x__diverge_delta; p0_l0 = _x_p0_l0; p8_l1 = _x_p8_l1; p1_evt = _x_p1_evt; p1_l1 = _x_p1_l1; p7_l3 = _x_p7_l3; p4_l2 = _x_p4_l2; p1_l2 = _x_p1_l2; p4_l3 = _x_p4_l3; p5_c = _x_p5_c; p2_c = _x_p2_c; p5_evt = _x_p5_evt; p0_c = _x_p0_c; p5_l0 = _x_p5_l0; p2_l0 = _x_p2_l0; p0_evt = _x_p0_evt; p5_l1 = _x_p5_l1; p2_l1 = _x_p2_l1; p5_l2 = _x_p5_l2; p2_l2 = _x_p2_l2; p5_l3 = _x_p5_l3; p9_l0 = _x_p9_l0; p6_l0 = _x_p6_l0; p9_l1 = _x_p9_l1; p3_l0 = _x_p3_l0; p6_l1 = _x_p6_l1; p9_l2 = _x_p9_l2; p3_l1 = _x_p3_l1; p6_l2 = _x_p6_l2; p7_c = _x_p7_c; p4_c = _x_p4_c; p7_evt = _x_p7_evt; p7_l0 = _x_p7_l0; p4_l0 = _x_p4_l0; p7_l1 = _x_p7_l1; p1_l0 = _x_p1_l0; p4_l1 = _x_p4_l1; p7_l2 = _x_p7_l2; p8_l0 = _x_p8_l0; p6_c = _x_p6_c; p9_c = _x_p9_c; p3_c = _x_p3_c; p6_evt = _x_p6_evt; p9_evt = _x_p9_evt; } }
the_stack_data/34512140.c
// Copyright 2018 The gVisor Authors. // // 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. #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif #include <errno.h> #include <fcntl.h> #include <sched.h> #include <stdio.h> #include <string.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> int main(int argc, char** argv) { if (argc <= 2) { fprintf(stderr, "error: must provide a namespace file.\n"); fprintf(stderr, "usage: %s <file> [arguments...]\n", argv[0]); return 1; } int fd = open(argv[1], O_RDONLY); if (fd < 0) { fprintf(stderr, "error opening %s: %s\n", argv[1], strerror(errno)); return 1; } if (setns(fd, 0) < 0) { fprintf(stderr, "error joining %s: %s\n", argv[1], strerror(errno)); return 1; } execvp(argv[2], &argv[2]); return 1; }
the_stack_data/152940.c
//Classification: n/DAM/NP/gS/D(v)/fr/ln //Written by: Sergey Pomelov //Reviewed by: Igor Eremeev //Comment: #include <stdio.h> int *func(void) { int *p; return p; }; int a; int main(void) { a = *func(); printf("%d",a); return 0; }
the_stack_data/215768755.c
#include <stdio.h> void bprint(double *v) { printf("%f", v[0]); printf("%f", v[1]); } void bchange(double *v) { v[0] = 6; v[1] = 9; } void bruh() { double x[2]; x[0] = 1; x[1] = 2; bchange(x); bprint(x); } int main() { bruh(); return 0; }
the_stack_data/18886565.c
extern void abort(void); void reach_error(){} void __VERIFIER_assert(int cond) { if (!(cond)) { ERROR: {reach_error();abort();} } return; } int __VERIFIER_nondet_int(); int main() { int i,j; int m=1000,n=1500,p=1800; int A [m][n]; int B [m][n]; i=0; j=0; while(i < m){ j=0; while(j < n){ B[i][j]=__VERIFIER_nondet_int(); j=j+1; } i=i+1; } i=0; j=0; while(i < m){ j=0; while(j < n){ A[i][j]=B[m-i-1][n-j-1]; j=j+1; } i=i+1; } i=0; j=0; while(i < m){ j=0; while(j < n){ __VERIFIER_assert(A[i][j]==B[m-i-1][n-j-1]); j=j+1; } i=i+1; } return 0; }
the_stack_data/29826678.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strncat.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: awindham <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/11/29 12:16:44 by awindham #+# #+# */ /* Updated: 2018/12/02 11:52:03 by awindham ### ########.fr */ /* */ /* ************************************************************************** */ #include <string.h> char *ft_strncat(char *s1, const char *s2, size_t n) { const char *src; char *dst; if (n != 0) { src = s2; dst = s1; while (*dst != 0) dst++; while (n != 0) { if ((*dst = *src++) == 0) break ; dst++; n--; } *dst = 0; } return (s1); }
the_stack_data/150413.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <CL/cl.h> unsigned char *read_buffer(char *file_name, size_t *size_ptr) { FILE *f; unsigned char *buf; size_t size; /* Open file */ f = fopen(file_name, "rb"); if (!f) return NULL; /* Obtain file size */ fseek(f, 0, SEEK_END); size = ftell(f); fseek(f, 0, SEEK_SET); /* Allocate and read buffer */ buf = malloc(size + 1); fread(buf, 1, size, f); buf[size] = '\0'; /* Return size of buffer */ if (size_ptr) *size_ptr = size; /* Return buffer */ return buf; } void write_buffer(char *file_name, const char *buffer, size_t buffer_size) { FILE *f; /* Open file */ f = fopen(file_name, "w+"); /* Write buffer */ if(buffer) fwrite(buffer, 1, buffer_size, f); /* Close file */ fclose(f); } int main(int argc, char const *argv[]) { /* Get platform */ cl_platform_id platform; cl_uint num_platforms; cl_int ret = clGetPlatformIDs(1, &platform, &num_platforms); if (ret != CL_SUCCESS) { printf("error: call to 'clGetPlatformIDs' failed\n"); exit(1); } printf("Number of platforms: %d\n", num_platforms); printf("platform=%p\n", platform); /* Get platform name */ char platform_name[100]; ret = clGetPlatformInfo(platform, CL_PLATFORM_NAME, sizeof(platform_name), platform_name, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clGetPlatformInfo' failed\n"); exit(1); } printf("platform.name='%s'\n\n", platform_name); /* Get device */ cl_device_id device; cl_uint num_devices; ret = clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &device, &num_devices); if (ret != CL_SUCCESS) { printf("error: call to 'clGetDeviceIDs' failed\n"); exit(1); } printf("Number of devices: %d\n", num_devices); printf("device=%p\n", device); /* Get device name */ char device_name[100]; ret = clGetDeviceInfo(device, CL_DEVICE_NAME, sizeof(device_name), device_name, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clGetDeviceInfo' failed\n"); exit(1); } printf("device.name='%s'\n", device_name); printf("\n"); /* Create a Context Object */ cl_context context; context = clCreateContext(NULL, 1, &device, NULL, NULL, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateContext' failed\n"); exit(1); } printf("context=%p\n", context); /* Create a Command Queue Object*/ cl_command_queue command_queue; command_queue = clCreateCommandQueue(context, device, 0, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateCommandQueue' failed\n"); exit(1); } printf("command_queue=%p\n", command_queue); printf("\n"); /* Program source */ unsigned char *source_code; size_t source_length; /* Read program from 'atan_float2.cl' */ source_code = read_buffer("atan_float2.cl", &source_length); /* Create a program */ cl_program program; program = clCreateProgramWithSource(context, 1, (const char **)&source_code, &source_length, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateProgramWithSource' failed\n"); exit(1); } printf("program=%p\n", program); /* Build program */ ret = clBuildProgram(program, 1, &device, NULL, NULL, NULL); if (ret != CL_SUCCESS ) { size_t size; char *log; /* Get log size */ clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,0, NULL, &size); /* Allocate log and print */ log = malloc(size); clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,size, log, NULL); printf("error: call to 'clBuildProgram' failed:\n%s\n", log); /* Free log and exit */ free(log); exit(1); } printf("program built\n"); printf("\n"); /* Create a Kernel Object */ cl_kernel kernel; kernel = clCreateKernel(program, "atan_float2", &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateKernel' failed\n"); exit(1); } /* Create and allocate host buffers */ size_t num_elem = 10; /* Create and init host side src buffer 0 */ cl_float2 *src_0_host_buffer; src_0_host_buffer = malloc(num_elem * sizeof(cl_float2)); for (int i = 0; i < num_elem; i++) src_0_host_buffer[i] = (cl_float2){{2.0, 2.0}}; /* Create and init device side src buffer 0 */ cl_mem src_0_device_buffer; src_0_device_buffer = clCreateBuffer(context, CL_MEM_READ_ONLY, num_elem * sizeof(cl_float2), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create source buffer\n"); exit(1); } ret = clEnqueueWriteBuffer(command_queue, src_0_device_buffer, CL_TRUE, 0, num_elem * sizeof(cl_float2), src_0_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueWriteBuffer' failed\n"); exit(1); } /* Create host dst buffer */ cl_float2 *dst_host_buffer; dst_host_buffer = malloc(num_elem * sizeof(cl_float2)); memset((void *)dst_host_buffer, 1, num_elem * sizeof(cl_float2)); /* Create device dst buffer */ cl_mem dst_device_buffer; dst_device_buffer = clCreateBuffer(context, CL_MEM_WRITE_ONLY, num_elem *sizeof(cl_float2), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create dst buffer\n"); exit(1); } /* Set kernel arguments */ ret = CL_SUCCESS; ret |= clSetKernelArg(kernel, 0, sizeof(cl_mem), &src_0_device_buffer); ret |= clSetKernelArg(kernel, 1, sizeof(cl_mem), &dst_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clSetKernelArg' failed\n"); exit(1); } /* Launch the kernel */ size_t global_work_size = num_elem; size_t local_work_size = num_elem; ret = clEnqueueNDRangeKernel(command_queue, kernel, 1, NULL, &global_work_size, &local_work_size, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueNDRangeKernel' failed\n"); exit(1); } /* Wait for it to finish */ clFinish(command_queue); /* Read results from GPU */ ret = clEnqueueReadBuffer(command_queue, dst_device_buffer, CL_TRUE,0, num_elem * sizeof(cl_float2), dst_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueReadBuffer' failed\n"); exit(1); } /* Dump dst buffer to file */ char dump_file[100]; sprintf((char *)&dump_file, "%s.result", argv[0]); write_buffer(dump_file, (const char *)dst_host_buffer, num_elem * sizeof(cl_float2)); printf("Result dumped to %s\n", dump_file); /* Free host dst buffer */ free(dst_host_buffer); /* Free device dst buffer */ ret = clReleaseMemObject(dst_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Free host side src buffer 0 */ free(src_0_host_buffer); /* Free device side src buffer 0 */ ret = clReleaseMemObject(src_0_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Release kernel */ ret = clReleaseKernel(kernel); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseKernel' failed\n"); exit(1); } /* Release program */ ret = clReleaseProgram(program); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseProgram' failed\n"); exit(1); } /* Release command queue */ ret = clReleaseCommandQueue(command_queue); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseCommandQueue' failed\n"); exit(1); } /* Release context */ ret = clReleaseContext(context); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseContext' failed\n"); exit(1); } return 0; }
the_stack_data/31868.c
/*BEGIN_LEGAL Intel Open Source License Copyright (c) 2002-2016 Intel Corporation. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the Intel Corporation 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 INTEL OR ITS 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. END_LEGAL */ /* * A trivial application that does nothing, but contains function that loops forever * which is invoked by Pin's aplication thread creation routine. */ #include <stdlib.h> #include <unistd.h> #include <sched.h> void doNothing() { volatile int loopCount; for (;;) { sched_yield(); loopCount++; } } void (*funcPtr)(); int main(int argc, char ** argv) { // Ensure that the compiler thinks there is a reference to doNothing. funcPtr = doNothing; sleep(10); exit(0); }
the_stack_data/291930.c
/* minv.c * * Matrix inversion * * * * SYNOPSIS: * * int n, errcod; * double A[n*n], X[n*n]; * double B[n]; * int IPS[n]; * int cfs_minv(); * * errcod = cfs_minv( A, X, n, B, IPS ); * * * * DESCRIPTION: * * Finds the inverse of the n by n matrix A. The result goes * to X. B and IPS are scratch pad arrays of length n. * The contents of matrix A are destroyed. * * The routine returns nonzero on error; error messages are printed * by subroutine simq(). * */ int cfs_minv( A, X, n, B, IPS ) double A[], X[]; int n; double B[]; int IPS[]; { double *pX; int i, k; extern int cfs_simq(double *, double *, double *, int, int, int *); extern void cfs_mtransp(int, double *, double *); for( i=1; i<n; i++ ) B[i] = 0.0; B[0] = 1.0; /* Reduce the matrix and solve for first right hand side vector */ pX = X; k = cfs_simq( A, B, pX, n, 1, IPS ); if( k ) return(-1); /* Solve for the remaining right hand side vectors */ for( i=1; i<n; i++ ) { B[i-1] = 0.0; B[i] = 1.0; pX += n; k = cfs_simq( A, B, pX, n, -1, IPS ); if( k ) return(-1); } /* Transpose the array of solution vectors */ cfs_mtransp( n, X, X ); return(0); }
the_stack_data/243894496.c
#ifndef TH_GENERIC_FILE #define TH_GENERIC_FILE "generic/TemporalUpSamplingNearest.c" #else #include "linear_upsampling.h" static inline void THNN_(TemporalUpSamplingNearest_shapeCheck) (THTensor *input, THTensor *gradOutput, int nBatch, int nChannels, int inputWidth, int outputWidth) { THArgCheck(inputWidth > 0 && outputWidth > 0, 2, "input and output sizes should be greater than 0," " but got input (W: %d) output (W: %d)", inputWidth, outputWidth); if (input != NULL) { THNN_ARGCHECK(THTensor_nDimensionLegacyAll(input) == 3, 2, input, "3D input tensor expected but got: %s"); } if (gradOutput != NULL) { THNN_CHECK_DIM_SIZE(gradOutput, 3, 0, nBatch); THNN_CHECK_DIM_SIZE(gradOutput, 3, 1, nChannels); THNN_CHECK_DIM_SIZE(gradOutput, 3, 2, outputWidth); } } void THNN_(TemporalUpSamplingNearest_updateOutput)( THNNState *state, THTensor *input, THTensor *output, int outputWidth) { int nbatch = THTensor_(size)(input, 0); int channels = THTensor_(size)(input, 1); int inputWidth = THTensor_(size)(input, 2); const float scale = (float) inputWidth / (float)outputWidth; THNN_(TemporalUpSamplingNearest_shapeCheck)(input, NULL, nbatch, channels, inputWidth, outputWidth); THTensor_(resize3d)(output, THTensor_(size)(input, 0), THTensor_(size)(input, 1), outputWidth); channels = channels * nbatch; THAssert(inputWidth > 0 && outputWidth > 0); input = THTensor_(newContiguous)(input); THTensor_(zero)(output); real *idata = THTensor_(data)(input); real *odata = THTensor_(data)(output); // special case: just copy if (inputWidth == outputWidth) { for (int w2 = 0; w2 < outputWidth; ++w2) { const int w1 = w2; const real* pos1 = &idata[w1]; real* pos2 = &odata[w2]; for (int c = 0; c < channels; ++c) { pos2[0] = pos1[0]; pos1 += inputWidth; pos2 += outputWidth; } } THTensor_(free)(input); return; } for (int w2 = 0; w2 < outputWidth; ++w2) { const accreal src_x = nearest_neighbor_compute_source_index(scale, w2, inputWidth); const int w1 = src_x; const real* pos1 = &idata[w1]; real* pos2 = &odata[w2]; for (int c = 0; c < channels; ++c) { pos2[0] = pos1[0]; pos1 += inputWidth; pos2 += outputWidth; } } THTensor_(free)(input); } void THNN_(TemporalUpSamplingNearest_updateGradInput)( THNNState *state, THTensor *gradOutput, THTensor *gradInput, int nbatch, int channels, int inputWidth, int outputWidth) { THNN_(TemporalUpSamplingNearest_shapeCheck)(NULL, gradOutput, nbatch, channels, inputWidth, outputWidth); THTensor_(resize3d)(gradInput, nbatch, channels, inputWidth); THTensor_(zero)(gradInput); gradOutput = THTensor_(newContiguous)(gradOutput); real *data1 = THTensor_(data)(gradInput); real *data2 = THTensor_(data)(gradOutput); channels = nbatch * channels; const float scale = (float) inputWidth / (float)outputWidth; // special case: same-size matching grids if (inputWidth == outputWidth) { for (int w2 = 0; w2 < outputWidth; ++w2) { const int w1 = w2; real* pos1 = &data1[w1]; const real* pos2 = &data2[w2]; for (int c = 0; c < channels; ++c) { pos1[0] += pos2[0]; pos1 += inputWidth; pos2 += outputWidth; } } THTensor_(free)(gradOutput); return; } for (int w2 = 0; w2 < outputWidth; ++w2) { const int w1 = nearest_neighbor_compute_source_index(scale, w2, inputWidth); real* pos1 = &data1[w1]; const real* pos2 = &data2[w2]; for (int c = 0; c < channels; ++c) { pos1[0] += pos2[0]; pos1 += inputWidth; pos2 += outputWidth; } } THTensor_(free)(gradOutput); } #endif
the_stack_data/531679.c
//CSL201 DATA STRUCTURES LAB ----- VISHRUTH S, CS3A, 61 //CYCLE 2 QUESTION 18 //To implement a Circular Queue using an array #include <stdio.h> #include <stdbool.h> #define SIZE 20 // maximum size int cq[SIZE]; // Array for circular queue int front = -1, rear = -1; // Initializing front and rear // Check if queue is empty bool isEmpty() { return front == -1 && rear == -1; } // Check if queue is full bool isFull() { return (rear + 1) % SIZE == front; } // To insert element void enqueue(int el) { if (isFull()) printf("\nQueue Full"); else { if (front == -1) front = rear = 0; else rear = (rear + 1) % SIZE; cq[rear] = el; } } // To remove element void dequeue() { if (isEmpty()) printf("\nQueue Empty"); else { int deleted = cq[front]; if (front == rear) front = rear = -1; else front = (front + 1) % SIZE; printf("Deleted: %d", deleted); } } // To display the queue void printQ() { if (isEmpty()) printf("\nQueue empty"); else { if (front <= rear) for (int i = front; i <= rear; i++) printf("%d ", cq[i]); else { for (int i = front; i < SIZE; i++) printf("%d ", cq[i]); for (int i = 0; i <= rear; i++) printf("%d ", cq[i]); } } } // ==== MAIN FUNCTION === // int main() { int ch, element; do { printf("\n\nChoose operation"); printf("\n1.Enqueue"); printf("\n2.Dequeue"); printf("\n3.Display queue"); printf("\n4.Exit\n"); scanf("%d", &ch); switch (ch) { case 1: printf("\nEnter element to insert "); scanf("%d", &element); enqueue(element); break; case 2: dequeue(); break; case 3: printQ(); break; } } while (ch < 4); return 0; }
the_stack_data/1001379.c
int main() { int a,b,c,d; int __attribute__((annotate("sensitive"))) key1; // sensitive if(a) { a = 2; b = 3; } else { c = 4; d = 5; } if(key1) { a = 2; } else { b = 3; } if(a) { b = 4; } else { c = 5; } }
the_stack_data/46366.c
/* * DDIR - Decimal Directory * New sample command for FLOS, MS-DOS style directory listing. * It can be built for CP/M as well, but in that case the file * size is expanded to the last disk block boundary. * * File size is shown in decimal, using the long data types. * /P and /W arguments are supported as well as the wildcards. * * To support native printer output the CP/M lib must be rebuilt * in DEVICES mode. It will permit to redirect the output to "LST:" * * * To build: * zcc +osca -lndos -o ddir.exe ddir.c * zcc +osca -lflosdos -o ddir.exe ddir.c (support file output redirection) * zcc +cpm -o ddir.cpm ddir.c * * Stefano Bodrato, 3/8/2011 * * $Id: ddir.c,v 1.4 2013-06-06 11:42:46 stefano Exp $ * */ #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <string.h> #include <stdio.h> int x,y,lines; char p,w,filtered; unsigned long sz,tot,subtot; char output[15]; char wildname[15]; int main(int argc, char *argv[]) { w=0; p=0; filtered=0; lines=1; if (argc > 1) { for (x=1; x<argc; x++) { if (!strcmp(argv[x],"/W")) w++; else if (!strcmp(argv[x],"/P")) p++; else { sprintf(wildname,argv[x]); filtered++; } } } tot=0; if ((x=dir_move_first())!=0) return(x); printf("-- Directory of volume #%u --\n", get_current_volume()); while (x == 0) { if ((!filtered) || wcmatch(wildname,dir_get_entry_name())) { printf("%s ",dir_get_entry_name()); for (y=14;y>strlen(dir_get_entry_name());y--) putchar(' '); if (!dir_get_entry_type()) { sz=dir_get_entry_size(); sprintf(output,"%lu",sz); if (w) { printf (" | "); } else { for (y=13;y>strlen(output);y--) putchar('.'); printf("%s\n",output); } tot = tot+sz; } else { if (w) { printf ("d| "); } else printf ("<dir>\n"); } lines++; } if (isatty(stdout)) { if (p && (lines>23)) { puts_cons (" --more-- "); fgetc_cons(); fputc_cons('\n'); lines=0; } } else { if (p && (lines>60)) { putchar(12); // Form Feed putchar('\n'); lines=0; } } x = dir_move_next(); } if (!w) { printf("Total bytes: %lu.",tot); } putchar('\n'); return(0); }
the_stack_data/126703783.c
// RUN: %check %s -Winline -fno-semantic-interposition inline int f(int a, ...) { return 3; } int main() { return f(1); // CHECK: warning: can't inline call: call to variadic function }
the_stack_data/187643641.c
/*====================================================================* - Copyright (C) 2001 Leptonica. 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. - - 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 ANY - 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. *====================================================================*/ /*! * \file leptwin.c * <pre> * * This file contains Leptonica routines needed only on Microsoft Windows * * Currently it only contains one public function * (based on dibsectn.c by jmh, 03-30-98): * * HBITMAP pixGetWindowsHBITMAP(PIX *pix) * </pre> */ #ifdef _WIN32 #include <stdlib.h> #include <string.h> #include "allheaders.h" #include "leptwin.h" /* Macro to determine the number of bytes per line in the DIB bits. * This accounts for DWORD alignment by adding 31 bits, * then dividing by 32, then rounding up to the next highest * count of 4-bytes. Then, we multiply by 4 to get the total byte count. */ #define BYTESPERLINE(Width, BPP) ((l_int32)((((DWORD)(Width) * (DWORD)(BPP) + 31) >> 5)) << 2) /* ********************************************************************** DWORD DSImageBitsSize(LPBITMAPINFO pbmi) PARAMETERS: LPBITMAPINFO - pointer to a BITMAPINFO describing a DIB RETURNS: DWORD - the size, in bytes, of the DIB's image bits REMARKS: Calculates and returns the size, in bytes, of the image bits for the DIB described by the BITMAPINFO. ********************************************************************** */ static DWORD DSImageBitsSize(LPBITMAPINFO pbmi) { switch(pbmi->bmiHeader.biCompression) { case BI_RLE8: /* wrong if haven't called DSCreateDIBSection or * CreateDIBSection with this pbmi */ case BI_RLE4: return pbmi->bmiHeader.biSizeImage; break; default: /* should not have to use "default" */ case BI_RGB: case BI_BITFIELDS: return BYTESPERLINE(pbmi->bmiHeader.biWidth, \ pbmi->bmiHeader.biBitCount * pbmi->bmiHeader.biPlanes) * pbmi->bmiHeader.biHeight; break; } return 0; } /* ********************************************************************** DWORD ImageBitsSize(HBITMAP hbitmap) PARAMETERS: HBITMAP - hbitmap RETURNS: DWORD - the size, in bytes, of the HBITMAP's image bits REMARKS: Calculates and returns the size, in bytes, of the image bits for the DIB described by the HBITMAP. ********************************************************************** */ static DWORD ImageBitsSize(HBITMAP hBitmap) { DIBSECTION ds; GetObject(hBitmap, sizeof(DIBSECTION), &ds); switch( ds.dsBmih.biCompression ) { case BI_RLE8: /* wrong if haven't called DSCreateDIBSection or * CreateDIBSection with this pbmi */ case BI_RLE4: return ds.dsBmih.biSizeImage; break; default: /* should not have to use "default" */ case BI_RGB: case BI_BITFIELDS: return BYTESPERLINE(ds.dsBmih.biWidth, \ ds.dsBmih.biBitCount * ds.dsBmih.biPlanes) * ds.dsBmih.biHeight; break; } return 0; } /*! * \brief setColormap(LPBITMAPINFO pbmi, PIXCMAP *cmap) * * \param[in] pbmi pointer to a BITMAPINFO describing a DIB * \param[in] cmap leptonica colormap * \return number of colors in cmap */ static int setColormap(LPBITMAPINFO pbmi, PIXCMAP *cmap) { l_int32 i, nColors, rval, gval, bval; nColors = pixcmapGetCount(cmap); for (i = 0; i < nColors; i++) { pixcmapGetColor(cmap, i, &rval, &gval, &bval); pbmi->bmiColors[i].rgbRed = rval; pbmi->bmiColors[i].rgbGreen = gval; pbmi->bmiColors[i].rgbBlue = bval; pbmi->bmiColors[i].rgbReserved = 0; } pbmi->bmiHeader.biClrUsed = nColors; return nColors; } /* ********************************************************************** HBITMAP DSCreateBitmapInfo(l_int32 width, l_int32 height, l_int32 depth, PIXCMAP *cmap) PARAMETERS: l_int32 width - Desired width of the DIBSection l_int32 height - Desired height of the DIBSection l_int32 depth - Desired bit-depth of the DIBSection PIXCMAP cmap - leptonica colormap for depths < 16 RETURNS: LPBITMAPINFO - a ptr to BITMAPINFO of the desired size and bit-depth NULL on failure REMARKS: Creates a BITMAPINFO based on the criteria passed in as parameters. ********************************************************************** */ static LPBITMAPINFO DSCreateBitmapInfo(l_int32 width, l_int32 height, l_int32 depth, PIXCMAP *cmap) { l_int32 nInfoSize; LPBITMAPINFO pbmi; LPDWORD pMasks; nInfoSize = sizeof(BITMAPINFOHEADER); if( depth <= 8 ) nInfoSize += sizeof(RGBQUAD) * (1 << depth); if((depth == 16) || (depth == 32)) nInfoSize += (3 * sizeof(DWORD)); /* Create the header big enough to contain color table and * bitmasks if needed. */ pbmi = (LPBITMAPINFO)malloc(nInfoSize); if (!pbmi) return NULL; ZeroMemory(pbmi, nInfoSize); pbmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER); pbmi->bmiHeader.biWidth = width; pbmi->bmiHeader.biHeight = height; pbmi->bmiHeader.biPlanes = 1; pbmi->bmiHeader.biBitCount = depth; /* override below for 16 and 32 bpp */ pbmi->bmiHeader.biCompression = BI_RGB; /* ?? not sure if this is right? */ pbmi->bmiHeader.biSizeImage = DSImageBitsSize(pbmi); pbmi->bmiHeader.biXPelsPerMeter = 0; pbmi->bmiHeader.biYPelsPerMeter = 0; pbmi->bmiHeader.biClrUsed = 0; /* override below */ pbmi->bmiHeader.biClrImportant = 0; switch(depth) { case 24: /* 24bpp requires no special handling */ break; case 16: /* if it's 16bpp, fill in the masks and override the * compression. These are the default masks -- you * could change them if needed. */ pMasks = (LPDWORD)(pbmi->bmiColors); pMasks[0] = 0x00007c00; pMasks[1] = 0x000003e0; pMasks[2] = 0x0000001f; pbmi->bmiHeader.biCompression = BI_BITFIELDS; break; case 32: /* if it's 32 bpp, fill in the masks and override * the compression */ pMasks = (LPDWORD)(pbmi->bmiColors); /*pMasks[0] = 0x00ff0000; */ /*pMasks[1] = 0x0000ff00; */ /*pMasks[2] = 0x000000ff; */ pMasks[0] = 0xff000000; pMasks[1] = 0x00ff0000; pMasks[2] = 0x0000ff00; pbmi->bmiHeader.biCompression = BI_BITFIELDS; break; case 8: case 4: case 1: setColormap(pbmi, cmap); break; } return pbmi; } /* ********************************************************************** HBITMAP DSCreateDIBSection(l_int32 width, l_int32 height, l_int32 depth, PIXCMAP *cmap) PARAMETERS: l_int32 width - Desired width of the DIBSection l_int32 height - Desired height of the DIBSection l_int32 depth - Desired bit-depth of the DIBSection PIXCMAP cmap - leptonica colormap for depths < 16 RETURNS: HBITMAP - a DIBSection HBITMAP of the desired size and bit-depth NULL on failure REMARKS: Creates a DIBSection based on the criteria passed in as parameters. ********************************************************************** */ static HBITMAP DSCreateDIBSection(l_int32 width, l_int32 height, l_int32 depth, PIXCMAP *cmap) { HBITMAP hBitmap; l_int32 nInfoSize; LPBITMAPINFO pbmi; HDC hRefDC; LPBYTE pBits; pbmi = DSCreateBitmapInfo (width, height, depth, cmap); if (!pbmi) return NULL; hRefDC = GetDC(NULL); hBitmap = CreateDIBSection(hRefDC, pbmi, DIB_RGB_COLORS, (void **) &pBits, NULL, 0); nInfoSize = GetLastError(); ReleaseDC(NULL, hRefDC); free(pbmi); return hBitmap; } /*! * \brief pixGetWindowsHBITMAP() * * \param[in] pix * \return Windows hBitmap, or NULL on error * * <pre> * Notes: * (1) It's the responsibility of the caller to destroy the * returned hBitmap with a call to DeleteObject (or with * something that eventually calls DeleteObject). * </pre> */ HBITMAP pixGetWindowsHBITMAP(PIX *pix) { l_int32 width, height, depth; l_uint32 *data; HBITMAP hBitmap = NULL; BITMAP bm; DWORD imageBitsSize; PIX *pixt = NULL; PIXCMAP *cmap; PROCNAME("pixGetWindowsHBITMAP"); if (!pix) return (HBITMAP)ERROR_PTR("pix not defined", procName, NULL); pixGetDimensions(pix, &width, &height, &depth); cmap = pixGetColormap(pix); if (depth == 24) depth = 32; if (depth == 2) { pixt = pixConvert2To8(pix, 0, 85, 170, 255, TRUE); if (!pixt) return (HBITMAP)ERROR_PTR("unable to convert pix from 2bpp to 8bpp", procName, NULL); depth = pixGetDepth(pixt); cmap = pixGetColormap(pixt); } if (depth < 16) { if (!cmap) cmap = pixcmapCreateLinear(depth, 1<<depth); } hBitmap = DSCreateDIBSection(width, height, depth, cmap); if (!hBitmap) return (HBITMAP)ERROR_PTR("Unable to create HBITMAP", procName, NULL); /* By default, Windows assumes bottom up images */ if (pixt) pixt = pixFlipTB(pixt, pixt); else pixt = pixFlipTB(NULL, pix); /* "standard" color table assumes bit off=black */ if (depth == 1) { pixInvert(pixt, pixt); } /* Don't byte swap until done manipulating pix! */ if (depth <= 16) pixEndianByteSwap(pixt); GetObject (hBitmap, sizeof(BITMAP), &bm); imageBitsSize = ImageBitsSize(hBitmap); data = pixGetData(pixt); if (data) { memcpy (bm.bmBits, data, imageBitsSize); } else { DeleteObject (hBitmap); hBitmap = NULL; } pixDestroy(&pixt); return hBitmap; } #endif /* _WIN32 */
the_stack_data/61420.c
/* * Author: Ethan Booker * Date: 2/12/2018 * Description: A program that can encrypt and decipher messages */ #include <stdio.h> #include <string.h> #include <stdlib.h> #include <ctype.h> // buffer size #define LINELEN 1024 // Function declaration void decipher(char x[], int shifter); void encript(char x[], int shifter); int main(int argc, char **argv) { //Checks if arguments are valid if(strcmp(argv[1],"-d") != 0 && strcmp(argv[1],"-e") != 0) { return -1; } //Gets the shift count number int shifter = strtol(argv[2], NULL, 10); char *fgets_rtn = NULL; // Variable to capture return code char buffer[ LINELEN ]; // Where we are reading the data into do { // read data (up to LINELEN chars) into buffer from stdin fgets_rtn = fgets( buffer, LINELEN, stdin ); if( fgets_rtn != NULL ) { // fgets was successful! //checks to see which option to do if(strcmp(argv[1],"-d") == 0) { decipher(buffer, shifter); } else { encript(buffer, shifter); } } } while( fgets_rtn != NULL ); return 0; } void decipher(char x[], int shifter) { int length = strlen(x); int i; for(i = 0; i < length; i++){ if(isalpha(x[i])){ //Shifts the char value by the shift value x[i] = toupper(x[i]); int num = ((int) ((x[i] - shifter + 65) %26)) + 65; x[i] = (char)(num); } } //print the changed string printf("%s", x); } void encript(char x[], int shifter) { int length = strlen(x); int i; for(i = 0; i < length; i++){ if(isalpha(x[i])){ //Shifts the char value by the shift value x[i] = toupper(x[i]); int num = ((int) ((x[i] + shifter - 65) %26)) + 65; x[i] = (char)(num); } } printf("%s", x); }
the_stack_data/93886428.c
/* gcc -Wall Message_Digest.c -o Message_Digest -lcrypto -lssl */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <openssl/md5.h> int main() { const unsigned char msg[20]="Hello World"; // const unsigned char *p= msg; unsigned char md[MD5_DIGEST_LENGTH]; MD5(msg, sizeof(msg), md); for(int i = 0; i < MD5_DIGEST_LENGTH; i++){ printf("%02x", md[i]); } printf("\n"); return EXIT_SUCCESS; }
the_stack_data/168894520.c
#define macro_34 103 void function_34() { if(2 > 0) { int i = 0; { int k; i = macro_34; } {int o;} } } //CHECK: de_decls_34.c:5:7: warning: disable dead code elimination //CHECK: int i = 0; //CHECK: ^ //CHECK: de_decls_34.c:8:8: warning: macro prevent dead code elimination //CHECK: i = macro_34; //CHECK: ^ //CHECK: de_decls_34.c:1:18: note: expanded from macro 'macro_34' //CHECK: #define macro_34 103 //CHECK: ^ //CHECK: de_decls_34.c:7:8: warning: disable dead code elimination //CHECK: int k; //CHECK: ^ //CHECK: de_decls_34.c:8:8: warning: macro prevent dead code elimination //CHECK: i = macro_34; //CHECK: ^ //CHECK: de_decls_34.c:1:18: note: expanded from macro 'macro_34' //CHECK: #define macro_34 103 //CHECK: ^ //CHECK: 4 warnings generated.
the_stack_data/721863.c
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fopenmp -ast-dump %s | FileCheck --match-full-lines -implicit-check-not=openmp_structured_block %s void test_one(int x) { #pragma omp target teams distribute for (int i = 0; i < x; i++) ; } void test_two(int x, int y) { #pragma omp target teams distribute for (int i = 0; i < x; i++) for (int i = 0; i < y; i++) ; } void test_three(int x, int y) { #pragma omp target teams distribute collapse(1) for (int i = 0; i < x; i++) for (int i = 0; i < y; i++) ; } void test_four(int x, int y) { #pragma omp target teams distribute collapse(2) for (int i = 0; i < x; i++) for (int i = 0; i < y; i++) ; } void test_five(int x, int y, int z) { #pragma omp target teams distribute collapse(2) for (int i = 0; i < x; i++) for (int i = 0; i < y; i++) for (int i = 0; i < z; i++) ; } // CHECK: TranslationUnitDecl {{.*}} <<invalid sloc>> <invalid sloc> // CHECK: |-FunctionDecl {{.*}} <{{.*}}ast-dump-openmp-target-teams-distribute.c:3:1, line:7:1> line:3:6 test_one 'void (int)' // CHECK-NEXT: | |-ParmVarDecl {{.*}} <col:15, col:19> col:19 used x 'int' // CHECK-NEXT: | `-CompoundStmt {{.*}} <col:22, line:7:1> // CHECK-NEXT: | `-OMPTargetTeamsDistributeDirective {{.*}} <line:4:9, col:36> // CHECK-NEXT: | |-OMPFirstprivateClause {{.*}} <<invalid sloc>> <implicit> // CHECK-NEXT: | | `-DeclRefExpr {{.*}} <line:5:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | `-CapturedStmt {{.*}} <col:3, line:6:5> // CHECK-NEXT: | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-CapturedStmt {{.*}} <line:5:3, line:6:5> // CHECK-NEXT: | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-CapturedStmt {{.*}} <line:5:3, line:6:5> // CHECK-NEXT: | | | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | | | |-ForStmt {{.*}} <line:5:3, line:6:5> // CHECK-NEXT: | | | | | | | |-DeclStmt {{.*}} <line:5:8, col:17> // CHECK-NEXT: | | | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | `-NullStmt {{.*}} <line:6:5> openmp_structured_block // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <line:4:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:4:9) *const restrict' // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <line:5:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:4:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:4:9) *const restrict' // CHECK-NEXT: | | | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | | | `-FieldDecl {{.*}} <line:5:3> col:3 implicit 'int' // CHECK-NEXT: | | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-ForStmt {{.*}} <col:3, line:6:5> // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:5:8, col:17> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-NullStmt {{.*}} <line:6:5> openmp_structured_block // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:4:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:4:9) *const restrict' // CHECK-NEXT: | | | | `-VarDecl {{.*}} <line:5:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <col:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | |-AlwaysInlineAttr {{.*}} <<invalid sloc>> Implicit __forceinline // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:4:9> col:9 implicit .global_tid. 'const int' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .part_id. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .privates. 'void *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .copy_fn. 'void (*const restrict)(void *const restrict, ...)' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .task_t. 'void *const' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:4:9) *const restrict' // CHECK-NEXT: | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | `-FieldDecl {{.*}} <line:5:3> col:3 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-CapturedStmt {{.*}} <col:3, line:6:5> // CHECK-NEXT: | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-ForStmt {{.*}} <line:5:3, line:6:5> // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:5:8, col:17> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-NullStmt {{.*}} <line:6:5> openmp_structured_block // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:4:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:4:9) *const restrict' // CHECK-NEXT: | | | | `-VarDecl {{.*}} <line:5:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <col:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:4:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:4:9) *const restrict' // CHECK-NEXT: | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | `-FieldDecl {{.*}} <line:5:3> col:3 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-ForStmt {{.*}} <col:3, line:6:5> // CHECK-NEXT: | | | |-DeclStmt {{.*}} <line:5:8, col:17> // CHECK-NEXT: | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | |-<<<NULL>>> // CHECK-NEXT: | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | `-NullStmt {{.*}} <line:6:5> openmp_structured_block // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:4:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:4:9) *const restrict' // CHECK-NEXT: | | `-VarDecl {{.*}} <line:5:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | `-DeclRefExpr {{.*}} <col:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: |-FunctionDecl {{.*}} <line:9:1, line:14:1> line:9:6 test_two 'void (int, int)' // CHECK-NEXT: | |-ParmVarDecl {{.*}} <col:15, col:19> col:19 used x 'int' // CHECK-NEXT: | |-ParmVarDecl {{.*}} <col:22, col:26> col:26 used y 'int' // CHECK-NEXT: | `-CompoundStmt {{.*}} <col:29, line:14:1> // CHECK-NEXT: | `-OMPTargetTeamsDistributeDirective {{.*}} <line:10:9, col:36> // CHECK-NEXT: | |-OMPFirstprivateClause {{.*}} <<invalid sloc>> <implicit> // CHECK-NEXT: | | |-DeclRefExpr {{.*}} <line:11:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | `-DeclRefExpr {{.*}} <line:12:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | `-CapturedStmt {{.*}} <line:11:3, line:13:7> // CHECK-NEXT: | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-CapturedStmt {{.*}} <line:11:3, line:13:7> // CHECK-NEXT: | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-CapturedStmt {{.*}} <line:11:3, line:13:7> // CHECK-NEXT: | | | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | | | |-ForStmt {{.*}} <line:11:3, line:13:7> // CHECK-NEXT: | | | | | | | |-DeclStmt {{.*}} <line:11:8, col:17> // CHECK-NEXT: | | | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | `-ForStmt {{.*}} <line:12:5, line:13:7> openmp_structured_block // CHECK-NEXT: | | | | | | | |-DeclStmt {{.*}} <line:12:10, col:19> // CHECK-NEXT: | | | | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | `-NullStmt {{.*}} <line:13:7> // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <line:10:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:10:9) *const restrict' // CHECK-NEXT: | | | | | | |-VarDecl {{.*}} <line:11:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <line:12:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | |-DeclRefExpr {{.*}} <line:11:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <line:12:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:10:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:10:9) *const restrict' // CHECK-NEXT: | | | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | | | |-FieldDecl {{.*}} <line:11:3> col:3 implicit 'int' // CHECK-NEXT: | | | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | | | `-FieldDecl {{.*}} <line:12:25> col:25 implicit 'int' // CHECK-NEXT: | | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-ForStmt {{.*}} <line:11:3, line:13:7> // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:11:8, col:17> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ForStmt {{.*}} <line:12:5, line:13:7> openmp_structured_block // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:12:10, col:19> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-NullStmt {{.*}} <line:13:7> // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:10:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:10:9) *const restrict' // CHECK-NEXT: | | | | |-VarDecl {{.*}} <line:11:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | `-VarDecl {{.*}} <line:12:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | |-DeclRefExpr {{.*}} <line:11:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <line:12:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | |-AlwaysInlineAttr {{.*}} <<invalid sloc>> Implicit __forceinline // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:10:9> col:9 implicit .global_tid. 'const int' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .part_id. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .privates. 'void *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .copy_fn. 'void (*const restrict)(void *const restrict, ...)' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .task_t. 'void *const' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:10:9) *const restrict' // CHECK-NEXT: | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | |-FieldDecl {{.*}} <line:11:3> col:3 implicit 'int' // CHECK-NEXT: | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | `-FieldDecl {{.*}} <line:12:25> col:25 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-CapturedStmt {{.*}} <line:11:3, line:13:7> // CHECK-NEXT: | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-ForStmt {{.*}} <line:11:3, line:13:7> // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:11:8, col:17> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ForStmt {{.*}} <line:12:5, line:13:7> openmp_structured_block // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:12:10, col:19> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-NullStmt {{.*}} <line:13:7> // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:10:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:10:9) *const restrict' // CHECK-NEXT: | | | | |-VarDecl {{.*}} <line:11:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | `-VarDecl {{.*}} <line:12:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | |-DeclRefExpr {{.*}} <line:11:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <line:12:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:10:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:10:9) *const restrict' // CHECK-NEXT: | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | |-FieldDecl {{.*}} <line:11:3> col:3 implicit 'int' // CHECK-NEXT: | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | `-FieldDecl {{.*}} <line:12:25> col:25 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-ForStmt {{.*}} <line:11:3, line:13:7> // CHECK-NEXT: | | | |-DeclStmt {{.*}} <line:11:8, col:17> // CHECK-NEXT: | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | |-<<<NULL>>> // CHECK-NEXT: | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | `-ForStmt {{.*}} <line:12:5, line:13:7> openmp_structured_block // CHECK-NEXT: | | | |-DeclStmt {{.*}} <line:12:10, col:19> // CHECK-NEXT: | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | |-<<<NULL>>> // CHECK-NEXT: | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | `-NullStmt {{.*}} <line:13:7> // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:10:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:10:9) *const restrict' // CHECK-NEXT: | | |-VarDecl {{.*}} <line:11:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | `-VarDecl {{.*}} <line:12:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | |-DeclRefExpr {{.*}} <line:11:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | `-DeclRefExpr {{.*}} <line:12:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: |-FunctionDecl {{.*}} <line:16:1, line:21:1> line:16:6 test_three 'void (int, int)' // CHECK-NEXT: | |-ParmVarDecl {{.*}} <col:17, col:21> col:21 used x 'int' // CHECK-NEXT: | |-ParmVarDecl {{.*}} <col:24, col:28> col:28 used y 'int' // CHECK-NEXT: | `-CompoundStmt {{.*}} <col:31, line:21:1> // CHECK-NEXT: | `-OMPTargetTeamsDistributeDirective {{.*}} <line:17:9, col:48> // CHECK-NEXT: | |-OMPCollapseClause {{.*}} <col:37, col:47> // CHECK-NEXT: | | `-ConstantExpr {{.*}} <col:46> 'int' // CHECK-NEXT: | | `-IntegerLiteral {{.*}} <col:46> 'int' 1 // CHECK-NEXT: | |-OMPFirstprivateClause {{.*}} <<invalid sloc>> <implicit> // CHECK-NEXT: | | |-DeclRefExpr {{.*}} <line:18:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | `-DeclRefExpr {{.*}} <line:19:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | `-CapturedStmt {{.*}} <line:18:3, line:20:7> // CHECK-NEXT: | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-CapturedStmt {{.*}} <line:18:3, line:20:7> // CHECK-NEXT: | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-CapturedStmt {{.*}} <line:18:3, line:20:7> // CHECK-NEXT: | | | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | | | |-ForStmt {{.*}} <line:18:3, line:20:7> // CHECK-NEXT: | | | | | | | |-DeclStmt {{.*}} <line:18:8, col:17> // CHECK-NEXT: | | | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | `-ForStmt {{.*}} <line:19:5, line:20:7> openmp_structured_block // CHECK-NEXT: | | | | | | | |-DeclStmt {{.*}} <line:19:10, col:19> // CHECK-NEXT: | | | | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | `-NullStmt {{.*}} <line:20:7> // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <line:17:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:17:9) *const restrict' // CHECK-NEXT: | | | | | | |-VarDecl {{.*}} <line:18:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <line:19:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | |-DeclRefExpr {{.*}} <line:18:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <line:19:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:17:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:17:9) *const restrict' // CHECK-NEXT: | | | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | | | |-FieldDecl {{.*}} <line:18:3> col:3 implicit 'int' // CHECK-NEXT: | | | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | | | `-FieldDecl {{.*}} <line:19:25> col:25 implicit 'int' // CHECK-NEXT: | | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-ForStmt {{.*}} <line:18:3, line:20:7> // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:18:8, col:17> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ForStmt {{.*}} <line:19:5, line:20:7> openmp_structured_block // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:19:10, col:19> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-NullStmt {{.*}} <line:20:7> // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:17:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:17:9) *const restrict' // CHECK-NEXT: | | | | |-VarDecl {{.*}} <line:18:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | `-VarDecl {{.*}} <line:19:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | |-DeclRefExpr {{.*}} <line:18:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <line:19:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | |-AlwaysInlineAttr {{.*}} <<invalid sloc>> Implicit __forceinline // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:17:9> col:9 implicit .global_tid. 'const int' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .part_id. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .privates. 'void *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .copy_fn. 'void (*const restrict)(void *const restrict, ...)' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .task_t. 'void *const' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:17:9) *const restrict' // CHECK-NEXT: | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | |-FieldDecl {{.*}} <line:18:3> col:3 implicit 'int' // CHECK-NEXT: | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | `-FieldDecl {{.*}} <line:19:25> col:25 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-CapturedStmt {{.*}} <line:18:3, line:20:7> // CHECK-NEXT: | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-ForStmt {{.*}} <line:18:3, line:20:7> // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:18:8, col:17> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ForStmt {{.*}} <line:19:5, line:20:7> openmp_structured_block // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:19:10, col:19> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-NullStmt {{.*}} <line:20:7> // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:17:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:17:9) *const restrict' // CHECK-NEXT: | | | | |-VarDecl {{.*}} <line:18:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | `-VarDecl {{.*}} <line:19:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | |-DeclRefExpr {{.*}} <line:18:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <line:19:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:17:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:17:9) *const restrict' // CHECK-NEXT: | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | |-FieldDecl {{.*}} <line:18:3> col:3 implicit 'int' // CHECK-NEXT: | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | `-FieldDecl {{.*}} <line:19:25> col:25 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-ForStmt {{.*}} <line:18:3, line:20:7> // CHECK-NEXT: | | | |-DeclStmt {{.*}} <line:18:8, col:17> // CHECK-NEXT: | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | |-<<<NULL>>> // CHECK-NEXT: | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | `-ForStmt {{.*}} <line:19:5, line:20:7> openmp_structured_block // CHECK-NEXT: | | | |-DeclStmt {{.*}} <line:19:10, col:19> // CHECK-NEXT: | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | |-<<<NULL>>> // CHECK-NEXT: | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | `-NullStmt {{.*}} <line:20:7> // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:17:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:17:9) *const restrict' // CHECK-NEXT: | | |-VarDecl {{.*}} <line:18:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | `-VarDecl {{.*}} <line:19:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | |-DeclRefExpr {{.*}} <line:18:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | `-DeclRefExpr {{.*}} <line:19:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: |-FunctionDecl {{.*}} <line:23:1, line:28:1> line:23:6 test_four 'void (int, int)' // CHECK-NEXT: | |-ParmVarDecl {{.*}} <col:16, col:20> col:20 used x 'int' // CHECK-NEXT: | |-ParmVarDecl {{.*}} <col:23, col:27> col:27 used y 'int' // CHECK-NEXT: | `-CompoundStmt {{.*}} <col:30, line:28:1> // CHECK-NEXT: | `-OMPTargetTeamsDistributeDirective {{.*}} <line:24:9, col:48> // CHECK-NEXT: | |-OMPCollapseClause {{.*}} <col:37, col:47> // CHECK-NEXT: | | `-ConstantExpr {{.*}} <col:46> 'int' // CHECK-NEXT: | | `-IntegerLiteral {{.*}} <col:46> 'int' 2 // CHECK-NEXT: | |-OMPFirstprivateClause {{.*}} <<invalid sloc>> <implicit> // CHECK-NEXT: | | |-DeclRefExpr {{.*}} <line:25:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | `-DeclRefExpr {{.*}} <line:26:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | `-CapturedStmt {{.*}} <line:25:3, line:27:7> // CHECK-NEXT: | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-CapturedStmt {{.*}} <line:25:3, line:27:7> // CHECK-NEXT: | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-CapturedStmt {{.*}} <line:25:3, line:27:7> // CHECK-NEXT: | | | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | | | |-ForStmt {{.*}} <line:25:3, line:27:7> // CHECK-NEXT: | | | | | | | |-DeclStmt {{.*}} <line:25:8, col:17> // CHECK-NEXT: | | | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | `-ForStmt {{.*}} <line:26:5, line:27:7> // CHECK-NEXT: | | | | | | | |-DeclStmt {{.*}} <line:26:10, col:19> // CHECK-NEXT: | | | | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | `-NullStmt {{.*}} <line:27:7> openmp_structured_block // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <line:24:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:24:9) *const restrict' // CHECK-NEXT: | | | | | | |-VarDecl {{.*}} <line:25:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <line:26:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | |-DeclRefExpr {{.*}} <line:25:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <line:26:5> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:24:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:24:9) *const restrict' // CHECK-NEXT: | | | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | | | |-FieldDecl {{.*}} <line:25:3> col:3 implicit 'int' // CHECK-NEXT: | | | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | | | `-FieldDecl {{.*}} <line:26:5> col:5 implicit 'int' // CHECK-NEXT: | | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-ForStmt {{.*}} <line:25:3, line:27:7> // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:25:8, col:17> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ForStmt {{.*}} <line:26:5, line:27:7> // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:26:10, col:19> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-NullStmt {{.*}} <line:27:7> openmp_structured_block // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:24:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:24:9) *const restrict' // CHECK-NEXT: | | | | |-VarDecl {{.*}} <line:25:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | `-VarDecl {{.*}} <line:26:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | |-DeclRefExpr {{.*}} <line:25:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <line:26:5> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | |-AlwaysInlineAttr {{.*}} <<invalid sloc>> Implicit __forceinline // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:24:9> col:9 implicit .global_tid. 'const int' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .part_id. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .privates. 'void *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .copy_fn. 'void (*const restrict)(void *const restrict, ...)' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .task_t. 'void *const' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:24:9) *const restrict' // CHECK-NEXT: | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | |-FieldDecl {{.*}} <line:25:3> col:3 implicit 'int' // CHECK-NEXT: | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | `-FieldDecl {{.*}} <line:26:5> col:5 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-CapturedStmt {{.*}} <line:25:3, line:27:7> // CHECK-NEXT: | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | |-ForStmt {{.*}} <line:25:3, line:27:7> // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:25:8, col:17> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ForStmt {{.*}} <line:26:5, line:27:7> // CHECK-NEXT: | | | | | |-DeclStmt {{.*}} <line:26:10, col:19> // CHECK-NEXT: | | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-NullStmt {{.*}} <line:27:7> openmp_structured_block // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <line:24:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:24:9) *const restrict' // CHECK-NEXT: | | | | |-VarDecl {{.*}} <line:25:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | `-VarDecl {{.*}} <line:26:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | |-DeclRefExpr {{.*}} <line:25:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <line:26:5> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:24:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:24:9) *const restrict' // CHECK-NEXT: | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | |-FieldDecl {{.*}} <line:25:3> col:3 implicit 'int' // CHECK-NEXT: | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | `-FieldDecl {{.*}} <line:26:5> col:5 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | |-ForStmt {{.*}} <line:25:3, line:27:7> // CHECK-NEXT: | | | |-DeclStmt {{.*}} <line:25:8, col:17> // CHECK-NEXT: | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | |-<<<NULL>>> // CHECK-NEXT: | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | `-ForStmt {{.*}} <line:26:5, line:27:7> // CHECK-NEXT: | | | |-DeclStmt {{.*}} <line:26:10, col:19> // CHECK-NEXT: | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | |-<<<NULL>>> // CHECK-NEXT: | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | `-NullStmt {{.*}} <line:27:7> openmp_structured_block // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <line:24:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:24:9) *const restrict' // CHECK-NEXT: | | |-VarDecl {{.*}} <line:25:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | `-VarDecl {{.*}} <line:26:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | |-DeclRefExpr {{.*}} <line:25:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | `-DeclRefExpr {{.*}} <line:26:5> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: `-FunctionDecl {{.*}} <line:30:1, line:36:1> line:30:6 test_five 'void (int, int, int)' // CHECK-NEXT: |-ParmVarDecl {{.*}} <col:16, col:20> col:20 used x 'int' // CHECK-NEXT: |-ParmVarDecl {{.*}} <col:23, col:27> col:27 used y 'int' // CHECK-NEXT: |-ParmVarDecl {{.*}} <col:30, col:34> col:34 used z 'int' // CHECK-NEXT: `-CompoundStmt {{.*}} <col:37, line:36:1> // CHECK-NEXT: `-OMPTargetTeamsDistributeDirective {{.*}} <line:31:9, col:48> // CHECK-NEXT: |-OMPCollapseClause {{.*}} <col:37, col:47> // CHECK-NEXT: | `-ConstantExpr {{.*}} <col:46> 'int' // CHECK-NEXT: | `-IntegerLiteral {{.*}} <col:46> 'int' 2 // CHECK-NEXT: |-OMPFirstprivateClause {{.*}} <<invalid sloc>> <implicit> // CHECK-NEXT: | |-DeclRefExpr {{.*}} <line:32:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | |-DeclRefExpr {{.*}} <line:33:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | `-DeclRefExpr {{.*}} <line:34:27> 'int' lvalue ParmVar {{.*}} 'z' 'int' // CHECK-NEXT: `-CapturedStmt {{.*}} <line:32:3, line:35:9> // CHECK-NEXT: |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | |-CapturedStmt {{.*}} <line:32:3, line:35:9> // CHECK-NEXT: | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | |-CapturedStmt {{.*}} <line:32:3, line:35:9> // CHECK-NEXT: | | | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | | | |-ForStmt {{.*}} <line:32:3, line:35:9> // CHECK-NEXT: | | | | | | |-DeclStmt {{.*}} <line:32:8, col:17> // CHECK-NEXT: | | | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ForStmt {{.*}} <line:33:5, line:35:9> // CHECK-NEXT: | | | | | | |-DeclStmt {{.*}} <line:33:10, col:19> // CHECK-NEXT: | | | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-ForStmt {{.*}} <line:34:7, line:35:9> openmp_structured_block // CHECK-NEXT: | | | | | | |-DeclStmt {{.*}} <line:34:12, col:21> // CHECK-NEXT: | | | | | | | `-VarDecl {{.*}} <col:12, col:20> col:16 used i 'int' cinit // CHECK-NEXT: | | | | | | | `-IntegerLiteral {{.*}} <col:20> 'int' 0 // CHECK-NEXT: | | | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | | | |-BinaryOperator {{.*}} <col:23, col:27> 'int' '<' // CHECK-NEXT: | | | | | | | |-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | | `-ImplicitCastExpr {{.*}} <col:27> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:27> 'int' lvalue ParmVar {{.*}} 'z' 'int' // CHECK-NEXT: | | | | | | |-UnaryOperator {{.*}} <col:30, col:31> 'int' postfix '++' // CHECK-NEXT: | | | | | | | `-DeclRefExpr {{.*}} <col:30> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | | `-NullStmt {{.*}} <line:35:9> // CHECK-NEXT: | | | | | |-ImplicitParamDecl {{.*}} <line:31:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:31:9) *const restrict' // CHECK-NEXT: | | | | | |-VarDecl {{.*}} <line:32:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | | |-VarDecl {{.*}} <line:33:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | | `-VarDecl {{.*}} <line:34:12, col:20> col:16 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:20> 'int' 0 // CHECK-NEXT: | | | | |-DeclRefExpr {{.*}} <line:32:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | |-DeclRefExpr {{.*}} <line:33:5> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <line:34:27> 'int' lvalue ParmVar {{.*}} 'z' 'int' // CHECK-NEXT: | | | |-ImplicitParamDecl {{.*}} <line:31:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:31:9) *const restrict' // CHECK-NEXT: | | | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | | | |-FieldDecl {{.*}} <line:32:3> col:3 implicit 'int' // CHECK-NEXT: | | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | | |-FieldDecl {{.*}} <line:33:5> col:5 implicit 'int' // CHECK-NEXT: | | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | | `-FieldDecl {{.*}} <line:34:27> col:27 implicit 'int' // CHECK-NEXT: | | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | |-ForStmt {{.*}} <line:32:3, line:35:9> // CHECK-NEXT: | | | | |-DeclStmt {{.*}} <line:32:8, col:17> // CHECK-NEXT: | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-ForStmt {{.*}} <line:33:5, line:35:9> // CHECK-NEXT: | | | | |-DeclStmt {{.*}} <line:33:10, col:19> // CHECK-NEXT: | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-ForStmt {{.*}} <line:34:7, line:35:9> openmp_structured_block // CHECK-NEXT: | | | | |-DeclStmt {{.*}} <line:34:12, col:21> // CHECK-NEXT: | | | | | `-VarDecl {{.*}} <col:12, col:20> col:16 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:20> 'int' 0 // CHECK-NEXT: | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | |-BinaryOperator {{.*}} <col:23, col:27> 'int' '<' // CHECK-NEXT: | | | | | |-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ImplicitCastExpr {{.*}} <col:27> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:27> 'int' lvalue ParmVar {{.*}} 'z' 'int' // CHECK-NEXT: | | | | |-UnaryOperator {{.*}} <col:30, col:31> 'int' postfix '++' // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:30> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-NullStmt {{.*}} <line:35:9> // CHECK-NEXT: | | | |-ImplicitParamDecl {{.*}} <line:31:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:31:9) *const restrict' // CHECK-NEXT: | | | |-VarDecl {{.*}} <line:32:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | |-VarDecl {{.*}} <line:33:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | `-VarDecl {{.*}} <line:34:12, col:20> col:16 used i 'int' cinit // CHECK-NEXT: | | | `-IntegerLiteral {{.*}} <col:20> 'int' 0 // CHECK-NEXT: | | |-DeclRefExpr {{.*}} <line:32:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | |-DeclRefExpr {{.*}} <line:33:5> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | `-DeclRefExpr {{.*}} <line:34:27> 'int' lvalue ParmVar {{.*}} 'z' 'int' // CHECK-NEXT: | |-AlwaysInlineAttr {{.*}} <<invalid sloc>> Implicit __forceinline // CHECK-NEXT: | |-ImplicitParamDecl {{.*}} <line:31:9> col:9 implicit .global_tid. 'const int' // CHECK-NEXT: | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .part_id. 'const int *const restrict' // CHECK-NEXT: | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .privates. 'void *const restrict' // CHECK-NEXT: | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .copy_fn. 'void (*const restrict)(void *const restrict, ...)' // CHECK-NEXT: | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .task_t. 'void *const' // CHECK-NEXT: | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:31:9) *const restrict' // CHECK-NEXT: | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | |-FieldDecl {{.*}} <line:32:3> col:3 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | |-FieldDecl {{.*}} <line:33:5> col:5 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | `-FieldDecl {{.*}} <line:34:27> col:27 implicit 'int' // CHECK-NEXT: | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | |-CapturedStmt {{.*}} <line:32:3, line:35:9> // CHECK-NEXT: | | |-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | | | |-ForStmt {{.*}} <line:32:3, line:35:9> // CHECK-NEXT: | | | | |-DeclStmt {{.*}} <line:32:8, col:17> // CHECK-NEXT: | | | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-ForStmt {{.*}} <line:33:5, line:35:9> // CHECK-NEXT: | | | | |-DeclStmt {{.*}} <line:33:10, col:19> // CHECK-NEXT: | | | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-ForStmt {{.*}} <line:34:7, line:35:9> openmp_structured_block // CHECK-NEXT: | | | | |-DeclStmt {{.*}} <line:34:12, col:21> // CHECK-NEXT: | | | | | `-VarDecl {{.*}} <col:12, col:20> col:16 used i 'int' cinit // CHECK-NEXT: | | | | | `-IntegerLiteral {{.*}} <col:20> 'int' 0 // CHECK-NEXT: | | | | |-<<<NULL>>> // CHECK-NEXT: | | | | |-BinaryOperator {{.*}} <col:23, col:27> 'int' '<' // CHECK-NEXT: | | | | | |-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | | `-ImplicitCastExpr {{.*}} <col:27> 'int' <LValueToRValue> // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:27> 'int' lvalue ParmVar {{.*}} 'z' 'int' // CHECK-NEXT: | | | | |-UnaryOperator {{.*}} <col:30, col:31> 'int' postfix '++' // CHECK-NEXT: | | | | | `-DeclRefExpr {{.*}} <col:30> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | | `-NullStmt {{.*}} <line:35:9> // CHECK-NEXT: | | | |-ImplicitParamDecl {{.*}} <line:31:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | | | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:31:9) *const restrict' // CHECK-NEXT: | | | |-VarDecl {{.*}} <line:32:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | | |-VarDecl {{.*}} <line:33:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | | `-VarDecl {{.*}} <line:34:12, col:20> col:16 used i 'int' cinit // CHECK-NEXT: | | | `-IntegerLiteral {{.*}} <col:20> 'int' 0 // CHECK-NEXT: | | |-DeclRefExpr {{.*}} <line:32:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | |-DeclRefExpr {{.*}} <line:33:5> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | `-DeclRefExpr {{.*}} <line:34:27> 'int' lvalue ParmVar {{.*}} 'z' 'int' // CHECK-NEXT: | |-ImplicitParamDecl {{.*}} <line:31:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:31:9) *const restrict' // CHECK-NEXT: | |-RecordDecl {{.*}} <col:9> col:9 implicit struct definition // CHECK-NEXT: | | |-CapturedRecordAttr {{.*}} <<invalid sloc>> Implicit // CHECK-NEXT: | | |-FieldDecl {{.*}} <line:32:3> col:3 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | |-FieldDecl {{.*}} <line:33:5> col:5 implicit 'int' // CHECK-NEXT: | | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | | `-FieldDecl {{.*}} <line:34:27> col:27 implicit 'int' // CHECK-NEXT: | | `-OMPCaptureKindAttr {{.*}} <<invalid sloc>> Implicit 9 // CHECK-NEXT: | `-CapturedDecl {{.*}} <<invalid sloc>> <invalid sloc> nothrow // CHECK-NEXT: | |-ForStmt {{.*}} <line:32:3, line:35:9> // CHECK-NEXT: | | |-DeclStmt {{.*}} <line:32:8, col:17> // CHECK-NEXT: | | | `-VarDecl {{.*}} <col:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | | |-<<<NULL>>> // CHECK-NEXT: | | |-BinaryOperator {{.*}} <col:19, col:23> 'int' '<' // CHECK-NEXT: | | | |-ImplicitCastExpr {{.*}} <col:19> 'int' <LValueToRValue> // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:19> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | `-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: | | |-UnaryOperator {{.*}} <col:26, col:27> 'int' postfix '++' // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <col:26> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | `-ForStmt {{.*}} <line:33:5, line:35:9> // CHECK-NEXT: | | |-DeclStmt {{.*}} <line:33:10, col:19> // CHECK-NEXT: | | | `-VarDecl {{.*}} <col:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | | |-<<<NULL>>> // CHECK-NEXT: | | |-BinaryOperator {{.*}} <col:21, col:25> 'int' '<' // CHECK-NEXT: | | | |-ImplicitCastExpr {{.*}} <col:21> 'int' <LValueToRValue> // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:21> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | `-ImplicitCastExpr {{.*}} <col:25> 'int' <LValueToRValue> // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <col:25> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: | | |-UnaryOperator {{.*}} <col:28, col:29> 'int' postfix '++' // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <col:28> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | `-ForStmt {{.*}} <line:34:7, line:35:9> openmp_structured_block // CHECK-NEXT: | | |-DeclStmt {{.*}} <line:34:12, col:21> // CHECK-NEXT: | | | `-VarDecl {{.*}} <col:12, col:20> col:16 used i 'int' cinit // CHECK-NEXT: | | | `-IntegerLiteral {{.*}} <col:20> 'int' 0 // CHECK-NEXT: | | |-<<<NULL>>> // CHECK-NEXT: | | |-BinaryOperator {{.*}} <col:23, col:27> 'int' '<' // CHECK-NEXT: | | | |-ImplicitCastExpr {{.*}} <col:23> 'int' <LValueToRValue> // CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:23> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | | `-ImplicitCastExpr {{.*}} <col:27> 'int' <LValueToRValue> // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <col:27> 'int' lvalue ParmVar {{.*}} 'z' 'int' // CHECK-NEXT: | | |-UnaryOperator {{.*}} <col:30, col:31> 'int' postfix '++' // CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <col:30> 'int' lvalue Var {{.*}} 'i' 'int' // CHECK-NEXT: | | `-NullStmt {{.*}} <line:35:9> // CHECK-NEXT: | |-ImplicitParamDecl {{.*}} <line:31:9> col:9 implicit .global_tid. 'const int *const restrict' // CHECK-NEXT: | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit .bound_tid. 'const int *const restrict' // CHECK-NEXT: | |-ImplicitParamDecl {{.*}} <col:9> col:9 implicit __context 'struct (anonymous at {{.*}}ast-dump-openmp-target-teams-distribute.c:31:9) *const restrict' // CHECK-NEXT: | |-VarDecl {{.*}} <line:32:8, col:16> col:12 used i 'int' cinit // CHECK-NEXT: | | `-IntegerLiteral {{.*}} <col:16> 'int' 0 // CHECK-NEXT: | |-VarDecl {{.*}} <line:33:10, col:18> col:14 used i 'int' cinit // CHECK-NEXT: | | `-IntegerLiteral {{.*}} <col:18> 'int' 0 // CHECK-NEXT: | `-VarDecl {{.*}} <line:34:12, col:20> col:16 used i 'int' cinit // CHECK-NEXT: | `-IntegerLiteral {{.*}} <col:20> 'int' 0 // CHECK-NEXT: |-DeclRefExpr {{.*}} <line:32:3> 'int' lvalue ParmVar {{.*}} 'x' 'int' // CHECK-NEXT: |-DeclRefExpr {{.*}} <line:33:5> 'int' lvalue ParmVar {{.*}} 'y' 'int' // CHECK-NEXT: `-DeclRefExpr {{.*}} <line:34:27> 'int' lvalue ParmVar {{.*}} 'z' 'int'
the_stack_data/148578842.c
/* --PROGRAM NAME: knkcch05proj04.c --FLAGS: -std=c99 --PROGRAM STATEMENT: Here's a simplified version of the Beaufort scale, which is used to estimate wind force: Speed(knots) Description Less than 1 Calm 1 - 3 Light air 4 - 27 Breeze 28 - 47 Gale 48 - 63 Storm Above 63 Hurricane Write a program that asks the user to enter a wind speed (in knots), then displays the corresponding description. */ #include<stdio.h> //------------------------START OF MAIN()-------------------------------------- int main(void) { printf("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n"); int wspeed; //User input printf("Enter a wind speed (in knots): "); scanf("%d",&wspeed); printf("Weather condition: "); if(wspeed<1) printf("Calm"); else if(wspeed<4) printf("Light air"); else if(wspeed<28) printf("Breeze"); else if(wspeed<48) printf("Gale"); else if(wspeed<64) printf("Storm"); else printf("Hurricane"); printf("\n++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n"); return 0; } //-------------------------END OF MAIN()--------------------------------------- //--------------------------------------------------------------------------- /* OUTPUT: -- Trial 1: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Enter a wind speed (in knots): 26 Weather condition: Breeze ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -- Trial 2: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Enter a wind speed (in knots): 1 Weather condition: Light air ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -- Trial 3: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Enter a wind speed (in knots): 0 Weather condition: Calm ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -- Trial 4: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Enter a wind speed (in knots): 76 Weather condition: Hurricane ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ //---------------------------------------------------------------------------
the_stack_data/81166.c
#include<stdio.h> void main(void) { printf("Hello all\n"); return; }
the_stack_data/211080630.c
//编写第8章例8.4的dateUpdate函数(使用指针) #include <stdio.h> #include <stdbool.h> struct date { int month; int day; int year; }; int main(void) { struct date *dateUpdate(struct date *todayPtr); struct date today, tomorrow, *thisDay, *nextDay; thisDay = &today; nextDay = &tomorrow; printf("Enter today's date(mm dd yyyy): "); scanf("%i%i%i", &(thisDay->month), &(thisDay->day), &(thisDay->year)); nextDay = dateUpdate(thisDay); printf("Tomorrow's date is %i/%i/%.2i.\n", nextDay->month, nextDay->day, nextDay->year % 100); return 0; } struct date *dateUpdate(struct date *todayPtr) { struct date tomorrow, *tomorrowPtr; int numberOfDays(struct date d); tomorrowPtr = &tomorrow; //必须声明,不然程序崩溃 if(todayPtr->day != numberOfDays(*todayPtr)){ tomorrowPtr->day = todayPtr->day + 1; tomorrowPtr->month = todayPtr->month; tomorrowPtr->year = todayPtr->year; } else if(todayPtr->month == 12){ //年末 tomorrowPtr->day = 1; tomorrowPtr->month = 1; tomorrowPtr->year = todayPtr->year + 1; } else{ //月末 tomorrowPtr->day = 1; tomorrowPtr->month = todayPtr->month + 1; tomorrowPtr->year = todayPtr->year; } return (tomorrowPtr); } int numberOfDays(struct date d) { int days; bool isLeapYear(struct date d); const int daysPerMonth[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; if(isLeapYear(d) == true && d.month == 2) days = 29; else days = daysPerMonth[d.month - 1]; return days; } bool isLeapYear(struct date d) { bool leapYearFlag; if((d.year % 4 == 0 && d.year % 100 != 0) || d.year % 400 == 0) leapYearFlag = true; //是闰年 else leapYearFlag = false; //不是闰年 return leapYearFlag; }
the_stack_data/1039573.c
/* { dg-do compile } */ /* { dg-options "-O -fdump-tree-fre1" } */ struct S { int i; int j; }; struct U { struct S a[10]; } u; int foo (int n, int i, int j) { u.a[n].i = i; u.a[n].j = j; return u.a[n].i; } /* We should remove the redundant load. */ /* { dg-final { scan-tree-dump-not "= u.a\\\[n_2\\(D\\)\\\].i" "fre1" } } */
the_stack_data/122015164.c
/* $NetBSD: getenv.c,v 1.2 2000/01/23 21:02:00 soda Exp $ */ /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * Ralph Campbell. * * 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. * * @(#)getenv.c 8.1 (Berkeley) 6/10/93 */ char * getenv(s) char *s; { }
the_stack_data/115766546.c
#include <stdlib.h> #include <limits.h> int n = 0; void g (int i) { n++; } void f (int m) { int i; i = m; do { g (i * 4); i -= INT_MAX / 8; } while (i > 0); } int main () { f (INT_MAX/8*4); if (n != 4) abort (); exit (0); }
the_stack_data/61074719.c
const char *message(void) { return "right"; }
the_stack_data/320672.c
// WARNING in get_signal // https://syzkaller.appspot.com/bug?id=2550f51f79a41193e0cc84013886bcf8a2bed97e // status:invalid // autogenerated by syzkaller (http://github.com/google/syzkaller) #define _GNU_SOURCE #include <arpa/inet.h> #include <endian.h> #include <errno.h> #include <fcntl.h> #include <linux/capability.h> #include <linux/futex.h> #include <linux/if.h> #include <linux/if_ether.h> #include <linux/if_tun.h> #include <linux/ip.h> #include <linux/tcp.h> #include <net/if_arp.h> #include <pthread.h> #include <sched.h> #include <signal.h> #include <stdarg.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <sys/mount.h> #include <sys/prctl.h> #include <sys/resource.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/time.h> #include <sys/uio.h> #include <sys/wait.h> #include <unistd.h> __attribute__((noreturn)) static void doexit(int status) { volatile unsigned i; syscall(__NR_exit_group, status); for (i = 0;; i++) { } } #include <errno.h> #include <setjmp.h> #include <signal.h> #include <stdarg.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/stat.h> const int kFailStatus = 67; const int kRetryStatus = 69; static void fail(const char* msg, ...) { int e = errno; va_list args; va_start(args, msg); vfprintf(stderr, msg, args); va_end(args); fprintf(stderr, " (errno %d)\n", e); doexit((e == ENOMEM || e == EAGAIN) ? kRetryStatus : kFailStatus); } static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* uctx) { uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; if (__atomic_load_n(&skip_segv, __ATOMIC_RELAXED) && (addr < prog_start || addr > prog_end)) { _longjmp(segv_env, 1); } doexit(sig); } static void install_segv_handler() { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ { \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ } static void use_temporary_dir() { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) fail("failed to mkdtemp"); if (chmod(tmpdir, 0777)) fail("failed to chmod"); if (chdir(tmpdir)) fail("failed to chdir"); } static void vsnprintf_check(char* str, size_t size, const char* format, va_list args) { int rv; rv = vsnprintf(str, size, format, args); if (rv < 0) fail("tun: snprintf failed"); if ((size_t)rv >= size) fail("tun: string '%s...' doesn't fit into buffer", str); } static void snprintf_check(char* str, size_t size, const char* format, ...) { va_list args; va_start(args, format); vsnprintf_check(str, size, format, args); va_end(args); } #define COMMAND_MAX_LEN 128 #define PATH_PREFIX \ "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin " #define PATH_PREFIX_LEN (sizeof(PATH_PREFIX) - 1) static void execute_command(bool panic, const char* format, ...) { va_list args; char command[PATH_PREFIX_LEN + COMMAND_MAX_LEN]; int rv; va_start(args, format); memcpy(command, PATH_PREFIX, PATH_PREFIX_LEN); vsnprintf_check(command + PATH_PREFIX_LEN, COMMAND_MAX_LEN, format, args); rv = system(command); if (panic && rv != 0) fail("tun: command \"%s\" failed with code %d", &command[0], rv); va_end(args); } static int tunfd = -1; static int tun_frags_enabled; #define SYZ_TUN_MAX_PACKET_SIZE 1000 #define TUN_IFACE "syz_tun" #define LOCAL_MAC "aa:aa:aa:aa:aa:aa" #define REMOTE_MAC "aa:aa:aa:aa:aa:bb" #define LOCAL_IPV4 "172.20.20.170" #define REMOTE_IPV4 "172.20.20.187" #define LOCAL_IPV6 "fe80::aa" #define REMOTE_IPV6 "fe80::bb" #define IFF_NAPI 0x0010 #define IFF_NAPI_FRAGS 0x0020 static void initialize_tun(void) { tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 252; if (dup2(tunfd, kTunFd) < 0) fail("dup2(tunfd, kTunFd) failed"); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_NAPI | IFF_NAPI_FRAGS; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) fail("tun: ioctl(TUNSETIFF) failed"); } if (ioctl(tunfd, TUNGETIFF, (void*)&ifr) < 0) fail("tun: ioctl(TUNGETIFF) failed"); tun_frags_enabled = (ifr.ifr_flags & IFF_NAPI_FRAGS) != 0; execute_command(1, "sysctl -w net.ipv6.conf.%s.accept_dad=0", TUN_IFACE); execute_command(1, "sysctl -w net.ipv6.conf.%s.router_solicitations=0", TUN_IFACE); execute_command(1, "ip link set dev %s address %s", TUN_IFACE, LOCAL_MAC); execute_command(1, "ip addr add %s/24 dev %s", LOCAL_IPV4, TUN_IFACE); execute_command(1, "ip -6 addr add %s/120 dev %s", LOCAL_IPV6, TUN_IFACE); execute_command(1, "ip neigh add %s lladdr %s dev %s nud permanent", REMOTE_IPV4, REMOTE_MAC, TUN_IFACE); execute_command(1, "ip -6 neigh add %s lladdr %s dev %s nud permanent", REMOTE_IPV6, REMOTE_MAC, TUN_IFACE); execute_command(1, "ip link set dev %s up", TUN_IFACE); } #define DEV_IPV4 "172.20.20.%d" #define DEV_IPV6 "fe80::%02hx" #define DEV_MAC "aa:aa:aa:aa:aa:%02hx" static void initialize_netdevices(void) { unsigned i; const char* devtypes[] = {"ip6gretap", "bridge", "vcan", "bond", "veth"}; const char* devnames[] = {"lo", "sit0", "bridge0", "vcan0", "tunl0", "gre0", "gretap0", "ip_vti0", "ip6_vti0", "ip6tnl0", "ip6gre0", "ip6gretap0", "erspan0", "bond0", "veth0", "veth1"}; for (i = 0; i < sizeof(devtypes) / (sizeof(devtypes[0])); i++) execute_command(0, "ip link add dev %s0 type %s", devtypes[i], devtypes[i]); execute_command(0, "ip link add dev veth1 type veth"); for (i = 0; i < sizeof(devnames) / (sizeof(devnames[0])); i++) { char addr[32]; snprintf_check(addr, sizeof(addr), DEV_IPV4, i + 10); execute_command(0, "ip -4 addr add %s/24 dev %s", addr, devnames[i]); snprintf_check(addr, sizeof(addr), DEV_IPV6, i + 10); execute_command(0, "ip -6 addr add %s/120 dev %s", addr, devnames[i]); snprintf_check(addr, sizeof(addr), DEV_MAC, i + 10); execute_command(0, "ip link set dev %s address %s", devnames[i], addr); execute_command(0, "ip link set dev %s up", devnames[i]); } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 8 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 0; setrlimit(RLIMIT_CORE, &rlim); #define CLONE_NEWCGROUP 0x02000000 if (unshare(CLONE_NEWNS)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(CLONE_NEWCGROUP)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { close(fd); return false; } close(fd); return true; } static int real_uid; static int real_gid; __attribute__((aligned(64 << 10))) static char sandbox_stack[1 << 20]; static int namespace_sandbox_proc(void* arg) { sandbox_common(); write_file("/proc/self/setgroups", "deny"); if (!write_file("/proc/self/uid_map", "0 %d 1\n", real_uid)) fail("write of /proc/self/uid_map failed"); if (!write_file("/proc/self/gid_map", "0 %d 1\n", real_gid)) fail("write of /proc/self/gid_map failed"); if (unshare(CLONE_NEWNET)) fail("unshare(CLONE_NEWNET)"); initialize_tun(); initialize_netdevices(); if (mkdir("./syz-tmp", 0777)) fail("mkdir(syz-tmp) failed"); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) fail("mount(tmpfs) failed"); if (mkdir("./syz-tmp/newroot", 0777)) fail("mkdir failed"); if (mkdir("./syz-tmp/newroot/dev", 0700)) fail("mkdir failed"); unsigned mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, mount_flags, NULL)) fail("mount(dev) failed"); if (mkdir("./syz-tmp/newroot/proc", 0700)) fail("mkdir failed"); if (mount(NULL, "./syz-tmp/newroot/proc", "proc", 0, NULL)) fail("mount(proc) failed"); if (mkdir("./syz-tmp/newroot/selinux", 0700)) fail("mkdir failed"); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, mount_flags, NULL)) { if (errno != ENOENT) fail("mount(/selinux) failed"); if (mount("/sys/fs/selinux", selinux_path, NULL, mount_flags, NULL) && errno != ENOENT) fail("mount(/sys/fs/selinux) failed"); } if (mkdir("./syz-tmp/pivot", 0777)) fail("mkdir failed"); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) fail("chdir failed"); } else { if (chdir("/")) fail("chdir failed"); if (umount2("./pivot", MNT_DETACH)) fail("umount failed"); } if (chroot("./newroot")) fail("chroot failed"); if (chdir("/")) fail("chdir failed"); struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) fail("capget failed"); cap_data[0].effective &= ~(1 << CAP_SYS_PTRACE); cap_data[0].permitted &= ~(1 << CAP_SYS_PTRACE); cap_data[0].inheritable &= ~(1 << CAP_SYS_PTRACE); if (syscall(SYS_capset, &cap_hdr, &cap_data)) fail("capset failed"); loop(); doexit(1); } static int do_sandbox_namespace(void) { int pid; real_uid = getuid(); real_gid = getgid(); mprotect(sandbox_stack, 4096, PROT_NONE); pid = clone(namespace_sandbox_proc, &sandbox_stack[sizeof(sandbox_stack) - 64], CLONE_NEWUSER | CLONE_NEWPID, 0); if (pid < 0) fail("sandbox clone failed"); return pid; } static void test(); void loop() { while (1) { test(); } } struct thread_t { int created, running, call; pthread_t th; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static int collide; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { while (!__atomic_load_n(&th->running, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &th->running, FUTEX_WAIT, 0, 0); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); __atomic_store_n(&th->running, 0, __ATOMIC_RELEASE); syscall(SYS_futex, &th->running, FUTEX_WAKE); } return 0; } static void execute(int num_calls) { int call, thread; running = 0; for (call = 0; call < num_calls; call++) { for (thread = 0; thread < sizeof(threads) / sizeof(threads[0]); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); pthread_create(&th->th, &attr, thr, th); } if (!__atomic_load_n(&th->running, __ATOMIC_ACQUIRE)) { th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); __atomic_store_n(&th->running, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &th->running, FUTEX_WAKE); if (collide && call % 2) break; struct timespec ts; ts.tv_sec = 0; ts.tv_nsec = 20 * 1000 * 1000; syscall(SYS_futex, &th->running, FUTEX_WAIT, 1, &ts); if (running) usleep((call == num_calls - 1) ? 10000 : 1000); break; } } } } uint64_t r[2] = {0xffffffffffffffff, 0x0}; uint64_t procid; void execute_call(int call) { long res; switch (call) { case 0: res = syscall(__NR_inotify_init1, 0x1000000000000000); if (res != -1) r[0] = res; break; case 1: syscall(__NR_fcntl, r[0], 8, -1); break; case 2: res = syscall(__NR_fcntl, r[0], 0x10, 0x2045fff8); if (res != -1) NONFAILING(r[1] = *(uint32_t*)0x2045fffc); break; case 3: syscall(__NR_ptrace, 0x4206, r[1], 0, 0); break; case 4: NONFAILING(*(uint64_t*)0x20000680 = 0x20000040); NONFAILING(*(uint16_t*)0x20000040 = 3); NONFAILING(memcpy((void*)0x20000042, "\x0e\x33\x39\xa8\x88\x5c\xc2", 7)); NONFAILING(*(uint32_t*)0x2000004c = 0x8849dff); NONFAILING(*(uint32_t*)0x20000688 = 0x10); NONFAILING(*(uint64_t*)0x20000690 = 0x200005c0); NONFAILING(*(uint64_t*)0x200005c0 = 0x20000080); NONFAILING(*(uint64_t*)0x200005c8 = 0); NONFAILING(*(uint64_t*)0x200005d0 = 0x20000140); NONFAILING(memcpy( (void*)0x20000140, "\xeb\x83\x1d\xaa\xf9\x76\xfa\x55\x82\x05\x39\x03\xc6\x4f\x93\x52\xb4" "\x88\xb1\xaa\x6d\xe6\xba\x5f\xd6\x63\x1a\x23\xba\x6b\x0a\x9d\xfa\x2a" "\xb1\xb2\xb3\x9d\x06\x53\x7b\x03\xb8\x6d\x1b\x33\xeb\x84\xa9\xb2\xb9" "\xcf\xf4\x64\x70\x18\xcc\xd7\xda\x81\xb9\xba\xd6\x6e\x5a\xec\xf0\x58" "\x89\xaf\x1e\x40\xe7\xc7\x32\x8a\x30\xd5\x14\x9c\xa9\xae\x28\x7d\x9a" "\xd7\x8c\x23\x52\xd1\xb4\x32\xa4\x4b\xf3\x96\xf7\x90\x54\xaa\x08\xe9" "\xfb\x2f\xa3\x02\x17\xb4\x79\x9c\x87\x02\x85\x9d\xe7\xf5\xdb\x65\x60" "\xca\xc1\x80\x3a\xda\x4f\xb7\x8f\xf0\xd4\xcf\x84\x8d\x92\xa8\x9b\x96" "\xfd\x9c\x3a\xc8\x6d\x6e\x1f\xeb\xae\xfc\xf3\xe2\x86\x9c\x05\x23\xac" "\x4b\x74\x00\xdd\xb6", 158)); NONFAILING(*(uint64_t*)0x200005d8 = 0x9e); NONFAILING(*(uint64_t*)0x200005e0 = 0x20000200); NONFAILING(*(uint64_t*)0x200005e8 = 0); NONFAILING(*(uint64_t*)0x200005f0 = 0x20000240); NONFAILING(*(uint64_t*)0x200005f8 = 0); NONFAILING(*(uint64_t*)0x20000600 = 0x20000300); NONFAILING(memcpy( (void*)0x20000300, "\x2c\x15\xbe\xfa\x29\x22\x4c\x11\xa0\xc1\xd0\x07\x2c\x0e\x83\xf0\x7c" "\xcc\xde\xb8\xc7\x3b\x31\xf8\x59\xe9\x1d\xf4\xbb\x8c\xa2\x47\x7e\x46" "\x73\xad\x35\x38\x04\x24\xbc\xc6\x67\x5a\x6d\xc0\xc6\xba\x63\x33\xab" "\x32\xec\x9b\x37\xb2\x99\x64\x4b\x03\x0a\xf1\x21\x99\x33\xc9\x1d\xab" "\x25\xf4\x20\x09\xc8\x0f\xb1\x85\x75\x61\x9d\xcc\x72\x85\x56\x3d\xa9" "\x32\x05\x7f\xd0\x6e\x65\xa9\x7f\xa5\xff\x3a\xf5\xe0\xb4\x6a\x57\x6f" "\x80\x66\xe2\x48\x65\xdc\x0b\x12\x21\x02\x50\xe1\x29\x25\xe7\x4e\x0d" "\xba\xcf\x57\xbf\x1c\xd4\x0e\xa0\x19\xfb\x41\x17\x42\xd9\xdf\x69\x22" "\x84\x5c\xe8\xfd\x15\xfc\x2d\x50\x99\x46\x9d\xc3\x53\x76\xd6\x5e\x50" "\x87\xda\x1d\x3a\x52\x48\x4a\xa5\x26\x82\x23\x10\x20\x3a\xfb\x7e\x6b" "\x26\xe9\x2a\xe8\x56\x19\x68\x69\x32\x69\x96\xf1\x11\x3b\x32\x3b\x09" "\x6a\xbc\x60\xa9\x5f\x0b\x3d\xc5\xa2\xba\xd1\x06\x5d\x9d\x9b\xdf\xe9" "\x63\xa2\x6b\xa6\x9e\xac\x8e\xe0\x4b\xc1\x95\xa3\x9c\x85\x1e\x8f\xb9" "\xf5\x43\x7f\xe3\xed\x41\xb3\x6c\x41\x1c\xd6\xf3\x9d\x34\x9a\x4b\x09" "\x0e\x39\x13\x73\x9b\xd8\xa1\xc9\xf0\xd0\x0b\x8b\xf3", 251)); NONFAILING(*(uint64_t*)0x20000608 = 0xfb); NONFAILING(*(uint64_t*)0x20000610 = 0x20000400); NONFAILING(*(uint64_t*)0x20000618 = 0); NONFAILING(*(uint64_t*)0x20000620 = 0x20000480); NONFAILING(*(uint64_t*)0x20000628 = 0); NONFAILING(*(uint64_t*)0x20000630 = 0x200004c0); NONFAILING(*(uint64_t*)0x20000638 = 0); NONFAILING(*(uint64_t*)0x20000640 = 0x20000500); NONFAILING(*(uint64_t*)0x20000648 = 0); NONFAILING(*(uint64_t*)0x20000650 = 0x20000540); NONFAILING(*(uint64_t*)0x20000658 = 0); NONFAILING(*(uint64_t*)0x20000698 = 0xa); NONFAILING(*(uint64_t*)0x200006a0 = 0x20002640); NONFAILING(*(uint64_t*)0x200006a8 = 0); NONFAILING(*(uint32_t*)0x200006b0 = 0x10); syscall(__NR_recvmsg, -1, 0x20000680, 0x100); break; case 5: syscall(__NR_ptrace, 0x4207, r[1]); break; case 6: syscall(__NR_ptrace, 0xf, r[1], 0, 0x20000180); break; } } void test() { execute(7); collide = 1; execute(7); } int main() { syscall(__NR_mmap, 0x20000000, 0x1000000, 3, 0x32, -1, 0); char* cwd = get_current_dir_name(); for (procid = 0; procid < 8; procid++) { if (fork() == 0) { install_segv_handler(); for (;;) { if (chdir(cwd)) fail("failed to chdir"); use_temporary_dir(); int pid = do_sandbox_namespace(); int status = 0; while (waitpid(pid, &status, __WALL) != pid) { } } } } sleep(1000000); return 0; }
the_stack_data/173576946.c
/* Copyright (C) 1991, 1995, 1996, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include <stdarg.h> #include <stdio.h> #ifdef USE_IN_LIBIO # include <libio/iolibio.h> # define __vsscanf(s, f, a) _IO_vsscanf (s, f, a) #endif /* Read formatted input from S, according to the format string FORMAT. */ /* VARARGS2 */ int sscanf (s, format) const char *s; const char *format; { va_list arg; int done; va_start (arg, format); done = __vsscanf (s, format, arg); va_end (arg); return done; } #ifdef USE_IN_LIBIO # undef _IO_sscanf /* This is for libg++. */ strong_alias (sscanf, _IO_sscanf) #endif
the_stack_data/68191.c
const char dpio_pmd_info[] __attribute__((used)) = "PMD_INFO_STRING= {\"name\" : \"dpio\", \"pci_ids\" : []}";
the_stack_data/147366.c
#include<stdio.h> #include<search.h> int cmp(const void* a,const void* b){ return *(int*)a<*(int*)b?-1:*(int*)a>*(int*)b; } int main(){ int n; int a[100]; int i; scanf("%d",&n); for(i=0;i<n;i++){ scanf("%d",a+i); } qsort(a,n,4,cmp); for(i=0;i<n;i++){ printf("%d ",a[i]); } return 0; }
the_stack_data/1271118.c
// //////////////////////////////////////// // Implementation of Stack Using Array // /////////////////////////////////////// #include <stdio.h> #include <stdlib.h> #define MAX 3 typedef struct Stack { int arr[MAX]; int top; } stack; int overflow(stack s) { if (s.top == MAX - 1) return 1; return 0; } int underflow(stack *s) { if (s->top == -1) return 1; return 0; } void push(stack *s, int n) { s->arr[++s->top] = n; } int pop(stack *s) { return s->arr[s->top--]; } int peek(stack *s) { return s->arr[s->top]; } int stackSize(stack *s) { return s->top + 1; } int main() { stack s; int n, ch; // If there are no elements in the stack then the default value of the stack is -1 s.top = -1; do { printf("\n\n1. Push \n2. Pop\n3. Peek \n4. Stack Size\n0. Exit\n------------------------------\n"); scanf("%d", &ch); switch (ch) { case 0: break; case 1: if (overflow(s)) { printf("Stack is full"); break; } printf("\nEnter data-> "); scanf("%d", &n); push(&s, n); printf("Pushed\n"); break; case 2: if (underflow(&s)) { printf("Stack is empty"); break; } n = pop(&s); printf("%d Popped\n", n); break; case 3: if (underflow(&s)) { printf("Stack is empty"); break; } n = peek(&s); printf("The peek or top element of the stack -> %d", n); break; case 4: printf("\nThe size of the stack is %d", stackSize(&s)); } // printf("%d", s.arr[0]); } while (ch != 0); }
the_stack_data/20450363.c
// WARNING in vkms_gem_free_object // https://syzkaller.appspot.com/bug?id=29de44bf206913f5aea3cf4dec938ee8e8d8d838 // status:open // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <arpa/inet.h> #include <endian.h> #include <fcntl.h> #include <net/if.h> #include <netinet/in.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/socket.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/types.h> #include <unistd.h> #include <sched.h> #include <linux/genetlink.h> #include <linux/if_addr.h> #include <linux/if_link.h> #include <linux/in6.h> #include <linux/neighbour.h> #include <linux/net.h> #include <linux/netlink.h> #include <linux/rtnetlink.h> #include <linux/veth.h> struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[1024]; }; static struct nlmsg nlmsg; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; unsigned n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != hdr->nlmsg_len) exit(1); n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (hdr->nlmsg_type == NLMSG_DONE) { *reply_len = 0; return 0; } if (n < sizeof(struct nlmsghdr)) exit(1); if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr)) exit(1); if (hdr->nlmsg_type != NLMSG_ERROR) exit(1); return -((struct nlmsgerr*)(hdr + 1))->error; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL); } static int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset, unsigned int total_len) { struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset); if (offset == total_len || offset + hdr->nlmsg_len > total_len) return -1; return hdr->nlmsg_len; } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); (void)err; } const int kInitNetNsFd = 239; #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_CMD_RELOAD 37 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 #define DEVLINK_ATTR_NETNS_FD 138 static int netlink_devlink_id_get(struct nlmsg* nlmsg, int sock) { struct genlmsghdr genlhdr; struct nlattr* attr; int err, n; uint16_t id = 0; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, DEVLINK_FAMILY_NAME, strlen(DEVLINK_FAMILY_NAME) + 1); err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n); if (err) { return -1; } attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); /* recv ack */ return id; } static void netlink_devlink_netns_move(const char* bus_name, const char* dev_name, int netns_fd) { struct genlmsghdr genlhdr; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); id = netlink_devlink_id_get(&nlmsg, sock); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_RELOAD; netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_NETNS_FD, &netns_fd, sizeof(netns_fd)); err = netlink_send(&nlmsg, sock); if (err) { } error: close(sock); } static struct nlmsg nlmsg2; static void initialize_devlink_ports(const char* bus_name, const char* dev_name, const char* netdev_prefix) { struct genlmsghdr genlhdr; int len, total_len, id, err, offset; uint16_t netdev_index; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (rtsock == -1) exit(1); id = netlink_devlink_id_get(&nlmsg, sock); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_PORT_GET; netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); err = netlink_send_ext(&nlmsg, sock, id, &total_len); if (err) { goto error; } offset = 0; netdev_index = 0; while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) { struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + offset + len; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) { char* port_name; char netdev_name[IFNAMSIZ]; port_name = (char*)(attr + 1); snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix, netdev_index); netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0, netdev_name); break; } } offset += len; netdev_index++; } error: close(rtsock); close(sock); } static void initialize_devlink_pci(void) { int netns = open("/proc/self/ns/net", O_RDONLY); if (netns == -1) exit(1); int ret = setns(kInitNetNsFd, 0); if (ret == -1) exit(1); netlink_devlink_netns_move("pci", "0000:00:10.0", netns); ret = setns(netns, 0); if (ret == -1) exit(1); close(netns); initialize_devlink_ports("pci", "0000:00:10.0", "netpci"); } static long syz_open_dev(volatile long a0, volatile long a1, volatile long a2) { if (a0 == 0xc || a0 == 0xb) { char buf[128]; sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1, (uint8_t)a2); return open(buf, O_RDWR, 0); } else { char buf[1024]; char* hash; strncpy(buf, (char*)a0, sizeof(buf) - 1); buf[sizeof(buf) - 1] = 0; while ((hash = strchr(buf, '#'))) { *hash = '0' + (char)(a1 % 10); a1 /= 10; } return open(buf, a2, 0); } } uint64_t r[4] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; int main(void) { syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x32ul, -1, 0); intptr_t res = 0; memcpy((void*)0x20000000, "/dev/dri/card#\000", 15); res = syz_open_dev(0x20000000, 1, 0); if (res != -1) r[0] = res; memcpy((void*)0x20000140, "/dev/ion\000", 9); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000140ul, 0ul, 0ul); if (res != -1) r[1] = res; *(uint64_t*)0x20000040 = 0xa925; *(uint32_t*)0x20000048 = 1; *(uint32_t*)0x2000004c = 0; *(uint32_t*)0x20000050 = -1; *(uint32_t*)0x20000054 = 0; res = syscall(__NR_ioctl, r[1], 0xc0184900ul, 0x20000040ul); if (res != -1) r[2] = *(uint32_t*)0x20000050; res = syscall(__NR_dup, r[2]); if (res != -1) r[3] = res; *(uint32_t*)0x200000c0 = 0; *(uint32_t*)0x200000c4 = 0; *(uint32_t*)0x200000c8 = r[3]; syscall(__NR_ioctl, r[0], 0xc00c642eul, 0x200000c0ul); return 0; }
the_stack_data/248581862.c
/* Copyright (c) 2007. Victor M. Alvarez [[email protected]]. 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. */ #ifdef WIN32 #include <windows.h> static HANDLE hHeap; void yr_heap_alloc() { hHeap = HeapCreate(0, 0x8000, 0); } void yr_heap_free() { HeapDestroy(hHeap); } void* yr_malloc(size_t size) { return (void*) HeapAlloc(hHeap, HEAP_ZERO_MEMORY, size); } void* yr_realloc(void* ptr, size_t size) { return (void*) HeapReAlloc(hHeap, HEAP_ZERO_MEMORY, ptr, size); } void yr_free(void* ptr) { HeapFree(hHeap, 0, ptr); } char* yr_strdup(const char *s) { size_t len = strlen(s); char *r = yr_malloc(len + 1); strcpy(r, s); return r; } #else #include <stdlib.h> #include <string.h> #include <stdio.h> #ifdef DEBUG_HEAP static int count; #endif void yr_heap_alloc() { #ifdef DEBUG_HEAP count = 0; #endif return; } void yr_heap_free() { #ifdef DEBUG_HEAP printf("malloc count: %d\n", count); #endif return; } void* yr_malloc(size_t size) { void* result = malloc(size); #ifdef DEBUG_HEAP count++; printf("malloc: %p %zd\n", result, size); #endif return result; } void* yr_realloc(void* ptr, size_t size) { void* result = realloc(ptr, size); #ifdef DEBUG_HEAP printf("realloc: %p -> %p\n", ptr, result); #endif return result; } void yr_free(void *ptr) { #ifdef DEBUG_HEAP count--; printf("free: %p\n", ptr); #endif free(ptr); } char* yr_strdup(const char *str) { void* result = strdup(str); #ifdef DEBUG_HEAP count++; printf("strdup: %p %zd %s\n", result, strlen(str) + 1, str); #endif return result; } #endif
the_stack_data/69219.c
#ifdef BCMWAPI_WPI /* * sms4.c * SMS-4 block cipher * * Copyright (C) 2010, Broadcom Corporation * All Rights Reserved. * * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; * the contents of this file may not be disclosed to third parties, copied * or duplicated in any form, in whole or in part, without the prior * written permission of Broadcom Corporation. * * $Id: sms4.c,v 1.23 2009-10-22 00:10:59 Exp $ */ #include <typedefs.h> #include <bcmendian.h> #include <proto/802.11.h> #include <bcmcrypto/sms4.h> #include <bcmutils.h> #ifdef BCMDRIVER #include <osl.h> #else #include <stddef.h> /* for size_t */ #if defined(__GNUC__) extern void bcopy(const void *src, void *dst, size_t len); extern int bcmp(const void *b1, const void *b2, size_t len); extern void bzero(void *b, size_t len); #else #define bcopy(src, dst, len) memcpy((dst), (src), (len)) #define bcmp(b1, b2, len) memcmp((b1), (b2), (len)) #define bzero(b, len) memset((b), 0, (len)) #endif /* __GNUC__ */ #endif /* BCMDRIVER */ #define ROTATE(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) static void sms4_print_bytes(char *name, const uchar *data, int len) { } #if !defined(__i386__) static const uint8 S_box[] = { 0xd6, 0x90, 0xe9, 0xfe, 0xcc, 0xe1, 0x3d, 0xb7, 0x16, 0xb6, 0x14, 0xc2, 0x28, 0xfb, 0x2c, 0x05, 0x2b, 0x67, 0x9a, 0x76, 0x2a, 0xbe, 0x04, 0xc3, 0xaa, 0x44, 0x13, 0x26, 0x49, 0x86, 0x06, 0x99, 0x9c, 0x42, 0x50, 0xf4, 0x91, 0xef, 0x98, 0x7a, 0x33, 0x54, 0x0b, 0x43, 0xed, 0xcf, 0xac, 0x62, 0xe4, 0xb3, 0x1c, 0xa9, 0xc9, 0x08, 0xe8, 0x95, 0x80, 0xdf, 0x94, 0xfa, 0x75, 0x8f, 0x3f, 0xa6, 0x47, 0x07, 0xa7, 0xfc, 0xf3, 0x73, 0x17, 0xba, 0x83, 0x59, 0x3c, 0x19, 0xe6, 0x85, 0x4f, 0xa8, 0x68, 0x6b, 0x81, 0xb2, 0x71, 0x64, 0xda, 0x8b, 0xf8, 0xeb, 0x0f, 0x4b, 0x70, 0x56, 0x9d, 0x35, 0x1e, 0x24, 0x0e, 0x5e, 0x63, 0x58, 0xd1, 0xa2, 0x25, 0x22, 0x7c, 0x3b, 0x01, 0x21, 0x78, 0x87, 0xd4, 0x00, 0x46, 0x57, 0x9f, 0xd3, 0x27, 0x52, 0x4c, 0x36, 0x02, 0xe7, 0xa0, 0xc4, 0xc8, 0x9e, 0xea, 0xbf, 0x8a, 0xd2, 0x40, 0xc7, 0x38, 0xb5, 0xa3, 0xf7, 0xf2, 0xce, 0xf9, 0x61, 0x15, 0xa1, 0xe0, 0xae, 0x5d, 0xa4, 0x9b, 0x34, 0x1a, 0x55, 0xad, 0x93, 0x32, 0x30, 0xf5, 0x8c, 0xb1, 0xe3, 0x1d, 0xf6, 0xe2, 0x2e, 0x82, 0x66, 0xca, 0x60, 0xc0, 0x29, 0x23, 0xab, 0x0d, 0x53, 0x4e, 0x6f, 0xd5, 0xdb, 0x37, 0x45, 0xde, 0xfd, 0x8e, 0x2f, 0x03, 0xff, 0x6a, 0x72, 0x6d, 0x6c, 0x5b, 0x51, 0x8d, 0x1b, 0xaf, 0x92, 0xbb, 0xdd, 0xbc, 0x7f, 0x11, 0xd9, 0x5c, 0x41, 0x1f, 0x10, 0x5a, 0xd8, 0x0a, 0xc1, 0x31, 0x88, 0xa5, 0xcd, 0x7b, 0xbd, 0x2d, 0x74, 0xd0, 0x12, 0xb8, 0xe5, 0xb4, 0xb0, 0x89, 0x69, 0x97, 0x4a, 0x0c, 0x96, 0x77, 0x7e, 0x65, 0xb9, 0xf1, 0x09, 0xc5, 0x6e, 0xc6, 0x84, 0x18, 0xf0, 0x7d, 0xec, 0x3a, 0xdc, 0x4d, 0x20, 0x79, 0xee, 0x5f, 0x3e, 0xd7, 0xcb, 0x39, 0x48 }; #else /* __i386__ */ /* slightly better performance on Pentium, worse performance on ARM CM3 */ static const uint32 S_box0[] = { 0xd6, 0x90, 0xe9, 0xfe, 0xcc, 0xe1, 0x3d, 0xb7, 0x16, 0xb6, 0x14, 0xc2, 0x28, 0xfb, 0x2c, 0x05, 0x2b, 0x67, 0x9a, 0x76, 0x2a, 0xbe, 0x04, 0xc3, 0xaa, 0x44, 0x13, 0x26, 0x49, 0x86, 0x06, 0x99, 0x9c, 0x42, 0x50, 0xf4, 0x91, 0xef, 0x98, 0x7a, 0x33, 0x54, 0x0b, 0x43, 0xed, 0xcf, 0xac, 0x62, 0xe4, 0xb3, 0x1c, 0xa9, 0xc9, 0x08, 0xe8, 0x95, 0x80, 0xdf, 0x94, 0xfa, 0x75, 0x8f, 0x3f, 0xa6, 0x47, 0x07, 0xa7, 0xfc, 0xf3, 0x73, 0x17, 0xba, 0x83, 0x59, 0x3c, 0x19, 0xe6, 0x85, 0x4f, 0xa8, 0x68, 0x6b, 0x81, 0xb2, 0x71, 0x64, 0xda, 0x8b, 0xf8, 0xeb, 0x0f, 0x4b, 0x70, 0x56, 0x9d, 0x35, 0x1e, 0x24, 0x0e, 0x5e, 0x63, 0x58, 0xd1, 0xa2, 0x25, 0x22, 0x7c, 0x3b, 0x01, 0x21, 0x78, 0x87, 0xd4, 0x00, 0x46, 0x57, 0x9f, 0xd3, 0x27, 0x52, 0x4c, 0x36, 0x02, 0xe7, 0xa0, 0xc4, 0xc8, 0x9e, 0xea, 0xbf, 0x8a, 0xd2, 0x40, 0xc7, 0x38, 0xb5, 0xa3, 0xf7, 0xf2, 0xce, 0xf9, 0x61, 0x15, 0xa1, 0xe0, 0xae, 0x5d, 0xa4, 0x9b, 0x34, 0x1a, 0x55, 0xad, 0x93, 0x32, 0x30, 0xf5, 0x8c, 0xb1, 0xe3, 0x1d, 0xf6, 0xe2, 0x2e, 0x82, 0x66, 0xca, 0x60, 0xc0, 0x29, 0x23, 0xab, 0x0d, 0x53, 0x4e, 0x6f, 0xd5, 0xdb, 0x37, 0x45, 0xde, 0xfd, 0x8e, 0x2f, 0x03, 0xff, 0x6a, 0x72, 0x6d, 0x6c, 0x5b, 0x51, 0x8d, 0x1b, 0xaf, 0x92, 0xbb, 0xdd, 0xbc, 0x7f, 0x11, 0xd9, 0x5c, 0x41, 0x1f, 0x10, 0x5a, 0xd8, 0x0a, 0xc1, 0x31, 0x88, 0xa5, 0xcd, 0x7b, 0xbd, 0x2d, 0x74, 0xd0, 0x12, 0xb8, 0xe5, 0xb4, 0xb0, 0x89, 0x69, 0x97, 0x4a, 0x0c, 0x96, 0x77, 0x7e, 0x65, 0xb9, 0xf1, 0x09, 0xc5, 0x6e, 0xc6, 0x84, 0x18, 0xf0, 0x7d, 0xec, 0x3a, 0xdc, 0x4d, 0x20, 0x79, 0xee, 0x5f, 0x3e, 0xd7, 0xcb, 0x39, 0x48 }; static const uint32 S_box1[] = { 0xd600, 0x9000, 0xe900, 0xfe00, 0xcc00, 0xe100, 0x3d00, 0xb700, 0x1600, 0xb600, 0x1400, 0xc200, 0x2800, 0xfb00, 0x2c00, 0x0500, 0x2b00, 0x6700, 0x9a00, 0x7600, 0x2a00, 0xbe00, 0x0400, 0xc300, 0xaa00, 0x4400, 0x1300, 0x2600, 0x4900, 0x8600, 0x0600, 0x9900, 0x9c00, 0x4200, 0x5000, 0xf400, 0x9100, 0xef00, 0x9800, 0x7a00, 0x3300, 0x5400, 0x0b00, 0x4300, 0xed00, 0xcf00, 0xac00, 0x6200, 0xe400, 0xb300, 0x1c00, 0xa900, 0xc900, 0x0800, 0xe800, 0x9500, 0x8000, 0xdf00, 0x9400, 0xfa00, 0x7500, 0x8f00, 0x3f00, 0xa600, 0x4700, 0x0700, 0xa700, 0xfc00, 0xf300, 0x7300, 0x1700, 0xba00, 0x8300, 0x5900, 0x3c00, 0x1900, 0xe600, 0x8500, 0x4f00, 0xa800, 0x6800, 0x6b00, 0x8100, 0xb200, 0x7100, 0x6400, 0xda00, 0x8b00, 0xf800, 0xeb00, 0x0f00, 0x4b00, 0x7000, 0x5600, 0x9d00, 0x3500, 0x1e00, 0x2400, 0x0e00, 0x5e00, 0x6300, 0x5800, 0xd100, 0xa200, 0x2500, 0x2200, 0x7c00, 0x3b00, 0x0100, 0x2100, 0x7800, 0x8700, 0xd400, 0x0000, 0x4600, 0x5700, 0x9f00, 0xd300, 0x2700, 0x5200, 0x4c00, 0x3600, 0x0200, 0xe700, 0xa000, 0xc400, 0xc800, 0x9e00, 0xea00, 0xbf00, 0x8a00, 0xd200, 0x4000, 0xc700, 0x3800, 0xb500, 0xa300, 0xf700, 0xf200, 0xce00, 0xf900, 0x6100, 0x1500, 0xa100, 0xe000, 0xae00, 0x5d00, 0xa400, 0x9b00, 0x3400, 0x1a00, 0x5500, 0xad00, 0x9300, 0x3200, 0x3000, 0xf500, 0x8c00, 0xb100, 0xe300, 0x1d00, 0xf600, 0xe200, 0x2e00, 0x8200, 0x6600, 0xca00, 0x6000, 0xc000, 0x2900, 0x2300, 0xab00, 0x0d00, 0x5300, 0x4e00, 0x6f00, 0xd500, 0xdb00, 0x3700, 0x4500, 0xde00, 0xfd00, 0x8e00, 0x2f00, 0x0300, 0xff00, 0x6a00, 0x7200, 0x6d00, 0x6c00, 0x5b00, 0x5100, 0x8d00, 0x1b00, 0xaf00, 0x9200, 0xbb00, 0xdd00, 0xbc00, 0x7f00, 0x1100, 0xd900, 0x5c00, 0x4100, 0x1f00, 0x1000, 0x5a00, 0xd800, 0x0a00, 0xc100, 0x3100, 0x8800, 0xa500, 0xcd00, 0x7b00, 0xbd00, 0x2d00, 0x7400, 0xd000, 0x1200, 0xb800, 0xe500, 0xb400, 0xb000, 0x8900, 0x6900, 0x9700, 0x4a00, 0x0c00, 0x9600, 0x7700, 0x7e00, 0x6500, 0xb900, 0xf100, 0x0900, 0xc500, 0x6e00, 0xc600, 0x8400, 0x1800, 0xf000, 0x7d00, 0xec00, 0x3a00, 0xdc00, 0x4d00, 0x2000, 0x7900, 0xee00, 0x5f00, 0x3e00, 0xd700, 0xcb00, 0x3900, 0x4800 }; static const uint32 S_box2[] = { 0xd60000, 0x900000, 0xe90000, 0xfe0000, 0xcc0000, 0xe10000, 0x3d0000, 0xb70000, 0x160000, 0xb60000, 0x140000, 0xc20000, 0x280000, 0xfb0000, 0x2c0000, 0x050000, 0x2b0000, 0x670000, 0x9a0000, 0x760000, 0x2a0000, 0xbe0000, 0x040000, 0xc30000, 0xaa0000, 0x440000, 0x130000, 0x260000, 0x490000, 0x860000, 0x060000, 0x990000, 0x9c0000, 0x420000, 0x500000, 0xf40000, 0x910000, 0xef0000, 0x980000, 0x7a0000, 0x330000, 0x540000, 0x0b0000, 0x430000, 0xed0000, 0xcf0000, 0xac0000, 0x620000, 0xe40000, 0xb30000, 0x1c0000, 0xa90000, 0xc90000, 0x080000, 0xe80000, 0x950000, 0x800000, 0xdf0000, 0x940000, 0xfa0000, 0x750000, 0x8f0000, 0x3f0000, 0xa60000, 0x470000, 0x070000, 0xa70000, 0xfc0000, 0xf30000, 0x730000, 0x170000, 0xba0000, 0x830000, 0x590000, 0x3c0000, 0x190000, 0xe60000, 0x850000, 0x4f0000, 0xa80000, 0x680000, 0x6b0000, 0x810000, 0xb20000, 0x710000, 0x640000, 0xda0000, 0x8b0000, 0xf80000, 0xeb0000, 0x0f0000, 0x4b0000, 0x700000, 0x560000, 0x9d0000, 0x350000, 0x1e0000, 0x240000, 0x0e0000, 0x5e0000, 0x630000, 0x580000, 0xd10000, 0xa20000, 0x250000, 0x220000, 0x7c0000, 0x3b0000, 0x010000, 0x210000, 0x780000, 0x870000, 0xd40000, 0x000000, 0x460000, 0x570000, 0x9f0000, 0xd30000, 0x270000, 0x520000, 0x4c0000, 0x360000, 0x020000, 0xe70000, 0xa00000, 0xc40000, 0xc80000, 0x9e0000, 0xea0000, 0xbf0000, 0x8a0000, 0xd20000, 0x400000, 0xc70000, 0x380000, 0xb50000, 0xa30000, 0xf70000, 0xf20000, 0xce0000, 0xf90000, 0x610000, 0x150000, 0xa10000, 0xe00000, 0xae0000, 0x5d0000, 0xa40000, 0x9b0000, 0x340000, 0x1a0000, 0x550000, 0xad0000, 0x930000, 0x320000, 0x300000, 0xf50000, 0x8c0000, 0xb10000, 0xe30000, 0x1d0000, 0xf60000, 0xe20000, 0x2e0000, 0x820000, 0x660000, 0xca0000, 0x600000, 0xc00000, 0x290000, 0x230000, 0xab0000, 0x0d0000, 0x530000, 0x4e0000, 0x6f0000, 0xd50000, 0xdb0000, 0x370000, 0x450000, 0xde0000, 0xfd0000, 0x8e0000, 0x2f0000, 0x030000, 0xff0000, 0x6a0000, 0x720000, 0x6d0000, 0x6c0000, 0x5b0000, 0x510000, 0x8d0000, 0x1b0000, 0xaf0000, 0x920000, 0xbb0000, 0xdd0000, 0xbc0000, 0x7f0000, 0x110000, 0xd90000, 0x5c0000, 0x410000, 0x1f0000, 0x100000, 0x5a0000, 0xd80000, 0x0a0000, 0xc10000, 0x310000, 0x880000, 0xa50000, 0xcd0000, 0x7b0000, 0xbd0000, 0x2d0000, 0x740000, 0xd00000, 0x120000, 0xb80000, 0xe50000, 0xb40000, 0xb00000, 0x890000, 0x690000, 0x970000, 0x4a0000, 0x0c0000, 0x960000, 0x770000, 0x7e0000, 0x650000, 0xb90000, 0xf10000, 0x090000, 0xc50000, 0x6e0000, 0xc60000, 0x840000, 0x180000, 0xf00000, 0x7d0000, 0xec0000, 0x3a0000, 0xdc0000, 0x4d0000, 0x200000, 0x790000, 0xee0000, 0x5f0000, 0x3e0000, 0xd70000, 0xcb0000, 0x390000, 0x480000 }; static const uint32 S_box3[] = { 0xd6000000, 0x90000000, 0xe9000000, 0xfe000000, 0xcc000000, 0xe1000000, 0x3d000000, 0xb7000000, 0x16000000, 0xb6000000, 0x14000000, 0xc2000000, 0x28000000, 0xfb000000, 0x2c000000, 0x05000000, 0x2b000000, 0x67000000, 0x9a000000, 0x76000000, 0x2a000000, 0xbe000000, 0x04000000, 0xc3000000, 0xaa000000, 0x44000000, 0x13000000, 0x26000000, 0x49000000, 0x86000000, 0x06000000, 0x99000000, 0x9c000000, 0x42000000, 0x50000000, 0xf4000000, 0x91000000, 0xef000000, 0x98000000, 0x7a000000, 0x33000000, 0x54000000, 0x0b000000, 0x43000000, 0xed000000, 0xcf000000, 0xac000000, 0x62000000, 0xe4000000, 0xb3000000, 0x1c000000, 0xa9000000, 0xc9000000, 0x08000000, 0xe8000000, 0x95000000, 0x80000000, 0xdf000000, 0x94000000, 0xfa000000, 0x75000000, 0x8f000000, 0x3f000000, 0xa6000000, 0x47000000, 0x07000000, 0xa7000000, 0xfc000000, 0xf3000000, 0x73000000, 0x17000000, 0xba000000, 0x83000000, 0x59000000, 0x3c000000, 0x19000000, 0xe6000000, 0x85000000, 0x4f000000, 0xa8000000, 0x68000000, 0x6b000000, 0x81000000, 0xb2000000, 0x71000000, 0x64000000, 0xda000000, 0x8b000000, 0xf8000000, 0xeb000000, 0x0f000000, 0x4b000000, 0x70000000, 0x56000000, 0x9d000000, 0x35000000, 0x1e000000, 0x24000000, 0x0e000000, 0x5e000000, 0x63000000, 0x58000000, 0xd1000000, 0xa2000000, 0x25000000, 0x22000000, 0x7c000000, 0x3b000000, 0x01000000, 0x21000000, 0x78000000, 0x87000000, 0xd4000000, 0x00000000, 0x46000000, 0x57000000, 0x9f000000, 0xd3000000, 0x27000000, 0x52000000, 0x4c000000, 0x36000000, 0x02000000, 0xe7000000, 0xa0000000, 0xc4000000, 0xc8000000, 0x9e000000, 0xea000000, 0xbf000000, 0x8a000000, 0xd2000000, 0x40000000, 0xc7000000, 0x38000000, 0xb5000000, 0xa3000000, 0xf7000000, 0xf2000000, 0xce000000, 0xf9000000, 0x61000000, 0x15000000, 0xa1000000, 0xe0000000, 0xae000000, 0x5d000000, 0xa4000000, 0x9b000000, 0x34000000, 0x1a000000, 0x55000000, 0xad000000, 0x93000000, 0x32000000, 0x30000000, 0xf5000000, 0x8c000000, 0xb1000000, 0xe3000000, 0x1d000000, 0xf6000000, 0xe2000000, 0x2e000000, 0x82000000, 0x66000000, 0xca000000, 0x60000000, 0xc0000000, 0x29000000, 0x23000000, 0xab000000, 0x0d000000, 0x53000000, 0x4e000000, 0x6f000000, 0xd5000000, 0xdb000000, 0x37000000, 0x45000000, 0xde000000, 0xfd000000, 0x8e000000, 0x2f000000, 0x03000000, 0xff000000, 0x6a000000, 0x72000000, 0x6d000000, 0x6c000000, 0x5b000000, 0x51000000, 0x8d000000, 0x1b000000, 0xaf000000, 0x92000000, 0xbb000000, 0xdd000000, 0xbc000000, 0x7f000000, 0x11000000, 0xd9000000, 0x5c000000, 0x41000000, 0x1f000000, 0x10000000, 0x5a000000, 0xd8000000, 0x0a000000, 0xc1000000, 0x31000000, 0x88000000, 0xa5000000, 0xcd000000, 0x7b000000, 0xbd000000, 0x2d000000, 0x74000000, 0xd0000000, 0x12000000, 0xb8000000, 0xe5000000, 0xb4000000, 0xb0000000, 0x89000000, 0x69000000, 0x97000000, 0x4a000000, 0x0c000000, 0x96000000, 0x77000000, 0x7e000000, 0x65000000, 0xb9000000, 0xf1000000, 0x09000000, 0xc5000000, 0x6e000000, 0xc6000000, 0x84000000, 0x18000000, 0xf0000000, 0x7d000000, 0xec000000, 0x3a000000, 0xdc000000, 0x4d000000, 0x20000000, 0x79000000, 0xee000000, 0x5f000000, 0x3e000000, 0xd7000000, 0xcb000000, 0x39000000, 0x48000000 }; #endif /* __i386__ */ /* Non-linear transform * A = (a0, a1, a2, a3) * B = (b0, b1, b2, b3) * (b0, b1, b2, b3) = tau(A) = (Sbox(a0), Sbox(a1), Sbox(a2), Sbox(a3)) */ static INLINE uint32 tau(uint32 A) { uint32 B; #if !defined(__i386__) B = (S_box[A & 0xff] | (S_box[(A & 0xff00) >> 8] << 8) | (S_box[(A & 0xff0000) >> 16] << 16) | (S_box[(A & 0xff000000) >> 24] << 24)); #else /* __i386__ */ /* slightly better performance on Pentium, worse performance on ARM CM3 */ B = (S_box0[A & 0xff] | S_box1[(A & 0xff00) >> 8] | S_box2[(A & 0xff0000) >> 16] | S_box3[(A & 0xff000000) >> 24]); #endif /* __i386__ */ return (B); } /* Linear transform * C = L(B) = B ^ (B<<<2) ^ (B<<<10) ^ (B<<<18) ^ (B<<<24) * where "<<<" is a circular left shift */ static INLINE uint32 L(uint32 B) { uint32 Ba = B ^ ROTATE(B, 24); return (Ba ^ ROTATE((ROTATE(Ba, 16) ^ B), 2)); } /* Compound Transform * T(.) = L(tau(.)) */ static INLINE uint32 T(uint32 X) { return (L(tau(X))); } /* Round Function * F(X0,X1,X2,X3,RK) = X0 ^ T(X1^X2^X3^RK) * static INLINE uint32 * F(uint32 *X, uint32 RK) * { * return (X[0] ^ T(X[1] ^ X[2] ^ X[3] ^ RK)); * } */ /* Encryption/decryption algorithm * Xi+4 = F(Xi, Xi+1, Xi+2, Xi+3, RKj) = Xi ^ T(Xi+1 ^ Xi+2 ^ Xi+3 ^ RKj) * i=0,1,...31, j=i(enc) or j=31-i(dec) * (Y0, Y1, Y2, Y3) = (X35, X34, X33, X32) */ /* define SMS4_FULL_UNROLL to completely unroll F() - results in slightly faster but bigger code */ #define SMS4_FULL_UNROLL void sms4_enc(uint32 *Y, uint32 *X, const uint32 *RK) { uint32 z0 = X[0], z1 = X[1], z2 = X[2], z3 = X[3]; #ifndef SMS4_FULL_UNROLL int i; for (i = 0; i < SMS4_RK_WORDS; i += 4) { z0 ^= T(z1 ^ z2 ^ z3 ^ *RK++); z1 ^= T(z2 ^ z3 ^ z0 ^ *RK++); z2 ^= T(z3 ^ z0 ^ z1 ^ *RK++); z3 ^= T(z0 ^ z1 ^ z2 ^ *RK++); } #else /* SMS4_FULL_UNROLL */ z0 ^= T(z1 ^ z2 ^ z3 ^ *RK++); z1 ^= T(z2 ^ z3 ^ z0 ^ *RK++); z2 ^= T(z3 ^ z0 ^ z1 ^ *RK++); z3 ^= T(z0 ^ z1 ^ z2 ^ *RK++); z0 ^= T(z1 ^ z2 ^ z3 ^ *RK++); z1 ^= T(z2 ^ z3 ^ z0 ^ *RK++); z2 ^= T(z3 ^ z0 ^ z1 ^ *RK++); z3 ^= T(z0 ^ z1 ^ z2 ^ *RK++); z0 ^= T(z1 ^ z2 ^ z3 ^ *RK++); z1 ^= T(z2 ^ z3 ^ z0 ^ *RK++); z2 ^= T(z3 ^ z0 ^ z1 ^ *RK++); z3 ^= T(z0 ^ z1 ^ z2 ^ *RK++); z0 ^= T(z1 ^ z2 ^ z3 ^ *RK++); z1 ^= T(z2 ^ z3 ^ z0 ^ *RK++); z2 ^= T(z3 ^ z0 ^ z1 ^ *RK++); z3 ^= T(z0 ^ z1 ^ z2 ^ *RK++); z0 ^= T(z1 ^ z2 ^ z3 ^ *RK++); z1 ^= T(z2 ^ z3 ^ z0 ^ *RK++); z2 ^= T(z3 ^ z0 ^ z1 ^ *RK++); z3 ^= T(z0 ^ z1 ^ z2 ^ *RK++); z0 ^= T(z1 ^ z2 ^ z3 ^ *RK++); z1 ^= T(z2 ^ z3 ^ z0 ^ *RK++); z2 ^= T(z3 ^ z0 ^ z1 ^ *RK++); z3 ^= T(z0 ^ z1 ^ z2 ^ *RK++); z0 ^= T(z1 ^ z2 ^ z3 ^ *RK++); z1 ^= T(z2 ^ z3 ^ z0 ^ *RK++); z2 ^= T(z3 ^ z0 ^ z1 ^ *RK++); z3 ^= T(z0 ^ z1 ^ z2 ^ *RK++); z0 ^= T(z1 ^ z2 ^ z3 ^ *RK++); z1 ^= T(z2 ^ z3 ^ z0 ^ *RK++); z2 ^= T(z3 ^ z0 ^ z1 ^ *RK++); z3 ^= T(z0 ^ z1 ^ z2 ^ *RK++); #endif /* SMS4_FULL_UNROLL */ Y[0] = z3; Y[1] = z2; Y[2] = z1; Y[3] = z0; } void sms4_dec(uint32 *Y, uint32 *X, uint32 *RK) { uint32 z0 = X[0], z1 = X[1], z2 = X[2], z3 = X[3]; int i; RK += 32; for (i = 0; i < SMS4_RK_WORDS; i += 4) { z0 ^= T(z1 ^ z2 ^ z3 ^ *--RK); z1 ^= T(z2 ^ z3 ^ z0 ^ *--RK); z2 ^= T(z3 ^ z0 ^ z1 ^ *--RK); z3 ^= T(z0 ^ z1 ^ z2 ^ *--RK); } Y[0] = z3; Y[1] = z2; Y[2] = z1; Y[3] = z0; } static const uint32 CK[] = { 0x00070e15, 0x1c232a31, 0x383f464d, 0x545b6269, 0x70777e85, 0x8c939aa1, 0xa8afb6bd, 0xc4cbd2d9, 0xe0e7eef5, 0xfc030a11, 0x181f262d, 0x343b4249, 0x50575e65, 0x6c737a81, 0x888f969d, 0xa4abb2b9, 0xc0c7ced5, 0xdce3eaf1, 0xf8ff060d, 0x141b2229, 0x30373e45, 0x4c535a61, 0x686f767d, 0x848b9299, 0xa0a7aeb5, 0xbcc3cad1, 0xd8dfe6ed, 0xf4fb0209, 0x10171e25, 0x2c333a41, 0x484f565d, 0x646b7279 }; static const uint32 FK[] = { 0xA3B1BAC6, 0x56AA3350, 0x677D9197, 0xB27022DC }; /* Key Expansion Linear transform * Lprime(B) = B ^ (B<<<13) ^ (B<<<23) * where "<<<" is a circular left shift */ static INLINE uint32 Lprime(uint32 B) { return (B ^ ROTATE(B, 13) ^ ROTATE(B, 23)); } /* Key Expansion Compound Transform * Tprime(.) = Lprime(tau(.)) */ static INLINE uint32 Tprime(uint32 X) { return (Lprime(tau(X))); } /* Key Expansion * Encryption key MK = (MK0, MK1, MK2, MK3) * (K0, K1, K2, K3) = (MK0 ^ FK0, MK1 ^ FK1, MK2 ^ FK2, MK3 ^ FK3) * RKi = Ki+4 = Ki ^ Tprime(Ki+1 ^ Ki+2 ^ Ki+3 ^ CKi+4) */ void sms4_key_exp(uint32 *MK, uint32 *RK) { int i; uint32 K[36]; for (i = 0; i < 4; i++) K[i] = MK[i] ^ FK[i]; for (i = 0; i < SMS4_RK_WORDS; i++) { K[i+4] = K[i] ^ Tprime(K[i+1] ^ K[i+2] ^ K[i+3] ^ CK[i]); RK[i] = K[i+4]; } return; } /* SMS4-CBC-MAC mode for WPI * - computes SMS4_WPI_CBC_MAC_LEN MAC * - Integrity Check Key must be SMS4_KEY_LEN bytes * - PN must be SMS4_WPI_PN_LEN bytes * - AAD inludes Key Index, Reserved, and L (data len) fields * - For MAC calculation purposes, the aad and data are each padded with * NULLs to a multiple of the block size * - ptxt must have sufficient tailroom for storing the MAC * - returns -1 on error * - returns SMS4_WPI_SUCCESS on success, SMS4_WPI_CBC_MAC_ERROR on error */ int sms4_wpi_cbc_mac(const uint8 *ick, const uint8 *pn, const size_t aad_len, const uint8 *aad, uint8 *ptxt) { int k, j, rem_len; uint32 RK[SMS4_RK_WORDS]; uint32 X[SMS4_BLOCK_WORDS], Y[SMS4_BLOCK_WORDS]; uint8 tmp[SMS4_BLOCK_SZ]; uint16 data_len = (aad[aad_len-2] << 8) | (aad[aad_len-1]); if (data_len > SMS4_WPI_MAX_MPDU_LEN) return (SMS4_WPI_CBC_MAC_ERROR); sms4_print_bytes("MIC Key", (uchar *)ick, SMS4_WPI_CBC_MAC_LEN); sms4_print_bytes("PN ", (uchar *)pn, SMS4_WPI_PN_LEN); sms4_print_bytes("MIC data: PART1", (uchar *)aad, aad_len); sms4_print_bytes("MIC data: PART 2", (uchar *)ptxt, data_len); /* Prepare the round key */ for (k = 0; k < SMS4_BLOCK_WORDS; k++) if ((uintptr)ick & 3) X[k] = ntoh32_ua(ick + (SMS4_WORD_SZ * k)); else X[k] = ntoh32(*(uint32 *)(ick + (SMS4_WORD_SZ * k))); sms4_key_exp(X, RK); /* First block: PN */ for (k = 0; k < SMS4_BLOCK_WORDS; k++) if ((uintptr)pn & 3) X[k] = ntoh32_ua(pn + (SMS4_WORD_SZ * k)); else X[k] = ntoh32(*(uint32 *)(pn + (SMS4_WORD_SZ * k))); sms4_enc(Y, X, RK); /* Next blocks: AAD */ for (j = 0; j < aad_len/SMS4_BLOCK_SZ; j++) { for (k = 0; k < SMS4_BLOCK_WORDS; k++) if ((uintptr)aad & 3) X[k] = Y[k] ^ ntoh32_ua(aad + (SMS4_WORD_SZ * k)); else X[k] = Y[k] ^ ntoh32(*(uint32 *)(aad + (SMS4_WORD_SZ * k))); aad += SMS4_BLOCK_SZ; sms4_enc(Y, X, RK); } /* If the last block is partial, pad with NULLs */ rem_len = aad_len % SMS4_BLOCK_SZ; if (rem_len) { bcopy(aad, tmp, rem_len); bzero(tmp + rem_len, SMS4_BLOCK_SZ - rem_len); for (k = 0; k < SMS4_BLOCK_WORDS; k++) if ((uintptr)tmp & 3) X[k] = Y[k] ^ ntoh32_ua(tmp + (SMS4_WORD_SZ * k)); else X[k] = Y[k] ^ ntoh32(*(uint32 *)(tmp + (SMS4_WORD_SZ * k))); sms4_enc(Y, X, RK); } /* Then the message data */ for (j = 0; j < (data_len / SMS4_BLOCK_SZ); j++) { for (k = 0; k < SMS4_BLOCK_WORDS; k++) if ((uintptr)ptxt & 3) X[k] = Y[k] ^ ntoh32_ua(ptxt + (SMS4_WORD_SZ * k)); else X[k] = Y[k] ^ ntoh32(*(uint32 *)(ptxt + (SMS4_WORD_SZ * k))); ptxt += SMS4_BLOCK_SZ; sms4_enc(Y, X, RK); } /* If the last block is partial, pad with NULLs */ rem_len = data_len % SMS4_BLOCK_SZ; if (rem_len) { bcopy(ptxt, tmp, rem_len); bzero(tmp + rem_len, SMS4_BLOCK_SZ - rem_len); for (k = 0; k < SMS4_BLOCK_WORDS; k++) if ((uintptr)tmp & 3) X[k] = Y[k] ^ ntoh32_ua(tmp + (SMS4_WORD_SZ * k)); else X[k] = Y[k] ^ ntoh32(*(uint32 *)(tmp + (SMS4_WORD_SZ * k))); ptxt += data_len % SMS4_BLOCK_SZ; sms4_enc(Y, X, RK); } for (k = 0; k < SMS4_BLOCK_WORDS; k++) { hton32_ua_store(Y[k], ptxt); ptxt += SMS4_WORD_SZ; } return (SMS4_WPI_SUCCESS); } /* * ick pn ptxt result * ltoh ltoh ltoh fail * ntoh ltoh ltoh fail * ltoh ntoh ltoh fail * ntoh ntoh ltoh fail * * ltoh ltoh ntoh fail * ntoh ltoh ntoh fail * ltoh ntoh ntoh fail * ntoh ntoh ntoh fail */ #define s_ick(a) ntoh32_ua(a) #define s_pn(a) ntoh32_ua(a) #define s_ptxt(a) ntoh32_ua(a) #ifdef BCMSMS4_TEST static int sms4_cbc_mac(const uint8 *ick, const uint8 *pn, const size_t data_len, uint8 *ptxt, uint8 *mac); static int sms4_cbc_mac(const uint8 *ick, const uint8 *pn, const size_t data_len, uint8 *ptxt, uint8 *mac) { int k, j, rem_len; uint32 RK[SMS4_RK_WORDS]; uint32 X[SMS4_BLOCK_WORDS], Y[SMS4_BLOCK_WORDS]; uint8 tmp[SMS4_BLOCK_SZ]; if (data_len > SMS4_WPI_MAX_MPDU_LEN) return (SMS4_WPI_CBC_MAC_ERROR); /* Prepare the round key */ for (k = 0; k < SMS4_BLOCK_WORDS; k++) X[k] = s_ick(ick + (SMS4_WORD_SZ * k)); sms4_key_exp(X, RK); /* First block: PN */ for (k = 0; k < SMS4_BLOCK_WORDS; k++) X[k] = s_pn(pn + (SMS4_WORD_SZ * k)); sms4_enc(Y, X, RK); /* Then the message data */ for (j = 0; j < (data_len / SMS4_BLOCK_SZ); j++) { for (k = 0; k < SMS4_BLOCK_WORDS; k++) X[k] = Y[k] ^ s_ptxt(ptxt + (SMS4_WORD_SZ * k)); ptxt += SMS4_BLOCK_SZ; sms4_enc(Y, X, RK); } /* If the last block is partial, pad with NULLs */ rem_len = data_len % SMS4_BLOCK_SZ; if (rem_len) { bcopy(ptxt, tmp, rem_len); bzero(tmp + rem_len, SMS4_BLOCK_SZ - rem_len); for (k = 0; k < SMS4_BLOCK_WORDS; k++) X[k] = Y[k] ^ s_ptxt(tmp + (SMS4_WORD_SZ * k)); ptxt += data_len % SMS4_BLOCK_SZ; sms4_enc(Y, X, RK); } for (k = 0; k < SMS4_BLOCK_WORDS; k++) { hton32_ua_store(Y[k], mac); mac += SMS4_WORD_SZ; } return (SMS4_WPI_SUCCESS); } #endif /* BCMSMS4_TEST */ /* SMS4-OFB mode encryption/decryption algorithm * - PN must be SMS4_WPI_PN_LEN bytes * - assumes PN is ready to use as-is (i.e. any * randomization of PN is handled by the caller) * - encrypts data in place * - returns SMS4_WPI_SUCCESS on success, SMS4_WPI_OFB_ERROR on error */ int sms4_ofb_crypt(const uint8 *ek, const uint8 *pn, const size_t data_len, uint8 *ptxt) { size_t j, k; uint8 tmp[SMS4_BLOCK_SZ]; uint32 RK[SMS4_RK_WORDS]; uint32 X[SMS4_BLOCK_WORDS]; if (data_len > SMS4_WPI_MAX_MPDU_LEN) return (SMS4_WPI_OFB_ERROR); sms4_print_bytes("ENC Key", (uchar *)ek, SMS4_WPI_CBC_MAC_LEN); sms4_print_bytes("PN ", (uint8 *)pn, SMS4_WPI_PN_LEN); sms4_print_bytes("data", (uchar *)ptxt, data_len); /* Prepare the round key */ for (k = 0; k < SMS4_BLOCK_WORDS; k++) if ((uintptr)ek & 3) X[k] = ntoh32_ua(ek + (SMS4_WORD_SZ * k)); else X[k] = ntoh32(*(uint32 *)(ek + (SMS4_WORD_SZ * k))); sms4_key_exp(X, RK); for (k = 0; k < SMS4_BLOCK_WORDS; k++) { if ((uintptr)pn & 3) X[k] = ntoh32_ua(pn + (SMS4_WORD_SZ * k)); else X[k] = ntoh32(*(uint32 *)(pn + (SMS4_WORD_SZ * k))); } for (k = 0; k < (data_len / SMS4_BLOCK_SZ); k++) { sms4_enc(X, X, RK); for (j = 0; j < SMS4_BLOCK_WORDS; j++) { hton32_ua_store(X[j], &tmp[j * SMS4_WORD_SZ]); } xor_128bit_block(ptxt, tmp, ptxt); ptxt += SMS4_BLOCK_SZ; } /* handle partial block */ if (data_len % SMS4_BLOCK_SZ) { sms4_enc(X, X, RK); for (j = 0; j < SMS4_BLOCK_WORDS; j++) { hton32_ua_store(X[j], &tmp[j * SMS4_WORD_SZ]); } for (k = 0; k < (data_len % SMS4_BLOCK_SZ); k++) ptxt[k] ^= tmp[k]; } return (SMS4_WPI_SUCCESS); } /* SMS4-WPI mode encryption of 802.11 packet * - constructs aad and pn from provided frame * - calls sms4_wpi_cbc_mac() to compute MAC * - calls sms4_ofb_crypt() to encrypt frame * - encrypts data in place * - supplied packet must have sufficient tailroom for CBC-MAC MAC * - data_len includes 802.11 header and CBC-MAC MAC * - returns SMS4_WPI_SUCCESS on success, SMS4_WPI_ENCRYPT_ERROR on error */ int sms4_wpi_pkt_encrypt(const uint8 *ek, const uint8 *ick, const size_t data_len, uint8 *p) { uint8 aad[SMS4_WPI_MAX_AAD_LEN]; uint8 *paad = aad; struct dot11_header *h = (struct dot11_header *)p; struct wpi_iv *iv_data; uint16 fc, seq; uint header_len, aad_len, qos_len = 0, hdr_add_len = 0; bool wds = FALSE; uint8 tmp[SMS4_BLOCK_SZ]; int k; bzero(aad, SMS4_WPI_MAX_AAD_LEN); fc = ltoh16_ua(&(h->fc)); /* WPI only supports protection of DATA frames */ if (FC_TYPE(fc) != FC_TYPE_DATA) return (SMS4_WPI_ENCRYPT_ERROR); /* frame must have Protected flag set */ if (!(fc & FC_WEP)) return (SMS4_WPI_ENCRYPT_ERROR); /* all QoS subtypes have the FC_SUBTYPE_QOS_DATA bit set */ if (FC_SUBTYPE(fc) & FC_SUBTYPE_QOS_DATA) qos_len += 2; /* length of A4, if using wds frames */ wds = ((fc & (FC_TODS | FC_FROMDS)) == (FC_TODS | FC_FROMDS)); if (wds) hdr_add_len += ETHER_ADDR_LEN; /* length of MPDU header, including PN */ header_len = DOT11_A3_HDR_LEN + SMS4_WPI_IV_LEN + hdr_add_len + qos_len; /* pointer to IV */ iv_data = (struct wpi_iv *)(p + DOT11_A3_HDR_LEN + qos_len + hdr_add_len); /* Payload must be > 0 bytes */ if (data_len <= (header_len + SMS4_WPI_CBC_MAC_LEN)) return (SMS4_WPI_ENCRYPT_ERROR); /* aad: maskedFC || A1 || A2 || maskedSC || A3 || A4 || KeyIdx || Reserved || L */ fc &= SMS4_WPI_FC_MASK; *paad++ = (uint8)(fc & 0xff); *paad++ = (uint8)((fc >> 8) & 0xff); bcopy((uchar *)&h->a1, paad, 2*ETHER_ADDR_LEN); paad += 2*ETHER_ADDR_LEN; seq = ltoh16_ua(&(h->seq)); seq &= FRAGNUM_MASK; *paad++ = (uint8)(seq & 0xff); *paad++ = (uint8)((seq >> 8) & 0xff); bcopy((uchar *)&h->a3, paad, ETHER_ADDR_LEN); paad += ETHER_ADDR_LEN; if (wds) { bcopy((uchar *)&h->a4, paad, ETHER_ADDR_LEN); } /* A4 for the MIC, even when there is no A4 in the packet */ paad += ETHER_ADDR_LEN; if (qos_len) { *paad++ = p[DOT11_A3_HDR_LEN + hdr_add_len]; *paad++ = p[DOT11_A3_HDR_LEN + hdr_add_len + 1]; } *paad++ = iv_data->key_idx; *paad++ = iv_data->reserved; *paad++ = ((data_len - header_len - SMS4_WPI_CBC_MAC_LEN) >> 8) & 0xff; *paad++ = (data_len - header_len - SMS4_WPI_CBC_MAC_LEN) & 0xff; /* length of AAD */ aad_len = SMS4_WPI_MIN_AAD_LEN + qos_len; for (k = 0; k < SMS4_BLOCK_SZ; k++) tmp[SMS4_BLOCK_SZ-(k+1)] = (iv_data->PN)[k]; /* calculate MAC */ if (sms4_wpi_cbc_mac(ick, tmp, aad_len, aad, p + header_len)) return (SMS4_WPI_ENCRYPT_ERROR); /* encrypt data */ if (sms4_ofb_crypt(ek, tmp, data_len - header_len, p + header_len)) return (SMS4_WPI_ENCRYPT_ERROR); return (SMS4_WPI_SUCCESS); } /* SMS4-WPI mode decryption of 802.11 packet * - constructs aad and pn from provided frame * - calls sms4_ofb_crypt() to decrypt frame * - calls sms4_wpi_cbc_mac() to compute MAC * - decrypts in place * - data_len includes 802.11 header and CBC-MAC MAC * - returns SMS4_WPI_DECRYPT_ERROR on general error */ int sms4_wpi_pkt_decrypt(const uint8 *ek, const uint8 *ick, const size_t data_len, uint8 *p) { uint8 aad[SMS4_WPI_MAX_AAD_LEN]; uint8 MAC[SMS4_WPI_CBC_MAC_LEN]; uint8 *paad = aad; struct dot11_header *h = (struct dot11_header *)p; struct wpi_iv *iv_data; uint16 fc, seq; uint header_len, aad_len, qos_len = 0, hdr_add_len = 0; bool wds = FALSE; uint8 tmp[SMS4_BLOCK_SZ]; int k; bzero(aad, SMS4_WPI_MAX_AAD_LEN); fc = ltoh16_ua(&(h->fc)); /* WPI only supports protection of DATA frames */ if (FC_TYPE(fc) != FC_TYPE_DATA) return (SMS4_WPI_DECRYPT_ERROR); /* frame must have Protected flag set */ if (!(fc & FC_WEP)) return (SMS4_WPI_DECRYPT_ERROR); /* all QoS subtypes have the FC_SUBTYPE_QOS_DATA bit set */ if ((FC_SUBTYPE(fc) & FC_SUBTYPE_QOS_DATA)) qos_len += 2; /* length of A4, if using wds frames */ wds = ((fc & (FC_TODS | FC_FROMDS)) == (FC_TODS | FC_FROMDS)); if (wds) hdr_add_len += ETHER_ADDR_LEN; /* length of MPDU header, including PN */ header_len = DOT11_A3_HDR_LEN + SMS4_WPI_IV_LEN + hdr_add_len + qos_len; /* pointer to IV */ iv_data = (struct wpi_iv *)(p + DOT11_A3_HDR_LEN + qos_len + hdr_add_len); /* Payload must be > 0 bytes plus MAC */ if (data_len <= (header_len + SMS4_WPI_CBC_MAC_LEN)) return (SMS4_WPI_DECRYPT_ERROR); /* aad: maskedFC || A1 || A2 || maskedSC || A3 || A4 || KeyIdx || Reserved || L */ fc &= SMS4_WPI_FC_MASK; *paad++ = (uint8)(fc & 0xff); *paad++ = (uint8)((fc >> 8) & 0xff); bcopy((uchar *)&h->a1, paad, 2*ETHER_ADDR_LEN); paad += 2*ETHER_ADDR_LEN; seq = ltoh16_ua(&(h->seq)); seq &= FRAGNUM_MASK; *paad++ = (uint8)(seq & 0xff); *paad++ = (uint8)((seq >> 8) & 0xff); bcopy((uchar *)&h->a3, paad, ETHER_ADDR_LEN); paad += ETHER_ADDR_LEN; if (wds) { bcopy((uchar *)&h->a4, paad, ETHER_ADDR_LEN); } /* A4 for the MIC, even when there is no A4 in the packet */ paad += ETHER_ADDR_LEN; if (qos_len) { *paad++ = p[DOT11_A3_HDR_LEN + hdr_add_len]; *paad++ = p[DOT11_A3_HDR_LEN + hdr_add_len + 1]; } *paad++ = iv_data->key_idx; *paad++ = iv_data->reserved; *paad++ = ((data_len - header_len - SMS4_WPI_CBC_MAC_LEN) >> 8) & 0xff; *paad++ = (data_len - header_len - SMS4_WPI_CBC_MAC_LEN) & 0xff; /* length of AAD */ aad_len = SMS4_WPI_MIN_AAD_LEN + qos_len; for (k = 0; k < SMS4_BLOCK_SZ; k++) tmp[SMS4_BLOCK_SZ-(k+1)] = (iv_data->PN)[k]; /* decrypt data */ if (sms4_ofb_crypt(ek, tmp, data_len - header_len, p + header_len)) return (SMS4_WPI_DECRYPT_ERROR); /* store MAC */ bcopy(p + data_len - SMS4_WPI_CBC_MAC_LEN, MAC, SMS4_WPI_CBC_MAC_LEN); /* calculate MAC */ if (sms4_wpi_cbc_mac(ick, tmp, aad_len, aad, p + header_len)) return (SMS4_WPI_DECRYPT_ERROR); /* compare MAC */ if (bcmp(p + data_len - SMS4_WPI_CBC_MAC_LEN, MAC, SMS4_WPI_CBC_MAC_LEN)) return (SMS4_WPI_CBC_MAC_ERROR); return (SMS4_WPI_SUCCESS); } #ifdef BCMSMS4_TEST #include <stdlib.h> #include <bcmcrypto/sms4_vectors.h> #ifdef BCMSMS4_TEST_EMBED /* Number of iterations is sensitive to the state of the test vectors since * encrypt and decrypt are done in place */ #define SMS4_TIMING_ITER 100 #define dbg(args) #define pres(label, len, data) /* returns current time in msec */ static void get_time(uint *t) { *t = hndrte_time(); } #else #ifdef BCMDRIVER /* Number of iterations is sensitive to the state of the test vectors since * encrypt and decrypt are done in place */ #define SMS4_TIMING_ITER 1000 #define dbg(args) printk args #define pres(label, len, data) /* returns current time in msec */ static void get_time(uint *t) { *t = jiffies_to_msecs(jiffies); } #else #define SMS4_TIMING_ITER 10000 #include <stdio.h> #define dbg(args) printf args #include <sys/time.h> /* returns current time in msec */ static void get_time(uint *t) { struct timeval ts; gettimeofday(&ts, NULL); *t = ts.tv_sec * 1000 + ts.tv_usec / 1000; } void pres(const char *label, const size_t len, const uint8 *data) { int k; printf("%s\n", label); for (k = 0; k < len; k++) { printf("0x%02x, ", data[k]); if (!((k + 1) % (SMS4_BLOCK_SZ/2))) printf("\n"); } printf("\n"); } #endif /* BCMDRIVER */ #endif /* BCMSMS4_TEST_EMBED */ int sms4_test_enc_dec() { uint tstart, tend; int i, j, k, fail = 0; uint32 RK[32]; uint32 X[SMS4_BLOCK_WORDS], Y[SMS4_BLOCK_WORDS]; for (k = 0; k < NUM_SMS4_VECTORS; k++) { /* Note that the algorithm spec example output lists X[0] - * X[32], but those should really be labelled X[4] - X[35] * (they're the round output, not the input) */ dbg(("sms4_test_enc_dec: Instance %d:\n", k + 1)); dbg(("sms4_test_enc_dec: Plain Text:\n")); for (i = 0; i < SMS4_BLOCK_WORDS; i++) dbg(("sms4_test_enc_dec: PlainText[%02d] = 0x%08x\n", i, sms4_vec[k].input[i])); dbg(("sms4_test_enc_dec: Encryption Master Key:\n")); for (i = 0; i < SMS4_BLOCK_WORDS; i++) dbg(("sms4_test_enc_dec: MK[%02d] = 0x%08x\n", i, sms4_vec[k].key[i])); sms4_key_exp(sms4_vec[k].key, RK); dbg(("sms4_test_enc_dec: Round Key:\n")); for (i = 0; i < SMS4_RK_WORDS; i++) dbg(("sms4_test_enc_dec: rk[%02d] = 0x%08x\n", i, RK[i])); for (j = 0; j < SMS4_BLOCK_WORDS; j++) Y[j] = sms4_vec[k].input[j]; get_time(&tstart); for (i = 0; i < *sms4_vec[k].niter; i++) { for (j = 0; j < SMS4_BLOCK_WORDS; j++) X[j] = Y[j]; sms4_enc(Y, X, RK); } get_time(&tend); dbg(("sms4_test_enc_dec: Cipher Text:\n")); for (i = 0; i < SMS4_BLOCK_WORDS; i++) dbg(("sms4_test_enc_dec: CipherText[%02d] = 0x%08x\n", i, Y[i])); dbg(("sms4_test_enc_dec: Time for Instance %d Encrypt: %d msec\n", k + 1, tend - tstart)); for (j = 0; j < SMS4_BLOCK_WORDS; j++) { if (Y[j] != sms4_vec[k].ref[j]) { dbg(("sms4_test_enc_dec: sms4_enc failed\n")); fail++; } } for (j = 0; j < SMS4_BLOCK_WORDS; j++) X[j] = sms4_vec[k].ref[j]; get_time(&tstart); for (i = 0; i < *sms4_vec[k].niter; i++) { for (j = 0; j < SMS4_BLOCK_WORDS; j++) X[j] = Y[j]; sms4_dec(Y, X, RK); } get_time(&tend); dbg(("sms4_test_enc_dec: Decrypted Plain Text:\n")); for (i = 0; i < SMS4_BLOCK_WORDS; i++) dbg(("sms4_test_enc_dec: PlainText[%02d] = 0x%08x\n", i, Y[i])); dbg(("sms4_test_enc_dec: Time for Instance %d Decrypt: %d msec\n", k + 1, tend - tstart)); for (j = 0; j < SMS4_BLOCK_WORDS; j++) { if (Y[j] != sms4_vec[k].input[j]) { dbg(("sms4_test_enc_dec: sms4_dec failed\n")); fail++; } } dbg(("\n")); } return (fail); } int sms4_test_cbc_mac() { int retv, k, fail = 0; uint8 mac[SMS4_WPI_CBC_MAC_LEN]; for (k = 0; k < NUM_SMS4_CBC_MAC_VECTORS; k++) { dbg(("sms4_test_cbc_mac: SMS4-WPI-CBC-MAC vector %d\n", k)); retv = sms4_cbc_mac(sms4_cbc_mac_vec[k].ick, sms4_cbc_mac_vec[k].pn, sms4_cbc_mac_vec[k].al, sms4_cbc_mac_vec[k].input, mac); if (retv) { dbg(("sms4_test_cbc_mac: sms4_wpi_cbc_mac of vector %d returned error %d\n", k, retv)); fail++; } pres("sms4_test_cbc_mac: SMS4-WPI-CBC-MAC computed: ", SMS4_WPI_CBC_MAC_LEN, mac); pres("sms4_test_cbc_mac: SMS4-WPI-CBC-MAC reference: ", SMS4_WPI_CBC_MAC_LEN, sms4_cbc_mac_vec[k].ref); if (bcmp(mac, sms4_cbc_mac_vec[k].ref, SMS4_WPI_CBC_MAC_LEN) != 0) { dbg(("sms4_test_cbc_mac: sms4_wpi_cbc_mac of vector %d" " reference mismatch\n", k)); fail++; } } dbg(("\n")); return (fail); } int sms4_test_ofb_crypt() { int retv, k, fail = 0; for (k = 0; k < NUM_SMS4_OFB_VECTORS; k++) { dbg(("sms4_test_ofb_crypt: SMS4-OFB vector %d\n", k)); retv = sms4_ofb_crypt(sms4_ofb_vec[k].ek, sms4_ofb_vec[k].pn, sms4_ofb_vec[k].il, sms4_ofb_vec[k].input); if (retv) { dbg(("sms4_test_ofb_crypt: encrypt of vector %d returned error %d\n", k, retv)); fail++; } pres("sms4_test_ofb_crypt: SMS4-OFB ctxt: ", sms4_ofb_vec[k].il, sms4_ofb_vec[k].input); pres("sms4_test_ofb_crypt: SMS4-OFB ref: ", sms4_ofb_vec[k].il, sms4_ofb_vec[k].ref); if (bcmp(sms4_ofb_vec[k].input, sms4_ofb_vec[k].ref, sms4_ofb_vec[k].il) != 0) { dbg(("sms4_test_ofb_crypt: sms4_ofb_crypt of vector %d" " reference mismatch\n", k)); fail++; } /* Run again to decrypt and restore vector */ retv = sms4_ofb_crypt(sms4_ofb_vec[k].ek, sms4_ofb_vec[k].pn, sms4_ofb_vec[k].il, sms4_ofb_vec[k].input); if (retv) { dbg(("sms4_test_ofb_crypt: decrypt of vector %d returned error %d\n", k, retv)); fail++; } } dbg(("\n")); return (fail); } int sms4_test_wpi_pkt_encrypt_decrypt_timing(int *t) { uint tstart, tend; int retv, j, k, fail = 0; *t = 0; for (k = 0; k < NUM_SMS4_WPI_TIMING_VECTORS; k++) { dbg(("sms4_test_wpi_pkt_encrypt_decrypt_timing: timing SMS4-WPI vector %d\n", k)); get_time(&tstart); for (j = 0; j < SMS4_TIMING_ITER; j++) { retv = sms4_wpi_pkt_encrypt(sms4_wpi_tpkt_vec[k].ek, sms4_wpi_tpkt_vec[k].ick, sms4_wpi_tpkt_vec[k].il, sms4_wpi_tpkt_vec[k].input); if (retv) { fail++; } retv = sms4_wpi_pkt_decrypt(sms4_wpi_tpkt_vec[k].ek, sms4_wpi_tpkt_vec[k].ick, sms4_wpi_tpkt_vec[k].il, sms4_wpi_tpkt_vec[k].input); if (retv) { fail++; } } get_time(&tend); dbg(("sms4_test_wpi_pkt_encrypt_decrypt_timing: Time for %d iterations of SMS4-WPI " " vector %d (total MPDU length %d): %d msec\n", SMS4_TIMING_ITER, k, sms4_wpi_tpkt_vec[k].il, tend - tstart)); *t += tend - tstart; } return (fail); } int sms4_test_wpi_pkt_encrypt() { int retv, k, fail = 0; for (k = 0; k < NUM_SMS4_WPI_PKT_VECTORS; k++) { dbg(("sms4_test_wpi_pkt_encrypt: SMS4-WPI packet vector %d\n", k)); pres("sms4_test_wpi_pkt_encrypt: SMS4-WPI ptxt: ", sms4_wpi_pkt_vec[k].il, sms4_wpi_pkt_vec[k].input); retv = sms4_wpi_pkt_encrypt(sms4_wpi_pkt_vec[k].ek, sms4_wpi_pkt_vec[k].ick, sms4_wpi_pkt_vec[k].il, sms4_wpi_pkt_vec[k].input); if (retv) { dbg(("sms4_test_wpi_pkt_encrypt: sms4_wpi_pkt_encrypt of vector %d" " returned error %d\n", k, retv)); fail++; } pres("sms4_test_wpi_pkt_encrypt: SMS4-WPI ctxt: ", sms4_wpi_pkt_vec[k].il, sms4_wpi_pkt_vec[k].input); pres("sms4_test_wpi_pkt_encrypt: SMS4-WPI ref: ", sms4_wpi_pkt_vec[k].il, sms4_wpi_pkt_vec[k].ref); if (bcmp(sms4_wpi_pkt_vec[k].input, sms4_wpi_pkt_vec[k].ref, sms4_wpi_pkt_vec[k].il) != 0) { dbg(("sms4_test_wpi_pkt_encrypt: sms4_wpi_pkt_encrypt of vector %d" " reference mismatch\n", k)); fail++; } } dbg(("\n")); return (fail); } int sms4_test_wpi_pkt_decrypt() { int retv, k, fail = 0; for (k = 0; k < NUM_SMS4_WPI_PKT_VECTORS; k++) { dbg(("sms4_test_wpi_pkt_decrypt: SMS4-WPI packet vector %d\n", k)); pres("sms4_test_wpi_pkt_decrypt: SMS4-WPI ctxt: ", sms4_wpi_pkt_vec[k].il, sms4_wpi_pkt_vec[k].input); pres("sms4_test_wpi_pkt_decrypt: SMS4-WPI ref: ", sms4_wpi_pkt_vec[k].il, sms4_wpi_pkt_vec[k].ref); retv = sms4_wpi_pkt_decrypt(sms4_wpi_pkt_vec[k].ek, sms4_wpi_pkt_vec[k].ick, sms4_wpi_pkt_vec[k].il, sms4_wpi_pkt_vec[k].input); if (retv) { dbg(("sms4_test_wpi_pkt_decrypt: sms4_wpi_pkt_decrypt of vector %d" " returned error %d\n", k, retv)); fail++; } pres("sms4_test_wpi_pkt_decrypt: SMS4-WPI ptxt: ", sms4_wpi_pkt_vec[k].il, sms4_wpi_pkt_vec[k].input); } dbg(("\n")); return (fail); } int sms4_test_wpi_pkt_micfail() { int retv, k, fail = 0; uint8 *pkt; for (k = 0; k < NUM_SMS4_WPI_PKT_VECTORS; k++) { /* copy the reference data, with an error in the last byte */ pkt = malloc(sms4_wpi_pkt_vec[k].il); if (pkt == NULL) { dbg(("%s: out of memory\n", __FUNCTION__)); fail++; return (fail); } bcopy(sms4_wpi_pkt_vec[k].ref, pkt, sms4_wpi_pkt_vec[k].il); /* create an error in the last byte of the MIC */ pkt[sms4_wpi_pkt_vec[k].il - 1]++; /* decrypt */ dbg(("sms4_test_wpi_pkt_decrypt: SMS4-WPI packet vector %d\n", k)); retv = sms4_wpi_pkt_decrypt(sms4_wpi_pkt_vec[k].ek, sms4_wpi_pkt_vec[k].ick, sms4_wpi_pkt_vec[k].il, pkt); if (!retv) { dbg(("sms4_test_wpi_pkt_decrypt: sms4_wpi_pkt_decrypt of vector %d" " did not return expected error %d\n", k, retv)); fail++; } free(pkt); } dbg(("\n")); return (fail); } int sms4_test(int *t) { int fail = 0; *t = 0; #ifndef BCMSMS4_TEST_EMBED fail += sms4_test_enc_dec(); fail += sms4_test_cbc_mac(); fail += sms4_test_ofb_crypt(); #endif /* since encrypt and decrypt are done in place, and these * functions use the same vectors, the tests must be run in order */ fail += sms4_test_wpi_pkt_encrypt(); fail += sms4_test_wpi_pkt_decrypt(); fail += sms4_test_wpi_pkt_micfail(); fail += sms4_test_wpi_pkt_encrypt_decrypt_timing(t); return (fail); } #ifdef BCMSMS4_TEST_STANDALONE int main(int argc, char **argv) { int fail = 0, t; fail += sms4_test(&t); dbg(("%s: timing result: %d msec\n", __FUNCTION__, t)); fprintf(stderr, "%s: %s\n", *argv, fail ? "FAILED" : "PASSED"); return (fail); } #endif /* BCMSMS4_TEST_STANDALONE */ #endif /* BCMSMS4_TEST */ #endif /* BCMWAPI_WPI */
the_stack_data/111078598.c
#include<stdio.h> int main() { char s[100] = "helloworld"; puts(s); s[5] = '\0'; puts(s); return 0; }
the_stack_data/61075491.c
#include <stdio.h> #include <stdlib.h> void *malloc_s(size_t size) { if (!size) return NULL; void *new_mem = malloc(size); if (!new_mem) { fprintf(stderr, "fatal: memory exhausted (malloc of %zu bytes)\n", size); exit(-1); } return new_mem; }
the_stack_data/237642793.c
/* Generated using codegen (2012-03-12, 10:11:20) */ #include <math.h> void from_LLeg_3(q,LL,RL,CoM,A) double q[24]; double LL[16]; double RL[16]; double CoM[3]; double A[130]; { double t10; double t100; double t1000; double t1001; double t1002; double t1003; double t1004; double t1005; double t1006; double t1015; double t1016; double t1017; double t1018; double t1019; double t102; double t1020; double t1021; double t1024; double t1025; double t1026; double t1027; double t1028; double t1029; double t103; double t1030; double t1035; double t1036; double t1037; double t1038; double t1039; double t1040; double t1041; double t1044; double t1049; double t105; double t1050; double t1051; double t1052; double t1053; double t1054; double t1055; double t1056; double t1057; double t1058; double t1059; double t106; double t1060; double t1061; double t1062; double t1063; double t1064; double t1065; double t1066; double t1067; double t1068; double t1069; double t107; double t1072; double t1073; double t1074; double t1075; double t1076; double t1077; double t1078; double t108; double t1081; double t1082; double t1083; double t1084; double t1085; double t1086; double t1087; double t1088; double t1089; double t109; double t1090; double t1091; double t1092; double t1093; double t1094; double t11; double t110; double t1101; double t1102; double t1103; double t1104; double t1105; double t1106; double t1107; double t111; double t1118; double t1119; double t112; double t1120; double t1121; double t1122; double t1123; double t1124; double t1125; double t1126; double t1129; double t113; double t1130; double t1131; double t1132; double t1133; double t1134; double t1135; double t1138; double t1139; double t114; double t1140; double t1141; double t1142; double t1143; double t1144; double t1147; double t1148; double t1149; double t1150; double t1151; double t1152; double t1153; double t1156; double t1157; double t1158; double t1159; double t116; double t1160; double t1161; double t1162; double t1169; double t117; double t118; double t119; double t12; double t120; double t1208; double t121; double t123; double t124; double t1247; double t1248; double t125; double t1250; double t1253; double t127; double t129; double t1297; double t13; double t130; double t131; double t132; double t133; double t1332; double t1333; double t1334; double t1335; double t1336; double t1337; double t1338; double t134; double t1341; double t1342; double t1343; double t1344; double t1345; double t1346; double t1347; double t135; double t1352; double t136; double t137; double t138; double t139; double t1391; double t1392; double t1393; double t1394; double t1395; double t1396; double t1397; double t14; double t140; double t1400; double t141; double t142; double t143; double t144; double t1441; double t145; double t146; double t147; double t148; double t1482; double t149; double t15; double t150; double t151; double t152; double t1523; double t1524; double t1526; double t1529; double t153; double t154; double t155; double t156; double t157; double t1576; double t158; double t159; double t1592; double t1593; double t1594; double t1595; double t1596; double t1599; double t16; double t160; double t1600; double t1601; double t1602; double t1603; double t162; double t163; double t1631; double t164; double t165; double t166; double t167; double t1676; double t168; double t169; double t1694; double t1695; double t1696; double t1697; double t1698; double t17; double t170; double t171; double t172; double t1726; double t174; double t175; double t176; double t177; double t1771; double t179; double t18; double t180; double t181; double t1816; double t1818; double t1819; double t1820; double t1822; double t1823; double t1824; double t1826; double t1827; double t1828; double t1833; double t1836; double t1839; double t184; double t1842; double t1845; double t1848; double t1851; double t1854; double t1857; double t186; double t1860; double t1863; double t1866; double t1867; double t1870; double t1873; double t1876; double t1879; double t188; double t1882; double t1885; double t1888; double t189; double t1891; double t1894; double t1897; double t19; double t1900; double t1902; double t1905; double t1908; double t191; double t1911; double t1914; double t1917; double t192; double t1920; double t1923; double t1926; double t1929; double t1932; double t1935; double t1936; double t1939; double t194; double t1940; double t1941; double t1942; double t1943; double t1944; double t1945; double t1948; double t1949; double t195; double t1950; double t1951; double t1952; double t1953; double t1954; double t1957; double t196; double t1960; double t1963; double t1966; double t1969; double t197; double t1972; double t1975; double t1978; double t198; double t1981; double t1983; double t199; double t1990; double t1995; double t2; double t20; double t2000; double t2007; double t201; double t2010; double t2011; double t2014; double t2019; double t202; double t2026; double t2029; double t203; double t2032; double t2039; double t204; double t2041; double t2046; double t2049; double t2052; double t2057; double t206; double t2064; double t2069; double t207; double t2074; double t2079; double t208; double t2080; double t2081; double t2082; double t2083; double t2084; double t2085; double t2090; double t2093; double t21; double t210; double t2100; double t2103; double t212; double t2127; double t213; double t214; double t215; double t2150; double t216; double t217; double t2174; double t218; double t219; double t2197; double t2199; double t22; double t220; double t2200; double t2201; double t2203; double t2204; double t2205; double t2207; double t2208; double t2209; double t221; double t2214; double t2217; double t222; double t2220; double t2223; double t2226; double t2229; double t223; double t2232; double t2235; double t2238; double t224; double t2241; double t2244; double t2247; double t2248; double t225; double t2251; double t2254; double t2257; double t226; double t2260; double t2269; double t227; double t2278; double t228; double t2281; double t2284; double t2287; double t229; double t2290; double t2293; double t2296; double t2298; double t23; double t230; double t2301; double t2304; double t2307; double t231; double t2310; double t2313; double t2316; double t2319; double t232; double t2322; double t2325; double t2328; double t2331; double t2332; double t2335; double t2338; double t234; double t2341; double t2344; double t2347; double t235; double t2350; double t2353; double t2356; double t2359; double t236; double t2362; double t2365; double t2368; double t237; double t2370; double t2373; double t238; double t2380; double t2387; double t239; double t2392; double t2397; double t2398; double t24; double t240; double t2403; double t2406; double t2409; double t241; double t2414; double t2417; double t242; double t2426; double t2429; double t243; double t2433; double t2440; double t2445; double t245; double t2450; double t246; double t2461; double t2464; double t247; double t2471; double t2476; double t2479; double t248; double t2486; double t2489; double t249; double t2492; double t2495; double t25; double t250; double t251; double t2519; double t252; double t253; double t254; double t2544; double t255; double t256; double t2568; double t257; double t258; double t259; double t2593; double t26; double t260; double t261; double t262; double t2625; double t263; double t264; double t2649; double t265; double t2657; double t2662; double t2688; double t27; double t270; double t271; double t2713; double t272; double t2724; double t273; double t274; double t2745; double t276; double t277; double t2770; double t279; double t2796; double t280; double t281; double t2821; double t284; double t2847; double t285; double t286; double t287; double t2872; double t288; double t2898; double t29; double t290; double t291; double t2923; double t2925; double t2926; double t2928; double t2929; double t293; double t2931; double t2933; double t2937; double t294; double t2940; double t2943; double t2946; double t2949; double t2952; double t2955; double t2958; double t296; double t2961; double t2964; double t2967; double t297; double t2970; double t2973; double t2978; double t298; double t2983; double t2988; double t299; double t2993; double t2998; double t3; double t30; double t300; double t301; double t3027; double t3029; double t303; double t3032; double t304; double t305; double t306; double t308; double t309; double t31; double t310; double t312; double t314; double t315; double t3150; double t3152; double t3154; double t3159; double t316; double t3162; double t3165; double t3168; double t317; double t3171; double t3174; double t3177; double t318; double t3182; double t3187; double t319; double t32; double t320; double t3204; double t3206; double t3208; double t321; double t3213; double t3216; double t3219; double t322; double t3222; double t3225; double t323; double t3230; double t324; double t3243; double t3245; double t3248; double t325; double t326; double t327; double t3270; double t3277; double t328; double t3284; double t3285; double t3288; double t329; double t3291; double t3292; double t3295; double t3296; double t3299; double t330; double t3300; double t3303; double t3304; double t3307; double t331; double t3312; double t3315; double t3318; double t332; double t3321; double t333; double t334; double t3349; double t336; double t3363; double t337; double t3378; double t338; double t339; double t3392; double t340; double t3408; double t341; double t342; double t3422; double t343; double t3437; double t344; double t345; double t3452; double t3468; double t347; double t3482; double t3497; double t35; double t351; double t3511; double t352; double t3527; double t353; double t354; double t3541; double t355; double t3556; double t356; double t357; double t3571; double t358; double t3587; double t359; double t36; double t360; double t3601; double t361; double t3616; double t362; double t363; double t3630; double t364; double t3646; double t365; double t366; double t3660; double t367; double t3675; double t368; double t369; double t3690; double t37; double t370; double t371; double t372; double t373; double t374; double t375; double t376; double t377; double t378; double t379; double t38; double t380; double t381; double t382; double t383; double t384; double t387; double t388; double t389; double t39; double t390; double t391; double t392; double t393; double t394; double t395; double t396; double t397; double t398; double t399; double t4; double t40; double t400; double t401; double t402; double t403; double t404; double t405; double t406; double t407; double t408; double t409; double t410; double t411; double t414; double t415; double t416; double t417; double t418; double t419; double t42; double t420; double t423; double t424; double t425; double t426; double t427; double t428; double t429; double t43; double t430; double t431; double t432; double t433; double t434; double t435; double t436; double t437; double t438; double t439; double t44; double t440; double t443; double t444; double t445; double t446; double t447; double t448; double t449; double t45; double t452; double t453; double t454; double t455; double t456; double t457; double t458; double t461; double t462; double t463; double t464; double t465; double t466; double t467; double t47; double t470; double t471; double t472; double t473; double t474; double t475; double t476; double t477; double t478; double t479; double t48; double t480; double t481; double t482; double t483; double t484; double t485; double t486; double t487; double t488; double t489; double t49; double t490; double t491; double t492; double t493; double t496; double t497; double t498; double t499; double t5; double t50; double t500; double t501; double t502; double t505; double t506; double t507; double t508; double t509; double t51; double t510; double t511; double t512; double t513; double t514; double t515; double t516; double t517; double t518; double t519; double t52; double t520; double t521; double t522; double t523; double t524; double t525; double t526; double t527; double t528; double t529; double t53; double t530; double t531; double t534; double t535; double t536; double t537; double t538; double t539; double t54; double t540; double t543; double t544; double t545; double t546; double t547; double t548; double t549; double t55; double t552; double t553; double t554; double t555; double t556; double t557; double t558; double t559; double t56; double t560; double t561; double t562; double t563; double t564; double t565; double t566; double t567; double t568; double t569; double t57; double t570; double t571; double t572; double t575; double t576; double t577; double t578; double t579; double t58; double t580; double t581; double t582; double t583; double t584; double t585; double t586; double t587; double t588; double t589; double t59; double t590; double t591; double t592; double t593; double t594; double t595; double t596; double t597; double t598; double t599; double t6; double t60; double t600; double t601; double t602; double t603; double t604; double t605; double t606; double t607; double t608; double t609; double t61; double t610; double t611; double t612; double t613; double t614; double t615; double t616; double t617; double t618; double t619; double t62; double t620; double t621; double t622; double t623; double t624; double t625; double t626; double t627; double t63; double t630; double t631; double t632; double t633; double t634; double t637; double t638; double t639; double t64; double t640; double t641; double t644; double t645; double t646; double t647; double t648; double t649; double t65; double t650; double t653; double t654; double t655; double t656; double t657; double t658; double t659; double t66; double t660; double t661; double t662; double t663; double t664; double t665; double t666; double t667; double t668; double t669; double t67; double t670; double t671; double t672; double t673; double t674; double t675; double t676; double t677; double t678; double t679; double t68; double t680; double t681; double t682; double t683; double t684; double t687; double t688; double t689; double t69; double t690; double t691; double t692; double t693; double t696; double t697; double t698; double t699; double t7; double t70; double t700; double t701; double t702; double t703; double t706; double t707; double t708; double t709; double t71; double t710; double t711; double t712; double t715; double t716; double t717; double t718; double t719; double t72; double t720; double t721; double t722; double t723; double t724; double t725; double t728; double t729; double t73; double t730; double t731; double t732; double t733; double t734; double t737; double t738; double t739; double t740; double t741; double t742; double t743; double t746; double t747; double t748; double t749; double t750; double t751; double t752; double t755; double t756; double t757; double t758; double t759; double t760; double t761; double t764; double t765; double t766; double t767; double t768; double t769; double t770; double t773; double t774; double t775; double t776; double t777; double t778; double t779; double t78; double t780; double t781; double t782; double t783; double t786; double t787; double t788; double t789; double t79; double t790; double t791; double t792; double t795; double t796; double t797; double t798; double t799; double t8; double t80; double t800; double t801; double t804; double t805; double t806; double t807; double t808; double t809; double t81; double t810; double t813; double t814; double t815; double t816; double t817; double t818; double t819; double t82; double t820; double t821; double t822; double t823; double t824; double t825; double t828; double t829; double t830; double t831; double t832; double t833; double t834; double t837; double t838; double t839; double t84; double t840; double t841; double t842; double t843; double t846; double t847; double t848; double t849; double t85; double t850; double t851; double t852; double t855; double t856; double t857; double t858; double t859; double t860; double t861; double t864; double t865; double t866; double t867; double t868; double t869; double t87; double t870; double t873; double t874; double t875; double t876; double t877; double t878; double t879; double t88; double t882; double t885; double t886; double t887; double t888; double t889; double t89; double t890; double t891; double t892; double t893; double t894; double t895; double t896; double t897; double t898; double t899; double t9; double t90; double t900; double t901; double t902; double t903; double t904; double t905; double t906; double t907; double t908; double t909; double t912; double t913; double t914; double t915; double t916; double t917; double t918; double t919; double t920; double t921; double t922; double t923; double t924; double t925; double t926; double t927; double t928; double t929; double t93; double t930; double t931; double t932; double t933; double t934; double t935; double t936; double t937; double t938; double t939; double t94; double t940; double t941; double t942; double t943; double t944; double t945; double t946; double t947; double t948; double t949; double t95; double t952; double t953; double t954; double t955; double t956; double t957; double t958; double t96; double t963; double t964; double t965; double t966; double t967; double t97; double t972; double t973; double t974; double t975; double t976; double t977; double t978; double t985; double t986; double t987; double t988; double t989; double t99; double t990; double t991; double t992; double t993; double t994; double t995; double t998; double t999; { t2 = LL[9]; t3 = q[5]; t4 = cos(t3); t5 = t2*t4; t6 = LL[5]; t7 = sin(t3); t8 = t6*t7; t9 = t5+t8; t10 = q[4]; t11 = cos(t10); t12 = t9*t11; t13 = LL[1]; t14 = sin(t10); t15 = t13*t14; t16 = t12-t15; t17 = q[3]; t18 = cos(t17); t19 = t16*t18; t20 = t9*t14; t21 = t13*t11; t22 = t20+t21; t23 = sin(t17); t24 = t22*t23; t25 = t19-t24; t26 = q[2]; t27 = cos(t26); t29 = t16*t23; t30 = t22*t18; t31 = t29+t30; t32 = sin(t26); t35 = sqrt(2.0); t36 = (t25*t27-t31*t32)*t35; t37 = t2*t7; t38 = t6*t4; t39 = -t37+t38; t40 = t39*t35; t42 = t36/2.0-t40/2.0; t43 = q[1]; t44 = cos(t43); t45 = t42*t44; t47 = -t36/2.0-t40/2.0; t48 = sin(t43); t49 = t47*t48; t50 = t45-t49; t51 = LL[10]; t52 = t51*t4; t53 = LL[6]; t54 = t53*t7; t55 = t52+t54; t56 = t55*t11; t57 = LL[2]; t58 = t57*t14; t59 = t56-t58; t60 = t59*t18; t61 = t55*t14; t62 = t57*t11; t63 = t61+t62; t64 = t63*t23; t65 = t60-t64; t66 = t65*t32; t67 = t59*t23; t68 = t63*t18; t69 = t67+t68; t70 = t69*t27; t71 = t66+t70; t72 = q[0]; t73 = sin(t72); t78 = (t65*t27-t69*t32)*t35; t79 = t51*t7; t80 = t53*t4; t81 = -t79+t80; t82 = t81*t35; t84 = t78/2.0-t82/2.0; t85 = t84*t48; t87 = -t78/2.0-t82/2.0; t88 = t87*t44; t89 = t85+t88; t90 = cos(t72); t93 = (t71*t73+t89*t90)*t35; t94 = t84*t44; t95 = t87*t48; t96 = -t94+t95; t97 = t96*t35; t99 = -t93/2.0+t97/2.0; t100 = t99*t35; t102 = -t93/2.0-t97/2.0; t103 = t102*t35; t105 = -t100/2.0-t103/2.0; t106 = q[7]; t107 = cos(t106); t108 = t105*t107; t109 = t71*t90; t110 = t89*t73; t111 = t109-t110; t112 = q[6]; t113 = sin(t112); t114 = t111*t113; t116 = t100/2.0-t103/2.0; t117 = cos(t112); t118 = t116*t117; t119 = -t114+t118; t120 = sin(t106); t121 = t119*t120; t123 = (t108+t121)*t35; t124 = t105*t120; t125 = t119*t107; t127 = (-t124+t125)*t35; t129 = t123/2.0+t127/2.0; t130 = q[8]; t131 = cos(t130); t132 = t129*t131; t133 = t111*t117; t134 = t116*t113; t135 = -t133-t134; t136 = sin(t130); t137 = t135*t136; t138 = t132+t137; t139 = q[9]; t140 = cos(t139); t141 = t138*t140; t142 = t129*t136; t143 = t135*t131; t144 = -t142+t143; t145 = sin(t139); t146 = t144*t145; t147 = t141+t146; t148 = q[10]; t149 = cos(t148); t150 = t147*t149; t151 = t138*t145; t152 = t144*t140; t153 = -t151+t152; t154 = sin(t148); t155 = t153*t154; t156 = t150+t155; t157 = q[11]; t158 = cos(t157); t159 = t156*t158; t160 = 0.4511E-1*t159; t162 = -t123/2.0+t127/2.0; t163 = sin(t157); t164 = t162*t163; t165 = 0.4511E-1*t164; t166 = 0.10274*t141; t167 = 0.10274*t146; t168 = 0.1*t132; t169 = 0.1*t137; t170 = 0.5E-1*t93; t171 = 0.5E-1*t97; t172 = t160+t165+t166+t167+t168+t169+t170-t171; t174 = -t96; t175 = t25*t32; t176 = t31*t27; t177 = t175+t176; t179 = t42*t48; t180 = t47*t44; t181 = t179+t180; t184 = (t177*t73+t181*t90)*t35; t186 = -t50*t35; t188 = -t184/2.0+t186/2.0; t189 = t188*t35; t191 = -t184/2.0-t186/2.0; t192 = t191*t35; t194 = -t189/2.0-t192/2.0; t195 = t194*t107; t196 = t177*t90; t197 = t181*t73; t198 = t196-t197; t199 = t198*t113; t201 = t189/2.0-t192/2.0; t202 = t201*t117; t203 = -t199+t202; t204 = t203*t120; t206 = (t195+t204)*t35; t207 = t194*t120; t208 = t203*t107; t210 = (-t207+t208)*t35; t212 = t206/2.0+t210/2.0; t213 = t212*t131; t214 = t198*t117; t215 = t201*t113; t216 = -t214-t215; t217 = t216*t136; t218 = t213+t217; t219 = t218*t140; t220 = t212*t136; t221 = t216*t131; t222 = -t220+t221; t223 = t222*t145; t224 = t219+t223; t225 = t224*t149; t226 = t218*t145; t227 = t222*t140; t228 = -t226+t227; t229 = t228*t154; t230 = t225+t229; t231 = t230*t158; t232 = 0.4511E-1*t231; t234 = -t206/2.0+t210/2.0; t235 = t234*t163; t236 = 0.4511E-1*t235; t237 = 0.10274*t219; t238 = 0.10274*t223; t239 = 0.1*t213; t240 = 0.1*t217; t241 = 0.5E-1*t184; t242 = 0.5E-1*t186; t243 = t232+t236+t237+t238+t239+t240+t241-t242; A[0] = t50*t172-t174*t243; t245 = LL[8]; t246 = t245*t4; t247 = LL[4]; t248 = t247*t7; t249 = t246+t248; t250 = t249*t11; t251 = LL[0]; t252 = t251*t14; t253 = t250-t252; t254 = t253*t18; t255 = t249*t14; t256 = t251*t11; t257 = t255+t256; t258 = t257*t23; t259 = t254-t258; t260 = t259*t32; t261 = t253*t23; t262 = t257*t18; t263 = t261+t262; t264 = t263*t27; t265 = t260+t264; t270 = (t259*t27-t263*t32)*t35; t271 = t245*t7; t272 = t247*t4; t273 = -t271+t272; t274 = t273*t35; t276 = t270/2.0-t274/2.0; t277 = t276*t48; t279 = -t270/2.0-t274/2.0; t280 = t279*t44; t281 = t277+t280; t284 = (t265*t73+t281*t90)*t35; t285 = t276*t44; t286 = t279*t48; t287 = -t285+t286; t288 = t287*t35; t290 = -t284/2.0+t288/2.0; t291 = t290*t35; t293 = -t284/2.0-t288/2.0; t294 = t293*t35; t296 = -t291/2.0-t294/2.0; t297 = t296*t107; t298 = t265*t90; t299 = t281*t73; t300 = t298-t299; t301 = t300*t113; t303 = t291/2.0-t294/2.0; t304 = t303*t117; t305 = -t301+t304; t306 = t305*t120; t308 = (t297+t306)*t35; t309 = t296*t120; t310 = t305*t107; t312 = (-t309+t310)*t35; t314 = t308/2.0+t312/2.0; t315 = t314*t131; t316 = t300*t117; t317 = t303*t113; t318 = -t316-t317; t319 = t318*t136; t320 = t315+t319; t321 = t320*t140; t322 = t314*t136; t323 = t318*t131; t324 = -t322+t323; t325 = t324*t145; t326 = t321+t325; t327 = t326*t149; t328 = t320*t145; t329 = t324*t140; t330 = -t328+t329; t331 = t330*t154; t332 = t327+t331; t333 = t332*t158; t334 = 0.4511E-1*t333; t336 = -t308/2.0+t312/2.0; t337 = t336*t163; t338 = 0.4511E-1*t337; t339 = 0.10274*t321; t340 = 0.10274*t325; t341 = 0.1*t315; t342 = 0.1*t319; t343 = 0.5E-1*t284; t344 = 0.5E-1*t288; t345 = t334+t338+t339+t340+t341+t342+t343-t344; t347 = -t287; A[1] = t174*t345-t347*t172; A[2] = t347*t243-t50*t345; A[3] = t347; A[4] = t50; A[5] = t174; t351 = q[17]; t352 = sin(t351); t353 = t198*t352; t354 = -t191; t355 = cos(t351); t356 = t354*t355; t357 = -t353+t356; t358 = q[19]; t359 = cos(t358); t360 = t357*t359; t361 = 0.2E-3*t360; t362 = t198*t355; t363 = t354*t352; t364 = t362+t363; t365 = q[18]; t366 = sin(t365); t367 = t364*t366; t368 = cos(t365); t369 = t188*t368; t370 = -t367+t369; t371 = sin(t358); t372 = t370*t371; t373 = 0.2E-3*t372; t374 = t357*t371; t375 = 0.1E-4*t374; t376 = t370*t359; t377 = 0.1E-4*t376; t378 = t364*t368; t379 = 0.6427E-1*t378; t380 = t188*t366; t381 = 0.6427E-1*t380; t382 = 0.185E-1*t184; t383 = 0.1665*t186; t384 = t361+t373-t375+t377+t379+t381-t382-t383; t387 = q[22]; t388 = cos(t387); t389 = t111*t388; t390 = sin(t387); t391 = t99*t390; t392 = t389+t391; t393 = q[23]; t394 = cos(t393); t395 = t392*t394; t396 = 0.383E-2*t395; t397 = -t102; t398 = sin(t393); t399 = t397*t398; t400 = 0.383E-2*t399; t401 = t392*t398; t402 = 0.5156E-1*t401; t403 = t397*t394; t404 = 0.5156E-1*t403; t405 = t111*t390; t406 = 0.93E-3*t405; t407 = t99*t388; t408 = 0.93E-3*t407; t409 = 0.8075E-1*t93; t410 = 0.13075*t97; t411 = t396+t400+t402-t404+t406-t408-t409-t410; t414 = 0.717E-2*t133; t415 = 0.717E-2*t134; t416 = 0.10733880938412E-1*t114; t417 = 0.10733880938412E-1*t118; t418 = 0.1376029796E-1*t100; t419 = 0.1376029796E-1*t103; t420 = -t414-t415+t416-t417+t418+t419+t170-t171; t423 = t198*t388; t424 = t188*t390; t425 = t423+t424; t426 = t425*t394; t427 = 0.383E-2*t426; t428 = t354*t398; t429 = 0.383E-2*t428; t430 = t425*t398; t431 = 0.5156E-1*t430; t432 = t354*t394; t433 = 0.5156E-1*t432; t434 = t198*t390; t435 = 0.93E-3*t434; t436 = t188*t388; t437 = 0.93E-3*t436; t438 = 0.8075E-1*t184; t439 = 0.13075*t186; t440 = t427+t429+t431-t433+t435-t437-t438-t439; t443 = 0.2067E-1*t378; t444 = 0.2067E-1*t380; t445 = 0.338E-2*t367; t446 = 0.338E-2*t369; t447 = 0.362E-2*t353; t448 = 0.362E-2*t356; t449 = t443+t444+t445-t446+t447-t448-t382-t383; t452 = 0.4891E-1*t219; t453 = 0.4891E-1*t223; t454 = 0.471E-2*t226; t455 = 0.471E-2*t227; t456 = 0.105E-2*t206; t457 = 0.105E-2*t210; t458 = t452+t453+t454-t455+t456-t457+t239+t240+t241-t242; t461 = 0.356381817718E-2*t195; t462 = 0.356381817718E-2*t204; t463 = 0.3153696244092E-2*t207; t464 = 0.3153696244092E-2*t208; t465 = 0.1649E-1*t214; t466 = 0.1649E-1*t215; t467 = t461+t462-t463+t464-t465-t466+t241-t242; t470 = t111*t352; t471 = t397*t355; t472 = -t470+t471; t473 = t472*t359; t474 = 0.2E-3*t473; t475 = t111*t355; t476 = t397*t352; t477 = t475+t476; t478 = t477*t366; t479 = t99*t368; t480 = -t478+t479; t481 = t480*t371; t482 = 0.2E-3*t481; t483 = t472*t371; t484 = 0.1E-4*t483; t485 = t480*t359; t486 = 0.1E-4*t485; t487 = t477*t368; t488 = 0.6427E-1*t487; t489 = t99*t366; t490 = 0.6427E-1*t489; t491 = 0.185E-1*t93; t492 = 0.1665*t97; t493 = t474+t482-t484+t486+t488+t490-t491-t492; t496 = 0.3E-4*t423; t497 = 0.3E-4*t424; t498 = 0.18E-3*t434; t499 = 0.18E-3*t436; t500 = 0.67885E-1*t184; t501 = 0.117885*t186; t502 = -t496-t497-t498+t499-t500-t501; t505 = t360+t372; t506 = q[21]; t507 = cos(t506); t508 = t505*t507; t509 = 0.272E-2*t508; t510 = t378+t380; t511 = q[20]; t512 = sin(t511); t513 = t510*t512; t514 = -t374+t376; t515 = cos(t511); t516 = t514*t515; t517 = -t513+t516; t518 = sin(t506); t519 = t517*t518; t520 = 0.272E-2*t519; t521 = t505*t518; t522 = 0.268E-2*t521; t523 = t517*t507; t524 = 0.268E-2*t523; t525 = t510*t515; t526 = 0.8296E-1*t525; t527 = t514*t512; t528 = 0.8296E-1*t527; t529 = 0.9E-1*t378; t530 = 0.9E-1*t380; t531 = t509+t520+t522-t524+t526+t528+t529+t530-t382-t383; t534 = 0.5386E-1*t213; t535 = 0.5386E-1*t217; t536 = 0.131E-2*t220; t537 = 0.131E-2*t221; t538 = 0.1005E-2*t206; t539 = 0.1005E-2*t210; t540 = t534+t535+t536-t537+t538-t539+t241-t242; t543 = 0.178E-2*t362; t544 = 0.178E-2*t363; t545 = 0.19E-3*t353; t546 = 0.19E-3*t356; t547 = 0.31035E-1*t184; t548 = 0.153965*t186; t549 = -t543-t544+t545-t546-t547-t548; t552 = t473+t481; t553 = t552*t507; t554 = 0.272E-2*t553; t555 = t487+t489; t556 = t555*t512; t557 = -t483+t485; t558 = t557*t515; t559 = -t556+t558; t560 = t559*t518; t561 = 0.272E-2*t560; t562 = t552*t518; t563 = 0.268E-2*t562; t564 = t559*t507; t565 = 0.268E-2*t564; t566 = t555*t515; t567 = 0.8296E-1*t566; t568 = t557*t512; t569 = 0.8296E-1*t568; t570 = 0.9E-1*t487; t571 = 0.9E-1*t489; t572 = t554+t561+t563-t565+t567+t569+t570+t571-t491-t492; t575 = q[12]; t576 = sin(t575); t577 = t111*t576; t578 = cos(t575); t579 = t397*t578; t580 = -t577+t579; t581 = q[14]; t582 = cos(t581); t583 = t580*t582; t584 = t111*t578; t585 = t397*t576; t586 = t584+t585; t587 = q[13]; t588 = sin(t587); t589 = t586*t588; t590 = cos(t587); t591 = t99*t590; t592 = -t589+t591; t593 = sin(t581); t594 = t592*t593; t595 = t583+t594; t596 = q[16]; t597 = cos(t596); t598 = t595*t597; t599 = 0.272E-2*t598; t600 = t586*t590; t601 = t99*t588; t602 = t600+t601; t603 = q[15]; t604 = sin(t603); t605 = t602*t604; t606 = t580*t593; t607 = t592*t582; t608 = -t606+t607; t609 = cos(t603); t610 = t608*t609; t611 = -t605+t610; t612 = sin(t596); t613 = t611*t612; t614 = 0.272E-2*t613; t615 = t595*t612; t616 = 0.268E-2*t615; t617 = t611*t597; t618 = 0.268E-2*t617; t619 = t602*t609; t620 = 0.8296E-1*t619; t621 = t608*t604; t622 = 0.8296E-1*t621; t623 = 0.9E-1*t600; t624 = 0.9E-1*t601; t625 = 0.1165*t93; t626 = 0.685E-1*t97; t627 = t599+t614-t616+t618+t620+t622+t623+t624-t625-t626; t630 = 0.48E-2*t109; t631 = 0.48E-2*t110; t632 = 0.38665E-1*t93; t633 = 0.88605E-1*t97; t634 = -t630+t631-t632-t633; t637 = 0.48E-2*t196; t638 = 0.48E-2*t197; t639 = 0.38665E-1*t184; t640 = 0.88605E-1*t186; t641 = -t637+t638-t639-t640; t644 = 0.4891E-1*t141; t645 = 0.4891E-1*t146; t646 = 0.471E-2*t151; t647 = 0.471E-2*t152; t648 = 0.105E-2*t123; t649 = 0.105E-2*t127; t650 = t644+t645+t646-t647+t648-t649+t168+t169+t170-t171; t653 = t198*t578; t654 = t354*t576; t655 = t653+t654; t656 = t655*t590; t657 = t188*t588; t658 = t656+t657; t659 = t658*t609; t660 = 0.194E-1*t659; t661 = t198*t576; t662 = t354*t578; t663 = -t661+t662; t664 = t663*t593; t665 = t655*t588; t666 = t188*t590; t667 = -t665+t666; t668 = t667*t582; t669 = -t664+t668; t670 = t669*t604; t671 = 0.194E-1*t670; t672 = t658*t604; t673 = 0.304E-2*t672; t674 = t669*t609; t675 = 0.304E-2*t674; t676 = t663*t582; t677 = 0.25E-2*t676; t678 = t667*t593; t679 = 0.25E-2*t678; t680 = 0.9E-1*t656; t681 = 0.9E-1*t657; t682 = 0.1165*t184; t683 = 0.685E-1*t186; t684 = t660+t671-t673+t675-t677-t679+t680+t681-t682-t683; t687 = 0.2E-3*t676; t688 = 0.2E-3*t678; t689 = 0.1E-4*t664; t690 = 0.1E-4*t668; t691 = 0.6427E-1*t656; t692 = 0.6427E-1*t657; t693 = t687+t688+t689-t690+t691+t692-t682-t683; t696 = -0.1232237092E-1*A[5]*t384+0.9857689952E-1*A[4]*t411+0.1497956955E-1 *A[4]*t420-0.9857689952E-1*A[5]*t440-0.2515757084E-1*A[5]*t449-0.6142781518E-1* A[5]*t458-0.2797813032E-1*A[5]*t467+0.1232237092E-1*A[4]*t493-0.1232237092E-1*A [5]*t502-0.2959933166E-1*A[5]*t531-0.8229664675E-1*A[5]*t540-0.1444192625E-1*A [5]*t549+0.2959933166E-1*A[4]*t572+0.2959933166E-1*A[4]*t627+0.2122202187*A[4]* t634-0.2122202187*A[5]*t641+0.6142781518E-1*A[4]*t650-0.7795827887E-2*A[5]*t684 -0.1232237092E-1*A[5]*t693; t697 = 0.178E-2*t653; t698 = 0.178E-2*t654; t699 = 0.19E-3*t661; t700 = 0.19E-3*t662; t701 = 0.103965*t184; t702 = 0.81035E-1*t186; t703 = -t697-t698+t699-t700-t701-t702; t706 = 0.194E-1*t619; t707 = 0.194E-1*t621; t708 = 0.304E-2*t605; t709 = 0.304E-2*t610; t710 = 0.25E-2*t583; t711 = 0.25E-2*t594; t712 = t706+t707-t708+t709-t710-t711+t623+t624-t625-t626; t715 = 0.3208E-1*t231; t716 = 0.3208E-1*t235; t717 = t230*t163; t718 = 0.33E-2*t717; t719 = t234*t158; t720 = 0.33E-2*t719; t721 = t224*t154; t722 = 0.2489E-1*t721; t723 = t228*t149; t724 = 0.2489E-1*t723; t725 = t715+t716+t718-t720+t722-t724+t237+t238+t239+t240+t241-t242; t728 = 0.2067E-1*t487; t729 = 0.2067E-1*t489; t730 = 0.338E-2*t478; t731 = 0.338E-2*t479; t732 = 0.362E-2*t470; t733 = 0.362E-2*t471; t734 = t728+t729+t730-t731+t732-t733-t491-t492; t737 = 0.2067E-1*t656; t738 = 0.2067E-1*t657; t739 = 0.388E-2*t665; t740 = 0.388E-2*t666; t741 = 0.362E-2*t661; t742 = 0.362E-2*t662; t743 = t737+t738-t739+t740+t741-t742-t682-t683; t746 = 0.2067E-1*t600; t747 = 0.2067E-1*t601; t748 = 0.388E-2*t589; t749 = 0.388E-2*t591; t750 = 0.362E-2*t577; t751 = 0.362E-2*t579; t752 = t746+t747-t748+t749+t750-t751-t625-t626; t755 = 0.638E-2*t225; t756 = 0.638E-2*t229; t757 = 0.142E-2*t721; t758 = 0.142E-2*t723; t759 = 0.14E-3*t206; t760 = 0.14E-3*t210; t761 = -t755-t756+t757-t758+t759-t760+t237+t238+t239+t240+t241-t242; t764 = 0.178E-2*t584; t765 = 0.178E-2*t585; t766 = 0.19E-3*t577; t767 = 0.19E-3*t579; t768 = 0.103965*t93; t769 = 0.81035E-1*t97; t770 = -t764-t765+t766-t767-t768-t769; t773 = 0.3208E-1*t159; t774 = 0.3208E-1*t164; t775 = t156*t163; t776 = 0.33E-2*t775; t777 = t162*t158; t778 = 0.33E-2*t777; t779 = t147*t154; t780 = 0.2489E-1*t779; t781 = t153*t149; t782 = 0.2489E-1*t781; t783 = t773+t774+t776-t778+t780-t782+t166+t167+t168+t169+t170-t171; t786 = 0.717E-2*t214; t787 = 0.717E-2*t215; t788 = 0.10733880938412E-1*t199; t789 = 0.10733880938412E-1*t202; t790 = 0.1376029796E-1*t189; t791 = 0.1376029796E-1*t192; t792 = -t786-t787+t788-t789+t790+t791+t241-t242; t795 = 0.2E-3*t583; t796 = 0.2E-3*t594; t797 = 0.1E-4*t606; t798 = 0.1E-4*t607; t799 = 0.6427E-1*t600; t800 = 0.6427E-1*t601; t801 = t795+t796+t797-t798+t799+t800-t625-t626; t804 = 0.5386E-1*t132; t805 = 0.5386E-1*t137; t806 = 0.131E-2*t142; t807 = 0.131E-2*t143; t808 = 0.1005E-2*t123; t809 = 0.1005E-2*t127; t810 = t804+t805+t806-t807+t808-t809+t170-t171; t813 = t676+t678; t814 = t813*t597; t815 = 0.272E-2*t814; t816 = -t672+t674; t817 = t816*t612; t818 = 0.272E-2*t817; t819 = t813*t612; t820 = 0.268E-2*t819; t821 = t816*t597; t822 = 0.268E-2*t821; t823 = 0.8296E-1*t659; t824 = 0.8296E-1*t670; t825 = t815+t818-t820+t822+t823+t824+t680+t681-t682-t683; t828 = 0.3E-4*t389; t829 = 0.3E-4*t391; t830 = 0.18E-3*t405; t831 = 0.18E-3*t407; t832 = 0.67885E-1*t93; t833 = 0.117885*t97; t834 = -t828-t829-t830+t831-t832-t833; t837 = 0.356381817718E-2*t108; t838 = 0.356381817718E-2*t121; t839 = 0.3153696244092E-2*t124; t840 = 0.3153696244092E-2*t125; t841 = 0.1649E-1*t133; t842 = 0.1649E-1*t134; t843 = t837+t838-t839+t840-t841-t842+t170-t171; t846 = 0.638E-2*t150; t847 = 0.638E-2*t155; t848 = 0.142E-2*t779; t849 = 0.142E-2*t781; t850 = 0.14E-3*t123; t851 = 0.14E-3*t127; t852 = -t846-t847+t848-t849+t850-t851+t166+t167+t168+t169+t170-t171; t855 = 0.178E-2*t475; t856 = 0.178E-2*t476; t857 = 0.19E-3*t470; t858 = 0.19E-3*t471; t859 = 0.31035E-1*t93; t860 = 0.153965*t97; t861 = -t855-t856+t857-t858-t859-t860; t864 = 0.194E-1*t566; t865 = 0.194E-1*t568; t866 = 0.304E-2*t556; t867 = 0.304E-2*t558; t868 = 0.25E-2*t473; t869 = 0.25E-2*t481; t870 = t864+t865+t866-t867-t868-t869+t570+t571-t491-t492; t873 = 0.194E-1*t525; t874 = 0.194E-1*t527; t875 = 0.304E-2*t513; t876 = 0.304E-2*t516; t877 = 0.25E-2*t360; t878 = 0.25E-2*t372; t879 = t873+t874+t875-t876-t877-t878+t529+t530-t382-t383; t882 = -0.1444192625E-1*A[5]*t703+0.7795827887E-2*A[4]*t712-0.3371437079E-1 *A[5]*t725+0.2515757084E-1*A[4]*t734-0.2515757084E-1*A[5]*t743+0.2515757084E-1* A[4]*t752-0.2872669523E-1*A[5]*t761+0.1444192625E-1*A[4]*t770+0.3371437079E-1*A [4]*t783-0.1497956955E-1*A[5]*t792+0.1232237092E-1*A[4]*t801+0.8229664675E-1*A [4]*t810-0.2959933166E-1*A[5]*t825+0.1232237092E-1*A[4]*t834+0.2797813032E-1*A [4]*t843+0.2872669523E-1*A[4]*t852+0.1444192625E-1*A[4]*t861+0.7795827887E-2*A [4]*t870-0.7795827887E-2*A[5]*t879; A[6] = t696+t882; t885 = t300*t352; t886 = -t293; t887 = t886*t355; t888 = -t885+t887; t889 = t888*t359; t890 = 0.2E-3*t889; t891 = t300*t355; t892 = t886*t352; t893 = t891+t892; t894 = t893*t366; t895 = t290*t368; t896 = -t894+t895; t897 = t896*t371; t898 = 0.2E-3*t897; t899 = t888*t371; t900 = 0.1E-4*t899; t901 = t896*t359; t902 = 0.1E-4*t901; t903 = t893*t368; t904 = 0.6427E-1*t903; t905 = t290*t366; t906 = 0.6427E-1*t905; t907 = 0.185E-1*t284; t908 = 0.1665*t288; t909 = t890+t898-t900+t902+t904+t906-t907-t908; t912 = t300*t576; t913 = t886*t578; t914 = -t912+t913; t915 = t914*t582; t916 = t300*t578; t917 = t886*t576; t918 = t916+t917; t919 = t918*t588; t920 = t290*t590; t921 = -t919+t920; t922 = t921*t593; t923 = t915+t922; t924 = t923*t597; t925 = 0.272E-2*t924; t926 = t918*t590; t927 = t290*t588; t928 = t926+t927; t929 = t928*t604; t930 = t914*t593; t931 = t921*t582; t932 = -t930+t931; t933 = t932*t609; t934 = -t929+t933; t935 = t934*t612; t936 = 0.272E-2*t935; t937 = t923*t612; t938 = 0.268E-2*t937; t939 = t934*t597; t940 = 0.268E-2*t939; t941 = t928*t609; t942 = 0.8296E-1*t941; t943 = t932*t604; t944 = 0.8296E-1*t943; t945 = 0.9E-1*t926; t946 = 0.9E-1*t927; t947 = 0.1165*t284; t948 = 0.685E-1*t288; t949 = t925+t936-t938+t940+t942+t944+t945+t946-t947-t948; t952 = 0.717E-2*t316; t953 = 0.717E-2*t317; t954 = 0.10733880938412E-1*t301; t955 = 0.10733880938412E-1*t304; t956 = 0.1376029796E-1*t291; t957 = 0.1376029796E-1*t294; t958 = -t952-t953+t954-t955+t956+t957+t343-t344; t963 = 0.48E-2*t298; t964 = 0.48E-2*t299; t965 = 0.38665E-1*t284; t966 = 0.88605E-1*t288; t967 = -t963+t964-t965-t966; t972 = 0.2067E-1*t903; t973 = 0.2067E-1*t905; t974 = 0.338E-2*t894; t975 = 0.338E-2*t895; t976 = 0.362E-2*t885; t977 = 0.362E-2*t887; t978 = t972+t973+t974-t975+t976-t977-t907-t908; t985 = t300*t388; t986 = 0.3E-4*t985; t987 = t290*t390; t988 = 0.3E-4*t987; t989 = t300*t390; t990 = 0.18E-3*t989; t991 = t290*t388; t992 = 0.18E-3*t991; t993 = 0.67885E-1*t284; t994 = 0.117885*t288; t995 = -t986-t988-t990+t992-t993-t994; t998 = 0.638E-2*t327; t999 = 0.638E-2*t331; t1000 = t326*t154; t1001 = 0.142E-2*t1000; t1002 = t330*t149; t1003 = 0.142E-2*t1002; t1004 = 0.14E-3*t308; t1005 = 0.14E-3*t312; t1006 = -t998-t999+t1001-t1003+t1004-t1005+t339+t340+t341+t342+t343-t344; t1015 = 0.2E-3*t915; t1016 = 0.2E-3*t922; t1017 = 0.1E-4*t930; t1018 = 0.1E-4*t931; t1019 = 0.6427E-1*t926; t1020 = 0.6427E-1*t927; t1021 = t1015+t1016+t1017-t1018+t1019+t1020-t947-t948; t1024 = 0.356381817718E-2*t297; t1025 = 0.356381817718E-2*t306; t1026 = 0.3153696244092E-2*t309; t1027 = 0.3153696244092E-2*t310; t1028 = 0.1649E-1*t316; t1029 = 0.1649E-1*t317; t1030 = t1024+t1025-t1026+t1027-t1028-t1029+t343-t344; t1035 = 0.4891E-1*t321; t1036 = 0.4891E-1*t325; t1037 = 0.471E-2*t328; t1038 = 0.471E-2*t329; t1039 = 0.105E-2*t308; t1040 = 0.105E-2*t312; t1041 = t1035+t1036+t1037-t1038+t1039-t1040+t341+t342+t343-t344; t1044 = -0.2515757084E-1*A[3]*t734+0.1232237092E-1*A[5]*t909+ 0.2959933166E-1*A[5]*t949+0.1497956955E-1*A[5]*t958-0.2959933166E-1*A[3]*t627+ 0.2122202187*A[5]*t967-0.9857689952E-1*A[3]*t411+0.2515757084E-1*A[5]*t978 -0.3371437079E-1*A[3]*t783-0.2797813032E-1*A[3]*t843+0.1232237092E-1*A[5]*t995+ 0.2872669523E-1*A[5]*t1006-0.2515757084E-1*A[3]*t752-0.8229664675E-1*A[3]*t810 -0.2872669523E-1*A[3]*t852+0.1232237092E-1*A[5]*t1021+0.2797813032E-1*A[5]* t1030-0.1497956955E-1*A[3]*t420+0.6142781518E-1*A[5]*t1041; t1049 = t889+t897; t1050 = t1049*t507; t1051 = 0.272E-2*t1050; t1052 = t903+t905; t1053 = t1052*t512; t1054 = -t899+t901; t1055 = t1054*t515; t1056 = -t1053+t1055; t1057 = t1056*t518; t1058 = 0.272E-2*t1057; t1059 = t1049*t518; t1060 = 0.268E-2*t1059; t1061 = t1056*t507; t1062 = 0.268E-2*t1061; t1063 = t1052*t515; t1064 = 0.8296E-1*t1063; t1065 = t1054*t512; t1066 = 0.8296E-1*t1065; t1067 = 0.9E-1*t903; t1068 = 0.9E-1*t905; t1069 = t1051+t1058+t1060-t1062+t1064+t1066+t1067+t1068-t907-t908; t1072 = 0.194E-1*t1063; t1073 = 0.194E-1*t1065; t1074 = 0.304E-2*t1053; t1075 = 0.304E-2*t1055; t1076 = 0.25E-2*t889; t1077 = 0.25E-2*t897; t1078 = t1072+t1073+t1074-t1075-t1076-t1077+t1067+t1068-t907-t908; t1081 = t985+t987; t1082 = t1081*t394; t1083 = 0.383E-2*t1082; t1084 = t886*t398; t1085 = 0.383E-2*t1084; t1086 = t1081*t398; t1087 = 0.5156E-1*t1086; t1088 = t886*t394; t1089 = 0.5156E-1*t1088; t1090 = 0.93E-3*t989; t1091 = 0.93E-3*t991; t1092 = 0.8075E-1*t284; t1093 = 0.13075*t288; t1094 = t1083+t1085+t1087-t1089+t1090-t1091-t1092-t1093; t1101 = 0.194E-1*t941; t1102 = 0.194E-1*t943; t1103 = 0.304E-2*t929; t1104 = 0.304E-2*t933; t1105 = 0.25E-2*t915; t1106 = 0.25E-2*t922; t1107 = t1101+t1102-t1103+t1104-t1105-t1106+t945+t946-t947-t948; t1118 = 0.3208E-1*t333; t1119 = 0.3208E-1*t337; t1120 = t332*t163; t1121 = 0.33E-2*t1120; t1122 = t336*t158; t1123 = 0.33E-2*t1122; t1124 = 0.2489E-1*t1000; t1125 = 0.2489E-1*t1002; t1126 = t1118+t1119+t1121-t1123+t1124-t1125+t339+t340+t341+t342+t343-t344; t1129 = 0.178E-2*t891; t1130 = 0.178E-2*t892; t1131 = 0.19E-3*t885; t1132 = 0.19E-3*t887; t1133 = 0.31035E-1*t284; t1134 = 0.153965*t288; t1135 = -t1129-t1130+t1131-t1132-t1133-t1134; t1138 = 0.178E-2*t916; t1139 = 0.178E-2*t917; t1140 = 0.19E-3*t912; t1141 = 0.19E-3*t913; t1142 = 0.103965*t284; t1143 = 0.81035E-1*t288; t1144 = -t1138-t1139+t1140-t1141-t1142-t1143; t1147 = 0.2067E-1*t926; t1148 = 0.2067E-1*t927; t1149 = 0.388E-2*t919; t1150 = 0.388E-2*t920; t1151 = 0.362E-2*t912; t1152 = 0.362E-2*t913; t1153 = t1147+t1148-t1149+t1150+t1151-t1152-t947-t948; t1156 = 0.5386E-1*t315; t1157 = 0.5386E-1*t319; t1158 = 0.131E-2*t322; t1159 = 0.131E-2*t323; t1160 = 0.1005E-2*t308; t1161 = 0.1005E-2*t312; t1162 = t1156+t1157+t1158-t1159+t1160-t1161+t343-t344; t1169 = -0.1444192625E-1*A[3]*t770-0.6142781518E-1*A[3]*t650+ 0.2959933166E-1*A[5]*t1069+0.7795827887E-2*A[5]*t1078+0.9857689952E-1*A[5]* t1094-0.7795827887E-2*A[3]*t712-0.2122202187*A[3]*t634+0.7795827887E-2*A[5]* t1107-0.2959933166E-1*A[3]*t572-0.1444192625E-1*A[3]*t861-0.7795827887E-2*A[3]* t870-0.1232237092E-1*A[3]*t801+0.3371437079E-1*A[5]*t1126+0.1444192625E-1*A[5]* t1135+0.1444192625E-1*A[5]*t1144+0.2515757084E-1*A[5]*t1153+0.8229664675E-1*A [5]*t1162-0.1232237092E-1*A[3]*t493-0.1232237092E-1*A[3]*t834; A[7] = t1044+t1169; t1208 = 0.2959933166E-1*A[3]*t531-0.2122202187*A[4]*t967-0.7795827887E-2*A [4]*t1078+0.1232237092E-1*A[3]*t502+0.1232237092E-1*A[3]*t384-0.2515757084E-1*A [4]*t1153-0.1497956955E-1*A[4]*t958+0.2515757084E-1*A[3]*t743-0.6142781518E-1*A [4]*t1041+0.1497956955E-1*A[3]*t792-0.9857689952E-1*A[4]*t1094+0.2959933166E-1* A[3]*t825-0.2872669523E-1*A[4]*t1006+0.2515757084E-1*A[3]*t449+0.2872669523E-1* A[3]*t761+0.1444192625E-1*A[3]*t549-0.1444192625E-1*A[4]*t1144-0.2797813032E-1* A[4]*t1030+0.7795827887E-2*A[3]*t684; t1247 = -0.7795827887E-2*A[4]*t1107-0.2515757084E-1*A[4]*t978+ 0.6142781518E-1*A[3]*t458-0.3371437079E-1*A[4]*t1126+0.3371437079E-1*A[3]*t725 -0.1232237092E-1*A[4]*t909-0.2959933166E-1*A[4]*t1069+0.8229664675E-1*A[3]*t540 -0.1232237092E-1*A[4]*t995-0.8229664675E-1*A[4]*t1162+0.2122202187*A[3]*t641+ 0.7795827887E-2*A[3]*t879-0.1444192625E-1*A[4]*t1135+0.1444192625E-1*A[3]*t703 -0.2959933166E-1*A[4]*t949+0.1232237092E-1*A[3]*t693+0.9857689952E-1*A[3]*t440 -0.1232237092E-1*A[4]*t1021+0.2797813032E-1*A[3]*t467; A[8] = t1208+t1247; A[9] = 1.0; t1248 = -t177; t1250 = -t71; A[10] = t1248*t172-t1250*t243; t1253 = -t265; A[11] = t1250*t345-t1253*t172; A[12] = t1253*t243-t1248*t345; A[13] = t1253; A[14] = t1248; A[15] = t1250; t1297 = -0.2872669523E-1*A[15]*t761+0.3371437079E-1*A[14]*t783+ 0.2959933166E-1*A[14]*t572+0.2515757084E-1*A[14]*t734-0.2959933166E-1*A[15]* t531+0.7795827887E-2*A[14]*t712-0.3371437079E-1*A[15]*t725-0.2797813032E-1*A [15]*t467-0.1232237092E-1*A[15]*t384-0.8229664675E-1*A[15]*t540+0.2872669523E-1 *A[14]*t852+0.2797813032E-1*A[14]*t843+0.1444192625E-1*A[14]*t861+0.2122202187* A[14]*t634-0.2122202187*A[15]*t641-0.7795827887E-2*A[15]*t879+0.2515757084E-1*A [14]*t752+0.2959933166E-1*A[14]*t627-0.2959933166E-1*A[15]*t825+0.1232237092E-1 *A[14]*t801; t1332 = 0.717E-2*t66; t1333 = 0.717E-2*t70; t1334 = 0.10733880938412E-1*t85; t1335 = 0.10733880938412E-1*t88; t1336 = 0.2752059592378E-1*t94; t1337 = 0.2752059592378E-1*t95; t1338 = -t1332-t1333-t1334-t1335+t1336-t1337; t1341 = 0.717E-2*t175; t1342 = 0.717E-2*t176; t1343 = 0.10733880938412E-1*t179; t1344 = 0.10733880938412E-1*t180; t1345 = 0.2752059592378E-1*t45; t1346 = 0.2752059592378E-1*t49; t1347 = -t1341-t1342-t1343-t1344+t1345-t1346; t1352 = -0.1444192625E-1*A[15]*t549-0.1232237092E-1*A[15]*t693 -0.6142781518E-1*A[15]*t458+0.6142781518E-1*A[14]*t650+0.1497956955E-1*A[14]* t420-0.1444192625E-1*A[15]*t703+0.9857689952E-1*A[14]*t411+0.8229664675E-1*A [14]*t810-0.1232237092E-1*A[15]*t502-0.9857689952E-1*A[15]*t440+0.1444192625E-1 *A[14]*t770-0.7795827887E-2*A[15]*t684-0.1497956955E-1*A[15]*t792 -0.2515757084E-1*A[15]*t743+0.7795827887E-2*A[14]*t870-0.2515757084E-1*A[15]* t449+0.1232237092E-1*A[14]*t834+0.1497956955E-1*A[14]*t1338-0.1497956955E-1*A [15]*t1347+0.1232237092E-1*A[14]*t493; A[16] = t1297+t1352; t1391 = 0.717E-2*t260; t1392 = 0.717E-2*t264; t1393 = 0.10733880938412E-1*t277; t1394 = 0.10733880938412E-1*t280; t1395 = 0.2752059592378E-1*t285; t1396 = 0.2752059592378E-1*t286; t1397 = -t1391-t1392-t1393-t1394+t1395-t1396; t1400 = -0.1497956955E-1*A[13]*t1338+0.1232237092E-1*A[15]*t995 -0.1444192625E-1*A[13]*t861-0.1232237092E-1*A[13]*t493-0.9857689952E-1*A[13]* t411+0.1497956955E-1*A[15]*t958-0.1444192625E-1*A[13]*t770-0.2959933166E-1*A [13]*t627+0.2122202187*A[15]*t967+0.1444192625E-1*A[15]*t1135+0.2515757084E-1*A [15]*t978+0.2797813032E-1*A[15]*t1030+0.3371437079E-1*A[15]*t1126+ 0.8229664675E-1*A[15]*t1162-0.7795827887E-2*A[13]*t712+0.2959933166E-1*A[15]* t1069+0.1232237092E-1*A[15]*t1021+0.2515757084E-1*A[15]*t1153-0.1232237092E-1*A [13]*t834+0.1497956955E-1*A[15]*t1397; t1441 = 0.1444192625E-1*A[15]*t1144-0.2872669523E-1*A[13]*t852+ 0.2959933166E-1*A[15]*t949-0.2515757084E-1*A[13]*t734-0.1232237092E-1*A[13]* t801+0.9857689952E-1*A[15]*t1094-0.2959933166E-1*A[13]*t572-0.2122202187*A[13]* t634-0.2797813032E-1*A[13]*t843+0.7795827887E-2*A[15]*t1107-0.6142781518E-1*A [13]*t650-0.2515757084E-1*A[13]*t752-0.7795827887E-2*A[13]*t870+0.7795827887E-2 *A[15]*t1078-0.1497956955E-1*A[13]*t420+0.1232237092E-1*A[15]*t909 -0.8229664675E-1*A[13]*t810+0.6142781518E-1*A[15]*t1041-0.3371437079E-1*A[13]* t783+0.2872669523E-1*A[15]*t1006; A[17] = t1400+t1441; t1482 = -0.7795827887E-2*A[14]*t1078+0.2872669523E-1*A[13]*t761 -0.2515757084E-1*A[14]*t1153+0.2515757084E-1*A[13]*t449+0.1497956955E-1*A[13]* t1347+0.1232237092E-1*A[13]*t384-0.1232237092E-1*A[14]*t995+0.2959933166E-1*A [13]*t825+0.1444192625E-1*A[13]*t549+0.2959933166E-1*A[13]*t531-0.3371437079E-1 *A[14]*t1126-0.7795827887E-2*A[14]*t1107+0.2797813032E-1*A[13]*t467+ 0.7795827887E-2*A[13]*t684-0.2959933166E-1*A[14]*t1069+0.2515757084E-1*A[13]* t743-0.1444192625E-1*A[14]*t1144-0.2515757084E-1*A[14]*t978+0.9857689952E-1*A [13]*t440-0.9857689952E-1*A[14]*t1094; t1523 = -0.2959933166E-1*A[14]*t949+0.2122202187*A[13]*t641+0.7795827887E-2 *A[13]*t879-0.2122202187*A[14]*t967+0.1232237092E-1*A[13]*t693-0.2872669523E-1* A[14]*t1006-0.6142781518E-1*A[14]*t1041+0.1232237092E-1*A[13]*t502 -0.1497956955E-1*A[14]*t958+0.1497956955E-1*A[13]*t792-0.1232237092E-1*A[14]* t909+0.1444192625E-1*A[13]*t703-0.2797813032E-1*A[14]*t1030+0.3371437079E-1*A [13]*t725-0.1232237092E-1*A[14]*t1021+0.6142781518E-1*A[13]*t458 -0.1444192625E-1*A[14]*t1135+0.8229664675E-1*A[13]*t540-0.8229664675E-1*A[14]* t1162-0.1497956955E-1*A[14]*t1397; A[18] = t1482+t1523; A[19] = 0.0; t1524 = -t39; t1526 = -t81; A[20] = t1524*t172-t1526*t243; t1529 = -t273; A[21] = t1526*t345-t1529*t172; A[22] = t1529*t243-t1524*t345; A[23] = t1529; A[24] = t1524; A[25] = t1526; t1576 = 0.6142781518E-1*A[24]*t650+0.2515757084E-1*A[24]*t734+ 0.2797813032E-1*A[24]*t843+0.8229664675E-1*A[24]*t810+0.1232237092E-1*A[24]* t493-0.7795827887E-2*A[25]*t879-0.1444192625E-1*A[25]*t703-0.2515757084E-1*A [25]*t449-0.2959933166E-1*A[25]*t825+0.2122202187*A[24]*t634-0.2122202187*A[25] *t641; t1592 = 0.335875721E-2*t78; t1593 = 0.205060966E-3*t82; t1594 = 0.1649E-1*t66; t1595 = 0.1649E-1*t70; t1596 = -t1592+t1593-t1594-t1595; t1599 = 0.335875721E-2*t36; t1600 = 0.205060966E-3*t40; t1601 = 0.1649E-1*t175; t1602 = 0.1649E-1*t176; t1603 = -t1599+t1600-t1601-t1602; t1631 = 0.9857689952E-1*A[24]*t411-0.2959933166E-1*A[25]*t531+ 0.2515757084E-1*A[24]*t752-0.3371437079E-1*A[25]*t725+0.1497956955E-1*A[24]* t420-0.7795827887E-2*A[25]*t684+0.1232237092E-1*A[24]*t834-0.2872669523E-1*A [25]*t761-0.2797813032E-1*A[25]*t467-0.1497956955E-1*A[25]*t1347+ 0.2872669523E-1*A[24]*t852; A[26] = -0.1497956955E-1*A[25]*t792+0.1444192625E-1*A[24]*t861 -0.1232237092E-1*A[25]*t693+0.3371437079E-1*A[24]*t783-0.1232237092E-1*A[25]* t502+0.1497956955E-1*A[24]*t1338+0.7795827887E-2*A[24]*t870+0.2959933166E-1*A [24]*t627-0.6142781518E-1*A[25]*t458+0.7795827887E-2*A[24]*t712+t1576+ 0.2959933166E-1*A[24]*t572+0.1444192625E-1*A[24]*t770-0.1232237092E-1*A[25]* t384-0.2515757084E-1*A[25]*t743-0.8229664675E-1*A[25]*t540-0.1444192625E-1*A [25]*t549-0.9857689952E-1*A[25]*t440+0.2797813032E-1*A[24]*t1596 -0.2797813032E-1*A[25]*t1603+0.1232237092E-1*A[24]*t801+t1631; t1676 = -0.1232237092E-1*A[23]*t834+0.1444192625E-1*A[25]*t1135 -0.1232237092E-1*A[23]*t801+0.3371437079E-1*A[25]*t1126+0.1444192625E-1*A[25]* t1144+0.1232237092E-1*A[25]*t1021+0.1232237092E-1*A[25]*t909+0.2959933166E-1*A [25]*t1069+0.2515757084E-1*A[25]*t1153-0.2797813032E-1*A[23]*t1596+ 0.8229664675E-1*A[25]*t1162; t1694 = 0.335875721E-2*t270; t1695 = 0.205060966E-3*t274; t1696 = 0.1649E-1*t260; t1697 = 0.1649E-1*t264; t1698 = -t1694+t1695-t1696-t1697; t1726 = -0.2515757084E-1*A[23]*t734+0.1232237092E-1*A[25]*t995 -0.1232237092E-1*A[23]*t493-0.3371437079E-1*A[23]*t783+0.9857689952E-1*A[25]* t1094+0.6142781518E-1*A[25]*t1041+0.2122202187*A[25]*t967-0.2122202187*A[23]* t634+0.7795827887E-2*A[25]*t1107-0.2797813032E-1*A[23]*t843-0.8229664675E-1*A [23]*t810; A[27] = -0.7795827887E-2*A[23]*t870-0.7795827887E-2*A[23]*t712 -0.1444192625E-1*A[23]*t770+0.7795827887E-2*A[25]*t1078-0.2959933166E-1*A[23]* t572-0.2959933166E-1*A[23]*t627+0.2959933166E-1*A[25]*t949+0.2515757084E-1*A [25]*t978-0.1444192625E-1*A[23]*t861-0.2872669523E-1*A[23]*t852+t1676 -0.1497956955E-1*A[23]*t420+0.1497956955E-1*A[25]*t958-0.2515757084E-1*A[23]* t752-0.6142781518E-1*A[23]*t650+0.1497956955E-1*A[25]*t1397-0.1497956955E-1*A [23]*t1338+0.2872669523E-1*A[25]*t1006-0.9857689952E-1*A[23]*t411+ 0.2797813032E-1*A[25]*t1698+0.2797813032E-1*A[25]*t1030+t1726; t1771 = -0.9857689952E-1*A[24]*t1094+0.2797813032E-1*A[23]*t1603 -0.2959933166E-1*A[24]*t949-0.1444192625E-1*A[24]*t1144-0.2959933166E-1*A[24]* t1069+0.1497956955E-1*A[23]*t792+0.9857689952E-1*A[23]*t440-0.1232237092E-1*A [24]*t1021+0.7795827887E-2*A[23]*t684-0.2515757084E-1*A[24]*t1153 -0.1232237092E-1*A[24]*t995; t1816 = 0.2515757084E-1*A[23]*t743+0.2872669523E-1*A[23]*t761+ 0.6142781518E-1*A[23]*t458-0.2872669523E-1*A[24]*t1006-0.7795827887E-2*A[24]* t1078-0.6142781518E-1*A[24]*t1041+0.2515757084E-1*A[23]*t449+0.2797813032E-1*A [23]*t467-0.2797813032E-1*A[24]*t1030+0.1232237092E-1*A[23]*t502 -0.1497956955E-1*A[24]*t958; A[28] = 0.1444192625E-1*A[23]*t703+0.3371437079E-1*A[23]*t725 -0.3371437079E-1*A[24]*t1126-0.1497956955E-1*A[24]*t1397+0.2959933166E-1*A[23]* t531+0.2959933166E-1*A[23]*t825-0.2797813032E-1*A[24]*t1698+0.2122202187*A[23]* t641+0.1444192625E-1*A[23]*t549-0.2122202187*A[24]*t967+t1771+0.1497956955E-1*A [23]*t1347+0.1232237092E-1*A[23]*t693+0.8229664675E-1*A[23]*t540 -0.1444192625E-1*A[24]*t1135-0.1232237092E-1*A[24]*t909-0.7795827887E-2*A[24]* t1107-0.8229664675E-1*A[24]*t1162+0.7795827887E-2*A[23]*t879+0.1232237092E-1*A [23]*t384-0.2515757084E-1*A[24]*t978+t1816; A[29] = 0.0; t1818 = 0.1*t60; t1819 = 0.1*t64; t1820 = t160+t165+t166+t167+t168+t169+t170-t171+t1818-t1819; t1822 = 0.1*t19; t1823 = 0.1*t24; t1824 = t232+t236+t237+t238+t239+t240+t241-t242+t1822-t1823; A[30] = A[24]*t1820-A[25]*t1824; t1826 = 0.1*t254; t1827 = 0.1*t258; t1828 = t334+t338+t339+t340+t341+t342+t343-t344+t1826-t1827; A[31] = A[25]*t1828-A[23]*t1820; A[32] = A[23]*t1824-A[24]*t1828; A[33] = A[23]; A[34] = A[24]; A[35] = A[25]; t1833 = t728+t729+t730-t731+t732-t733-t491-t492+t1818-t1819; t1836 = t452+t453+t454-t455+t456-t457+t239+t240+t241-t242+t1822-t1823; t1839 = t660+t671-t673+t675-t677-t679+t680+t681-t682-t683+t1822-t1823; t1842 = t873+t874+t875-t876-t877-t878+t529+t530-t382-t383+t1822-t1823; t1845 = t715+t716+t718-t720+t722-t724+t237+t238+t239+t240+t241-t242+t1822- t1823; t1848 = t599+t614-t616+t618+t620+t622+t623+t624-t625-t626+t1818-t1819; t1851 = t737+t738-t739+t740+t741-t742-t682-t683+t1822-t1823; t1854 = -t496-t497-t498+t499-t500-t501+t1822-t1823; t1857 = -t414-t415+t416-t417+t418+t419+t170-t171+t1818-t1819; t1860 = -t697-t698+t699-t700-t701-t702+t1822-t1823; t1863 = -t786-t787+t788-t789+t790+t791+t241-t242+t1822-t1823; t1866 = 0.2515757084E-1*A[34]*t1833-0.6142781518E-1*A[35]*t1836 -0.7795827887E-2*A[35]*t1839-0.7795827887E-2*A[35]*t1842-0.3371437079E-1*A[35]* t1845+0.2959933166E-1*A[34]*t1848-0.2515757084E-1*A[35]*t1851-0.1232237092E-1*A [35]*t1854+0.1497956955E-1*A[34]*t1857-0.1444192625E-1*A[35]*t1860 -0.1497956955E-1*A[35]*t1863; t1867 = t554+t561+t563-t565+t567+t569+t570+t571-t491-t492+t1818-t1819; t1870 = t746+t747-t748+t749+t750-t751-t625-t626+t1818-t1819; t1873 = t443+t444+t445-t446+t447-t448-t382-t383+t1822-t1823; t1876 = t687+t688+t689-t690+t691+t692-t682-t683+t1822-t1823; t1879 = t706+t707-t708+t709-t710-t711+t623+t624-t625-t626+t1818-t1819; t1882 = t815+t818-t820+t822+t823+t824+t680+t681-t682-t683+t1822-t1823; t1885 = t509+t520+t522-t524+t526+t528+t529+t530-t382-t383+t1822-t1823; t1888 = -t828-t829-t830+t831-t832-t833+t1818-t1819; t1891 = t795+t796+t797-t798+t799+t800-t625-t626+t1818-t1819; t1894 = t396+t400+t402-t404+t406-t408-t409-t410+t1818-t1819; t1897 = t837+t838-t839+t840-t841-t842+t170-t171+t1818-t1819; t1900 = 0.2959933166E-1*A[34]*t1867+0.2515757084E-1*A[34]*t1870 -0.2515757084E-1*A[35]*t1873-0.1232237092E-1*A[35]*t1876+0.7795827887E-2*A[34]* t1879-0.2959933166E-1*A[35]*t1882-0.2959933166E-1*A[35]*t1885+0.1232237092E-1*A [34]*t1888+0.1232237092E-1*A[34]*t1891+0.9857689952E-1*A[34]*t1894+ 0.2797813032E-1*A[34]*t1897; t1902 = t644+t645+t646-t647+t648-t649+t168+t169+t170-t171+t1818-t1819; t1905 = t361+t373-t375+t377+t379+t381-t382-t383+t1822-t1823; t1908 = -t846-t847+t848-t849+t850-t851+t166+t167+t168+t169+t170-t171+t1818- t1819; t1911 = t427+t429+t431-t433+t435-t437-t438-t439+t1822-t1823; t1914 = -t1592+t1593-t1594-t1595+t1818-t1819; t1917 = -t543-t544+t545-t546-t547-t548+t1822-t1823; t1920 = t461+t462-t463+t464-t465-t466+t241-t242+t1822-t1823; t1923 = -t630+t631-t632-t633+t1818-t1819; t1926 = -t755-t756+t757-t758+t759-t760+t237+t238+t239+t240+t241-t242+t1822- t1823; t1929 = t864+t865+t866-t867-t868-t869+t570+t571-t491-t492+t1818-t1819; t1932 = -t1341-t1342-t1343-t1344+t1345-t1346+t1822-t1823; t1935 = 0.6142781518E-1*A[34]*t1902-0.1232237092E-1*A[35]*t1905+ 0.2872669523E-1*A[34]*t1908-0.9857689952E-1*A[35]*t1911+0.2797813032E-1*A[34]* t1914-0.1444192625E-1*A[35]*t1917-0.2797813032E-1*A[35]*t1920+0.2122202187*A [34]*t1923-0.2872669523E-1*A[35]*t1926+0.7795827887E-2*A[34]*t1929 -0.1497956955E-1*A[35]*t1932; t1936 = -t1599+t1600-t1601-t1602+t1822-t1823; t1939 = 0.4614E-1*t60; t1940 = 0.4614E-1*t64; t1941 = 0.131E-2*t67; t1942 = 0.131E-2*t68; t1943 = 0.201E-2*t79; t1944 = 0.201E-2*t80; t1945 = t1939-t1940+t1941+t1942-t1943+t1944; t1948 = 0.4614E-1*t19; t1949 = 0.4614E-1*t24; t1950 = 0.131E-2*t29; t1951 = 0.131E-2*t30; t1952 = 0.201E-2*t37; t1953 = 0.201E-2*t38; t1954 = t1948-t1949+t1950+t1951-t1952+t1953; t1957 = -t764-t765+t766-t767-t768-t769+t1818-t1819; t1960 = -t1332-t1333-t1334-t1335+t1336-t1337+t1818-t1819; t1963 = t804+t805+t806-t807+t808-t809+t170-t171+t1818-t1819; t1966 = t773+t774+t776-t778+t780-t782+t166+t167+t168+t169+t170-t171+t1818- t1819; t1969 = -t637+t638-t639-t640+t1822-t1823; t1972 = -t855-t856+t857-t858-t859-t860+t1818-t1819; t1975 = t474+t482-t484+t486+t488+t490-t491-t492+t1818-t1819; t1978 = t534+t535+t536-t537+t538-t539+t241-t242+t1822-t1823; t1981 = -0.2797813032E-1*A[35]*t1936+0.8229664675E-1*A[34]*t1945 -0.8229664675E-1*A[35]*t1954+0.1444192625E-1*A[34]*t1957+0.1497956955E-1*A[34]* t1960+0.8229664675E-1*A[34]*t1963+0.3371437079E-1*A[34]*t1966-0.2122202187*A [35]*t1969+0.1444192625E-1*A[34]*t1972+0.1232237092E-1*A[34]*t1975 -0.8229664675E-1*A[35]*t1978; A[36] = t1866+t1900+t1935+t1981; t1983 = t1156+t1157+t1158-t1159+t1160-t1161+t343-t344+t1826-t1827; t1990 = t1118+t1119+t1121-t1123+t1124-t1125+t339+t340+t341+t342+t343-t344+ t1826-t1827; t1995 = -t998-t999+t1001-t1003+t1004-t1005+t339+t340+t341+t342+t343-t344+ t1826-t1827; t2000 = t1015+t1016+t1017-t1018+t1019+t1020-t947-t948+t1826-t1827; t2007 = -t963+t964-t965-t966+t1826-t1827; t2010 = 0.8229664675E-1*A[35]*t1983-0.1444192625E-1*A[33]*t1972 -0.3371437079E-1*A[33]*t1966+0.3371437079E-1*A[35]*t1990-0.8229664675E-1*A[33]* t1963+0.2872669523E-1*A[35]*t1995-0.2959933166E-1*A[33]*t1848+0.1232237092E-1*A [35]*t2000-0.2122202187*A[33]*t1923-0.2959933166E-1*A[33]*t1867+0.2122202187*A [35]*t2007; t2011 = t890+t898-t900+t902+t904+t906-t907-t908+t1826-t1827; t2014 = t1051+t1058+t1060-t1062+t1064+t1066+t1067+t1068-t907-t908+t1826- t1827; t2019 = -t986-t988-t990+t992-t993-t994+t1826-t1827; t2026 = -t1129-t1130+t1131-t1132-t1133-t1134+t1826-t1827; t2029 = t1083+t1085+t1087-t1089+t1090-t1091-t1092-t1093+t1826-t1827; t2032 = t1035+t1036+t1037-t1038+t1039-t1040+t341+t342+t343-t344+t1826-t1827 ; t2039 = 0.1232237092E-1*A[35]*t2011+0.2959933166E-1*A[35]*t2014 -0.6142781518E-1*A[33]*t1902+0.1232237092E-1*A[35]*t2019-0.7795827887E-2*A[33]* t1879-0.2797813032E-1*A[33]*t1897+0.1444192625E-1*A[35]*t2026+0.9857689952E-1*A [35]*t2029+0.6142781518E-1*A[35]*t2032-0.7795827887E-2*A[33]*t1929 -0.1232237092E-1*A[33]*t1891; t2041 = t1024+t1025-t1026+t1027-t1028-t1029+t343-t344+t1826-t1827; t2046 = t925+t936-t938+t940+t942+t944+t945+t946-t947-t948+t1826-t1827; t2049 = -t952-t953+t954-t955+t956+t957+t343-t344+t1826-t1827; t2052 = t1147+t1148-t1149+t1150+t1151-t1152-t947-t948+t1826-t1827; t2057 = t1072+t1073+t1074-t1075-t1076-t1077+t1067+t1068-t907-t908+t1826- t1827; t2064 = -t1391-t1392-t1393-t1394+t1395-t1396+t1826-t1827; t2069 = 0.2797813032E-1*A[35]*t2041-0.1232237092E-1*A[33]*t1975+ 0.2959933166E-1*A[35]*t2046+0.1497956955E-1*A[35]*t2049+0.2515757084E-1*A[35]* t2052-0.2872669523E-1*A[33]*t1908+0.7795827887E-2*A[35]*t2057-0.1497956955E-1*A [33]*t1857-0.1232237092E-1*A[33]*t1888+0.1497956955E-1*A[35]*t2064 -0.1497956955E-1*A[33]*t1960; t2074 = -t1694+t1695-t1696-t1697+t1826-t1827; t2079 = 0.4614E-1*t254; t2080 = 0.4614E-1*t258; t2081 = 0.131E-2*t261; t2082 = 0.131E-2*t262; t2083 = 0.201E-2*t271; t2084 = 0.201E-2*t272; t2085 = t2079-t2080+t2081+t2082-t2083+t2084; t2090 = t1101+t1102-t1103+t1104-t1105-t1106+t945+t946-t947-t948+t1826-t1827 ; t2093 = t972+t973+t974-t975+t976-t977-t907-t908+t1826-t1827; t2100 = -t1138-t1139+t1140-t1141-t1142-t1143+t1826-t1827; t2103 = -0.2515757084E-1*A[33]*t1870-0.9857689952E-1*A[33]*t1894+ 0.2797813032E-1*A[35]*t2074-0.2797813032E-1*A[33]*t1914+0.8229664675E-1*A[35]* t2085-0.8229664675E-1*A[33]*t1945+0.7795827887E-2*A[35]*t2090+0.2515757084E-1*A [35]*t2093-0.2515757084E-1*A[33]*t1833-0.1444192625E-1*A[33]*t1957+ 0.1444192625E-1*A[35]*t2100; A[37] = t2010+t2039+t2069+t2103; t2127 = -0.2959933166E-1*A[34]*t2046+0.2122202187*A[33]*t1969 -0.2797813032E-1*A[34]*t2041-0.1232237092E-1*A[34]*t2019-0.2515757084E-1*A[34]* t2093+0.2797813032E-1*A[33]*t1920-0.6142781518E-1*A[34]*t2032-0.2959933166E-1*A [34]*t2014-0.1497956955E-1*A[34]*t2049+0.2959933166E-1*A[33]*t1882+ 0.7795827887E-2*A[33]*t1842; t2150 = -0.1444192625E-1*A[34]*t2026-0.8229664675E-1*A[34]*t1983+ 0.1444192625E-1*A[33]*t1917-0.1232237092E-1*A[34]*t2011-0.2872669523E-1*A[34]* t1995-0.2122202187*A[34]*t2007-0.1232237092E-1*A[34]*t2000+0.7795827887E-2*A [33]*t1839+0.1444192625E-1*A[33]*t1860-0.7795827887E-2*A[34]*t2057+ 0.2515757084E-1*A[33]*t1873; t2174 = 0.1232237092E-1*A[33]*t1854+0.6142781518E-1*A[33]*t1836+ 0.1232237092E-1*A[33]*t1876+0.2797813032E-1*A[33]*t1936-0.2797813032E-1*A[34]* t2074+0.8229664675E-1*A[33]*t1954-0.8229664675E-1*A[34]*t2085-0.3371437079E-1*A [34]*t1990+0.1232237092E-1*A[33]*t1905-0.2515757084E-1*A[34]*t2052+ 0.2515757084E-1*A[33]*t1851; t2197 = 0.2872669523E-1*A[33]*t1926+0.8229664675E-1*A[33]*t1978+ 0.2959933166E-1*A[33]*t1885+0.3371437079E-1*A[33]*t1845-0.1444192625E-1*A[34]* t2100-0.9857689952E-1*A[34]*t2029+0.1497956955E-1*A[33]*t1863-0.7795827887E-2*A [34]*t2090+0.9857689952E-1*A[33]*t1911+0.1497956955E-1*A[33]*t1932 -0.1497956955E-1*A[34]*t2064; A[38] = t2127+t2150+t2174+t2197; A[39] = 0.0; t2199 = 0.10274*t56; t2200 = 0.10274*t58; t2201 = t160+t165+t166+t167+t168+t169+t170-t171+t1818-t1819+t2199-t2200; t2203 = 0.10274*t12; t2204 = 0.10274*t15; t2205 = t232+t236+t237+t238+t239+t240+t241-t242+t1822-t1823+t2203-t2204; A[40] = A[34]*t2201-A[35]*t2205; t2207 = 0.10274*t250; t2208 = 0.10274*t252; t2209 = t334+t338+t339+t340+t341+t342+t343-t344+t1826-t1827+t2207-t2208; A[41] = A[35]*t2209-A[33]*t2201; A[42] = A[33]*t2205-A[34]*t2209; A[43] = A[33]; A[44] = A[34]; A[45] = A[35]; t2214 = t534+t535+t536-t537+t538-t539+t241-t242+t1822-t1823+t2203-t2204; t2217 = t715+t716+t718-t720+t722-t724+t237+t238+t239+t240+t241-t242+t1822- t1823+t2203-t2204; t2220 = t706+t707-t708+t709-t710-t711+t623+t624-t625-t626+t1818-t1819+t2199 -t2200; t2223 = -t755-t756+t757-t758+t759-t760+t237+t238+t239+t240+t241-t242+t1822- t1823+t2203-t2204; t2226 = t474+t482-t484+t486+t488+t490-t491-t492+t1818-t1819+t2199-t2200; t2229 = t599+t614-t616+t618+t620+t622+t623+t624-t625-t626+t1818-t1819+t2199 -t2200; t2232 = -t630+t631-t632-t633+t1818-t1819+t2199-t2200; t2235 = t361+t373-t375+t377+t379+t381-t382-t383+t1822-t1823+t2203-t2204; t2238 = t396+t400+t402-t404+t406-t408-t409-t410+t1818-t1819+t2199-t2200; t2241 = t795+t796+t797-t798+t799+t800-t625-t626+t1818-t1819+t2199-t2200; t2244 = t746+t747-t748+t749+t750-t751-t625-t626+t1818-t1819+t2199-t2200; t2247 = -0.8229664675E-1*A[45]*t2214-0.3371437079E-1*A[45]*t2217+ 0.7795827887E-2*A[44]*t2220-0.2872669523E-1*A[45]*t2223+0.1232237092E-1*A[44]* t2226+0.2959933166E-1*A[44]*t2229+0.2122202187*A[44]*t2232-0.1232237092E-1*A [45]*t2235+0.9857689952E-1*A[44]*t2238+0.1232237092E-1*A[44]*t2241+ 0.2515757084E-1*A[44]*t2244; t2248 = t443+t444+t445-t446+t447-t448-t382-t383+t1822-t1823+t2203-t2204; t2251 = -t1592+t1593-t1594-t1595+t1818-t1819+t2199-t2200; t2254 = -t1599+t1600-t1601-t1602+t1822-t1823+t2203-t2204; t2257 = t1939-t1940+t1941+t1942-t1943+t1944+t2199-t2200; t2260 = t1948-t1949+t1950+t1951-t1952+t1953+t2203-t2204; t2269 = 0.5383E-1*t56-0.5383E-1*t58+0.471E-2*t61+0.471E-2*t62-0.21E-2*t79+ 0.21E-2*t80; t2278 = 0.5383E-1*t12-0.5383E-1*t15+0.471E-2*t20+0.471E-2*t21-0.21E-2*t37+ 0.21E-2*t38; t2281 = t644+t645+t646-t647+t648-t649+t168+t169+t170-t171+t1818-t1819+t2199 -t2200; t2284 = -t828-t829-t830+t831-t832-t833+t1818-t1819+t2199-t2200; t2287 = -t697-t698+t699-t700-t701-t702+t1822-t1823+t2203-t2204; t2290 = t660+t671-t673+t675-t677-t679+t680+t681-t682-t683+t1822-t1823+t2203 -t2204; t2293 = -t543-t544+t545-t546-t547-t548+t1822-t1823+t2203-t2204; t2296 = -0.2515757084E-1*A[45]*t2248+0.2797813032E-1*A[44]*t2251 -0.2797813032E-1*A[45]*t2254+0.8229664675E-1*A[44]*t2257-0.8229664675E-1*A[45]* t2260+0.6142781518E-1*A[44]*t2269-0.6142781518E-1*A[45]*t2278+0.6142781518E-1*A [44]*t2281+0.1232237092E-1*A[44]*t2284-0.1444192625E-1*A[45]*t2287 -0.7795827887E-2*A[45]*t2290-0.1444192625E-1*A[45]*t2293; t2298 = t837+t838-t839+t840-t841-t842+t170-t171+t1818-t1819+t2199-t2200; t2301 = t452+t453+t454-t455+t456-t457+t239+t240+t241-t242+t1822-t1823+t2203 -t2204; t2304 = t864+t865+t866-t867-t868-t869+t570+t571-t491-t492+t1818-t1819+t2199 -t2200; t2307 = -t414-t415+t416-t417+t418+t419+t170-t171+t1818-t1819+t2199-t2200; t2310 = -t846-t847+t848-t849+t850-t851+t166+t167+t168+t169+t170-t171+t1818- t1819+t2199-t2200; t2313 = t554+t561+t563-t565+t567+t569+t570+t571-t491-t492+t1818-t1819+t2199 -t2200; t2316 = -t786-t787+t788-t789+t790+t791+t241-t242+t1822-t1823+t2203-t2204; t2319 = -t855-t856+t857-t858-t859-t860+t1818-t1819+t2199-t2200; t2322 = -t1341-t1342-t1343-t1344+t1345-t1346+t1822-t1823+t2203-t2204; t2325 = t687+t688+t689-t690+t691+t692-t682-t683+t1822-t1823+t2203-t2204; t2328 = -t637+t638-t639-t640+t1822-t1823+t2203-t2204; t2331 = 0.2797813032E-1*A[44]*t2298-0.6142781518E-1*A[45]*t2301+ 0.7795827887E-2*A[44]*t2304+0.1497956955E-1*A[44]*t2307+0.2872669523E-1*A[44]* t2310+0.2959933166E-1*A[44]*t2313-0.1497956955E-1*A[45]*t2316+0.1444192625E-1*A [44]*t2319-0.1497956955E-1*A[45]*t2322-0.1232237092E-1*A[45]*t2325-0.2122202187 *A[45]*t2328; t2332 = t873+t874+t875-t876-t877-t878+t529+t530-t382-t383+t1822-t1823+t2203 -t2204; t2335 = -t764-t765+t766-t767-t768-t769+t1818-t1819+t2199-t2200; t2338 = t427+t429+t431-t433+t435-t437-t438-t439+t1822-t1823+t2203-t2204; t2341 = t461+t462-t463+t464-t465-t466+t241-t242+t1822-t1823+t2203-t2204; t2344 = t728+t729+t730-t731+t732-t733-t491-t492+t1818-t1819+t2199-t2200; t2347 = t509+t520+t522-t524+t526+t528+t529+t530-t382-t383+t1822-t1823+t2203 -t2204; t2350 = -t496-t497-t498+t499-t500-t501+t1822-t1823+t2203-t2204; t2353 = -t1332-t1333-t1334-t1335+t1336-t1337+t1818-t1819+t2199-t2200; t2356 = t773+t774+t776-t778+t780-t782+t166+t167+t168+t169+t170-t171+t1818- t1819+t2199-t2200; t2359 = t737+t738-t739+t740+t741-t742-t682-t683+t1822-t1823+t2203-t2204; t2362 = t815+t818-t820+t822+t823+t824+t680+t681-t682-t683+t1822-t1823+t2203 -t2204; t2365 = t804+t805+t806-t807+t808-t809+t170-t171+t1818-t1819+t2199-t2200; t2368 = -0.7795827887E-2*A[45]*t2332+0.1444192625E-1*A[44]*t2335 -0.9857689952E-1*A[45]*t2338-0.2797813032E-1*A[45]*t2341+0.2515757084E-1*A[44]* t2344-0.2959933166E-1*A[45]*t2347-0.1232237092E-1*A[45]*t2350+0.1497956955E-1*A [44]*t2353+0.3371437079E-1*A[44]*t2356-0.2515757084E-1*A[45]*t2359 -0.2959933166E-1*A[45]*t2362+0.8229664675E-1*A[44]*t2365; A[46] = t2247+t2296+t2331+t2368; t2370 = t1147+t1148-t1149+t1150+t1151-t1152-t947-t948+t1826-t1827+t2207- t2208; t2373 = -t963+t964-t965-t966+t1826-t1827+t2207-t2208; t2380 = t1072+t1073+t1074-t1075-t1076-t1077+t1067+t1068-t907-t908+t1826- t1827+t2207-t2208; t2387 = t890+t898-t900+t902+t904+t906-t907-t908+t1826-t1827+t2207-t2208; t2392 = -t986-t988-t990+t992-t993-t994+t1826-t1827+t2207-t2208; t2397 = 0.2515757084E-1*A[45]*t2370+0.2122202187*A[45]*t2373-0.2122202187*A [43]*t2232-0.1444192625E-1*A[43]*t2319+0.7795827887E-2*A[45]*t2380 -0.2797813032E-1*A[43]*t2298-0.6142781518E-1*A[43]*t2281+0.1232237092E-1*A[45]* t2387-0.7795827887E-2*A[43]*t2304+0.1232237092E-1*A[45]*t2392-0.1232237092E-1*A [43]*t2284; t2398 = -t1391-t1392-t1393-t1394+t1395-t1396+t1826-t1827+t2207-t2208; t2403 = -t998-t999+t1001-t1003+t1004-t1005+t339+t340+t341+t342+t343-t344+ t1826-t1827+t2207-t2208; t2406 = -t1129-t1130+t1131-t1132-t1133-t1134+t1826-t1827+t2207-t2208; t2409 = -t1138-t1139+t1140-t1141-t1142-t1143+t1826-t1827+t2207-t2208; t2414 = t1101+t1102-t1103+t1104-t1105-t1106+t945+t946-t947-t948+t1826-t1827 +t2207-t2208; t2417 = -t952-t953+t954-t955+t956+t957+t343-t344+t1826-t1827+t2207-t2208; t2426 = t1156+t1157+t1158-t1159+t1160-t1161+t343-t344+t1826-t1827+t2207- t2208; t2429 = 0.1497956955E-1*A[45]*t2398-0.1497956955E-1*A[43]*t2353+ 0.2872669523E-1*A[45]*t2403+0.1444192625E-1*A[45]*t2406+0.1444192625E-1*A[45]* t2409-0.2515757084E-1*A[43]*t2344+0.7795827887E-2*A[45]*t2414+0.1497956955E-1*A [45]*t2417-0.2959933166E-1*A[43]*t2313-0.7795827887E-2*A[43]*t2220 -0.8229664675E-1*A[43]*t2365+0.8229664675E-1*A[45]*t2426; t2433 = t1024+t1025-t1026+t1027-t1028-t1029+t343-t344+t1826-t1827+t2207- t2208; t2440 = t1051+t1058+t1060-t1062+t1064+t1066+t1067+t1068-t907-t908+t1826- t1827+t2207-t2208; t2445 = -t1694+t1695-t1696-t1697+t1826-t1827+t2207-t2208; t2450 = t2079-t2080+t2081+t2082-t2083+t2084+t2207-t2208; t2461 = 0.5383E-1*t250-0.5383E-1*t252+0.471E-2*t255+0.471E-2*t256-0.21E-2* t271+0.21E-2*t272; t2464 = -0.2872669523E-1*A[43]*t2310+0.2797813032E-1*A[45]*t2433 -0.1444192625E-1*A[43]*t2335-0.1497956955E-1*A[43]*t2307+0.2959933166E-1*A[45]* t2440-0.9857689952E-1*A[43]*t2238+0.2797813032E-1*A[45]*t2445-0.2797813032E-1*A [43]*t2251+0.8229664675E-1*A[45]*t2450-0.8229664675E-1*A[43]*t2257+ 0.6142781518E-1*A[45]*t2461; t2471 = t1015+t1016+t1017-t1018+t1019+t1020-t947-t948+t1826-t1827+t2207- t2208; t2476 = t1083+t1085+t1087-t1089+t1090-t1091-t1092-t1093+t1826-t1827+t2207- t2208; t2479 = t1118+t1119+t1121-t1123+t1124-t1125+t339+t340+t341+t342+t343-t344+ t1826-t1827+t2207-t2208; t2486 = t1035+t1036+t1037-t1038+t1039-t1040+t341+t342+t343-t344+t1826-t1827 +t2207-t2208; t2489 = t972+t973+t974-t975+t976-t977-t907-t908+t1826-t1827+t2207-t2208; t2492 = t925+t936-t938+t940+t942+t944+t945+t946-t947-t948+t1826-t1827+t2207 -t2208; t2495 = -0.6142781518E-1*A[43]*t2269-0.1232237092E-1*A[43]*t2241 -0.2515757084E-1*A[43]*t2244+0.1232237092E-1*A[45]*t2471-0.3371437079E-1*A[43]* t2356+0.9857689952E-1*A[45]*t2476+0.3371437079E-1*A[45]*t2479-0.1232237092E-1*A [43]*t2226-0.2959933166E-1*A[43]*t2229+0.6142781518E-1*A[45]*t2486+ 0.2515757084E-1*A[45]*t2489+0.2959933166E-1*A[45]*t2492; A[47] = t2397+t2429+t2464+t2495; t2519 = 0.8229664675E-1*A[43]*t2214-0.1232237092E-1*A[44]*t2471+ 0.9857689952E-1*A[43]*t2338+0.7795827887E-2*A[43]*t2332-0.9857689952E-1*A[44]* t2476+0.2797813032E-1*A[43]*t2254-0.2797813032E-1*A[44]*t2445+0.8229664675E-1*A [43]*t2260-0.8229664675E-1*A[44]*t2450+0.6142781518E-1*A[43]*t2278 -0.6142781518E-1*A[44]*t2461; t2544 = -0.2515757084E-1*A[44]*t2370+0.1497956955E-1*A[43]*t2316 -0.1497956955E-1*A[44]*t2417+0.1232237092E-1*A[43]*t2350-0.7795827887E-2*A[44]* t2380+0.2515757084E-1*A[43]*t2359+0.1444192625E-1*A[43]*t2287-0.2872669523E-1*A [44]*t2403-0.2797813032E-1*A[44]*t2433+0.2797813032E-1*A[43]*t2341+ 0.3371437079E-1*A[43]*t2217-0.6142781518E-1*A[44]*t2486; t2568 = -0.1444192625E-1*A[44]*t2406-0.1232237092E-1*A[44]*t2387+ 0.2959933166E-1*A[43]*t2347-0.1232237092E-1*A[44]*t2392+0.1497956955E-1*A[43]* t2322+0.1232237092E-1*A[43]*t2235+0.7795827887E-2*A[43]*t2290-0.2515757084E-1*A [44]*t2489+0.2515757084E-1*A[43]*t2248-0.3371437079E-1*A[44]*t2479 -0.1444192625E-1*A[44]*t2409; t2593 = -0.8229664675E-1*A[44]*t2426+0.2122202187*A[43]*t2328-0.2122202187* A[44]*t2373+0.1444192625E-1*A[43]*t2293-0.2959933166E-1*A[44]*t2492+ 0.2959933166E-1*A[43]*t2362+0.1232237092E-1*A[43]*t2325-0.2959933166E-1*A[44]* t2440+0.2872669523E-1*A[43]*t2223-0.7795827887E-2*A[44]*t2414-0.1497956955E-1*A [44]*t2398+0.6142781518E-1*A[43]*t2301; A[48] = t2519+t2544+t2568+t2593; A[49] = 0.0; A[50] = -t13*t2201+t57*t2205; A[51] = -t57*t2209+t251*t2201; A[52] = -t251*t2205+t13*t2209; A[53] = -t251; A[54] = -t13; A[55] = -t57; t2625 = -0.7795827887E-2*t13*t2304-0.1444192625E-1*t13*t2319+0.2122202187* t57*t2328-0.2797813032E-1*t13*t2298-0.2872669523E-1*t13*t2310+0.6142781518E-1* t57*t2301-0.1444192625E-1*t13*t2335-0.2122202187*t13*t2232-0.1232237092E-1*t13* t2284-0.1232237092E-1*t13*t2226-0.2515757084E-1*t13*t2344+0.1497956955E-1*t57* t2316; t2649 = 0.638E-2*t52+0.638E-2*t54+0.142E-2*t57-0.28E-3*t79+0.28E-3*t80; t2657 = 0.638E-2*t5+0.638E-2*t8+0.142E-2*t13-0.28E-3*t37+0.28E-3*t38; t2662 = 0.1444192625E-1*t57*t2287-0.1497956955E-1*t13*t2307-0.7795827887E-2 *t13*t2220-0.2959933166E-1*t13*t2229+0.2515757084E-1*t57*t2248+0.7795827887E-2* t57*t2332+0.1497956955E-1*t57*t2322+0.2959933166E-1*t57*t2362-0.8229664675E-1* t13*t2365-0.2872669523E-1*t13*t2649+0.2872669523E-1*t57*t2657+0.1232237092E-1* t57*t2325; t2688 = -0.2515757084E-1*t13*t2244+0.9857689952E-1*t57*t2338 -0.2797813032E-1*t13*t2251+0.2797813032E-1*t57*t2254-0.8229664675E-1*t13*t2257+ 0.8229664675E-1*t57*t2260-0.6142781518E-1*t13*t2269+0.6142781518E-1*t57*t2278+ 0.7795827887E-2*t57*t2290+0.1232237092E-1*t57*t2350-0.1497956955E-1*t13*t2353+ 0.2797813032E-1*t57*t2341; t2713 = 0.2959933166E-1*t57*t2347+0.2515757084E-1*t57*t2359-0.3371437079E-1 *t13*t2356+0.1444192625E-1*t57*t2293+0.3371437079E-1*t57*t2217+0.8229664675E-1* t57*t2214-0.2959933166E-1*t13*t2313+0.2872669523E-1*t57*t2223-0.9857689952E-1* t13*t2238-0.1232237092E-1*t13*t2241-0.6142781518E-1*t13*t2281+0.1232237092E-1* t57*t2235; A[56] = t2625+t2662+t2688+t2713; t2724 = 0.638E-2*t246+0.638E-2*t248+0.142E-2*t251-0.28E-3*t271+0.28E-3*t272 ; t2745 = -0.6142781518E-1*t57*t2461+0.6142781518E-1*t251*t2269 -0.2872669523E-1*t57*t2724+0.2872669523E-1*t251*t2649-0.2959933166E-1*t57*t2440 +0.7795827887E-2*t251*t2304-0.1497956955E-1*t57*t2398+0.1497956955E-1*t251* t2353-0.7795827887E-2*t57*t2380-0.1444192625E-1*t57*t2406-0.2515757084E-1*t57* t2370-0.3371437079E-1*t57*t2479; t2770 = 0.9857689952E-1*t251*t2238-0.2797813032E-1*t57*t2445+ 0.2797813032E-1*t251*t2251-0.8229664675E-1*t57*t2450+0.8229664675E-1*t251*t2257 -0.2122202187*t57*t2373+0.1232237092E-1*t251*t2284-0.1497956955E-1*t57*t2417 -0.8229664675E-1*t57*t2426-0.1444192625E-1*t57*t2409+0.1497956955E-1*t251*t2307 +0.8229664675E-1*t251*t2365; t2796 = 0.1444192625E-1*t251*t2319+0.1444192625E-1*t251*t2335 -0.1232237092E-1*t57*t2471-0.2515757084E-1*t57*t2489-0.1232237092E-1*t57*t2387+ 0.2797813032E-1*t251*t2298+0.2515757084E-1*t251*t2344-0.2959933166E-1*t57*t2492 +0.2959933166E-1*t251*t2229-0.1232237092E-1*t57*t2392-0.2797813032E-1*t57*t2433 +0.3371437079E-1*t251*t2356; t2821 = 0.2515757084E-1*t251*t2244+0.1232237092E-1*t251*t2241 -0.7795827887E-2*t57*t2414-0.6142781518E-1*t57*t2486-0.2872669523E-1*t57*t2403+ 0.7795827887E-2*t251*t2220+0.1232237092E-1*t251*t2226+0.2122202187*t251*t2232+ 0.6142781518E-1*t251*t2281+0.2959933166E-1*t251*t2313-0.9857689952E-1*t57*t2476 +0.2872669523E-1*t251*t2310; A[57] = t2745+t2770+t2796+t2821; t2847 = -0.1444192625E-1*t251*t2293-0.1232237092E-1*t251*t2350+ 0.7795827887E-2*t13*t2414-0.2515757084E-1*t251*t2359+0.3371437079E-1*t13*t2479 -0.2959933166E-1*t251*t2347-0.2872669523E-1*t251*t2223-0.9857689952E-1*t251* t2338+0.9857689952E-1*t13*t2476-0.2797813032E-1*t251*t2254+0.2797813032E-1*t13* t2445-0.8229664675E-1*t251*t2260; t2872 = 0.8229664675E-1*t13*t2450-0.6142781518E-1*t251*t2278 -0.1444192625E-1*t251*t2287+0.1232237092E-1*t13*t2387-0.2515757084E-1*t251* t2248-0.2959933166E-1*t251*t2362-0.1232237092E-1*t251*t2325+0.2515757084E-1*t13 *t2370+0.2959933166E-1*t13*t2440-0.1232237092E-1*t251*t2235-0.7795827887E-2* t251*t2290+0.2872669523E-1*t13*t2403; t2898 = 0.1232237092E-1*t13*t2392-0.8229664675E-1*t251*t2214+0.2122202187* t13*t2373+0.6142781518E-1*t13*t2486-0.3371437079E-1*t251*t2217+0.6142781518E-1* t13*t2461-0.2872669523E-1*t251*t2657+0.2872669523E-1*t13*t2724+0.2515757084E-1* t13*t2489+0.2959933166E-1*t13*t2492+0.8229664675E-1*t13*t2426+0.1444192625E-1* t13*t2406; t2923 = 0.2797813032E-1*t13*t2433-0.2797813032E-1*t251*t2341 -0.1497956955E-1*t251*t2322+0.1497956955E-1*t13*t2398-0.6142781518E-1*t251* t2301-0.1497956955E-1*t251*t2316+0.7795827887E-2*t13*t2380+0.1497956955E-1*t13* t2417+0.1444192625E-1*t13*t2409-0.7795827887E-2*t251*t2332-0.2122202187*t251* t2328+0.1232237092E-1*t13*t2471; A[58] = t2847+t2872+t2898+t2923; A[59] = 0.0; t2925 = -t194; t2926 = t160+t165+t166+t167+t168+t169; t2928 = -t105; t2929 = t232+t236+t237+t238+t239+t240; A[60] = t2925*t2926-t2928*t2929; t2931 = t334+t338+t339+t340+t341+t342; t2933 = -t296; A[61] = t2928*t2931-t2933*t2926; A[62] = t2933*t2929-t2925*t2931; A[63] = t2933; A[64] = t2925; A[65] = t2928; t2937 = -t414-t415+t416-t417+t418+t419; t2940 = -t786-t787+t788-t789+t790+t791; t2943 = t837+t838-t839+t840-t841-t842; t2946 = t461+t462-t463+t464-t465-t466; t2949 = t804+t805+t806-t807+t808-t809; t2952 = t534+t535+t536-t537+t538-t539; t2955 = t644+t645+t646-t647+t648-t649+t168+t169; t2958 = t452+t453+t454-t455+t456-t457+t239+t240; t2961 = t850-t851+t169+t167-t847-t849+t848+t168+t166-t846; t2964 = t759-t760+t240+t238-t756-t758+t757+t239+t237-t755; t2967 = t169+t167-t782+t780+t168+t166+t774-t778+t776+t773; t2970 = t240+t238-t724+t722+t239+t237+t716-t720+t718+t715; A[66] = 0.1497956955E-1*A[64]*t2937-0.1497956955E-1*A[65]*t2940+ 0.2797813032E-1*A[64]*t2943-0.2797813032E-1*A[65]*t2946+0.8229664675E-1*A[64]* t2949-0.8229664675E-1*A[65]*t2952+0.6142781518E-1*A[64]*t2955-0.6142781518E-1*A [65]*t2958+0.2872669523E-1*A[64]*t2961-0.2872669523E-1*A[65]*t2964+ 0.3371437079E-1*A[64]*t2967-0.3371437079E-1*A[65]*t2970; t2973 = -t952-t953+t954-t955+t956+t957; t2978 = t1024+t1025-t1026+t1027-t1028-t1029; t2983 = t1156+t1157+t1158-t1159+t1160-t1161; t2988 = t1035+t1036+t1037-t1038+t1039-t1040+t341+t342; t2993 = t1004-t1005+t341+t342+t339+t340-t998-t999-t1003+t1001; t2998 = t341+t342+t339+t340-t1125+t1124+t1118+t1119-t1123+t1121; A[67] = 0.1497956955E-1*A[65]*t2973-0.1497956955E-1*A[63]*t2937+ 0.2797813032E-1*A[65]*t2978-0.2797813032E-1*A[63]*t2943+0.8229664675E-1*A[65]* t2983-0.8229664675E-1*A[63]*t2949+0.6142781518E-1*A[65]*t2988-0.6142781518E-1*A [63]*t2955+0.2872669523E-1*A[65]*t2993-0.2872669523E-1*A[63]*t2961+ 0.3371437079E-1*A[65]*t2998-0.3371437079E-1*A[63]*t2967; A[68] = 0.1497956955E-1*A[63]*t2940-0.1497956955E-1*A[64]*t2973+ 0.2797813032E-1*A[63]*t2946-0.2797813032E-1*A[64]*t2978+0.8229664675E-1*A[63]* t2952-0.8229664675E-1*A[64]*t2983+0.6142781518E-1*A[63]*t2958-0.6142781518E-1*A [64]*t2988+0.2872669523E-1*A[63]*t2964-0.2872669523E-1*A[64]*t2993+ 0.3371437079E-1*A[63]*t2970-0.3371437079E-1*A[64]*t2998; A[69] = -1.0; t3027 = -t216; t3029 = -t135; A[70] = t3027*t2926-t3029*t2929; t3032 = -t318; A[71] = t3029*t2931-t3032*t2926; A[72] = t3032*t2929-t3027*t2931; A[73] = t3032; A[74] = t3027; A[75] = t3029; A[76] = 0.2797813032E-1*A[74]*t2943-0.2797813032E-1*A[75]*t2946+ 0.8229664675E-1*A[74]*t2949-0.8229664675E-1*A[75]*t2952+0.6142781518E-1*A[74]* t2955-0.6142781518E-1*A[75]*t2958+0.2872669523E-1*A[74]*t2961-0.2872669523E-1*A [75]*t2964+0.3371437079E-1*A[74]*t2967-0.3371437079E-1*A[75]*t2970; A[77] = 0.2797813032E-1*A[75]*t2978-0.2797813032E-1*A[73]*t2943+ 0.8229664675E-1*A[75]*t2983-0.8229664675E-1*A[73]*t2949+0.6142781518E-1*A[75]* t2988-0.6142781518E-1*A[73]*t2955+0.2872669523E-1*A[75]*t2993-0.2872669523E-1*A [73]*t2961+0.3371437079E-1*A[75]*t2998-0.3371437079E-1*A[73]*t2967; A[78] = 0.2797813032E-1*A[73]*t2946-0.2797813032E-1*A[74]*t2978+ 0.8229664675E-1*A[73]*t2952-0.8229664675E-1*A[74]*t2983+0.6142781518E-1*A[73]* t2958-0.6142781518E-1*A[74]*t2988+0.2872669523E-1*A[73]*t2964-0.2872669523E-1*A [74]*t2993+0.3371437079E-1*A[73]*t2970-0.3371437079E-1*A[74]*t2998; A[79] = 0.0; A[80] = t234*t2926-t162*t2929; A[81] = t162*t2931-t336*t2926; A[82] = t336*t2929-t234*t2931; A[83] = t336; A[84] = t234; A[85] = t162; A[86] = 0.8229664675E-1*A[84]*t2949-0.8229664675E-1*A[85]*t2952+ 0.6142781518E-1*A[84]*t2955-0.6142781518E-1*A[85]*t2958+0.2872669523E-1*A[84]* t2961-0.2872669523E-1*A[85]*t2964+0.3371437079E-1*A[84]*t2967-0.3371437079E-1*A [85]*t2970; A[87] = 0.8229664675E-1*A[85]*t2983-0.8229664675E-1*A[83]*t2949+ 0.6142781518E-1*A[85]*t2988-0.6142781518E-1*A[83]*t2955+0.2872669523E-1*A[85]* t2993-0.2872669523E-1*A[83]*t2961+0.3371437079E-1*A[85]*t2998-0.3371437079E-1*A [83]*t2967; A[88] = 0.8229664675E-1*A[83]*t2952-0.8229664675E-1*A[84]*t2983+ 0.6142781518E-1*A[83]*t2958-0.6142781518E-1*A[84]*t2988+0.2872669523E-1*A[83]* t2964-0.2872669523E-1*A[84]*t2993+0.3371437079E-1*A[83]*t2970-0.3371437079E-1*A [84]*t2998; A[89] = 0.0; t3150 = t160+t165+t166+t167; t3152 = t232+t236+t237+t238; A[90] = A[84]*t3150-A[85]*t3152; t3154 = t334+t338+t339+t340; A[91] = A[85]*t3154-A[83]*t3150; A[92] = A[83]*t3152-A[84]*t3154; A[93] = A[83]; A[94] = A[84]; A[95] = A[85]; t3159 = t648-t649+t645-t647+t646+t644; t3162 = t456-t457+t453-t455+t454+t452; t3165 = t850-t851+t167-t847-t849+t848+t166-t846; t3168 = t759-t760+t238-t756-t758+t757+t237-t755; t3171 = t167-t782+t780+t166+t774-t778+t776+t773; t3174 = t238-t724+t722+t237+t716-t720+t718+t715; A[96] = 0.6142781518E-1*A[94]*t3159-0.6142781518E-1*A[95]*t3162+ 0.2872669523E-1*A[94]*t3165-0.2872669523E-1*A[95]*t3168+0.3371437079E-1*A[94]* t3171-0.3371437079E-1*A[95]*t3174; t3177 = t1039-t1040+t1035+t1036-t1038+t1037; t3182 = t1004-t1005+t339+t340-t998-t999-t1003+t1001; t3187 = t339+t340-t1125+t1124+t1118+t1119-t1123+t1121; A[97] = 0.6142781518E-1*A[95]*t3177-0.6142781518E-1*A[93]*t3159+ 0.2872669523E-1*A[95]*t3182-0.2872669523E-1*A[93]*t3165+0.3371437079E-1*A[95]* t3187-0.3371437079E-1*A[93]*t3171; A[98] = 0.6142781518E-1*A[93]*t3162-0.6142781518E-1*A[94]*t3177+ 0.2872669523E-1*A[93]*t3168-0.2872669523E-1*A[94]*t3182+0.3371437079E-1*A[93]* t3174-0.3371437079E-1*A[94]*t3187; A[99] = 0.0; t3204 = t160+t165; t3206 = t232+t236; A[100] = A[94]*t3204-A[95]*t3206; t3208 = t334+t338; A[101] = A[95]*t3208-A[93]*t3204; A[102] = A[93]*t3206-A[94]*t3208; A[103] = A[93]; A[104] = A[94]; A[105] = A[95]; t3213 = t850-t851-t847-t849+t848-t846; t3216 = t759-t760-t756-t758+t757-t755; t3219 = -t782+t780+t774-t778+t776+t773; t3222 = -t724+t722+t716-t720+t718+t715; A[106] = 0.2872669523E-1*A[104]*t3213-0.2872669523E-1*A[105]*t3216+ 0.3371437079E-1*A[104]*t3219-0.3371437079E-1*A[105]*t3222; t3225 = t1004-t1005-t998-t999-t1003+t1001; t3230 = -t1125+t1124+t1118+t1119-t1123+t1121; A[107] = 0.2872669523E-1*A[105]*t3225-0.2872669523E-1*A[103]*t3213+ 0.3371437079E-1*A[105]*t3230-0.3371437079E-1*A[103]*t3219; A[108] = 0.2872669523E-1*A[103]*t3216-0.2872669523E-1*A[104]*t3225+ 0.3371437079E-1*A[103]*t3222-0.3371437079E-1*A[104]*t3230; A[109] = 0.0; t3243 = t721-t723; t3245 = t779-t781; A[110] = t3243*t3204-t3245*t3206; t3248 = t1000-t1002; A[111] = t3245*t3208-t3248*t3204; A[112] = t3248*t3206-t3243*t3208; A[113] = t3248; A[114] = t3243; A[115] = t3245; A[116] = 0.3371437079E-1*A[114]*t3219-0.3371437079E-1*A[115]*t3222; A[117] = 0.3371437079E-1*A[115]*t3230-0.3371437079E-1*A[113]*t3219; A[118] = 0.3371437079E-1*A[113]*t3222-0.3371437079E-1*A[114]*t3230; A[119] = 0.0; t3270 = LL[12]; A[120] = RL[12]-t334-t338-t339-t340-t341-t342-t343+t344-0.1*t254+0.1*t258 -0.10274*t250+0.10274*t252-0.4511E-1*t245-t3270; t3277 = LL[13]; A[121] = RL[13]-t232-t236-t237-t238-t239-t240-t241+t242-0.1*t19+0.1*t24 -0.10274*t12+0.10274*t15-0.4511E-1*t2-t3277; t3284 = LL[14]; A[122] = RL[14]-t160-t165-t166-t167-t168-t169-t170+t171-0.1*t60+0.1*t64 -0.10274*t56+0.10274*t58-0.4511E-1*t51-t3284; t3285 = RL[2]; t3288 = RL[1]; t3291 = RL[6]; t3292 = -t717+t719; t3295 = RL[5]; t3296 = -t775+t777; t3299 = RL[10]; t3300 = -t231-t235; t3303 = RL[9]; t3304 = -t159-t164; A[123] = 0.5*t3285*A[114]-0.5*t3288*A[115]+0.5*t3291*t3292-0.5*t3295*t3296+ 0.5*t3299*t3300-0.5*t3303*t3304; t3307 = RL[0]; t3312 = RL[4]; t3315 = -t1120+t1122; t3318 = RL[8]; t3321 = -t333-t337; A[124] = 0.5*t3307*A[115]-0.5*t3285*A[113]+0.5*t3312*t3296-0.5*t3291*t3315+ 0.5*t3318*t3304-0.5*t3299*t3321; A[125] = 0.5*t3288*A[113]-0.5*t3307*A[114]+0.5*t3295*t3315-0.5*t3312*t3292+ 0.5*t3303*t3321-0.5*t3318*t3300; t3349 = -0.8051018213E-4*t924+0.5082624939E-2*t1088-0.2369931678E-4*t933+ 0.1702509553E-4*t915-0.7932620886E-4*t939+0.3696711277E-6*t987-0.8945848979E-4* t989-0.1078086072E-3*t322+0.1078086072E-3*t323+0.1832763156E-3*t331+ 0.7932620886E-4*t937-0.2061233404E-3*t294-0.9970896939E-4*t306; t3363 = 0.101865705E-2*t298-0.101865705E-2*t299-0.1607889161E-3*t301+ 0.1607889161E-3*t304-0.1512290733E-3*t308-0.4402844298E-1*t245-0.1112574236E-3* t247-0.8799425961E-3*t251-0.2893250095E-3*t328+0.2893250095E-3*t329 -0.8051018213E-4*t935+CoM[0]-0.5082624939E-2*t1086; t3378 = 0.3696711277E-6*t985-0.2606799616E-2*t1065+0.9761137487E-4*t919 -0.9761137487E-4*t920-0.2606799616E-2*t943-0.1112574236E-3*t1120 -0.8051018213E-4*t1057+0.2369931678E-4*t929+0.8799425961E-3*t1002-0.9999999999* t3270-0.4677530128E-2*t926+0.2570662873E-4*t916+0.2570662873E-4*t917; t3392 = -0.4677530128E-2*t927+0.8823452451E-4*t309-0.8823452451E-4*t310 -0.7932620886E-4*t1059-0.4677530128E-2*t905-0.2369931678E-4*t1053+ 0.2369931678E-4*t1055+0.1232237092E-6*t899-0.1232237092E-6*t901+0.1512290733E-3 *t312-0.1681938551E-1*t319+0.5687628827E-3*t316-0.3775495252E-3*t1084; t3408 = 0.1112574236E-3*t1122+0.1702509553E-4*t889-0.9381437244E-4*t885+ 0.9381437244E-4*t887+0.1702509553E-4*t897+0.2570662873E-4*t891+0.7932620886E-4* t1061+0.2570662873E-4*t892-0.8503258945E-4*t894+0.8503258945E-4*t895 -0.8051018213E-4*t1050-0.4677530128E-2*t903+0.8945848979E-4*t991; t3422 = 0.1702509553E-4*t922+0.1832763156E-3*t327-0.9419629563E-2*t321 -0.1681938551E-1*t315-0.9970896939E-4*t297+0.5687628827E-3*t260-0.8318061448E-1 *t254-0.9332037043E-1*t250-0.1832763156E-3*t246-0.1832763156E-3*t248+ 0.9332037043E-1*t252-0.2893250095E-3*t255-0.2893250095E-3*t256; t3437 = 0.8318061448E-1*t258+0.5687628827E-3*t264-0.1078086072E-3*t261 -0.1078086072E-3*t262+0.1607889161E-3*t277+0.9397174694E-4*t270+0.3024581465E-3 *t271-0.3024581465E-3*t272-0.5737222431E-5*t274+0.1607889161E-3*t280+ 0.1660372087E-1*t284-0.4122466806E-3*t285+0.4122466806E-3*t286; t3452 = 0.6659098766E-1*t288-0.2061233404E-3*t291-0.2606799616E-2*t941 -0.9381437244E-4*t912+0.9381437244E-4*t913-0.1232237092E-6*t930+0.1232237092E-6 *t931-0.2606799616E-2*t1063-0.1081557015E-2*t333+0.5687628827E-3*t317 -0.9419629563E-2*t325-0.3775495252E-3*t1082-0.1081557015E-2*t337 -0.8799425961E-3*t1000; A[126] = t3349+t3363+t3378+t3392+t3408+t3422+t3437+t3452; t3468 = -0.3775495252E-3*t428-0.3775495252E-3*t426+0.1660372087E-1*t184+ 0.6659098766E-1*t186-0.2061233404E-3*t189-0.2061233404E-3*t192-0.9970896939E-4* t204+0.101865705E-2*t196-0.101865705E-2*t197-0.1607889161E-3*t199+ 0.1607889161E-3*t202-0.5082624939E-2*t430-0.2606799616E-2*t525; t3482 = 0.9761137487E-4*t665-0.9761137487E-4*t666-0.2606799616E-2*t670+ 0.8945848979E-4*t436-0.4122466806E-3*t45-0.8318061448E-1*t19-0.9332037043E-1* t12-0.1832763156E-3*t5-0.1832763156E-3*t8+0.9332037043E-1*t15-0.2893250095E-3* t20-0.2893250095E-3*t21+0.8318061448E-1*t24; t3497 = -0.1078086072E-3*t29-0.1078086072E-3*t30+0.9397174694E-4*t36+ 0.3024581465E-3*t37-0.3024581465E-3*t38-0.5737222431E-5*t40+0.8799425961E-3* t723-0.1081557015E-2*t231-0.1512290733E-3*t206+0.8823452451E-4*t207 -0.8823452451E-4*t208-0.8799425961E-3*t721-0.1078086072E-3*t220; t3511 = 0.1078086072E-3*t221-0.2606799616E-2*t659-0.9381437244E-4*t661+ 0.9381437244E-4*t662-0.1232237092E-6*t664+0.1232237092E-6*t668+0.1702509553E-4* t360+0.1232237092E-6*t374-0.1232237092E-6*t376-0.8051018213E-4*t519 -0.2893250095E-3*t226+0.2893250095E-3*t227+0.1112574236E-3*t719; t3527 = 0.2369931678E-4*t672-0.8051018213E-4*t817+0.1702509553E-4*t372+ 0.2570662873E-4*t362+0.2570662873E-4*t363-0.8051018213E-4*t814-0.2606799616E-2* t527-0.4677530128E-2*t656+0.2570662873E-4*t653+0.2570662873E-4*t654 -0.4677530128E-2*t657+CoM[1]-0.7932620886E-4*t821; t3541 = -0.7932620886E-4*t521-0.4677530128E-2*t380-0.2369931678E-4*t513+ 0.2369931678E-4*t516-0.2369931678E-4*t674-0.1081557015E-2*t235+0.1702509553E-4* t676+0.1702509553E-4*t678+0.5082624939E-2*t432+0.1832763156E-3*t229+ 0.7932620886E-4*t523-0.8503258945E-4*t367+0.8503258945E-4*t369; t3556 = -0.8051018213E-4*t508-0.4677530128E-2*t378+0.7932620886E-4*t819+ 0.5687628827E-3*t215-0.9419629563E-2*t223-0.9999999999*t3277+0.3696711277E-6* t423+0.3696711277E-6*t424-0.8945848979E-4*t434+0.1832763156E-3*t225 -0.9419629563E-2*t219-0.1681938551E-1*t213-0.9970896939E-4*t195; t3571 = 0.5687628827E-3*t175+0.5687628827E-3*t176+0.1607889161E-3*t179+ 0.1607889161E-3*t180+0.1512290733E-3*t210-0.1681938551E-1*t217+0.5687628827E-3* t214-0.9381437244E-4*t353+0.9381437244E-4*t356-0.1112574236E-3*t717 -0.4402844298E-1*t2-0.1112574236E-3*t6-0.8799425961E-3*t13+0.4122466806E-3*t49; A[127] = t3468+t3482+t3497+t3511+t3527+t3541+t3556+t3571; t3587 = -0.3775495252E-3*t399+0.8799425961E-3*t781-0.4402844298E-1*t51 -0.1112574236E-3*t53-0.8799425961E-3*t57-0.1078086072E-3*t142+0.1078086072E-3* t143-0.8051018213E-4*t560+0.5082624939E-2*t403+0.1512290733E-3*t127 -0.1681938551E-1*t137+0.5687628827E-3*t133-0.8799425961E-3*t779; t3601 = -0.1112574236E-3*t775+0.1832763156E-3*t155+0.3696711277E-6*t389 -0.2369931678E-4*t610+0.1702509553E-4*t583+0.1232237092E-6*t483-0.1232237092E-6 *t485-0.2606799616E-2*t566-0.1081557015E-2*t159+0.3696711277E-6*t391 -0.8945848979E-4*t405+0.8945848979E-4*t407-0.9381437244E-4*t470; t3616 = 0.9381437244E-4*t471+0.1702509553E-4*t481+0.2570662873E-4*t475+ 0.2570662873E-4*t476-0.8503258945E-4*t478+0.8503258945E-4*t479+0.1702509553E-4* t473+0.6659098766E-1*t97-0.2061233404E-3*t100-0.2061233404E-3*t103 -0.9970896939E-4*t121+0.101865705E-2*t109-0.101865705E-2*t110; t3630 = -0.1607889161E-3*t114+0.1607889161E-3*t118+CoM[2]+0.7932620886E-4* t615-0.2606799616E-2*t568-0.8051018213E-4*t553-0.4677530128E-2*t487 -0.4677530128E-2*t489-0.2369931678E-4*t556+0.2369931678E-4*t558-0.1232237092E-6 *t606+0.1232237092E-6*t607+0.9761137487E-4*t589; t3646 = -0.9761137487E-4*t591+0.7932620886E-4*t564-0.9999999999*t3284+ 0.5687628827E-3*t134-0.9419629563E-2*t146-0.8051018213E-4*t613-0.8051018213E-4* t598-0.4677530128E-2*t600+0.2570662873E-4*t584+0.2570662873E-4*t585 -0.4677530128E-2*t601-0.2606799616E-2*t619-0.9381437244E-4*t577; t3660 = 0.9381437244E-4*t579-0.7932620886E-4*t562-0.1512290733E-3*t123+ 0.1112574236E-3*t777-0.2606799616E-2*t621+0.2369931678E-4*t605-0.7932620886E-4* t617+0.8823452451E-4*t124-0.8823452451E-4*t125+0.1702509553E-4*t594 -0.1081557015E-2*t164-0.3775495252E-3*t395-0.2893250095E-3*t151; t3675 = 0.2893250095E-3*t152+0.1832763156E-3*t150-0.9419629563E-2*t141 -0.1681938551E-1*t132-0.9970896939E-4*t108+0.5687628827E-3*t66-0.8318061448E-1* t60-0.9332037043E-1*t56-0.1832763156E-3*t52-0.1832763156E-3*t54+0.9332037043E-1 *t58-0.2893250095E-3*t61-0.2893250095E-3*t62; t3690 = 0.8318061448E-1*t64+0.5687628827E-3*t70-0.1078086072E-3*t67 -0.1078086072E-3*t68+0.1607889161E-3*t85+0.9397174694E-4*t78+0.3024581465E-3* t79-0.3024581465E-3*t80-0.5737222431E-5*t82+0.1607889161E-3*t88+0.1660372087E-1 *t93-0.4122466806E-3*t94+0.4122466806E-3*t95-0.5082624939E-2*t401; A[128] = t3587+t3601+t3616+t3630+t3646+t3660+t3675+t3690; A[129] = 0.0; return; } }
the_stack_data/175142794.c
//@ ltl invariant negative: ( ( ([] (<> (! AP((10.0 <= tot_transm_time))))) || (! ([] (<> ( (! AP((mgr_l != 0))) && (X AP((mgr_l != 0)))))))) || (! ([] (<> AP((1.0 <= _diverge_delta)))))); extern float __VERIFIER_nondet_float(void); extern int __VERIFIER_nondet_int(void); char __VERIFIER_nondet_bool(void) { return __VERIFIER_nondet_int() != 0; } float st25_req_time, _x_st25_req_time; float _diverge_delta, _x__diverge_delta; char st24_evt0, _x_st24_evt0; float st24_req_time, _x_st24_req_time; char st23_evt0, _x_st23_evt0; float st23_req_time, _x_st23_req_time; char st23_l, _x_st23_l; char st22_evt0, _x_st22_evt0; float st22_req_time, _x_st22_req_time; char st22_l, _x_st22_l; char st21_evt0, _x_st21_evt0; float st21_req_time, _x_st21_req_time; char st21_l, _x_st21_l; char st20_evt0, _x_st20_evt0; float st20_req_time, _x_st20_req_time; char st20_l, _x_st20_l; char st19_evt0, _x_st19_evt0; float st19_req_time, _x_st19_req_time; char st19_l, _x_st19_l; char st18_evt0, _x_st18_evt0; float st18_req_time, _x_st18_req_time; char st18_l, _x_st18_l; char st17_evt1, _x_st17_evt1; float st17_req_time, _x_st17_req_time; char st17_l, _x_st17_l; char st16_evt1, _x_st16_evt1; char st16_evt0, _x_st16_evt0; float st16_req_time, _x_st16_req_time; char st16_l, _x_st16_l; char st15_evt1, _x_st15_evt1; char st15_evt0, _x_st15_evt0; float st15_req_time, _x_st15_req_time; char st15_l, _x_st15_l; char st14_evt1, _x_st14_evt1; char st14_evt0, _x_st14_evt0; float st14_req_time, _x_st14_req_time; char st14_l, _x_st14_l; char st22_evt1, _x_st22_evt1; float st5_req_time, _x_st5_req_time; char st13_l, _x_st13_l; char mgr_l, _x_mgr_l; char st3_evt1, _x_st3_evt1; char st5_l, _x_st5_l; char st4_evt1, _x_st4_evt1; char st23_evt1, _x_st23_evt1; float st6_req_time, _x_st6_req_time; char st21_evt1, _x_st21_evt1; float st4_req_time, _x_st4_req_time; char st2_evt1, _x_st2_evt1; char st4_l, _x_st4_l; char st2_evt0, _x_st2_evt0; char st13_evt1, _x_st13_evt1; char mgr_evt1, _x_mgr_evt1; char st19_evt1, _x_st19_evt1; float st2_req_time, _x_st2_req_time; float mgr_timeout, _x_mgr_timeout; char st2_l, _x_st2_l; char st13_evt0, _x_st13_evt0; char mgr_evt0, _x_mgr_evt0; char st25_evt0, _x_st25_evt0; char st1_evt1, _x_st1_evt1; char st20_evt1, _x_st20_evt1; float st3_req_time, _x_st3_req_time; char st0_l, _x_st0_l; char st25_l, _x_st25_l; char st1_evt0, _x_st1_evt0; float delta, _x_delta; char st3_l, _x_st3_l; char st1_l, _x_st1_l; float tot_transm_time, _x_tot_transm_time; char st3_evt0, _x_st3_evt0; char st17_evt0, _x_st17_evt0; float st0_req_time, _x_st0_req_time; float st13_req_time, _x_st13_req_time; float mgr_c, _x_mgr_c; char st24_l, _x_st24_l; char st0_evt1, _x_st0_evt1; char st0_evt0, _x_st0_evt0; char st4_evt0, _x_st4_evt0; char st18_evt1, _x_st18_evt1; float st1_req_time, _x_st1_req_time; char st5_evt0, _x_st5_evt0; char st5_evt1, _x_st5_evt1; char st24_evt1, _x_st24_evt1; float st7_req_time, _x_st7_req_time; char st6_l, _x_st6_l; char st6_evt0, _x_st6_evt0; char st6_evt1, _x_st6_evt1; char st25_evt1, _x_st25_evt1; float st8_req_time, _x_st8_req_time; char st7_l, _x_st7_l; char st7_evt0, _x_st7_evt0; char st7_evt1, _x_st7_evt1; float st9_req_time, _x_st9_req_time; char st8_l, _x_st8_l; char st8_evt0, _x_st8_evt0; char st8_evt1, _x_st8_evt1; float st10_req_time, _x_st10_req_time; char st9_l, _x_st9_l; char st9_evt0, _x_st9_evt0; char st9_evt1, _x_st9_evt1; float st11_req_time, _x_st11_req_time; char st10_l, _x_st10_l; char st10_evt0, _x_st10_evt0; char st10_evt1, _x_st10_evt1; float st12_req_time, _x_st12_req_time; char st11_l, _x_st11_l; char st11_evt0, _x_st11_evt0; char st11_evt1, _x_st11_evt1; char st12_l, _x_st12_l; char st12_evt0, _x_st12_evt0; char st12_evt1, _x_st12_evt1; int main() { st25_req_time = __VERIFIER_nondet_float(); _diverge_delta = __VERIFIER_nondet_float(); st24_evt0 = __VERIFIER_nondet_bool(); st24_req_time = __VERIFIER_nondet_float(); st23_evt0 = __VERIFIER_nondet_bool(); st23_req_time = __VERIFIER_nondet_float(); st23_l = __VERIFIER_nondet_bool(); st22_evt0 = __VERIFIER_nondet_bool(); st22_req_time = __VERIFIER_nondet_float(); st22_l = __VERIFIER_nondet_bool(); st21_evt0 = __VERIFIER_nondet_bool(); st21_req_time = __VERIFIER_nondet_float(); st21_l = __VERIFIER_nondet_bool(); st20_evt0 = __VERIFIER_nondet_bool(); st20_req_time = __VERIFIER_nondet_float(); st20_l = __VERIFIER_nondet_bool(); st19_evt0 = __VERIFIER_nondet_bool(); st19_req_time = __VERIFIER_nondet_float(); st19_l = __VERIFIER_nondet_bool(); st18_evt0 = __VERIFIER_nondet_bool(); st18_req_time = __VERIFIER_nondet_float(); st18_l = __VERIFIER_nondet_bool(); st17_evt1 = __VERIFIER_nondet_bool(); st17_req_time = __VERIFIER_nondet_float(); st17_l = __VERIFIER_nondet_bool(); st16_evt1 = __VERIFIER_nondet_bool(); st16_evt0 = __VERIFIER_nondet_bool(); st16_req_time = __VERIFIER_nondet_float(); st16_l = __VERIFIER_nondet_bool(); st15_evt1 = __VERIFIER_nondet_bool(); st15_evt0 = __VERIFIER_nondet_bool(); st15_req_time = __VERIFIER_nondet_float(); st15_l = __VERIFIER_nondet_bool(); st14_evt1 = __VERIFIER_nondet_bool(); st14_evt0 = __VERIFIER_nondet_bool(); st14_req_time = __VERIFIER_nondet_float(); st14_l = __VERIFIER_nondet_bool(); st22_evt1 = __VERIFIER_nondet_bool(); st5_req_time = __VERIFIER_nondet_float(); st13_l = __VERIFIER_nondet_bool(); mgr_l = __VERIFIER_nondet_bool(); st3_evt1 = __VERIFIER_nondet_bool(); st5_l = __VERIFIER_nondet_bool(); st4_evt1 = __VERIFIER_nondet_bool(); st23_evt1 = __VERIFIER_nondet_bool(); st6_req_time = __VERIFIER_nondet_float(); st21_evt1 = __VERIFIER_nondet_bool(); st4_req_time = __VERIFIER_nondet_float(); st2_evt1 = __VERIFIER_nondet_bool(); st4_l = __VERIFIER_nondet_bool(); st2_evt0 = __VERIFIER_nondet_bool(); st13_evt1 = __VERIFIER_nondet_bool(); mgr_evt1 = __VERIFIER_nondet_bool(); st19_evt1 = __VERIFIER_nondet_bool(); st2_req_time = __VERIFIER_nondet_float(); mgr_timeout = __VERIFIER_nondet_float(); st2_l = __VERIFIER_nondet_bool(); st13_evt0 = __VERIFIER_nondet_bool(); mgr_evt0 = __VERIFIER_nondet_bool(); st25_evt0 = __VERIFIER_nondet_bool(); st1_evt1 = __VERIFIER_nondet_bool(); st20_evt1 = __VERIFIER_nondet_bool(); st3_req_time = __VERIFIER_nondet_float(); st0_l = __VERIFIER_nondet_bool(); st25_l = __VERIFIER_nondet_bool(); st1_evt0 = __VERIFIER_nondet_bool(); delta = __VERIFIER_nondet_float(); st3_l = __VERIFIER_nondet_bool(); st1_l = __VERIFIER_nondet_bool(); tot_transm_time = __VERIFIER_nondet_float(); st3_evt0 = __VERIFIER_nondet_bool(); st17_evt0 = __VERIFIER_nondet_bool(); st0_req_time = __VERIFIER_nondet_float(); st13_req_time = __VERIFIER_nondet_float(); mgr_c = __VERIFIER_nondet_float(); st24_l = __VERIFIER_nondet_bool(); st0_evt1 = __VERIFIER_nondet_bool(); st0_evt0 = __VERIFIER_nondet_bool(); st4_evt0 = __VERIFIER_nondet_bool(); st18_evt1 = __VERIFIER_nondet_bool(); st1_req_time = __VERIFIER_nondet_float(); st5_evt0 = __VERIFIER_nondet_bool(); st5_evt1 = __VERIFIER_nondet_bool(); st24_evt1 = __VERIFIER_nondet_bool(); st7_req_time = __VERIFIER_nondet_float(); st6_l = __VERIFIER_nondet_bool(); st6_evt0 = __VERIFIER_nondet_bool(); st6_evt1 = __VERIFIER_nondet_bool(); st25_evt1 = __VERIFIER_nondet_bool(); st8_req_time = __VERIFIER_nondet_float(); st7_l = __VERIFIER_nondet_bool(); st7_evt0 = __VERIFIER_nondet_bool(); st7_evt1 = __VERIFIER_nondet_bool(); st9_req_time = __VERIFIER_nondet_float(); st8_l = __VERIFIER_nondet_bool(); st8_evt0 = __VERIFIER_nondet_bool(); st8_evt1 = __VERIFIER_nondet_bool(); st10_req_time = __VERIFIER_nondet_float(); st9_l = __VERIFIER_nondet_bool(); st9_evt0 = __VERIFIER_nondet_bool(); st9_evt1 = __VERIFIER_nondet_bool(); st11_req_time = __VERIFIER_nondet_float(); st10_l = __VERIFIER_nondet_bool(); st10_evt0 = __VERIFIER_nondet_bool(); st10_evt1 = __VERIFIER_nondet_bool(); st12_req_time = __VERIFIER_nondet_float(); st11_l = __VERIFIER_nondet_bool(); st11_evt0 = __VERIFIER_nondet_bool(); st11_evt1 = __VERIFIER_nondet_bool(); st12_l = __VERIFIER_nondet_bool(); st12_evt0 = __VERIFIER_nondet_bool(); st12_evt1 = __VERIFIER_nondet_bool(); int __ok = (((((st25_l != 0) && (((st25_evt1 != 0) && ( !(st25_evt0 != 0))) || ((( !(st25_evt0 != 0)) && ( !(st25_evt1 != 0))) || ((st25_evt0 != 0) && ( !(st25_evt1 != 0)))))) && ( !(st25_req_time <= 0.0))) && ((((st24_l != 0) && (((st24_evt1 != 0) && ( !(st24_evt0 != 0))) || ((( !(st24_evt0 != 0)) && ( !(st24_evt1 != 0))) || ((st24_evt0 != 0) && ( !(st24_evt1 != 0)))))) && ( !(st24_req_time <= 0.0))) && ((((st23_l != 0) && (((st23_evt1 != 0) && ( !(st23_evt0 != 0))) || ((( !(st23_evt0 != 0)) && ( !(st23_evt1 != 0))) || ((st23_evt0 != 0) && ( !(st23_evt1 != 0)))))) && ( !(st23_req_time <= 0.0))) && ((((st22_l != 0) && (((st22_evt1 != 0) && ( !(st22_evt0 != 0))) || ((( !(st22_evt0 != 0)) && ( !(st22_evt1 != 0))) || ((st22_evt0 != 0) && ( !(st22_evt1 != 0)))))) && ( !(st22_req_time <= 0.0))) && ((((st21_l != 0) && (((st21_evt1 != 0) && ( !(st21_evt0 != 0))) || ((( !(st21_evt0 != 0)) && ( !(st21_evt1 != 0))) || ((st21_evt0 != 0) && ( !(st21_evt1 != 0)))))) && ( !(st21_req_time <= 0.0))) && ((((st20_l != 0) && (((st20_evt1 != 0) && ( !(st20_evt0 != 0))) || ((( !(st20_evt0 != 0)) && ( !(st20_evt1 != 0))) || ((st20_evt0 != 0) && ( !(st20_evt1 != 0)))))) && ( !(st20_req_time <= 0.0))) && ((((st19_l != 0) && (((st19_evt1 != 0) && ( !(st19_evt0 != 0))) || ((( !(st19_evt0 != 0)) && ( !(st19_evt1 != 0))) || ((st19_evt0 != 0) && ( !(st19_evt1 != 0)))))) && ( !(st19_req_time <= 0.0))) && ((((st18_l != 0) && (((st18_evt1 != 0) && ( !(st18_evt0 != 0))) || ((( !(st18_evt0 != 0)) && ( !(st18_evt1 != 0))) || ((st18_evt0 != 0) && ( !(st18_evt1 != 0)))))) && ( !(st18_req_time <= 0.0))) && ((((st17_l != 0) && (((st17_evt1 != 0) && ( !(st17_evt0 != 0))) || ((( !(st17_evt0 != 0)) && ( !(st17_evt1 != 0))) || ((st17_evt0 != 0) && ( !(st17_evt1 != 0)))))) && ( !(st17_req_time <= 0.0))) && ((((st16_l != 0) && (((st16_evt1 != 0) && ( !(st16_evt0 != 0))) || ((( !(st16_evt0 != 0)) && ( !(st16_evt1 != 0))) || ((st16_evt0 != 0) && ( !(st16_evt1 != 0)))))) && ( !(st16_req_time <= 0.0))) && ((((st15_l != 0) && (((st15_evt1 != 0) && ( !(st15_evt0 != 0))) || ((( !(st15_evt0 != 0)) && ( !(st15_evt1 != 0))) || ((st15_evt0 != 0) && ( !(st15_evt1 != 0)))))) && ( !(st15_req_time <= 0.0))) && ((((st14_l != 0) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((( !(st14_evt0 != 0)) && ( !(st14_evt1 != 0))) || ((st14_evt0 != 0) && ( !(st14_evt1 != 0)))))) && ( !(st14_req_time <= 0.0))) && ((((st13_l != 0) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((( !(st13_evt0 != 0)) && ( !(st13_evt1 != 0))) || ((st13_evt0 != 0) && ( !(st13_evt1 != 0)))))) && ( !(st13_req_time <= 0.0))) && ((((st12_l != 0) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((( !(st12_evt0 != 0)) && ( !(st12_evt1 != 0))) || ((st12_evt0 != 0) && ( !(st12_evt1 != 0)))))) && ( !(st12_req_time <= 0.0))) && ((((st11_l != 0) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((( !(st11_evt0 != 0)) && ( !(st11_evt1 != 0))) || ((st11_evt0 != 0) && ( !(st11_evt1 != 0)))))) && ( !(st11_req_time <= 0.0))) && ((((st10_l != 0) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((( !(st10_evt0 != 0)) && ( !(st10_evt1 != 0))) || ((st10_evt0 != 0) && ( !(st10_evt1 != 0)))))) && ( !(st10_req_time <= 0.0))) && ((((st9_l != 0) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((( !(st9_evt0 != 0)) && ( !(st9_evt1 != 0))) || ((st9_evt0 != 0) && ( !(st9_evt1 != 0)))))) && ( !(st9_req_time <= 0.0))) && ((((st8_l != 0) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((( !(st8_evt0 != 0)) && ( !(st8_evt1 != 0))) || ((st8_evt0 != 0) && ( !(st8_evt1 != 0)))))) && ( !(st8_req_time <= 0.0))) && ((((st7_l != 0) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((( !(st7_evt0 != 0)) && ( !(st7_evt1 != 0))) || ((st7_evt0 != 0) && ( !(st7_evt1 != 0)))))) && ( !(st7_req_time <= 0.0))) && ((((st6_l != 0) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((( !(st6_evt0 != 0)) && ( !(st6_evt1 != 0))) || ((st6_evt0 != 0) && ( !(st6_evt1 != 0)))))) && ( !(st6_req_time <= 0.0))) && ((((st5_l != 0) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((( !(st5_evt0 != 0)) && ( !(st5_evt1 != 0))) || ((st5_evt0 != 0) && ( !(st5_evt1 != 0)))))) && ( !(st5_req_time <= 0.0))) && ((((st4_l != 0) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((( !(st4_evt0 != 0)) && ( !(st4_evt1 != 0))) || ((st4_evt0 != 0) && ( !(st4_evt1 != 0)))))) && ( !(st4_req_time <= 0.0))) && ((((st3_l != 0) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((( !(st3_evt0 != 0)) && ( !(st3_evt1 != 0))) || ((st3_evt0 != 0) && ( !(st3_evt1 != 0)))))) && ( !(st3_req_time <= 0.0))) && ((((st2_l != 0) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((( !(st2_evt0 != 0)) && ( !(st2_evt1 != 0))) || ((st2_evt0 != 0) && ( !(st2_evt1 != 0)))))) && ( !(st2_req_time <= 0.0))) && ((((st1_l != 0) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((( !(st1_evt0 != 0)) && ( !(st1_evt1 != 0))) || ((st1_evt0 != 0) && ( !(st1_evt1 != 0)))))) && ( !(st1_req_time <= 0.0))) && ((((st0_l != 0) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((( !(st0_evt0 != 0)) && ( !(st0_evt1 != 0))) || ((st0_evt0 != 0) && ( !(st0_evt1 != 0)))))) && ( !(st0_req_time <= 0.0))) && (((((mgr_l != 0) && (((mgr_evt1 != 0) && ( !(mgr_evt0 != 0))) || ((( !(mgr_evt0 != 0)) && ( !(mgr_evt1 != 0))) || ((mgr_evt0 != 0) && ( !(mgr_evt1 != 0)))))) && ((mgr_c == 0.0) && (mgr_timeout == 0.0))) && ((mgr_l != 0) || (mgr_c <= mgr_timeout))) && ((tot_transm_time == 0.0) && (0.0 <= delta))))))))))))))))))))))))))))) && (delta == _diverge_delta)); while (__ok) { _x_st25_req_time = __VERIFIER_nondet_float(); _x__diverge_delta = __VERIFIER_nondet_float(); _x_st24_evt0 = __VERIFIER_nondet_bool(); _x_st24_req_time = __VERIFIER_nondet_float(); _x_st23_evt0 = __VERIFIER_nondet_bool(); _x_st23_req_time = __VERIFIER_nondet_float(); _x_st23_l = __VERIFIER_nondet_bool(); _x_st22_evt0 = __VERIFIER_nondet_bool(); _x_st22_req_time = __VERIFIER_nondet_float(); _x_st22_l = __VERIFIER_nondet_bool(); _x_st21_evt0 = __VERIFIER_nondet_bool(); _x_st21_req_time = __VERIFIER_nondet_float(); _x_st21_l = __VERIFIER_nondet_bool(); _x_st20_evt0 = __VERIFIER_nondet_bool(); _x_st20_req_time = __VERIFIER_nondet_float(); _x_st20_l = __VERIFIER_nondet_bool(); _x_st19_evt0 = __VERIFIER_nondet_bool(); _x_st19_req_time = __VERIFIER_nondet_float(); _x_st19_l = __VERIFIER_nondet_bool(); _x_st18_evt0 = __VERIFIER_nondet_bool(); _x_st18_req_time = __VERIFIER_nondet_float(); _x_st18_l = __VERIFIER_nondet_bool(); _x_st17_evt1 = __VERIFIER_nondet_bool(); _x_st17_req_time = __VERIFIER_nondet_float(); _x_st17_l = __VERIFIER_nondet_bool(); _x_st16_evt1 = __VERIFIER_nondet_bool(); _x_st16_evt0 = __VERIFIER_nondet_bool(); _x_st16_req_time = __VERIFIER_nondet_float(); _x_st16_l = __VERIFIER_nondet_bool(); _x_st15_evt1 = __VERIFIER_nondet_bool(); _x_st15_evt0 = __VERIFIER_nondet_bool(); _x_st15_req_time = __VERIFIER_nondet_float(); _x_st15_l = __VERIFIER_nondet_bool(); _x_st14_evt1 = __VERIFIER_nondet_bool(); _x_st14_evt0 = __VERIFIER_nondet_bool(); _x_st14_req_time = __VERIFIER_nondet_float(); _x_st14_l = __VERIFIER_nondet_bool(); _x_st22_evt1 = __VERIFIER_nondet_bool(); _x_st5_req_time = __VERIFIER_nondet_float(); _x_st13_l = __VERIFIER_nondet_bool(); _x_mgr_l = __VERIFIER_nondet_bool(); _x_st3_evt1 = __VERIFIER_nondet_bool(); _x_st5_l = __VERIFIER_nondet_bool(); _x_st4_evt1 = __VERIFIER_nondet_bool(); _x_st23_evt1 = __VERIFIER_nondet_bool(); _x_st6_req_time = __VERIFIER_nondet_float(); _x_st21_evt1 = __VERIFIER_nondet_bool(); _x_st4_req_time = __VERIFIER_nondet_float(); _x_st2_evt1 = __VERIFIER_nondet_bool(); _x_st4_l = __VERIFIER_nondet_bool(); _x_st2_evt0 = __VERIFIER_nondet_bool(); _x_st13_evt1 = __VERIFIER_nondet_bool(); _x_mgr_evt1 = __VERIFIER_nondet_bool(); _x_st19_evt1 = __VERIFIER_nondet_bool(); _x_st2_req_time = __VERIFIER_nondet_float(); _x_mgr_timeout = __VERIFIER_nondet_float(); _x_st2_l = __VERIFIER_nondet_bool(); _x_st13_evt0 = __VERIFIER_nondet_bool(); _x_mgr_evt0 = __VERIFIER_nondet_bool(); _x_st25_evt0 = __VERIFIER_nondet_bool(); _x_st1_evt1 = __VERIFIER_nondet_bool(); _x_st20_evt1 = __VERIFIER_nondet_bool(); _x_st3_req_time = __VERIFIER_nondet_float(); _x_st0_l = __VERIFIER_nondet_bool(); _x_st25_l = __VERIFIER_nondet_bool(); _x_st1_evt0 = __VERIFIER_nondet_bool(); _x_delta = __VERIFIER_nondet_float(); _x_st3_l = __VERIFIER_nondet_bool(); _x_st1_l = __VERIFIER_nondet_bool(); _x_tot_transm_time = __VERIFIER_nondet_float(); _x_st3_evt0 = __VERIFIER_nondet_bool(); _x_st17_evt0 = __VERIFIER_nondet_bool(); _x_st0_req_time = __VERIFIER_nondet_float(); _x_st13_req_time = __VERIFIER_nondet_float(); _x_mgr_c = __VERIFIER_nondet_float(); _x_st24_l = __VERIFIER_nondet_bool(); _x_st0_evt1 = __VERIFIER_nondet_bool(); _x_st0_evt0 = __VERIFIER_nondet_bool(); _x_st4_evt0 = __VERIFIER_nondet_bool(); _x_st18_evt1 = __VERIFIER_nondet_bool(); _x_st1_req_time = __VERIFIER_nondet_float(); _x_st5_evt0 = __VERIFIER_nondet_bool(); _x_st5_evt1 = __VERIFIER_nondet_bool(); _x_st24_evt1 = __VERIFIER_nondet_bool(); _x_st7_req_time = __VERIFIER_nondet_float(); _x_st6_l = __VERIFIER_nondet_bool(); _x_st6_evt0 = __VERIFIER_nondet_bool(); _x_st6_evt1 = __VERIFIER_nondet_bool(); _x_st25_evt1 = __VERIFIER_nondet_bool(); _x_st8_req_time = __VERIFIER_nondet_float(); _x_st7_l = __VERIFIER_nondet_bool(); _x_st7_evt0 = __VERIFIER_nondet_bool(); _x_st7_evt1 = __VERIFIER_nondet_bool(); _x_st9_req_time = __VERIFIER_nondet_float(); _x_st8_l = __VERIFIER_nondet_bool(); _x_st8_evt0 = __VERIFIER_nondet_bool(); _x_st8_evt1 = __VERIFIER_nondet_bool(); _x_st10_req_time = __VERIFIER_nondet_float(); _x_st9_l = __VERIFIER_nondet_bool(); _x_st9_evt0 = __VERIFIER_nondet_bool(); _x_st9_evt1 = __VERIFIER_nondet_bool(); _x_st11_req_time = __VERIFIER_nondet_float(); _x_st10_l = __VERIFIER_nondet_bool(); _x_st10_evt0 = __VERIFIER_nondet_bool(); _x_st10_evt1 = __VERIFIER_nondet_bool(); _x_st12_req_time = __VERIFIER_nondet_float(); _x_st11_l = __VERIFIER_nondet_bool(); _x_st11_evt0 = __VERIFIER_nondet_bool(); _x_st11_evt1 = __VERIFIER_nondet_bool(); _x_st12_l = __VERIFIER_nondet_bool(); _x_st12_evt0 = __VERIFIER_nondet_bool(); _x_st12_evt1 = __VERIFIER_nondet_bool(); __ok = (((((((((_x_st25_evt1 != 0) && ( !(_x_st25_evt0 != 0))) || ((( !(_x_st25_evt0 != 0)) && ( !(_x_st25_evt1 != 0))) || ((_x_st25_evt0 != 0) && ( !(_x_st25_evt1 != 0))))) && ( !(_x_st25_req_time <= 0.0))) && ((((st25_l != 0) == (_x_st25_l != 0)) && (st25_req_time == _x_st25_req_time)) || ( !(( !(delta <= 0.0)) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))))) && ((((( !(st25_evt0 != 0)) && ( !(st25_evt1 != 0))) && ( !(_x_st25_l != 0))) && ((st25_req_time == _x_st25_req_time) && (_x_mgr_timeout == st25_req_time))) || ( !((st25_l != 0) && ((delta == 0.0) && ((( !(st25_evt0 != 0)) && ( !(st25_evt1 != 0))) || ((st25_evt0 != 0) && ( !(st25_evt1 != 0))))))))) && ((((st25_evt0 != 0) && ( !(st25_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st25_l != 0))) || ( !(( !(st25_l != 0)) && ((delta == 0.0) && ((( !(st25_evt0 != 0)) && ( !(st25_evt1 != 0))) || ((st25_evt0 != 0) && ( !(st25_evt1 != 0))))))))) && ((((((((_x_st24_evt1 != 0) && ( !(_x_st24_evt0 != 0))) || ((( !(_x_st24_evt0 != 0)) && ( !(_x_st24_evt1 != 0))) || ((_x_st24_evt0 != 0) && ( !(_x_st24_evt1 != 0))))) && ( !(_x_st24_req_time <= 0.0))) && ((((st24_l != 0) == (_x_st24_l != 0)) && (st24_req_time == _x_st24_req_time)) || ( !(( !(delta <= 0.0)) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))))) && ((((( !(st24_evt0 != 0)) && ( !(st24_evt1 != 0))) && ( !(_x_st24_l != 0))) && ((st24_req_time == _x_st24_req_time) && (_x_mgr_timeout == st24_req_time))) || ( !((st24_l != 0) && ((delta == 0.0) && ((( !(st24_evt0 != 0)) && ( !(st24_evt1 != 0))) || ((st24_evt0 != 0) && ( !(st24_evt1 != 0))))))))) && ((((st24_evt0 != 0) && ( !(st24_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st24_l != 0))) || ( !(( !(st24_l != 0)) && ((delta == 0.0) && ((( !(st24_evt0 != 0)) && ( !(st24_evt1 != 0))) || ((st24_evt0 != 0) && ( !(st24_evt1 != 0))))))))) && ((((((((_x_st23_evt1 != 0) && ( !(_x_st23_evt0 != 0))) || ((( !(_x_st23_evt0 != 0)) && ( !(_x_st23_evt1 != 0))) || ((_x_st23_evt0 != 0) && ( !(_x_st23_evt1 != 0))))) && ( !(_x_st23_req_time <= 0.0))) && ((((st23_l != 0) == (_x_st23_l != 0)) && (st23_req_time == _x_st23_req_time)) || ( !(( !(delta <= 0.0)) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))))) && ((((( !(st23_evt0 != 0)) && ( !(st23_evt1 != 0))) && ( !(_x_st23_l != 0))) && ((st23_req_time == _x_st23_req_time) && (_x_mgr_timeout == st23_req_time))) || ( !((st23_l != 0) && ((delta == 0.0) && ((( !(st23_evt0 != 0)) && ( !(st23_evt1 != 0))) || ((st23_evt0 != 0) && ( !(st23_evt1 != 0))))))))) && ((((st23_evt0 != 0) && ( !(st23_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st23_l != 0))) || ( !(( !(st23_l != 0)) && ((delta == 0.0) && ((( !(st23_evt0 != 0)) && ( !(st23_evt1 != 0))) || ((st23_evt0 != 0) && ( !(st23_evt1 != 0))))))))) && ((((((((_x_st22_evt1 != 0) && ( !(_x_st22_evt0 != 0))) || ((( !(_x_st22_evt0 != 0)) && ( !(_x_st22_evt1 != 0))) || ((_x_st22_evt0 != 0) && ( !(_x_st22_evt1 != 0))))) && ( !(_x_st22_req_time <= 0.0))) && ((((st22_l != 0) == (_x_st22_l != 0)) && (st22_req_time == _x_st22_req_time)) || ( !(( !(delta <= 0.0)) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))))) && ((((( !(st22_evt0 != 0)) && ( !(st22_evt1 != 0))) && ( !(_x_st22_l != 0))) && ((st22_req_time == _x_st22_req_time) && (_x_mgr_timeout == st22_req_time))) || ( !((st22_l != 0) && ((delta == 0.0) && ((( !(st22_evt0 != 0)) && ( !(st22_evt1 != 0))) || ((st22_evt0 != 0) && ( !(st22_evt1 != 0))))))))) && ((((st22_evt0 != 0) && ( !(st22_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st22_l != 0))) || ( !(( !(st22_l != 0)) && ((delta == 0.0) && ((( !(st22_evt0 != 0)) && ( !(st22_evt1 != 0))) || ((st22_evt0 != 0) && ( !(st22_evt1 != 0))))))))) && ((((((((_x_st21_evt1 != 0) && ( !(_x_st21_evt0 != 0))) || ((( !(_x_st21_evt0 != 0)) && ( !(_x_st21_evt1 != 0))) || ((_x_st21_evt0 != 0) && ( !(_x_st21_evt1 != 0))))) && ( !(_x_st21_req_time <= 0.0))) && ((((st21_l != 0) == (_x_st21_l != 0)) && (st21_req_time == _x_st21_req_time)) || ( !(( !(delta <= 0.0)) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))))) && ((((( !(st21_evt0 != 0)) && ( !(st21_evt1 != 0))) && ( !(_x_st21_l != 0))) && ((st21_req_time == _x_st21_req_time) && (_x_mgr_timeout == st21_req_time))) || ( !((st21_l != 0) && ((delta == 0.0) && ((( !(st21_evt0 != 0)) && ( !(st21_evt1 != 0))) || ((st21_evt0 != 0) && ( !(st21_evt1 != 0))))))))) && ((((st21_evt0 != 0) && ( !(st21_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st21_l != 0))) || ( !(( !(st21_l != 0)) && ((delta == 0.0) && ((( !(st21_evt0 != 0)) && ( !(st21_evt1 != 0))) || ((st21_evt0 != 0) && ( !(st21_evt1 != 0))))))))) && ((((((((_x_st20_evt1 != 0) && ( !(_x_st20_evt0 != 0))) || ((( !(_x_st20_evt0 != 0)) && ( !(_x_st20_evt1 != 0))) || ((_x_st20_evt0 != 0) && ( !(_x_st20_evt1 != 0))))) && ( !(_x_st20_req_time <= 0.0))) && ((((st20_l != 0) == (_x_st20_l != 0)) && (st20_req_time == _x_st20_req_time)) || ( !(( !(delta <= 0.0)) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))))) && ((((( !(st20_evt0 != 0)) && ( !(st20_evt1 != 0))) && ( !(_x_st20_l != 0))) && ((st20_req_time == _x_st20_req_time) && (_x_mgr_timeout == st20_req_time))) || ( !((st20_l != 0) && ((delta == 0.0) && ((( !(st20_evt0 != 0)) && ( !(st20_evt1 != 0))) || ((st20_evt0 != 0) && ( !(st20_evt1 != 0))))))))) && ((((st20_evt0 != 0) && ( !(st20_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st20_l != 0))) || ( !(( !(st20_l != 0)) && ((delta == 0.0) && ((( !(st20_evt0 != 0)) && ( !(st20_evt1 != 0))) || ((st20_evt0 != 0) && ( !(st20_evt1 != 0))))))))) && ((((((((_x_st19_evt1 != 0) && ( !(_x_st19_evt0 != 0))) || ((( !(_x_st19_evt0 != 0)) && ( !(_x_st19_evt1 != 0))) || ((_x_st19_evt0 != 0) && ( !(_x_st19_evt1 != 0))))) && ( !(_x_st19_req_time <= 0.0))) && ((((st19_l != 0) == (_x_st19_l != 0)) && (st19_req_time == _x_st19_req_time)) || ( !(( !(delta <= 0.0)) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))))) && ((((( !(st19_evt0 != 0)) && ( !(st19_evt1 != 0))) && ( !(_x_st19_l != 0))) && ((st19_req_time == _x_st19_req_time) && (_x_mgr_timeout == st19_req_time))) || ( !((st19_l != 0) && ((delta == 0.0) && ((( !(st19_evt0 != 0)) && ( !(st19_evt1 != 0))) || ((st19_evt0 != 0) && ( !(st19_evt1 != 0))))))))) && ((((st19_evt0 != 0) && ( !(st19_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st19_l != 0))) || ( !(( !(st19_l != 0)) && ((delta == 0.0) && ((( !(st19_evt0 != 0)) && ( !(st19_evt1 != 0))) || ((st19_evt0 != 0) && ( !(st19_evt1 != 0))))))))) && ((((((((_x_st18_evt1 != 0) && ( !(_x_st18_evt0 != 0))) || ((( !(_x_st18_evt0 != 0)) && ( !(_x_st18_evt1 != 0))) || ((_x_st18_evt0 != 0) && ( !(_x_st18_evt1 != 0))))) && ( !(_x_st18_req_time <= 0.0))) && ((((st18_l != 0) == (_x_st18_l != 0)) && (st18_req_time == _x_st18_req_time)) || ( !(( !(delta <= 0.0)) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))))) && ((((( !(st18_evt0 != 0)) && ( !(st18_evt1 != 0))) && ( !(_x_st18_l != 0))) && ((st18_req_time == _x_st18_req_time) && (_x_mgr_timeout == st18_req_time))) || ( !((st18_l != 0) && ((delta == 0.0) && ((( !(st18_evt0 != 0)) && ( !(st18_evt1 != 0))) || ((st18_evt0 != 0) && ( !(st18_evt1 != 0))))))))) && ((((st18_evt0 != 0) && ( !(st18_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st18_l != 0))) || ( !(( !(st18_l != 0)) && ((delta == 0.0) && ((( !(st18_evt0 != 0)) && ( !(st18_evt1 != 0))) || ((st18_evt0 != 0) && ( !(st18_evt1 != 0))))))))) && ((((((((_x_st17_evt1 != 0) && ( !(_x_st17_evt0 != 0))) || ((( !(_x_st17_evt0 != 0)) && ( !(_x_st17_evt1 != 0))) || ((_x_st17_evt0 != 0) && ( !(_x_st17_evt1 != 0))))) && ( !(_x_st17_req_time <= 0.0))) && ((((st17_l != 0) == (_x_st17_l != 0)) && (st17_req_time == _x_st17_req_time)) || ( !(( !(delta <= 0.0)) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))))) && ((((( !(st17_evt0 != 0)) && ( !(st17_evt1 != 0))) && ( !(_x_st17_l != 0))) && ((st17_req_time == _x_st17_req_time) && (_x_mgr_timeout == st17_req_time))) || ( !((st17_l != 0) && ((delta == 0.0) && ((( !(st17_evt0 != 0)) && ( !(st17_evt1 != 0))) || ((st17_evt0 != 0) && ( !(st17_evt1 != 0))))))))) && ((((st17_evt0 != 0) && ( !(st17_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st17_l != 0))) || ( !(( !(st17_l != 0)) && ((delta == 0.0) && ((( !(st17_evt0 != 0)) && ( !(st17_evt1 != 0))) || ((st17_evt0 != 0) && ( !(st17_evt1 != 0))))))))) && ((((((((_x_st16_evt1 != 0) && ( !(_x_st16_evt0 != 0))) || ((( !(_x_st16_evt0 != 0)) && ( !(_x_st16_evt1 != 0))) || ((_x_st16_evt0 != 0) && ( !(_x_st16_evt1 != 0))))) && ( !(_x_st16_req_time <= 0.0))) && ((((st16_l != 0) == (_x_st16_l != 0)) && (st16_req_time == _x_st16_req_time)) || ( !(( !(delta <= 0.0)) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))))) && ((((( !(st16_evt0 != 0)) && ( !(st16_evt1 != 0))) && ( !(_x_st16_l != 0))) && ((st16_req_time == _x_st16_req_time) && (_x_mgr_timeout == st16_req_time))) || ( !((st16_l != 0) && ((delta == 0.0) && ((( !(st16_evt0 != 0)) && ( !(st16_evt1 != 0))) || ((st16_evt0 != 0) && ( !(st16_evt1 != 0))))))))) && ((((st16_evt0 != 0) && ( !(st16_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st16_l != 0))) || ( !(( !(st16_l != 0)) && ((delta == 0.0) && ((( !(st16_evt0 != 0)) && ( !(st16_evt1 != 0))) || ((st16_evt0 != 0) && ( !(st16_evt1 != 0))))))))) && ((((((((_x_st15_evt1 != 0) && ( !(_x_st15_evt0 != 0))) || ((( !(_x_st15_evt0 != 0)) && ( !(_x_st15_evt1 != 0))) || ((_x_st15_evt0 != 0) && ( !(_x_st15_evt1 != 0))))) && ( !(_x_st15_req_time <= 0.0))) && ((((st15_l != 0) == (_x_st15_l != 0)) && (st15_req_time == _x_st15_req_time)) || ( !(( !(delta <= 0.0)) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))))) && ((((( !(st15_evt0 != 0)) && ( !(st15_evt1 != 0))) && ( !(_x_st15_l != 0))) && ((st15_req_time == _x_st15_req_time) && (_x_mgr_timeout == st15_req_time))) || ( !((st15_l != 0) && ((delta == 0.0) && ((( !(st15_evt0 != 0)) && ( !(st15_evt1 != 0))) || ((st15_evt0 != 0) && ( !(st15_evt1 != 0))))))))) && ((((st15_evt0 != 0) && ( !(st15_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st15_l != 0))) || ( !(( !(st15_l != 0)) && ((delta == 0.0) && ((( !(st15_evt0 != 0)) && ( !(st15_evt1 != 0))) || ((st15_evt0 != 0) && ( !(st15_evt1 != 0))))))))) && ((((((((_x_st14_evt1 != 0) && ( !(_x_st14_evt0 != 0))) || ((( !(_x_st14_evt0 != 0)) && ( !(_x_st14_evt1 != 0))) || ((_x_st14_evt0 != 0) && ( !(_x_st14_evt1 != 0))))) && ( !(_x_st14_req_time <= 0.0))) && ((((st14_l != 0) == (_x_st14_l != 0)) && (st14_req_time == _x_st14_req_time)) || ( !(( !(delta <= 0.0)) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))))) && ((((( !(st14_evt0 != 0)) && ( !(st14_evt1 != 0))) && ( !(_x_st14_l != 0))) && ((st14_req_time == _x_st14_req_time) && (_x_mgr_timeout == st14_req_time))) || ( !((st14_l != 0) && ((delta == 0.0) && ((( !(st14_evt0 != 0)) && ( !(st14_evt1 != 0))) || ((st14_evt0 != 0) && ( !(st14_evt1 != 0))))))))) && ((((st14_evt0 != 0) && ( !(st14_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st14_l != 0))) || ( !(( !(st14_l != 0)) && ((delta == 0.0) && ((( !(st14_evt0 != 0)) && ( !(st14_evt1 != 0))) || ((st14_evt0 != 0) && ( !(st14_evt1 != 0))))))))) && ((((((((_x_st13_evt1 != 0) && ( !(_x_st13_evt0 != 0))) || ((( !(_x_st13_evt0 != 0)) && ( !(_x_st13_evt1 != 0))) || ((_x_st13_evt0 != 0) && ( !(_x_st13_evt1 != 0))))) && ( !(_x_st13_req_time <= 0.0))) && ((((st13_l != 0) == (_x_st13_l != 0)) && (st13_req_time == _x_st13_req_time)) || ( !(( !(delta <= 0.0)) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))))) && ((((( !(st13_evt0 != 0)) && ( !(st13_evt1 != 0))) && ( !(_x_st13_l != 0))) && ((st13_req_time == _x_st13_req_time) && (_x_mgr_timeout == st13_req_time))) || ( !((st13_l != 0) && ((delta == 0.0) && ((( !(st13_evt0 != 0)) && ( !(st13_evt1 != 0))) || ((st13_evt0 != 0) && ( !(st13_evt1 != 0))))))))) && ((((st13_evt0 != 0) && ( !(st13_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st13_l != 0))) || ( !(( !(st13_l != 0)) && ((delta == 0.0) && ((( !(st13_evt0 != 0)) && ( !(st13_evt1 != 0))) || ((st13_evt0 != 0) && ( !(st13_evt1 != 0))))))))) && ((((((((_x_st12_evt1 != 0) && ( !(_x_st12_evt0 != 0))) || ((( !(_x_st12_evt0 != 0)) && ( !(_x_st12_evt1 != 0))) || ((_x_st12_evt0 != 0) && ( !(_x_st12_evt1 != 0))))) && ( !(_x_st12_req_time <= 0.0))) && ((((st12_l != 0) == (_x_st12_l != 0)) && (st12_req_time == _x_st12_req_time)) || ( !(( !(delta <= 0.0)) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))))) && ((((( !(st12_evt0 != 0)) && ( !(st12_evt1 != 0))) && ( !(_x_st12_l != 0))) && ((st12_req_time == _x_st12_req_time) && (_x_mgr_timeout == st12_req_time))) || ( !((st12_l != 0) && ((delta == 0.0) && ((( !(st12_evt0 != 0)) && ( !(st12_evt1 != 0))) || ((st12_evt0 != 0) && ( !(st12_evt1 != 0))))))))) && ((((st12_evt0 != 0) && ( !(st12_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st12_l != 0))) || ( !(( !(st12_l != 0)) && ((delta == 0.0) && ((( !(st12_evt0 != 0)) && ( !(st12_evt1 != 0))) || ((st12_evt0 != 0) && ( !(st12_evt1 != 0))))))))) && ((((((((_x_st11_evt1 != 0) && ( !(_x_st11_evt0 != 0))) || ((( !(_x_st11_evt0 != 0)) && ( !(_x_st11_evt1 != 0))) || ((_x_st11_evt0 != 0) && ( !(_x_st11_evt1 != 0))))) && ( !(_x_st11_req_time <= 0.0))) && ((((st11_l != 0) == (_x_st11_l != 0)) && (st11_req_time == _x_st11_req_time)) || ( !(( !(delta <= 0.0)) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))))) && ((((( !(st11_evt0 != 0)) && ( !(st11_evt1 != 0))) && ( !(_x_st11_l != 0))) && ((st11_req_time == _x_st11_req_time) && (_x_mgr_timeout == st11_req_time))) || ( !((st11_l != 0) && ((delta == 0.0) && ((( !(st11_evt0 != 0)) && ( !(st11_evt1 != 0))) || ((st11_evt0 != 0) && ( !(st11_evt1 != 0))))))))) && ((((st11_evt0 != 0) && ( !(st11_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st11_l != 0))) || ( !(( !(st11_l != 0)) && ((delta == 0.0) && ((( !(st11_evt0 != 0)) && ( !(st11_evt1 != 0))) || ((st11_evt0 != 0) && ( !(st11_evt1 != 0))))))))) && ((((((((_x_st10_evt1 != 0) && ( !(_x_st10_evt0 != 0))) || ((( !(_x_st10_evt0 != 0)) && ( !(_x_st10_evt1 != 0))) || ((_x_st10_evt0 != 0) && ( !(_x_st10_evt1 != 0))))) && ( !(_x_st10_req_time <= 0.0))) && ((((st10_l != 0) == (_x_st10_l != 0)) && (st10_req_time == _x_st10_req_time)) || ( !(( !(delta <= 0.0)) || ((st10_evt1 != 0) && ( !(st10_evt0 != 0))))))) && ((((( !(st10_evt0 != 0)) && ( !(st10_evt1 != 0))) && ( !(_x_st10_l != 0))) && ((st10_req_time == _x_st10_req_time) && (_x_mgr_timeout == st10_req_time))) || ( !((st10_l != 0) && ((delta == 0.0) && ((( !(st10_evt0 != 0)) && ( !(st10_evt1 != 0))) || ((st10_evt0 != 0) && ( !(st10_evt1 != 0))))))))) && ((((st10_evt0 != 0) && ( !(st10_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st10_l != 0))) || ( !(( !(st10_l != 0)) && ((delta == 0.0) && ((( !(st10_evt0 != 0)) && ( !(st10_evt1 != 0))) || ((st10_evt0 != 0) && ( !(st10_evt1 != 0))))))))) && ((((((((_x_st9_evt1 != 0) && ( !(_x_st9_evt0 != 0))) || ((( !(_x_st9_evt0 != 0)) && ( !(_x_st9_evt1 != 0))) || ((_x_st9_evt0 != 0) && ( !(_x_st9_evt1 != 0))))) && ( !(_x_st9_req_time <= 0.0))) && ((((st9_l != 0) == (_x_st9_l != 0)) && (st9_req_time == _x_st9_req_time)) || ( !(( !(delta <= 0.0)) || ((st9_evt1 != 0) && ( !(st9_evt0 != 0))))))) && ((((( !(st9_evt0 != 0)) && ( !(st9_evt1 != 0))) && ( !(_x_st9_l != 0))) && ((st9_req_time == _x_st9_req_time) && (_x_mgr_timeout == st9_req_time))) || ( !((st9_l != 0) && ((delta == 0.0) && ((( !(st9_evt0 != 0)) && ( !(st9_evt1 != 0))) || ((st9_evt0 != 0) && ( !(st9_evt1 != 0))))))))) && ((((st9_evt0 != 0) && ( !(st9_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st9_l != 0))) || ( !(( !(st9_l != 0)) && ((delta == 0.0) && ((( !(st9_evt0 != 0)) && ( !(st9_evt1 != 0))) || ((st9_evt0 != 0) && ( !(st9_evt1 != 0))))))))) && ((((((((_x_st8_evt1 != 0) && ( !(_x_st8_evt0 != 0))) || ((( !(_x_st8_evt0 != 0)) && ( !(_x_st8_evt1 != 0))) || ((_x_st8_evt0 != 0) && ( !(_x_st8_evt1 != 0))))) && ( !(_x_st8_req_time <= 0.0))) && ((((st8_l != 0) == (_x_st8_l != 0)) && (st8_req_time == _x_st8_req_time)) || ( !(( !(delta <= 0.0)) || ((st8_evt1 != 0) && ( !(st8_evt0 != 0))))))) && ((((( !(st8_evt0 != 0)) && ( !(st8_evt1 != 0))) && ( !(_x_st8_l != 0))) && ((st8_req_time == _x_st8_req_time) && (_x_mgr_timeout == st8_req_time))) || ( !((st8_l != 0) && ((delta == 0.0) && ((( !(st8_evt0 != 0)) && ( !(st8_evt1 != 0))) || ((st8_evt0 != 0) && ( !(st8_evt1 != 0))))))))) && ((((st8_evt0 != 0) && ( !(st8_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st8_l != 0))) || ( !(( !(st8_l != 0)) && ((delta == 0.0) && ((( !(st8_evt0 != 0)) && ( !(st8_evt1 != 0))) || ((st8_evt0 != 0) && ( !(st8_evt1 != 0))))))))) && ((((((((_x_st7_evt1 != 0) && ( !(_x_st7_evt0 != 0))) || ((( !(_x_st7_evt0 != 0)) && ( !(_x_st7_evt1 != 0))) || ((_x_st7_evt0 != 0) && ( !(_x_st7_evt1 != 0))))) && ( !(_x_st7_req_time <= 0.0))) && ((((st7_l != 0) == (_x_st7_l != 0)) && (st7_req_time == _x_st7_req_time)) || ( !(( !(delta <= 0.0)) || ((st7_evt1 != 0) && ( !(st7_evt0 != 0))))))) && ((((( !(st7_evt0 != 0)) && ( !(st7_evt1 != 0))) && ( !(_x_st7_l != 0))) && ((st7_req_time == _x_st7_req_time) && (_x_mgr_timeout == st7_req_time))) || ( !((st7_l != 0) && ((delta == 0.0) && ((( !(st7_evt0 != 0)) && ( !(st7_evt1 != 0))) || ((st7_evt0 != 0) && ( !(st7_evt1 != 0))))))))) && ((((st7_evt0 != 0) && ( !(st7_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st7_l != 0))) || ( !(( !(st7_l != 0)) && ((delta == 0.0) && ((( !(st7_evt0 != 0)) && ( !(st7_evt1 != 0))) || ((st7_evt0 != 0) && ( !(st7_evt1 != 0))))))))) && ((((((((_x_st6_evt1 != 0) && ( !(_x_st6_evt0 != 0))) || ((( !(_x_st6_evt0 != 0)) && ( !(_x_st6_evt1 != 0))) || ((_x_st6_evt0 != 0) && ( !(_x_st6_evt1 != 0))))) && ( !(_x_st6_req_time <= 0.0))) && ((((st6_l != 0) == (_x_st6_l != 0)) && (st6_req_time == _x_st6_req_time)) || ( !(( !(delta <= 0.0)) || ((st6_evt1 != 0) && ( !(st6_evt0 != 0))))))) && ((((( !(st6_evt0 != 0)) && ( !(st6_evt1 != 0))) && ( !(_x_st6_l != 0))) && ((st6_req_time == _x_st6_req_time) && (_x_mgr_timeout == st6_req_time))) || ( !((st6_l != 0) && ((delta == 0.0) && ((( !(st6_evt0 != 0)) && ( !(st6_evt1 != 0))) || ((st6_evt0 != 0) && ( !(st6_evt1 != 0))))))))) && ((((st6_evt0 != 0) && ( !(st6_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st6_l != 0))) || ( !(( !(st6_l != 0)) && ((delta == 0.0) && ((( !(st6_evt0 != 0)) && ( !(st6_evt1 != 0))) || ((st6_evt0 != 0) && ( !(st6_evt1 != 0))))))))) && ((((((((_x_st5_evt1 != 0) && ( !(_x_st5_evt0 != 0))) || ((( !(_x_st5_evt0 != 0)) && ( !(_x_st5_evt1 != 0))) || ((_x_st5_evt0 != 0) && ( !(_x_st5_evt1 != 0))))) && ( !(_x_st5_req_time <= 0.0))) && ((((st5_l != 0) == (_x_st5_l != 0)) && (st5_req_time == _x_st5_req_time)) || ( !(( !(delta <= 0.0)) || ((st5_evt1 != 0) && ( !(st5_evt0 != 0))))))) && ((((( !(st5_evt0 != 0)) && ( !(st5_evt1 != 0))) && ( !(_x_st5_l != 0))) && ((st5_req_time == _x_st5_req_time) && (_x_mgr_timeout == st5_req_time))) || ( !((st5_l != 0) && ((delta == 0.0) && ((( !(st5_evt0 != 0)) && ( !(st5_evt1 != 0))) || ((st5_evt0 != 0) && ( !(st5_evt1 != 0))))))))) && ((((st5_evt0 != 0) && ( !(st5_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st5_l != 0))) || ( !(( !(st5_l != 0)) && ((delta == 0.0) && ((( !(st5_evt0 != 0)) && ( !(st5_evt1 != 0))) || ((st5_evt0 != 0) && ( !(st5_evt1 != 0))))))))) && ((((((((_x_st4_evt1 != 0) && ( !(_x_st4_evt0 != 0))) || ((( !(_x_st4_evt0 != 0)) && ( !(_x_st4_evt1 != 0))) || ((_x_st4_evt0 != 0) && ( !(_x_st4_evt1 != 0))))) && ( !(_x_st4_req_time <= 0.0))) && ((((st4_l != 0) == (_x_st4_l != 0)) && (st4_req_time == _x_st4_req_time)) || ( !(( !(delta <= 0.0)) || ((st4_evt1 != 0) && ( !(st4_evt0 != 0))))))) && ((((( !(st4_evt0 != 0)) && ( !(st4_evt1 != 0))) && ( !(_x_st4_l != 0))) && ((st4_req_time == _x_st4_req_time) && (_x_mgr_timeout == st4_req_time))) || ( !((st4_l != 0) && ((delta == 0.0) && ((( !(st4_evt0 != 0)) && ( !(st4_evt1 != 0))) || ((st4_evt0 != 0) && ( !(st4_evt1 != 0))))))))) && ((((st4_evt0 != 0) && ( !(st4_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st4_l != 0))) || ( !(( !(st4_l != 0)) && ((delta == 0.0) && ((( !(st4_evt0 != 0)) && ( !(st4_evt1 != 0))) || ((st4_evt0 != 0) && ( !(st4_evt1 != 0))))))))) && ((((((((_x_st3_evt1 != 0) && ( !(_x_st3_evt0 != 0))) || ((( !(_x_st3_evt0 != 0)) && ( !(_x_st3_evt1 != 0))) || ((_x_st3_evt0 != 0) && ( !(_x_st3_evt1 != 0))))) && ( !(_x_st3_req_time <= 0.0))) && ((((st3_l != 0) == (_x_st3_l != 0)) && (st3_req_time == _x_st3_req_time)) || ( !(( !(delta <= 0.0)) || ((st3_evt1 != 0) && ( !(st3_evt0 != 0))))))) && ((((( !(st3_evt0 != 0)) && ( !(st3_evt1 != 0))) && ( !(_x_st3_l != 0))) && ((st3_req_time == _x_st3_req_time) && (_x_mgr_timeout == st3_req_time))) || ( !((st3_l != 0) && ((delta == 0.0) && ((( !(st3_evt0 != 0)) && ( !(st3_evt1 != 0))) || ((st3_evt0 != 0) && ( !(st3_evt1 != 0))))))))) && ((((st3_evt0 != 0) && ( !(st3_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st3_l != 0))) || ( !(( !(st3_l != 0)) && ((delta == 0.0) && ((( !(st3_evt0 != 0)) && ( !(st3_evt1 != 0))) || ((st3_evt0 != 0) && ( !(st3_evt1 != 0))))))))) && ((((((((_x_st2_evt1 != 0) && ( !(_x_st2_evt0 != 0))) || ((( !(_x_st2_evt0 != 0)) && ( !(_x_st2_evt1 != 0))) || ((_x_st2_evt0 != 0) && ( !(_x_st2_evt1 != 0))))) && ( !(_x_st2_req_time <= 0.0))) && ((((st2_l != 0) == (_x_st2_l != 0)) && (st2_req_time == _x_st2_req_time)) || ( !(( !(delta <= 0.0)) || ((st2_evt1 != 0) && ( !(st2_evt0 != 0))))))) && ((((( !(st2_evt0 != 0)) && ( !(st2_evt1 != 0))) && ( !(_x_st2_l != 0))) && ((st2_req_time == _x_st2_req_time) && (_x_mgr_timeout == st2_req_time))) || ( !((st2_l != 0) && ((delta == 0.0) && ((( !(st2_evt0 != 0)) && ( !(st2_evt1 != 0))) || ((st2_evt0 != 0) && ( !(st2_evt1 != 0))))))))) && ((((st2_evt0 != 0) && ( !(st2_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st2_l != 0))) || ( !(( !(st2_l != 0)) && ((delta == 0.0) && ((( !(st2_evt0 != 0)) && ( !(st2_evt1 != 0))) || ((st2_evt0 != 0) && ( !(st2_evt1 != 0))))))))) && ((((((((_x_st1_evt1 != 0) && ( !(_x_st1_evt0 != 0))) || ((( !(_x_st1_evt0 != 0)) && ( !(_x_st1_evt1 != 0))) || ((_x_st1_evt0 != 0) && ( !(_x_st1_evt1 != 0))))) && ( !(_x_st1_req_time <= 0.0))) && ((((st1_l != 0) == (_x_st1_l != 0)) && (st1_req_time == _x_st1_req_time)) || ( !(( !(delta <= 0.0)) || ((st1_evt1 != 0) && ( !(st1_evt0 != 0))))))) && ((((( !(st1_evt0 != 0)) && ( !(st1_evt1 != 0))) && ( !(_x_st1_l != 0))) && ((st1_req_time == _x_st1_req_time) && (_x_mgr_timeout == st1_req_time))) || ( !((st1_l != 0) && ((delta == 0.0) && ((( !(st1_evt0 != 0)) && ( !(st1_evt1 != 0))) || ((st1_evt0 != 0) && ( !(st1_evt1 != 0))))))))) && ((((st1_evt0 != 0) && ( !(st1_evt1 != 0))) && (( !(mgr_c <= 0.0)) && (_x_st1_l != 0))) || ( !(( !(st1_l != 0)) && ((delta == 0.0) && ((( !(st1_evt0 != 0)) && ( !(st1_evt1 != 0))) || ((st1_evt0 != 0) && ( !(st1_evt1 != 0))))))))) && ((((((((_x_st0_evt1 != 0) && ( !(_x_st0_evt0 != 0))) || ((( !(_x_st0_evt0 != 0)) && ( !(_x_st0_evt1 != 0))) || ((_x_st0_evt0 != 0) && ( !(_x_st0_evt1 != 0))))) && ( !(_x_st0_req_time <= 0.0))) && ((((st0_l != 0) == (_x_st0_l != 0)) && (st0_req_time == _x_st0_req_time)) || ( !(( !(delta <= 0.0)) || ((st0_evt1 != 0) && ( !(st0_evt0 != 0))))))) && ((((( !(st0_evt0 != 0)) && ( !(st0_evt1 != 0))) && ( !(_x_st0_l != 0))) && ((st0_req_time == _x_st0_req_time) && (_x_mgr_timeout == st0_req_time))) || ( !((st0_l != 0) && ((delta == 0.0) && ((( !(st0_evt0 != 0)) && ( !(st0_evt1 != 0))) || ((st0_evt0 != 0) && ( !(st0_evt1 != 0))))))))) && ((((st0_evt0 != 0) && ( !(st0_evt1 != 0))) && ((_x_st0_l != 0) && ( !(mgr_c <= 0.0)))) || ( !(( !(st0_l != 0)) && ((delta == 0.0) && ((( !(st0_evt0 != 0)) && ( !(st0_evt1 != 0))) || ((st0_evt0 != 0) && ( !(st0_evt1 != 0))))))))) && ((((((((_x_mgr_evt1 != 0) && ( !(_x_mgr_evt0 != 0))) || ((( !(_x_mgr_evt0 != 0)) && ( !(_x_mgr_evt1 != 0))) || ((_x_mgr_evt0 != 0) && ( !(_x_mgr_evt1 != 0))))) && ((_x_mgr_l != 0) || (_x_mgr_c <= _x_mgr_timeout))) && (((((mgr_l != 0) == (_x_mgr_l != 0)) && ((delta + (mgr_c + (-1.0 * _x_mgr_c))) == 0.0)) && (mgr_timeout == _x_mgr_timeout)) || ( !(((mgr_evt1 != 0) && ( !(mgr_evt0 != 0))) || ( !(delta <= 0.0)))))) && (((( !(mgr_evt0 != 0)) && ( !(mgr_evt1 != 0))) && (( !(_x_mgr_l != 0)) && (_x_mgr_c == 0.0))) || ( !((mgr_l != 0) && (((( !(mgr_evt0 != 0)) && ( !(mgr_evt1 != 0))) || ((mgr_evt0 != 0) && ( !(mgr_evt1 != 0)))) && (delta == 0.0)))))) && ((((_x_mgr_l != 0) && ((mgr_evt0 != 0) && ( !(mgr_evt1 != 0)))) && ((_x_mgr_c == 0.0) && (_x_mgr_timeout == 0.0))) || ( !(( !(mgr_l != 0)) && (((( !(mgr_evt0 != 0)) && ( !(mgr_evt1 != 0))) || ((mgr_evt0 != 0) && ( !(mgr_evt1 != 0)))) && (delta == 0.0)))))) && ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((0.0 <= _x_delta) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st1_evt1 != 0) && ( !(st1_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st2_evt1 != 0) && ( !(st2_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st3_evt1 != 0) && ( !(st3_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st4_evt1 != 0) && ( !(st4_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st5_evt1 != 0) && ( !(st5_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st6_evt1 != 0) && ( !(st6_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st7_evt1 != 0) && ( !(st7_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st8_evt1 != 0) && ( !(st8_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st9_evt1 != 0) && ( !(st9_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st10_evt1 != 0) && ( !(st10_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st0_evt1 != 0) && ( !(st0_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st2_evt1 != 0) && ( !(st2_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st3_evt1 != 0) && ( !(st3_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st4_evt1 != 0) && ( !(st4_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st5_evt1 != 0) && ( !(st5_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st6_evt1 != 0) && ( !(st6_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st7_evt1 != 0) && ( !(st7_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st8_evt1 != 0) && ( !(st8_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st9_evt1 != 0) && ( !(st9_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st10_evt1 != 0) && ( !(st10_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st1_evt1 != 0) && ( !(st1_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st3_evt1 != 0) && ( !(st3_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st4_evt1 != 0) && ( !(st4_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st5_evt1 != 0) && ( !(st5_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st6_evt1 != 0) && ( !(st6_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st7_evt1 != 0) && ( !(st7_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st8_evt1 != 0) && ( !(st8_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st9_evt1 != 0) && ( !(st9_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st10_evt1 != 0) && ( !(st10_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st2_evt1 != 0) && ( !(st2_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st4_evt1 != 0) && ( !(st4_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st5_evt1 != 0) && ( !(st5_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st6_evt1 != 0) && ( !(st6_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st7_evt1 != 0) && ( !(st7_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st8_evt1 != 0) && ( !(st8_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st9_evt1 != 0) && ( !(st9_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st10_evt1 != 0) && ( !(st10_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st3_evt1 != 0) && ( !(st3_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st5_evt1 != 0) && ( !(st5_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st6_evt1 != 0) && ( !(st6_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st7_evt1 != 0) && ( !(st7_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st8_evt1 != 0) && ( !(st8_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st9_evt1 != 0) && ( !(st9_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st10_evt1 != 0) && ( !(st10_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st4_evt1 != 0) && ( !(st4_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st6_evt1 != 0) && ( !(st6_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st7_evt1 != 0) && ( !(st7_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st8_evt1 != 0) && ( !(st8_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st9_evt1 != 0) && ( !(st9_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st10_evt1 != 0) && ( !(st10_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st5_evt1 != 0) && ( !(st5_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st7_evt1 != 0) && ( !(st7_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st8_evt1 != 0) && ( !(st8_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st9_evt1 != 0) && ( !(st9_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st10_evt1 != 0) && ( !(st10_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st6_evt1 != 0) && ( !(st6_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st8_evt1 != 0) && ( !(st8_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st9_evt1 != 0) && ( !(st9_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st10_evt1 != 0) && ( !(st10_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st7_evt1 != 0) && ( !(st7_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st9_evt1 != 0) && ( !(st9_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st10_evt1 != 0) && ( !(st10_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st8_evt1 != 0) && ( !(st8_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st10_evt1 != 0) && ( !(st10_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st9_evt1 != 0) && ( !(st9_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st11_evt1 != 0) && ( !(st11_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st10_evt1 != 0) && ( !(st10_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st12_evt1 != 0) && ( !(st12_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st11_evt1 != 0) && ( !(st11_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st13_evt1 != 0) && ( !(st13_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st12_evt1 != 0) && ( !(st12_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st14_evt1 != 0) && ( !(st14_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st13_evt1 != 0) && ( !(st13_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((st15_evt1 != 0) && ( !(st15_evt0 != 0))))) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st14_evt1 != 0) && ( !(st14_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st15_evt1 != 0) && ( !(st15_evt0 != 0))) || ((st16_evt1 != 0) && ( !(st16_evt0 != 0))))) && (((st15_evt1 != 0) && ( !(st15_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st15_evt1 != 0) && ( !(st15_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st15_evt1 != 0) && ( !(st15_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st15_evt1 != 0) && ( !(st15_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st15_evt1 != 0) && ( !(st15_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st15_evt1 != 0) && ( !(st15_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st15_evt1 != 0) && ( !(st15_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st15_evt1 != 0) && ( !(st15_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st15_evt1 != 0) && ( !(st15_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st16_evt1 != 0) && ( !(st16_evt0 != 0))) || ((st17_evt1 != 0) && ( !(st17_evt0 != 0))))) && (((st16_evt1 != 0) && ( !(st16_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st16_evt1 != 0) && ( !(st16_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st16_evt1 != 0) && ( !(st16_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st16_evt1 != 0) && ( !(st16_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st16_evt1 != 0) && ( !(st16_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st16_evt1 != 0) && ( !(st16_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st16_evt1 != 0) && ( !(st16_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st16_evt1 != 0) && ( !(st16_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st17_evt1 != 0) && ( !(st17_evt0 != 0))) || ((st18_evt1 != 0) && ( !(st18_evt0 != 0))))) && (((st17_evt1 != 0) && ( !(st17_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st17_evt1 != 0) && ( !(st17_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st17_evt1 != 0) && ( !(st17_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st17_evt1 != 0) && ( !(st17_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st17_evt1 != 0) && ( !(st17_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st17_evt1 != 0) && ( !(st17_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st17_evt1 != 0) && ( !(st17_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st18_evt1 != 0) && ( !(st18_evt0 != 0))) || ((st19_evt1 != 0) && ( !(st19_evt0 != 0))))) && (((st18_evt1 != 0) && ( !(st18_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st18_evt1 != 0) && ( !(st18_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st18_evt1 != 0) && ( !(st18_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st18_evt1 != 0) && ( !(st18_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st18_evt1 != 0) && ( !(st18_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st18_evt1 != 0) && ( !(st18_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st19_evt1 != 0) && ( !(st19_evt0 != 0))) || ((st20_evt1 != 0) && ( !(st20_evt0 != 0))))) && (((st19_evt1 != 0) && ( !(st19_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st19_evt1 != 0) && ( !(st19_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st19_evt1 != 0) && ( !(st19_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st19_evt1 != 0) && ( !(st19_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st19_evt1 != 0) && ( !(st19_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st20_evt1 != 0) && ( !(st20_evt0 != 0))) || ((st21_evt1 != 0) && ( !(st21_evt0 != 0))))) && (((st20_evt1 != 0) && ( !(st20_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st20_evt1 != 0) && ( !(st20_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st20_evt1 != 0) && ( !(st20_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st20_evt1 != 0) && ( !(st20_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st21_evt1 != 0) && ( !(st21_evt0 != 0))) || ((st22_evt1 != 0) && ( !(st22_evt0 != 0))))) && (((st21_evt1 != 0) && ( !(st21_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st21_evt1 != 0) && ( !(st21_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st21_evt1 != 0) && ( !(st21_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st22_evt1 != 0) && ( !(st22_evt0 != 0))) || ((st23_evt1 != 0) && ( !(st23_evt0 != 0))))) && (((st22_evt1 != 0) && ( !(st22_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st22_evt1 != 0) && ( !(st22_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st23_evt1 != 0) && ( !(st23_evt0 != 0))) || ((st24_evt1 != 0) && ( !(st24_evt0 != 0))))) && (((st23_evt1 != 0) && ( !(st23_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && (((st24_evt1 != 0) && ( !(st24_evt0 != 0))) || ((st25_evt1 != 0) && ( !(st25_evt0 != 0))))) && ((( !(mgr_evt0 != 0)) && ( !(mgr_evt1 != 0))) == ((( !(st25_evt0 != 0)) && ( !(st25_evt1 != 0))) || ((( !(st24_evt0 != 0)) && ( !(st24_evt1 != 0))) || ((( !(st23_evt0 != 0)) && ( !(st23_evt1 != 0))) || ((( !(st22_evt0 != 0)) && ( !(st22_evt1 != 0))) || ((( !(st21_evt0 != 0)) && ( !(st21_evt1 != 0))) || ((( !(st20_evt0 != 0)) && ( !(st20_evt1 != 0))) || ((( !(st19_evt0 != 0)) && ( !(st19_evt1 != 0))) || ((( !(st18_evt0 != 0)) && ( !(st18_evt1 != 0))) || ((( !(st17_evt0 != 0)) && ( !(st17_evt1 != 0))) || ((( !(st16_evt0 != 0)) && ( !(st16_evt1 != 0))) || ((( !(st15_evt0 != 0)) && ( !(st15_evt1 != 0))) || ((( !(st14_evt0 != 0)) && ( !(st14_evt1 != 0))) || ((( !(st13_evt0 != 0)) && ( !(st13_evt1 != 0))) || ((( !(st12_evt0 != 0)) && ( !(st12_evt1 != 0))) || ((( !(st11_evt0 != 0)) && ( !(st11_evt1 != 0))) || ((( !(st10_evt0 != 0)) && ( !(st10_evt1 != 0))) || ((( !(st9_evt0 != 0)) && ( !(st9_evt1 != 0))) || ((( !(st8_evt0 != 0)) && ( !(st8_evt1 != 0))) || ((( !(st7_evt0 != 0)) && ( !(st7_evt1 != 0))) || ((( !(st6_evt0 != 0)) && ( !(st6_evt1 != 0))) || ((( !(st5_evt0 != 0)) && ( !(st5_evt1 != 0))) || ((( !(st4_evt0 != 0)) && ( !(st4_evt1 != 0))) || ((( !(st3_evt0 != 0)) && ( !(st3_evt1 != 0))) || ((( !(st2_evt0 != 0)) && ( !(st2_evt1 != 0))) || ((( !(st0_evt0 != 0)) && ( !(st0_evt1 != 0))) || (( !(st1_evt0 != 0)) && ( !(st1_evt1 != 0)))))))))))))))))))))))))))))) && (((mgr_evt0 != 0) && ( !(mgr_evt1 != 0))) == (((st25_evt0 != 0) && ( !(st25_evt1 != 0))) || (((st24_evt0 != 0) && ( !(st24_evt1 != 0))) || (((st23_evt0 != 0) && ( !(st23_evt1 != 0))) || (((st22_evt0 != 0) && ( !(st22_evt1 != 0))) || (((st21_evt0 != 0) && ( !(st21_evt1 != 0))) || (((st20_evt0 != 0) && ( !(st20_evt1 != 0))) || (((st19_evt0 != 0) && ( !(st19_evt1 != 0))) || (((st18_evt0 != 0) && ( !(st18_evt1 != 0))) || (((st17_evt0 != 0) && ( !(st17_evt1 != 0))) || (((st16_evt0 != 0) && ( !(st16_evt1 != 0))) || (((st15_evt0 != 0) && ( !(st15_evt1 != 0))) || (((st14_evt0 != 0) && ( !(st14_evt1 != 0))) || (((st13_evt0 != 0) && ( !(st13_evt1 != 0))) || (((st12_evt0 != 0) && ( !(st12_evt1 != 0))) || (((st11_evt0 != 0) && ( !(st11_evt1 != 0))) || (((st10_evt0 != 0) && ( !(st10_evt1 != 0))) || (((st9_evt0 != 0) && ( !(st9_evt1 != 0))) || (((st8_evt0 != 0) && ( !(st8_evt1 != 0))) || (((st7_evt0 != 0) && ( !(st7_evt1 != 0))) || (((st6_evt0 != 0) && ( !(st6_evt1 != 0))) || (((st5_evt0 != 0) && ( !(st5_evt1 != 0))) || (((st4_evt0 != 0) && ( !(st4_evt1 != 0))) || (((st3_evt0 != 0) && ( !(st3_evt1 != 0))) || (((st2_evt0 != 0) && ( !(st2_evt1 != 0))) || (((st0_evt0 != 0) && ( !(st0_evt1 != 0))) || ((st1_evt0 != 0) && ( !(st1_evt1 != 0)))))))))))))))))))))))))))))) && (((tot_transm_time + ((-1.0 * _x_tot_transm_time) + mgr_c)) == 0.0) || ( !((_x_mgr_l != 0) && ( !(mgr_l != 0)))))) && (((_x_mgr_l != 0) && ( !(mgr_l != 0))) || (tot_transm_time == _x_tot_transm_time)))))))))))))))))))))))))))))) && (((delta == _x__diverge_delta) || ( !(1.0 <= _diverge_delta))) && ((1.0 <= _diverge_delta) || ((delta + (_diverge_delta + (-1.0 * _x__diverge_delta))) == 0.0)))); st25_req_time = _x_st25_req_time; _diverge_delta = _x__diverge_delta; st24_evt0 = _x_st24_evt0; st24_req_time = _x_st24_req_time; st23_evt0 = _x_st23_evt0; st23_req_time = _x_st23_req_time; st23_l = _x_st23_l; st22_evt0 = _x_st22_evt0; st22_req_time = _x_st22_req_time; st22_l = _x_st22_l; st21_evt0 = _x_st21_evt0; st21_req_time = _x_st21_req_time; st21_l = _x_st21_l; st20_evt0 = _x_st20_evt0; st20_req_time = _x_st20_req_time; st20_l = _x_st20_l; st19_evt0 = _x_st19_evt0; st19_req_time = _x_st19_req_time; st19_l = _x_st19_l; st18_evt0 = _x_st18_evt0; st18_req_time = _x_st18_req_time; st18_l = _x_st18_l; st17_evt1 = _x_st17_evt1; st17_req_time = _x_st17_req_time; st17_l = _x_st17_l; st16_evt1 = _x_st16_evt1; st16_evt0 = _x_st16_evt0; st16_req_time = _x_st16_req_time; st16_l = _x_st16_l; st15_evt1 = _x_st15_evt1; st15_evt0 = _x_st15_evt0; st15_req_time = _x_st15_req_time; st15_l = _x_st15_l; st14_evt1 = _x_st14_evt1; st14_evt0 = _x_st14_evt0; st14_req_time = _x_st14_req_time; st14_l = _x_st14_l; st22_evt1 = _x_st22_evt1; st5_req_time = _x_st5_req_time; st13_l = _x_st13_l; mgr_l = _x_mgr_l; st3_evt1 = _x_st3_evt1; st5_l = _x_st5_l; st4_evt1 = _x_st4_evt1; st23_evt1 = _x_st23_evt1; st6_req_time = _x_st6_req_time; st21_evt1 = _x_st21_evt1; st4_req_time = _x_st4_req_time; st2_evt1 = _x_st2_evt1; st4_l = _x_st4_l; st2_evt0 = _x_st2_evt0; st13_evt1 = _x_st13_evt1; mgr_evt1 = _x_mgr_evt1; st19_evt1 = _x_st19_evt1; st2_req_time = _x_st2_req_time; mgr_timeout = _x_mgr_timeout; st2_l = _x_st2_l; st13_evt0 = _x_st13_evt0; mgr_evt0 = _x_mgr_evt0; st25_evt0 = _x_st25_evt0; st1_evt1 = _x_st1_evt1; st20_evt1 = _x_st20_evt1; st3_req_time = _x_st3_req_time; st0_l = _x_st0_l; st25_l = _x_st25_l; st1_evt0 = _x_st1_evt0; delta = _x_delta; st3_l = _x_st3_l; st1_l = _x_st1_l; tot_transm_time = _x_tot_transm_time; st3_evt0 = _x_st3_evt0; st17_evt0 = _x_st17_evt0; st0_req_time = _x_st0_req_time; st13_req_time = _x_st13_req_time; mgr_c = _x_mgr_c; st24_l = _x_st24_l; st0_evt1 = _x_st0_evt1; st0_evt0 = _x_st0_evt0; st4_evt0 = _x_st4_evt0; st18_evt1 = _x_st18_evt1; st1_req_time = _x_st1_req_time; st5_evt0 = _x_st5_evt0; st5_evt1 = _x_st5_evt1; st24_evt1 = _x_st24_evt1; st7_req_time = _x_st7_req_time; st6_l = _x_st6_l; st6_evt0 = _x_st6_evt0; st6_evt1 = _x_st6_evt1; st25_evt1 = _x_st25_evt1; st8_req_time = _x_st8_req_time; st7_l = _x_st7_l; st7_evt0 = _x_st7_evt0; st7_evt1 = _x_st7_evt1; st9_req_time = _x_st9_req_time; st8_l = _x_st8_l; st8_evt0 = _x_st8_evt0; st8_evt1 = _x_st8_evt1; st10_req_time = _x_st10_req_time; st9_l = _x_st9_l; st9_evt0 = _x_st9_evt0; st9_evt1 = _x_st9_evt1; st11_req_time = _x_st11_req_time; st10_l = _x_st10_l; st10_evt0 = _x_st10_evt0; st10_evt1 = _x_st10_evt1; st12_req_time = _x_st12_req_time; st11_l = _x_st11_l; st11_evt0 = _x_st11_evt0; st11_evt1 = _x_st11_evt1; st12_l = _x_st12_l; st12_evt0 = _x_st12_evt0; st12_evt1 = _x_st12_evt1; } }
the_stack_data/96613.c
/* * CS:APP Data Lab * * <Please put your name and userid here> * * bits.c - Source file with your solutions to the Lab. * This is the file you will hand in to your instructor. * * WARNING: Do not include the <stdio.h> header; it confuses the dlc * compiler. You can still use printf for debugging without including * <stdio.h>, although you might get a compiler warning. In general, * it's not good practice to ignore compiler warnings, but in this * case it's OK. */ #if 0 /* * Instructions to Students: * * STEP 1: Read the following instructions carefully. */ You will provide your solution to the Data Lab by editing the collection of functions in this source file. INTEGER CODING RULES: Replace the "return" statement in each function with one or more lines of C code that implements the function. Your code must conform to the following style: int Funct(arg1, arg2, ...) { /* brief description of how your implementation works */ int var1 = Expr1; ... int varM = ExprM; varJ = ExprJ; ... varN = ExprN; return ExprR; } Each "Expr" is an expression using ONLY the following: 1. Integer constants 0 through 255 (0xFF), inclusive. You are not allowed to use big constants such as 0xffffffff. 2. Function arguments and local variables (no global variables). 3. Unary integer operations ! ~ 4. Binary integer operations & ^ | + << >> Some of the problems restrict the set of allowed operators even further. Each "Expr" may consist of multiple operators. You are not restricted to one operator per line. You are expressly forbidden to: 1. Use any control constructs such as if, do, while, for, switch, etc. 2. Define or use any macros. 3. Define any additional functions in this file. 4. Call any functions. 5. Use any other operations, such as &&, ||, -, or ?: 6. Use any form of casting. 7. Use any data type other than int. This implies that you cannot use arrays, structs, or unions. You may assume that your machine: 1. Uses 2s complement, 32-bit representations of integers. 2. Performs right shifts arithmetically. 3. Has unpredictable behavior when shifting if the shift amount is less than 0 or greater than 31. EXAMPLES OF ACCEPTABLE CODING STYLE: /* * pow2plus1 - returns 2^x + 1, where 0 <= x <= 31 */ int pow2plus1(int x) { /* exploit ability of shifts to compute powers of 2 */ return (1 << x) + 1; } /* * pow2plus4 - returns 2^x + 4, where 0 <= x <= 31 */ int pow2plus4(int x) { /* exploit ability of shifts to compute powers of 2 */ int result = (1 << x); result += 4; return result; } FLOATING POINT CODING RULES For the problems that require you to implement floating-point operations, the coding rules are less strict. You are allowed to use looping and conditional control. You are allowed to use both ints and unsigneds. You can use arbitrary integer and unsigned constants. You can use any arithmetic, logical, or comparison operations on int or unsigned data. You are expressly forbidden to: 1. Define or use any macros. 2. Define any additional functions in this file. 3. Call any functions. 4. Use any form of casting. 5. Use any data type other than int or unsigned. This means that you cannot use arrays, structs, or unions. 6. Use any floating point data types, operations, or constants. NOTES: 1. Use the dlc (data lab checker) compiler (described in the handout) to check the legality of your solutions. 2. Each function has a maximum number of operations (integer, logical, or comparison) that you are allowed to use for your implementation of the function. The max operator count is checked by dlc. Note that assignment ('=') is not counted; you may use as many of these as you want without penalty. 3. Use the btest test harness to check your functions for correctness. 4. Use the BDD checker to formally verify your functions 5. The maximum number of ops for each function is given in the header comment for each function. If there are any inconsistencies between the maximum ops in the writeup and in this file, consider this file the authoritative source. /* * STEP 2: Modify the following functions according the coding rules. * * IMPORTANT. TO AVOID GRADING SURPRISES: * 1. Use the dlc compiler to check that your solutions conform * to the coding rules. * 2. Use the BDD checker to formally verify that your solutions produce * the correct answers. */ #endif //1 /* * bitXor - x^y using only ~ and & * Example: bitXor(4, 5) = 1 * Legal ops: ~ & * Max ops: 14 * Rating: 1 */ int bitXor(int x, int y) { int a = x&y; int b = (~x)&(~y); return (~a)&(~b); } /* * tmin - return minimum two's complement integer * Legal ops: ! ~ & ^ | + << >> * Max ops: 4 * Rating: 1 */ int tmin(void) { return (1<<31); } //2 /* * isTmax - returns 1 if x is the maximum, two's complement number, * and 0 otherwise * Legal ops: ! ~ & ^ | + * Max ops: 10 * Rating: 1 */ int isTmax(int x) { int m = x+1; x = ~(x+m); m = !m; x = x+m; return !x; } /* * allOddBits - return 1 if all odd-numbered bits in word set to 1 * where bits are numbered from 0 (least significant) to 31 (most significant) * Examples allOddBits(0xFFFFFFFD) = 0, allOddBits(0xAAAAAAAA) = 1 * Legal ops: ! ~ & ^ | + << >> * Max ops: 12 * Rating: 2 */ int allOddBits(int x) { int A = 0xAA; A = (A<<8) + A; A = (A<<16) + A; A = (A & x) ^ A; return !A; } /* * negate - return -x * Example: negate(1) = -1. * Legal ops: ! ~ & ^ | + << >> * Max ops: 5 * Rating: 2 */ int negate(int x) { return ~x + 1; } //3 /* * 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) { int upper_bound = (1<<31) + (~0x39); int lower_bound = ~0x30+1; int sign = 1<<31; upper_bound = upper_bound + x; lower_bound = lower_bound + x; return !((upper_bound|lower_bound)&sign); } /* * conditional - same as x ? y : z * Example: conditional(2,4,5) = 4 * Legal ops: ! ~ & ^ | + << >> * Max ops: 16 * Rating: 3 */ int conditional(int x, int y, int z) { int cond = ~(!x); return ((~(cond+1)&y)|((cond+1)&z)); } /* * isLessOrEqual - if x <= y then return 1, else return 0 * Example: isLessOrEqual(4,5) = 1. * Legal ops: ! ~ & ^ | + << >> * Max ops: 24 * Rating: 3 */ int isLessOrEqual(int x, int y) { int sign = 1<<31; int negX = ~x + 1; int subX = y + negX; int isDiffSign = ((x&sign)^(y&sign))>>31&1; int sameSign = !isDiffSign&(!((subX&sign)>>31&1)); isDiffSign = (x>>31&1)&isDiffSign; return isDiffSign|sameSign; } //4 /* * logicalNeg - implement the ! operator, using all of * the legal operators except ! * Examples: logicalNeg(3) = 0, logicalNeg(0) = 1 * Legal ops: ~ & ^ | + << >> * Max ops: 12 * Rating: 4 */ int logicalNeg(int x) { int negX = ~x+1; int sign = (negX|x)>>31&1; return (sign+1)&1; } /* howManyBits - return the minimum number of bits required to represent x in * two's complement * Examples: howManyBits(12) = 5 * howManyBits(298) = 10 * howManyBits(-5) = 4 * howManyBits(0) = 1 * howManyBits(-1) = 1 * howManyBits(0x80000000) = 32 * Legal ops: ! ~ & ^ | + << >> * Max ops: 90 * Rating: 4 */ int howManyBits(int x) { int b16, b8, b4, b2, b1; int sign = x>>31; x = (~sign&x)|(sign&(~x)); b16 = !!(x>>16)<<4; x = x>>b16; b8 = !!(x>>8)<<3; x = x>>b8; b4 = !!(x>>4)<<2; x = x>>b4; b2 = !!(x>>2)<<1; x = x>>b2; b1 = !!(x>>1); x = x>>b1; return b16+b8+b4+b2+b1+x+1; } //float /* * floatScale2 - Return bit-level equivalent of expression 2*f for * floating point argument f. * Both the argument and result are passed as unsigned int's, but * they are to be interpreted as the bit-level representation of * single-precision floating point values. * When argument is NaN, return argument * Legal ops: Any integer/unsigned operations incl. ||, &&. also if, while * Max ops: 30 * Rating: 4 */ unsigned floatScale2(unsigned uf) { int inf = 0x7f800000; int all1 = 0xff800000; int signf = 0x007fffff; int spNum = !((uf&inf)^inf); int notnormalize = !((uf&inf)^0); int k = ((uf&all1)>>23)+1; int ans = (k<<23) + (uf&signf); int ans2 = (uf&all1) + ((signf&uf)<<1); if(spNum) return uf; else if(notnormalize) return ans2; else return ans; } /* * floatFloat2Int - Return bit-level equivalent of expression (int) f * for floating point argument f. * Argument is passed as unsigned int, but * it is to be interpreted as the bit-level representation of a * single-precision floating point value. * Anything out of range (including NaN and infinity) should return * 0x80000000u. * Legal ops: Any integer/unsigned operations incl. ||, &&. also if, while * Max ops: 30 * Rating: 4 */ int floatFloat2Int(unsigned uf) { int sign =uf>>31; int exponent = ((uf&0x7f800000)>>23)-127; int significand = (uf&0x007fffff)+0x00800000; if(exponent>=31) return 0x80000000u; if(exponent<0) return 0; if(exponent>=23&&exponent<31){ significand<<=exponent-23; } if(exponent>=0&&exponent<23) significand>>=23-exponent; if(!sign) return significand; else return (~significand+1)|0x80000000; } /* * floatPower2 - Return bit-level equivalent of the expression 2.0^x * (2.0 raised to the power x) for any 32-bit integer x. * * The unsigned value that is returned should have the identical bit * representation as the single-precision floating-point number 2.0^x. * If the result is too small to be represented as a denorm, return * 0. If too large, return +INF. * * Legal ops: Any integer/unsigned operations incl. ||, &&. Also if, while * Max ops: 30 * Rating: 4 */ unsigned floatPower2(int x) { int exponent = x + 127; if(exponent>=255) return 0x7f800000; if(exponent<-23) return 0; if(exponent>=-23&&exponent<0) return 1<<(23+exponent); else return exponent<<23; }
the_stack_data/220456032.c
// // Created by LCX on 2020/7/9. // #include <stdio.h> int Max(int, int); int Max(int a, int b) { printf("%d___%d\n",a,b); int j; if(a > b) j = a; else j = b; return j; } int main(void) { printf("%p\n",Max); int (*p)(int,int); int a,b,c; printf("%p\n",p); p = Max; printf("%p\n",p); a = 3; b = 4; c = (*p)(a,b); printf("a=%d\nb=%d\nmax=%d\n",a,b,c); return 0; }
the_stack_data/167331704.c
#include <stdlib.h> struct tiny { int c; }; void f (int n, struct tiny x, struct tiny y, struct tiny z, long l) { if (x.c != 10) abort(); if (y.c != 11) abort(); if (z.c != 12) abort(); if (l != 123) abort (); } int main () { struct tiny x[3]; x[0].c = 10; x[1].c = 11; x[2].c = 12; f (3, x[0], x[1], x[2], (long) 123); exit(0); }
the_stack_data/206394455.c
/* * selectionsort.c * * Created on: 14 de mar de 2020 * Author: Guilherme Victor Borges Pereira */ /** * Método Selection Sort * * > Percorra o vetor e execute as operações a seguir. * * > Encontre o menor elemento do vetor e troque com a primeira posição. * * > Encontre o segundo menor elemento e troque com a segunda posição. * * > E assim por diante, até que o vetor esteja ordenado. */ #include <stdio.h> #include <stdlib.h> #include <time.h> void printArray(const int arr[], const char str[], int idx); void swapFunction(int arr[], int idx, int min_idx); void selectionsort(int arr[], int idx) { int n = idx; char str[] = "SelectionSort"; clock_t start_t, end_t; float total_t; start_t = clock(); for (int i = 0; i < n-1; i++) { int min_idx = i; for (int j = i + 1; j < n; j++) { if (arr[j] < arr[min_idx]) min_idx = j; } if (arr[i] != arr[min_idx]) swapFunction(arr, i, min_idx); } end_t = clock() - start_t; printArray(arr, str, idx); printf("\n"); total_t = ((float)end_t) / CLOCKS_PER_SEC; printf("Time: %f seconds.\n", total_t); printf("Exiting of the program...\n"); } void swapFunction(int arr[], int idx, int min_idx) { int swap = arr[idx]; arr[idx] = arr[min_idx]; arr[min_idx] = swap; }
the_stack_data/1009540.c
/* ************************************************************************** */ /* */ /* :::::::: */ /* triangle_construct_bonus.c :+: :+: */ /* +:+ */ /* By: goosterl <[email protected]> +#+ */ /* +#+ */ /* Created: 2020/12/23 11:50:54 by goosterl #+# #+# */ /* Updated: 2021/04/12 16:26:49 by goosterl ######## odam.nl */ /* */ /* ************************************************************************** */ #if IS_BONUS == 1 # include <scene.h> # include <init.h> t_bool triangle_construct(t_shapes *catch) { t_triangle *tri; tri = catch->shape; tri->edge[0] = vec3_sub(tri->vert[1], tri->vert[0]); tri->edge[1] = vec3_sub(tri->vert[2], tri->vert[1]); tri->edge[2] = vec3_sub(tri->vert[0], tri->vert[2]); tri->normal = vec3_cross(tri->edge[2], tri->edge[0]); tri->denom = 1 / vec3_dot(tri->normal, tri->normal); tri->traverse = -vec3_dot(tri->normal, tri->vert[0]); tri->dot_aa = vec3_dot(tri->edge[0], tri->edge[0]); tri->dot_ab = vec3_dot(tri->edge[0], tri->edge[1]); tri->dot_bb = vec3_dot(tri->edge[1], tri->edge[1]); volume_init(&catch->volume); volume_add_vec(&catch->volume, tri->vert[0]); volume_add_vec(&catch->volume, tri->vert[1]); volume_add_vec(&catch->volume, tri->vert[2]); return (true); } #endif
the_stack_data/154827381.c
#include <stdio.h> int main() { int number = 0; printf("Digite o numero de linhas: \n\n"); scanf("%d", &number); for (int i = 0; i < number; i++) { printf("Linha %d. \n", i + 1); } return 0; }
the_stack_data/76355.c
#include <stdio.h> int main (){ int x, y; char op; printf("digite o calculo desejado (operando operador operando): "); scanf("%d %c %d", &x, &op, &y); if (op == '+') printf("resultado = %d", x + y); else if (op == '-') printf("resultado = %d", x - y); else if (op == '*') printf("resultado = %d", x * y); else if (op == '/'){ if (y != 0) printf("resultado = %d", x / y); else printf("divisao por zero!"); } else printf("operador invalido."); return 0; }
the_stack_data/7949924.c
#include <stdbool.h> #include <sys/types.h> #include <pmix.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <time.h> int main(int argc, char **argv) { int rc; pmix_value_t value; pmix_value_t *val = &value; pmix_value_t pvalue; pmix_proc_t myproc, rootproc; pmix_info_t info; if (PMIX_SUCCESS != (rc = PMIx_Init(&myproc, NULL, 0))) { fprintf(stderr, "Init failed.\n"); exit(1); } fprintf(stderr, "[%s:%u]: Running\n", myproc.nspace, myproc.rank); PMIX_VALUE_LOAD(&pvalue, "hello", PMIX_STRING); if (myproc.rank == 0) { if (PMIX_SUCCESS != (rc = PMIx_Put(PMIX_GLOBAL, "my.foo", &pvalue))) { fprintf(stderr, "Put of my.foo failed\n"); exit(1); } } PMIx_Commit(); bool tvalue = 1; strcpy(info.key, PMIX_COLLECT_DATA); PMIX_VALUE_LOAD(&(info.value), &tvalue, PMIX_BOOL); PMIx_Fence(NULL, 0, &info, 1); fprintf(stderr, "[%s:%u]: Fence complete\n", myproc.nspace, myproc.rank); rootproc = myproc; rootproc.rank = 0; if (PMIX_SUCCESS != (rc = PMIx_Get(&rootproc, "my.foo", NULL, 0, &val))) { fprintf(stderr, "Get of root's my.foo failed\n"); exit(1); } fprintf(stderr, "[%s:%u]: Get complete and successful\n", myproc.nspace, myproc.rank); if (PMIX_SUCCESS != (rc = PMIx_Finalize(NULL, 0))) { fprintf(stderr, "Client ns %s rank %d:PMIx_Finalize failed: %d\n", myproc.nspace, myproc.rank, rc); exit(1); } return(rc); }
the_stack_data/51413.c
void parallel_0(short x[496], short y[496], int sum_array[31]) { // Step 2: Initialize local variables int sum_w1; int sum_w10; int sum_w11; int sum_w12; int sum_w13; int sum_w14; int sum_w2; int sum_w3; int sum_w4; int sum_w5; int sum_w6; int sum_w7; int sum_w8; int sum_w9; int temp_l83_i14_w1; int temp_l83_i15_w1; int temp_l83_i16_w1; int temp_l83_i17_w1; int temp_l83_i18_w1; int temp_l83_i19_w1; int temp_l83_i20_w1; int temp_l83_i21_w1; int temp_l83_i22_w1; int temp_l83_i23_w1; int temp_l83_i24_w1; int temp_l83_i25_w1; int temp_l83_i26_w1; int temp_l83_i27_w1; int temp_l83_i28_w1; int temp_l83_i29_w1; // Initialization done // starting Loop for( int i = 0; i < 31;i=i+1){ #pragma HLS pipeline temp_l83_i14_w1 = x[(16)*i] * y[(16)*i]; temp_l83_i15_w1 = x[(16)*i+1] * y[(16)*i+1]; temp_l83_i16_w1 = x[(16)*i+2] * y[(16)*i+2]; temp_l83_i17_w1 = x[(16)*i+3] * y[(16)*i+3]; temp_l83_i18_w1 = x[(16)*i+4] * y[(16)*i+4]; temp_l83_i19_w1 = x[(16)*i+5] * y[(16)*i+5]; temp_l83_i20_w1 = x[(16)*i+6] * y[(16)*i+6]; temp_l83_i21_w1 = x[(16)*i+7] * y[(16)*i+7]; temp_l83_i22_w1 = x[(16)*i+8] * y[(16)*i+8]; temp_l83_i23_w1 = x[(16)*i+9] * y[(16)*i+9]; temp_l83_i24_w1 = x[(16)*i+10] * y[(16)*i+10]; temp_l83_i25_w1 = x[(16)*i+11] * y[(16)*i+11]; temp_l83_i26_w1 = x[(16)*i+12] * y[(16)*i+12]; temp_l83_i27_w1 = x[(16)*i+13] * y[(16)*i+13]; temp_l83_i28_w1 = x[(16)*i+14] * y[(16)*i+14]; temp_l83_i29_w1 = x[(16)*i+15] * y[(16)*i+15]; sum_w13 = temp_l83_i14_w1 + temp_l83_i15_w1; sum_w14 = temp_l83_i16_w1 + temp_l83_i17_w1; sum_w11 = temp_l83_i18_w1 + temp_l83_i19_w1; sum_w12 = temp_l83_i20_w1 + temp_l83_i21_w1; sum_w1 = temp_l83_i22_w1 + temp_l83_i23_w1; sum_w2 = temp_l83_i24_w1 + temp_l83_i25_w1; sum_w5 = temp_l83_i26_w1 + temp_l83_i27_w1; sum_w6 = temp_l83_i28_w1 + temp_l83_i29_w1; sum_w3 = sum_w1 + sum_w2; sum_w8 = sum_w11 + sum_w12; sum_w7 = sum_w13 + sum_w14; sum_w4 = sum_w5 + sum_w6; sum_w10 = sum_w3 + sum_w4; sum_w9 = sum_w7 + sum_w8; sum_array[i] = sum_w9 + sum_w10; } } void epilogue(int sum_array_3[31], int sum_array_2[31], short x_0[13], short y_0[13], short y_5[3], int sum_array_1[31], short x_5[3], int sum_array_0[31], int *out) { // Step 2: Initialize local variables int sum_w1; int sum_w10; int sum_w100; int sum_w101; int sum_w102; int sum_w103; int sum_w104; int sum_w105; int sum_w106; int sum_w107; int sum_w108; int sum_w109; int sum_w11; int sum_w110; int sum_w111; int sum_w112; int sum_w113; int sum_w114; int sum_w115; int sum_w116; int sum_w117; int sum_w118; int sum_w119; int sum_w12; int sum_w120; int sum_w121; int sum_w122; int sum_w123; int sum_w124; int sum_w125; int sum_w126; int sum_w127; int sum_w128; int sum_w129; int sum_w13; int sum_w130; int sum_w131; int sum_w132; int sum_w133; int sum_w134; int sum_w135; int sum_w136; int sum_w137; int sum_w138; int sum_w139; int sum_w14; int sum_w15; int sum_w16; int sum_w17; int sum_w18; int sum_w19; int sum_w2; int sum_w20; int sum_w21; int sum_w22; int sum_w23; int sum_w24; int sum_w25; int sum_w26; int sum_w27; int sum_w28; int sum_w29; int sum_w3; int sum_w30; int sum_w31; int sum_w32; int sum_w33; int sum_w34; int sum_w35; int sum_w36; int sum_w37; int sum_w38; int sum_w39; int sum_w4; int sum_w40; int sum_w41; int sum_w42; int sum_w43; int sum_w44; int sum_w45; int sum_w46; int sum_w47; int sum_w48; int sum_w49; int sum_w5; int sum_w50; int sum_w51; int sum_w52; int sum_w53; int sum_w54; int sum_w55; int sum_w56; int sum_w57; int sum_w58; int sum_w59; int sum_w6; int sum_w60; int sum_w61; int sum_w62; int sum_w63; int sum_w64; int sum_w65; int sum_w66; int sum_w67; int sum_w68; int sum_w69; int sum_w7; int sum_w70; int sum_w71; int sum_w72; int sum_w73; int sum_w74; int sum_w75; int sum_w76; int sum_w77; int sum_w78; int sum_w79; int sum_w8; int sum_w80; int sum_w81; int sum_w82; int sum_w83; int sum_w84; int sum_w85; int sum_w86; int sum_w87; int sum_w88; int sum_w89; int sum_w9; int sum_w90; int sum_w91; int sum_w92; int sum_w93; int sum_w94; int sum_w95; int sum_w96; int sum_w97; int sum_w98; int sum_w99; int temp_l83_i10_w1; int temp_l83_i11_w1; int temp_l83_i12_w1; int temp_l83_i13_w1; int temp_l83_i1998_w1; int temp_l83_i1999_w1; int temp_l83_i1_w1; int temp_l83_i2000_w1; int temp_l83_i2_w1; int temp_l83_i3_w1; int temp_l83_i4_w1; int temp_l83_i5_w1; int temp_l83_i6_w1; int temp_l83_i7_w1; int temp_l83_i8_w1; int temp_l83_i9_w1; // Initialization done sum_w137 = sum_array_0[0] + sum_array_0[1]; sum_w114 = sum_array_0[2] + sum_array_0[3]; sum_w115 = sum_array_0[4] + sum_array_0[5]; sum_w69 = sum_array_0[6] + sum_array_0[7]; sum_w70 = sum_array_0[8] + sum_array_0[9]; sum_w130 = sum_array_0[10] + sum_array_0[11]; sum_w131 = sum_array_0[12] + sum_array_0[13]; sum_w61 = sum_array_0[14] + sum_array_0[15]; sum_w62 = sum_array_0[16] + sum_array_0[17]; sum_w21 = sum_array_0[18] + sum_array_0[19]; sum_w22 = sum_array_0[20] + sum_array_0[21]; sum_w29 = sum_array_0[22] + sum_array_0[23]; sum_w30 = sum_array_0[24] + sum_array_0[25]; sum_w92 = sum_array_0[26] + sum_array_0[27]; sum_w93 = sum_array_0[28] + sum_array_0[29]; sum_w37 = sum_array_0[30] + sum_array_1[0]; sum_w38 = sum_array_1[1] + sum_array_1[2]; sum_w3 = sum_array_1[3] + sum_array_1[4]; sum_w4 = sum_array_1[5] + sum_array_1[6]; sum_w118 = sum_array_1[7] + sum_array_1[8]; sum_w119 = sum_array_1[9] + sum_array_1[10]; sum_w132 = sum_array_1[11] + sum_array_1[12]; sum_w133 = sum_array_1[13] + sum_array_1[14]; sum_w106 = sum_array_1[15] + sum_array_1[16]; sum_w107 = sum_array_1[17] + sum_array_1[18]; sum_w82 = sum_array_1[19] + sum_array_1[20]; sum_w83 = sum_array_1[21] + sum_array_1[22]; sum_w100 = sum_array_1[23] + sum_array_1[24]; sum_w101 = sum_array_1[25] + sum_array_1[26]; sum_w27 = sum_array_1[27] + sum_array_1[28]; sum_w28 = sum_array_1[29] + sum_array_1[30]; sum_w84 = sum_array_2[0] + sum_array_2[1]; sum_w85 = sum_array_2[2] + sum_array_2[3]; sum_w41 = sum_array_2[4] + sum_array_2[5]; sum_w42 = sum_array_2[6] + sum_array_2[7]; sum_w39 = sum_array_2[8] + sum_array_2[9]; sum_w40 = sum_array_2[10] + sum_array_2[11]; sum_w35 = sum_array_2[12] + sum_array_2[13]; sum_w36 = sum_array_2[14] + sum_array_2[15]; sum_w49 = sum_array_2[16] + sum_array_2[17]; sum_w50 = sum_array_2[18] + sum_array_2[19]; sum_w112 = sum_array_2[20] + sum_array_2[21]; sum_w113 = sum_array_2[22] + sum_array_2[23]; sum_w63 = sum_array_2[24] + sum_array_2[25]; sum_w64 = sum_array_2[26] + sum_array_2[27]; sum_w55 = sum_array_2[28] + sum_array_2[29]; sum_w56 = sum_array_2[30] + sum_array_3[0]; sum_w77 = sum_array_3[1] + sum_array_3[2]; sum_w78 = sum_array_3[3] + sum_array_3[4]; sum_w53 = sum_array_3[5] + sum_array_3[6]; sum_w54 = sum_array_3[7] + sum_array_3[8]; sum_w88 = sum_array_3[9] + sum_array_3[10]; sum_w89 = sum_array_3[11] + sum_array_3[12]; sum_w5 = sum_array_3[13] + sum_array_3[14]; sum_w6 = sum_array_3[15] + sum_array_3[16]; sum_w17 = sum_array_3[17] + sum_array_3[18]; sum_w18 = sum_array_3[19] + sum_array_3[20]; sum_w13 = sum_array_3[21] + sum_array_3[22]; sum_w14 = sum_array_3[23] + sum_array_3[24]; sum_w45 = sum_array_3[25] + sum_array_3[26]; sum_w46 = sum_array_3[27] + sum_array_3[28]; sum_w16 = sum_array_3[29] + sum_array_3[30]; temp_l83_i1_w1 = x_0[0] * y_0[0]; temp_l83_i2_w1 = x_0[1] * y_0[1]; temp_l83_i3_w1 = x_0[2] * y_0[2]; temp_l83_i4_w1 = x_0[3] * y_0[3]; temp_l83_i5_w1 = x_0[4] * y_0[4]; temp_l83_i6_w1 = x_0[5] * y_0[5]; temp_l83_i7_w1 = x_0[6] * y_0[6]; temp_l83_i8_w1 = x_0[7] * y_0[7]; temp_l83_i9_w1 = x_0[8] * y_0[8]; temp_l83_i10_w1 = x_0[9] * y_0[9]; temp_l83_i11_w1 = x_0[10] * y_0[10]; temp_l83_i12_w1 = x_0[11] * y_0[11]; temp_l83_i13_w1 = x_0[12] * y_0[12]; temp_l83_i1998_w1 = x_5[0] * y_5[0]; temp_l83_i1999_w1 = x_5[1] * y_5[1]; temp_l83_i2000_w1 = x_5[2] * y_5[2]; sum_w123 = sum_w100 + sum_w101; sum_w125 = sum_w106 + sum_w107; sum_w47 = sum_w112 + sum_w113; sum_w9 = sum_w114 + sum_w115; sum_w32 = sum_w118 + sum_w119; sum_w59 = sum_w13 + sum_w14; sum_w110 = sum_w130 + sum_w131; sum_w124 = sum_w132 + sum_w133; sum_w103 = sum_w17 + sum_w18; sum_w80 = sum_w21 + sum_w22; sum_w7 = sum_w27 + sum_w28; sum_w81 = sum_w29 + sum_w30; sum_w31 = sum_w3 + sum_w4; sum_w71 = sum_w35 + sum_w36; sum_w44 = sum_w37 + sum_w38; sum_w139 = sum_w39 + sum_w40; sum_w138 = sum_w41 + sum_w42; sum_w60 = sum_w45 + sum_w46; sum_w72 = sum_w49 + sum_w50; sum_w102 = sum_w5 + sum_w6; sum_w90 = sum_w53 + sum_w54; sum_w33 = sum_w55 + sum_w56; sum_w111 = sum_w61 + sum_w62; sum_w48 = sum_w63 + sum_w64; sum_w10 = sum_w69 + sum_w70; sum_w34 = sum_w77 + sum_w78; sum_w122 = sum_w82 + sum_w83; sum_w8 = sum_w84 + sum_w85; sum_w91 = sum_w88 + sum_w89; sum_w43 = sum_w92 + sum_w93; sum_w128 = temp_l83_i10_w1 + temp_l83_i11_w1; sum_w129 = temp_l83_i12_w1 + temp_l83_i13_w1; sum_w15 = temp_l83_i1998_w1 + temp_l83_i1999_w1; sum_w94 = 0 + temp_l83_i1_w1; sum_w134 = temp_l83_i2_w1 + temp_l83_i3_w1; sum_w135 = temp_l83_i4_w1 + temp_l83_i5_w1; sum_w86 = temp_l83_i6_w1 + temp_l83_i7_w1; sum_w87 = temp_l83_i8_w1 + temp_l83_i9_w1; sum_w20 = sum_w102 + sum_w103; sum_w117 = sum_w110 + sum_w111; sum_w67 = sum_w122 + sum_w123; sum_w74 = sum_w124 + sum_w125; sum_w99 = sum_w128 + sum_w129; sum_w95 = sum_w134 + sum_w135; sum_w1 = sum_w138 + sum_w139; sum_w11 = sum_w16 + sum_w15; sum_w73 = sum_w31 + sum_w32; sum_w97 = sum_w33 + sum_w34; sum_w109 = sum_w43 + sum_w44; sum_w96 = sum_w47 + sum_w48; sum_w12 = sum_w59 + sum_w60; sum_w68 = sum_w7 + sum_w8; sum_w2 = sum_w71 + sum_w72; sum_w108 = sum_w80 + sum_w81; sum_w98 = sum_w86 + sum_w87; sum_w116 = sum_w9 + sum_w10; sum_w19 = sum_w90 + sum_w91; sum_w23 = sum_w1 + sum_w2; sum_w58 = sum_w108 + sum_w109; sum_w76 = sum_w12 + sum_w11; sum_w57 = sum_w116 + sum_w117; sum_w75 = sum_w19 + sum_w20; sum_w127 = sum_w67 + sum_w68; sum_w126 = sum_w73 + sum_w74; sum_w51 = sum_w94 + sum_w95; sum_w24 = sum_w96 + sum_w97; sum_w52 = sum_w98 + sum_w99; sum_w121 = sum_w126 + sum_w127; sum_w65 = sum_w23 + sum_w24; sum_w136 = sum_w51 + sum_w52; sum_w120 = sum_w57 + sum_w58; sum_w66 = sum_w75 + sum_w76; sum_w25 = sum_w120 + sum_w121; sum_w104 = sum_w136 + sum_w137; sum_w26 = sum_w65 + sum_w66; sum_w105 = sum_w25 + sum_w26; sum_w79 = sum_w104 + sum_w105; *out = sum_w79 + temp_l83_i2000_w1; } void dotprod_parallel4(short y_0[13], short y_1[496], short y_2[496], short y_3[496], short y_4[496], short y_5[3], short x_0[13], short x_1[496], short x_2[496], short x_3[496], short x_4[496], short x_5[3], int *out) { // Step 2: Initialize local variables int sum_array_0[31]; int sum_array_1[31]; int sum_array_2[31]; int sum_array_3[31]; #pragma HLS ARRAY_PARTITION variable=y_0 cyclic factor=13 dim=0 #pragma HLS ARRAY_PARTITION variable=y_1 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=y_2 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=y_3 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=y_4 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=y_5 cyclic factor=3 dim=0 #pragma HLS ARRAY_PARTITION variable=x_0 cyclic factor=13 dim=0 #pragma HLS ARRAY_PARTITION variable=x_1 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=x_2 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=x_3 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=x_4 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=x_5 cyclic factor=3 dim=0 #pragma HLS ARRAY_PARTITION variable=sum_array_0 cyclic factor=2 dim=0 #pragma HLS ARRAY_PARTITION variable=sum_array_1 cyclic factor=2 dim=0 #pragma HLS ARRAY_PARTITION variable=sum_array_2 cyclic factor=2 dim=0 #pragma HLS ARRAY_PARTITION variable=sum_array_3 cyclic factor=2 dim=0 // Initialization done #pragma HLS dataflow parallel_0(x_1,y_1,sum_array_0); parallel_0(x_2,y_2,sum_array_1); parallel_0(x_3,y_3,sum_array_2); parallel_0(x_4,y_4,sum_array_3); epilogue(sum_array_3,sum_array_2,x_0,y_0,y_5,sum_array_1,x_5,sum_array_0,out); }
the_stack_data/130868.c
/* { dg-do compile } */ typedef float __m128 __attribute__ ((__vector_size__ (16))); __extension__ typedef __PTRDIFF_TYPE__ ptrdiff_t; extern void foo (__m128 *); extern void abort (void); __m128 y = { 0.0, 1.0, 2.0, 3.0 }; void bar (__m128 *x, int align) { if ((((ptrdiff_t) x) & (align - 1)) != 0) abort (); if (__builtin_memcmp (x, &y, sizeof (y)) != 0) abort (); } int main () { foo (&y); return 0; }
the_stack_data/9514.c
// On Mac / Linux this can be compiled with "gcc GK6X-gui-host.c" // On Windows this can be compiled with "cl GK6X-gui-host.c /link /SUBSYSTEM:WINDOWS /ENTRY:"mainCRTStartup" /out:../Build/GK6X-gui-host.exe" (via Visual Studio dev tools cmd) // - Download .NET Core https://github.com/dotnet/core#download-the-latest-net-core-sdk // - Copy "/shared/Microsoft.NETCore.App/X.X.X/" to "/Build/CoreCLR" // - Run the GK6X-gui-host binary // GK6X-gui.bat builds GK6X in GUI mode (no console). GK6X-gui-host.c is used to host that GUI within a native application under .NET Core (portability) // Linux build instruction // make // or if you do not have make // sh GK6X-gui.sh // This is basically a copy of the coreclr hosts but in C rather than C++ // https://github.com/dotnet/coreclr/blob/master/src/coreclr/hosts #define ASSEMBLY_NAME "GK6X-gui" #define ASSEMBLY_SUFFIX ".exe" #define ASSEMBLY_ENTRY_POINT_CLASS "GK6X.Program" #define ASSEMBLY_ENTRY_POINT_METHOD "DllMain" #if defined(WIN32) || defined(_WIN32) || defined(__WIN32) #define PLATFORM_WINDOWS 1 #else #define PLATFORM_WINDOWS 0 #endif #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include <limits.h> #if defined(__linux__) // PATH_MAX is defined in linux/limits.h #include <linux/limits.h> #endif #include <sys/stat.h> #if PLATFORM_WINDOWS #include <windows.h> #else #include <dlfcn.h> #endif #ifndef HRESULT #define HRESULT int #endif #ifndef SUCCEEDED #define SUCCEEDED(hr) ((hr) >= 0) #endif #ifndef FAILED #define FAILED(hr) ((hr) < 0) #endif #if PLATFORM_WINDOWS #define PATH_MAX MAX_PATH #define CORE_CLR_DLL "coreclr.dll" #define CORE_CLR_DLL_CALLCONV WINAPI #define CORE_CLR_FILE_SPLIT ";" #define SLASH_CHAR '\\' #define SLASH_CHAR_STR "\\" #else #define CORE_CLR_DLL "libcoreclr.dylib" #define CORE_CLR_DLL_CALLCONV #define CORE_CLR_FILE_SPLIT ":" #define SLASH_CHAR '/' #define SLASH_CHAR_STR "/" #endif typedef int(CORE_CLR_DLL_CALLCONV *import__coreclr_initialize)(const char* exePath, const char* appDomainFriendlyName, int propertyCount, const char** propertyKeys, const char** propertyValues, void** hostHandle, unsigned int* domainId); typedef int(CORE_CLR_DLL_CALLCONV *import__coreclr_shutdown)(void* hostHandle, unsigned int domainId); typedef int(CORE_CLR_DLL_CALLCONV *import__coreclr_shutdown_2)(void* hostHandle, unsigned int domainId, int* latchedExitCode); typedef int(CORE_CLR_DLL_CALLCONV *import__coreclr_create_delegate)(void* hostHandle, unsigned int domainId, const char* entryPointAssemblyName, const char* entryPointTypeName, const char* entryPointMethodName, void** delegate); typedef int(CORE_CLR_DLL_CALLCONV *import__coreclr_execute_assembly)(void* hostHandle, unsigned int domainId, int argc, const char** argv, const char* managedAssemblyPath, unsigned int* exitCode); import__coreclr_initialize coreclr_initialize; import__coreclr_shutdown coreclr_shutdown; import__coreclr_shutdown_2 coreclr_shutdown_2; import__coreclr_create_delegate coreclr_create_delegate; import__coreclr_execute_assembly coreclr_execute_assembly; // The signature of the C# entry point method typedef int(*ManagedEntryPointSig)(const char* arg); void* LoadDll(char* path) { #if PLATFORM_WINDOWS return LoadLibrary(path); #else return dlopen(path, RTLD_NOW | RTLD_LOCAL); #endif } void* GetDllExport(void* handle, const char* path) { #if PLATFORM_WINDOWS return GetProcAddress(handle, path); #else return dlsym(handle, path); #endif } int FileExists(char* path) { #if PLATFORM_WINDOWS WIN32_FIND_DATA findFileData; HANDLE handle = FindFirstFile(path, &findFileData); int found = handle != INVALID_HANDLE_VALUE; if (found) { FindClose(handle); } return found; #else struct stat sb; return stat(path, &sb) != -1; #endif } char* GetFullPath(const char* path, char* resolvedPath) { #if PLATFORM_WINDOWS return _fullpath(resolvedPath, path, PATH_MAX); #else return realpath(path, resolvedPath); #endif } int main(int argc, const char** argv) { if (argc < 1) { printf("Invalid args.\n"); return 0; } char dirPath[PATH_MAX+1]; char currentBinaryPath[PATH_MAX+1]; char coreCrlDir[PATH_MAX+1]; char coreCrlDllPath[PATH_MAX+1]; char assemblyDir[PATH_MAX+1]; char assemblyPath[PATH_MAX+1]; if (GetFullPath(*argv, currentBinaryPath) == NULL) { printf("Failed to find path of the binary '%s'.\n", *argv); return 0; } strcpy(dirPath, currentBinaryPath); size_t len = strlen(dirPath); char* dirPathEnd = strrchr(dirPath, SLASH_CHAR); if (dirPathEnd == NULL) { printf("Invalid binary path '%s'.\n", dirPath); return 0; } *dirPathEnd = '\0'; // Need the assembly directory for APP_PATHS strncpy(assemblyDir, dirPath, sizeof(assemblyDir)); snprintf(assemblyPath, sizeof(assemblyPath), "%s%s%s%s", assemblyDir, SLASH_CHAR_STR, ASSEMBLY_NAME, ASSEMBLY_SUFFIX); if (!FileExists(assemblyPath)) { printf("Failed to find managed assembly '%s'.\n", assemblyPath); return 0; } // Need the .NET Core directory for APP_PATHS snprintf(coreCrlDir, sizeof(coreCrlDir), "%s%s%s", dirPath, SLASH_CHAR_STR, "CoreCLR"); snprintf(coreCrlDllPath, sizeof(coreCrlDllPath), "%s%s%s", coreCrlDir, SLASH_CHAR_STR, CORE_CLR_DLL); if (!FileExists(coreCrlDllPath)) { printf("Failed to find .NET Core '%s'.\n", coreCrlDllPath); return 0; } void* dllHandle = LoadDll(coreCrlDllPath); if (dllHandle == NULL) { printf("Failed to load .NET Core.\n"); return 0; } coreclr_initialize = (import__coreclr_initialize)GetDllExport(dllHandle, "coreclr_initialize"); coreclr_shutdown = (import__coreclr_shutdown)GetDllExport(dllHandle, "coreclr_shutdown"); coreclr_shutdown_2 = (import__coreclr_shutdown_2)GetDllExport(dllHandle, "coreclr_shutdown_2"); coreclr_create_delegate = (import__coreclr_create_delegate)GetDllExport(dllHandle, "coreclr_create_delegate"); coreclr_execute_assembly = (import__coreclr_execute_assembly)GetDllExport(dllHandle, "coreclr_execute_assembly"); if (coreclr_initialize == NULL || coreclr_shutdown == NULL || coreclr_shutdown_2 == NULL || coreclr_create_delegate == NULL || coreclr_execute_assembly == NULL) { printf("Failed to find .NET Core functions.\n"); return 0; } // Use both the CoreCLR directory and the target assembly directory for APP_PATHS so that // it can resolve CoreCLR system assemblies char appPaths[0x10000] = {0}; snprintf(appPaths, sizeof(appPaths), "%s%s%s", coreCrlDir, CORE_CLR_FILE_SPLIT, assemblyDir); // We may need to trust more assemblies, for now just add our target assembly char trustedAssemblies[0x10000] = {0}; strncpy(trustedAssemblies, assemblyPath, sizeof(trustedAssemblies)); const char* propertyKeys[] = { "TRUSTED_PLATFORM_ASSEMBLIES", "APP_PATHS" }; const char* propertyValues[] = { // TRUSTED_PLATFORM_ASSEMBLIES trustedAssemblies, // APP_PATHS appPaths }; void* coreCLRHandle; unsigned int domainId = 0; int hr = coreclr_initialize( currentBinaryPath, "GK6XAppDomain", sizeof(propertyValues) / sizeof(char*), propertyKeys, propertyValues, &coreCLRHandle, &domainId); if (FAILED(hr)) { printf("oreclr_initialize failed. ErrorCode: 0x%08x (%u)\n\n" "TRUSTED_PLATFORM_ASSEMBLIES: %s\n\nAPP_PATHS: %s\n\nCurrent exe path: %s\n", hr, hr, trustedAssemblies, appPaths, currentBinaryPath); return 0; } ManagedEntryPointSig entryPoint; hr = coreclr_create_delegate( coreCLRHandle, domainId, ASSEMBLY_NAME, ASSEMBLY_ENTRY_POINT_CLASS, ASSEMBLY_ENTRY_POINT_METHOD, (void**)(&entryPoint)); if (FAILED(hr)) { printf("coreclr_create_delegate failed. ErrorCode: 0x%08x (%u)\n", hr, hr); return 0; } entryPoint(NULL); return 0; }
the_stack_data/210385.c
#include <stdio.h> #include <float.h> int main() { printf("Storage size for long double : %lu \n", sizeof(long double)); printf("Minimum float positive value: %LE\n", LDBL_MIN ); printf("Maximum float positive value: %LE\n", LDBL_MAX ); printf("Precision value: %d\n", LDBL_DIG ); return 0; }
the_stack_data/59513163.c
//Usando switch, escreva um programa que leia um //inteiro entre 1 e 7 //imprima o dia //da semana correspondente a este numero. //Isto é, domingo se 1, //segunda-feira se 2, e //assim por diante. #include <stdio.h> #include <locale.h> int main(){ int opcao; scanf("%d", &opcao); switch(opcao){ case 1:printf("Segunda\n"); break; case 2:printf("Terca\n"); break; case 3:printf("Quarta\n"); break; case 4:printf("Quinta\n"); break; case 5:printf("Sexta\n"); break; case 6:printf("Sábado\n"); break; case 7:printf("Domingo\n"); break; default:printf("Invalido\n"); break; } return 0; }
the_stack_data/1083717.c
#include <errno.h> #include <unistd.h> int rename( const char* oldpath, const char* newpath ) { printf( "TODO: rename not yet implemented! (from: %s to: %s)\n", oldpath, newpath ); errno = -ENOSYS; return -1; }
the_stack_data/64201361.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) */ /* Table of constant values */ static integer c__1 = 1; /* > \brief <b> SSPEV computes the eigenvalues and, optionally, the left and/or right eigenvectors for OTHER m atrices</b> */ /* =========== DOCUMENTATION =========== */ /* Online html documentation available at */ /* http://www.netlib.org/lapack/explore-html/ */ /* > \htmlonly */ /* > Download SSPEV + dependencies */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/sspev.f "> */ /* > [TGZ]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/sspev.f "> */ /* > [ZIP]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/sspev.f "> */ /* > [TXT]</a> */ /* > \endhtmlonly */ /* Definition: */ /* =========== */ /* SUBROUTINE SSPEV( JOBZ, UPLO, N, AP, W, Z, LDZ, WORK, INFO ) */ /* CHARACTER JOBZ, UPLO */ /* INTEGER INFO, LDZ, N */ /* REAL AP( * ), W( * ), WORK( * ), Z( LDZ, * ) */ /* > \par Purpose: */ /* ============= */ /* > */ /* > \verbatim */ /* > */ /* > SSPEV computes all the eigenvalues and, optionally, eigenvectors of a */ /* > real symmetric matrix A in packed storage. */ /* > \endverbatim */ /* Arguments: */ /* ========== */ /* > \param[in] JOBZ */ /* > \verbatim */ /* > JOBZ is CHARACTER*1 */ /* > = 'N': Compute eigenvalues only; */ /* > = 'V': Compute eigenvalues and eigenvectors. */ /* > \endverbatim */ /* > */ /* > \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 order of the matrix A. N >= 0. */ /* > \endverbatim */ /* > */ /* > \param[in,out] AP */ /* > \verbatim */ /* > AP is REAL array, dimension (N*(N+1)/2) */ /* > On entry, the upper or lower triangle of the symmetric matrix */ /* > A, packed columnwise in a linear array. The j-th column of A */ /* > is stored in the array AP as follows: */ /* > if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; */ /* > if UPLO = 'L', AP(i + (j-1)*(2*n-j)/2) = A(i,j) for j<=i<=n. */ /* > */ /* > On exit, AP is overwritten by values generated during the */ /* > reduction to tridiagonal form. If UPLO = 'U', the diagonal */ /* > and first superdiagonal of the tridiagonal matrix T overwrite */ /* > the corresponding elements of A, and if UPLO = 'L', the */ /* > diagonal and first subdiagonal of T overwrite the */ /* > corresponding elements of A. */ /* > \endverbatim */ /* > */ /* > \param[out] W */ /* > \verbatim */ /* > W is REAL array, dimension (N) */ /* > If INFO = 0, the eigenvalues in ascending order. */ /* > \endverbatim */ /* > */ /* > \param[out] Z */ /* > \verbatim */ /* > Z is REAL array, dimension (LDZ, N) */ /* > If JOBZ = 'V', then if INFO = 0, Z contains the orthonormal */ /* > eigenvectors of the matrix A, with the i-th column of Z */ /* > holding the eigenvector associated with W(i). */ /* > If JOBZ = 'N', then Z is not referenced. */ /* > \endverbatim */ /* > */ /* > \param[in] LDZ */ /* > \verbatim */ /* > LDZ is INTEGER */ /* > The leading dimension of the array Z. LDZ >= 1, and if */ /* > JOBZ = 'V', LDZ >= f2cmax(1,N). */ /* > \endverbatim */ /* > */ /* > \param[out] WORK */ /* > \verbatim */ /* > WORK is REAL array, dimension (3*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 algorithm failed to converge; i */ /* > off-diagonal elements of an intermediate tridiagonal */ /* > form did not converge to zero. */ /* > \endverbatim */ /* Authors: */ /* ======== */ /* > \author Univ. of Tennessee */ /* > \author Univ. of California Berkeley */ /* > \author Univ. of Colorado Denver */ /* > \author NAG Ltd. */ /* > \date December 2016 */ /* > \ingroup realOTHEReigen */ /* ===================================================================== */ /* Subroutine */ int sspev_(char *jobz, char *uplo, integer *n, real *ap, real *w, real *z__, integer *ldz, real *work, integer *info) { /* System generated locals */ integer z_dim1, z_offset, i__1; real r__1; /* Local variables */ integer inde; real anrm; integer imax; real rmin, rmax, sigma; extern logical lsame_(char *, char *); integer iinfo; extern /* Subroutine */ int sscal_(integer *, real *, real *, integer *); logical wantz; integer iscale; extern real slamch_(char *); real safmin; extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen); real bignum; integer indtau, indwrk; extern real slansp_(char *, char *, integer *, real *, real *); extern /* Subroutine */ int ssterf_(integer *, real *, real *, integer *); real smlnum; extern /* Subroutine */ int sopgtr_(char *, integer *, real *, real *, real *, integer *, real *, integer *), ssptrd_(char *, integer *, real *, real *, real *, real *, integer *), ssteqr_(char *, integer *, real *, real *, real *, integer *, real *, integer *); real eps; /* -- 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 */ --ap; --w; z_dim1 = *ldz; z_offset = 1 + z_dim1 * 1; z__ -= z_offset; --work; /* Function Body */ wantz = lsame_(jobz, "V"); *info = 0; if (! (wantz || lsame_(jobz, "N"))) { *info = -1; } else if (! (lsame_(uplo, "U") || lsame_(uplo, "L"))) { *info = -2; } else if (*n < 0) { *info = -3; } else if (*ldz < 1 || wantz && *ldz < *n) { *info = -7; } if (*info != 0) { i__1 = -(*info); xerbla_("SSPEV ", &i__1, (ftnlen)6); return 0; } /* Quick return if possible */ if (*n == 0) { return 0; } if (*n == 1) { w[1] = ap[1]; if (wantz) { z__[z_dim1 + 1] = 1.f; } return 0; } /* Get machine constants. */ safmin = slamch_("Safe minimum"); eps = slamch_("Precision"); smlnum = safmin / eps; bignum = 1.f / smlnum; rmin = sqrt(smlnum); rmax = sqrt(bignum); /* Scale matrix to allowable range, if necessary. */ anrm = slansp_("M", uplo, n, &ap[1], &work[1]); iscale = 0; if (anrm > 0.f && anrm < rmin) { iscale = 1; sigma = rmin / anrm; } else if (anrm > rmax) { iscale = 1; sigma = rmax / anrm; } if (iscale == 1) { i__1 = *n * (*n + 1) / 2; sscal_(&i__1, &sigma, &ap[1], &c__1); } /* Call SSPTRD to reduce symmetric packed matrix to tridiagonal form. */ inde = 1; indtau = inde + *n; ssptrd_(uplo, n, &ap[1], &w[1], &work[inde], &work[indtau], &iinfo); /* For eigenvalues only, call SSTERF. For eigenvectors, first call */ /* SOPGTR to generate the orthogonal matrix, then call SSTEQR. */ if (! wantz) { ssterf_(n, &w[1], &work[inde], info); } else { indwrk = indtau + *n; sopgtr_(uplo, n, &ap[1], &work[indtau], &z__[z_offset], ldz, &work[ indwrk], &iinfo); ssteqr_(jobz, n, &w[1], &work[inde], &z__[z_offset], ldz, &work[ indtau], info); } /* If matrix was scaled, then rescale eigenvalues appropriately. */ if (iscale == 1) { if (*info == 0) { imax = *n; } else { imax = *info - 1; } r__1 = 1.f / sigma; sscal_(&imax, &r__1, &w[1], &c__1); } return 0; /* End of SSPEV */ } /* sspev_ */
the_stack_data/132952202.c
/* * POK header * * The following file is a part of the POK project. Any modification should * be made according to the POK licence. You CANNOT use this file or a part * of a file for your own project. * * For more information on the POK licence, please see our LICENCE FILE * * Please follow the coding guidelines described in doc/CODING_GUIDELINES * * Copyright (c) 2007-2022 POK team */ #ifdef POK_NEEDS_PORTS_SAMPLING #include <core/lockobj.h> #include <core/partition.h> #include <core/sched.h> #include <core/time.h> #include <errno.h> #include <libc.h> #include <middleware/port.h> #include <middleware/queue.h> #include <types.h> extern pok_port_t pok_ports[POK_CONFIG_NB_PORTS]; pok_ret_t pok_port_sampling_read(const pok_port_id_t id, void *data, pok_port_size_t *len, bool_t *valid) { pok_ret_t ret; if (data == NULL) { return POK_ERRNO_EINVAL; } if (id > POK_CONFIG_NB_PORTS) { return POK_ERRNO_EINVAL; } if (!pok_own_port(POK_SCHED_CURRENT_PARTITION, id)) { return POK_ERRNO_PORT; } if (pok_ports[id].ready != TRUE) { return POK_ERRNO_PORT; } if (pok_ports[id].kind != POK_PORT_KIND_SAMPLING) { return POK_ERRNO_EINVAL; } if (pok_ports[id].direction != POK_PORT_DIRECTION_IN) { return POK_ERRNO_MODE; } pok_lockobj_lock(&pok_ports[id].lock, NULL); { uint8_t pid = pok_current_partition; void *ptr = data - pok_partitions[pid].base_addr; uint32_t sz = pok_ports[pid].size; if (!pok_check_ptr_in_partition(pid, ptr, sz)) { return POK_ERRNO_EINVAL; } } ret = pok_port_get((uint8_t)id, data, pok_ports[id].size); if (ret == POK_ERRNO_EMPTY) { pok_lockobj_unlock(&pok_ports[id].lock, NULL); *len = 0; *valid = 0; return POK_ERRNO_EMPTY; } if ((pok_ports[id].last_receive + pok_ports[id].refresh) < POK_GETTICK()) { *valid = FALSE; } else { *valid = TRUE; } *len = pok_ports[id].size; pok_lockobj_unlock(&pok_ports[id].lock, NULL); return POK_ERRNO_OK; } #endif
the_stack_data/1063251.c
//--------------------------------------------------------------------- // match_braces.c // CS223 - Spring 2022 // Identify matched braces from a given file // Name: // #include <stdio.h> #include <stdlib.h> #include <string.h> struct node { char sym; int linenum; int colnum; struct node* next; }; // Push a new node to a stack (implemented as a linked list). // The new node should store the given symbol, line number, and column number // Param sym: a character symbol, '{' for this program // Param line: the line number of the symbol // Param line: the column number of the symbol // Param top: the top node of the stack (NULL if empty) // Returns the new top of the stack struct node* push(char sym, int line, int col, struct node* head) { struct node *n = malloc(sizeof(struct node)); //struct node *ret = head; n->sym = sym; n->linenum = line; n->colnum = col; n->next = NULL; if (head == NULL){ return n; } else { n->next = head; head = n; //while (head->next != NULL){ // head = head->next; //} //head->next = n; } //if (ret==NULL){ // return n; //} return head; } // Pop the top node from a stack (implemented as a linked list) and frees it // Param top: the top node of the current stack (NULL if empty) // Returns the new top of the stack struct node* pop(struct node* head) { if (head == NULL){ return NULL; } struct node *ret = head; if (head->next == NULL){ free(ret); return head; } head = head->next; free(ret); //POPS HEAD SO I CAN'T DO COMP WHEN RETURNED ret = NULL; return head; } // Delete (e.g. free) all nodes in the given stack // Param top: the top node of the stack (NULL if empty) void clear(struct node* head) { struct node *tmp; while (head != NULL){ tmp = head; head = head->next; free(tmp); } } // Print all nodes in the given stack (from top to bottom) // Param top: the top node of the stack (NULL if empty) void print(struct node* head) { while (head != NULL){ printf("%c, %d, %d\n", head->sym, head->linenum, head->colnum); head = head->next; } } int main(int argc, char* argv[]) { FILE *infile = NULL; //stdin; infile = fopen(argv[1], "r"); char getChar = -1; int line = 0; int col = 0; struct node *head = malloc(sizeof(struct node)); struct node *pull = malloc(sizeof(struct node)); struct node *tmp = malloc(sizeof(struct node)); int xloc = 0; int yloc = 0; memset(tmp, 0, sizeof(struct node)); //print usage if user input inocrrect num of command line args if (infile == NULL){ printf("Error: unable to open file %s\n", argv[1]); exit(1); } while (getChar != '\0'){ getChar = getc(infile); col+=1; if (getChar == '\n'){ line+=1; col = 0; } if (getChar == '{'){ head = push(getChar, line, col, tmp); tmp = head; } if (getChar == '}'){ if (head != NULL){ // xloc = head->linenum; //INVALID READ OF SIZE 4 // yloc = head->colnum; //so what's happening is head gets freed later so these become invalid } pull = pop(head); if (pull != NULL){ printf("Found matching braces: (%d, %d) -> (%d, %d)\n", (pull->linenum+1), pull->colnum, xloc, yloc); if (pull->next == NULL){ pull = NULL; } } else { printf("Unmatched brace on Line %d and Column %d\n", (line+1), col); } if (pull == NULL){ head = NULL; tmp = NULL; } else { head = pull; tmp = head; } } } return 0; }
the_stack_data/150140628.c
/* csv2txt * * Transforms CSV input into lines with fields delimited by * a single field separator (TAB by default). * * Usage: csv < input > output {FS} */ #include <stdlib.h> #include <stdio.h> #define select switch #define when break; case #define also case #define otherwise break; default static enum { BEGIN, QUOTED, STRING, CLOSE_QUOTED, CLOSE_STRING } state = BEGIN; #define get(c) (((c) = getc(stdin)) != EOF) #define put(c) putc((c), stdout) static void setIObuf(void) { extern int isatty(int); static char buf1[BUFSIZ], buf2 [BUFSIZ]; if (!isatty(0)) setbuf(stdin, buf1); if (!isatty(1)) setbuf(stdout, buf2); } static void error(const char *msg) { fprintf(stderr, "csv2txt: %s\n", msg); exit(EXIT_FAILURE); } int main(int argc, char *argv[]) { const char rs = '\n'; char fs = '\t'; register int c; if (argc > 1) fs = argv[1][0]; setIObuf(); while (get(c)) { if (c == '\r') continue; if (c == fs) error("output field separator found in input data"); select (state) { when BEGIN: select(c) { when ' ': also '\t': /* nop */; when '"': state = QUOTED; when ',': put('0'); put(fs); when '\n': put('0'); put(rs); otherwise: state = STRING; put(c); } when QUOTED: select(c) { when '"': state = CLOSE_QUOTED; when '\n': error("unexpected end of quoted string"); otherwise: put(c); } when CLOSE_QUOTED: select(c) { when ',': put(fs); state = BEGIN; when '\n': put(rs); state = BEGIN; otherwise: state = QUOTED; put('"'); put(c); } when STRING: select(c) { when ' ': also '\t': state = CLOSE_STRING; when ',': put(fs); state = BEGIN; when '\n': put(rs); state = BEGIN; otherwise: put(c); } when CLOSE_STRING: select(c) { when ' ': also '\t': /* nop */ when ',': put(fs); state = BEGIN; when '\n': put(rs); state = BEGIN; otherwise: error("unexpected end of string"); } otherwise: error("internal error (unexpected state)"); } } if (state != BEGIN) error("unexpected end of data"); return EXIT_SUCCESS; } /* * vim:ts=4:sw=4 */
the_stack_data/23576480.c
#include <stdio.h> #include <stdlib.h> enum Algorithm{ Recycle,FirstFit, NextFit, BestFit }; struct Mem_block{ int startAddr; int length; struct Mem_block *next; }; struct Mem_block *freeMemBlockList; struct Mem_block *tailBlock;// tail node of freeMemBlockList for NextFit to loop lookup struct Mem_block *usingMemBlockList; int nodeNum = 3;//for Next Fit void init(int algorithm){//Init the freeMemBlockList, 3 free blocks in total if(algorithm == BestFit){ struct Mem_block *p; p = (struct Mem_block*)malloc(sizeof(struct Mem_block)); if(p == NULL){ printf("Error!No enough memory to allocate!\n"); } p->startAddr = 400; p->length = 60; freeMemBlockList = p; struct Mem_block *p1 = (struct Mem_block*)malloc(sizeof(struct Mem_block)); if(p1 == NULL){ printf("Error!No enough memory to allocate!\n"); } p1->startAddr = 200; p1->length = 100; p->next = p1; struct Mem_block *p2 = (struct Mem_block*)malloc(sizeof(struct Mem_block)); if(p2 == NULL){ printf("Error!No enough memory to allocate!\n"); } p2->startAddr = 20; p2->length = 120; p1->next = p2; p2->next = NULL; return; } struct Mem_block *p; p = (struct Mem_block*)malloc(sizeof(struct Mem_block)); if(p == NULL){ printf("Error!No enough memory to allocate!\n"); } p->startAddr = 20; p->length = 120; freeMemBlockList = p; struct Mem_block *p1 = (struct Mem_block*)malloc(sizeof(struct Mem_block)); if(p1 == NULL){ printf("Error!No enough memory to allocate!\n"); } p1->startAddr = 200; p1->length = 100; p->next = p1; struct Mem_block *p2 = (struct Mem_block*)malloc(sizeof(struct Mem_block)); if(p2 == NULL){ printf("Error!No enough memory to allocate!\n"); } p2->startAddr = 400; p2->length = 60; //tail node if(algorithm == FirstFit || algorithm == Recycle){ p2->next = NULL; }else if(algorithm == NextFit){ p2->next = freeMemBlockList;//loop nodeNum = 3; } p1->next = p2; tailBlock = p2; } // push --for Best Fit algorithm , order by block size(asc) void pushToFreeBlockList(struct Mem_block *blockToPush){ struct Mem_block *p = freeMemBlockList; if(freeMemBlockList == NULL){ freeMemBlockList = blockToPush; blockToPush->next = NULL; }else{ if(freeMemBlockList->length > blockToPush->length){ blockToPush->next = freeMemBlockList; freeMemBlockList = blockToPush; }else{ while(p->next != NULL){ if(p->next->length > blockToPush->length){ blockToPush->next = p->next; p->next = blockToPush; break; } p = p->next; } if(p->next == NULL){ p->next = blockToPush; blockToPush->next = NULL; } } } } int isNoSpace(){ if(freeMemBlockList == NULL){ return 1; }else{ return 0; } } /* First Fit algorithm begin the search from the head of freeMemBlockList, allocate the first block which will satisfy the need */ void firstFit(int sizeNeed){ if( isNoSpace() ){//No space free printf("OS has NO FREE SPACE NOW !\n"); return; } struct Mem_block *p = freeMemBlockList; struct Mem_block *pr = p; int foundFlag = 0; while(p != NULL){ if(p->length > sizeNeed){//freeBlock length > sizeNeed : allocate the space = sizeNeed p->startAddr = p->startAddr + sizeNeed; p->length = p->length - sizeNeed; foundFlag = 1; break; }else if(p->length == sizeNeed){//freeBlock length = sizeNeed : allocate the whole freeBlock,free the node of the list if(p == freeMemBlockList){//p is the head node freeMemBlockList = p->next; free(p); }else{ pr->next = p->next; free(p); } foundFlag = 1; break; } pr = p; p = p->next; } if(foundFlag){ printf("#---The space you want has been allocated.---#\n"); }else{ printf("#------------NO ENOUGH MEMOTY !--------------#\n"); } } /* Next Fit algorithm begin the search from the next block of th one which has been found at the previous time. */ struct Mem_block *nextToFound; void nextFit(int sizeNeed){ if( isNoSpace() ){//No space free printf("OS has NO FREE SPACE NOW !\n"); return; } struct Mem_block *p = freeMemBlockList; struct Mem_block *pr = NULL; if(p->next != NULL){//while the list has more than 1 node while(p!= NULL){//to find the previous node of 'nextToFound' if(p->next == nextToFound){ pr = p; break; } p = p->next; } } p = nextToFound; int foundFlag = 0; int foundTime = 0;//to avoid endless loop in cycle list while(p != NULL){ foundTime ++; if(p->length > sizeNeed){//freeBlock length > sizeNeed : allocate the space = sizeNeed p->startAddr = p->startAddr + sizeNeed; p->length = p->length - sizeNeed; if(p == tailBlock){ nextToFound = freeMemBlockList;//loop lookup }else{ nextToFound = p->next;///////// } foundFlag = 1; break; }else if(p->length == sizeNeed){//freeBlock length = sizeNeed : allocate the whole freeBlock,free the node of the list if(p == freeMemBlockList){//p is the head node if(p == tailBlock){ nextToFound = NULL; freeMemBlockList = NULL; tailBlock = NULL; }else{ nextToFound = p->next;/////////// freeMemBlockList = p->next; } free(p); }else{ pr->next = p->next; if(p == tailBlock){ nextToFound = freeMemBlockList;//loop lookup tailBlock = pr; tailBlock->next = NULL; }else{ printf("-----------\n"); nextToFound = p->next;///////// } free(p); } foundFlag = 1; nodeNum --; break; } if(foundTime == nodeNum){//Not found the space when it has searched for 1 loop break; } pr = p; p = p->next; } if(foundFlag){ printf("#---The space you want has been allocated.---#\n"); }else{ printf("#------------NO ENOUGH MEMOTY !--------------#\n"); } } void bestFit(int sizeNeed){ if( isNoSpace() ){//No space free printf("OS has NO FREE SPACE NOW !\n"); return; } struct Mem_block *p = freeMemBlockList; struct Mem_block *pr = p; int foundFlag = 0; while(p != NULL){ if(p->length > sizeNeed){//freeBlock length > sizeNeed : allocate the space = sizeNeed p->startAddr = p->startAddr + sizeNeed; p->length = p->length - sizeNeed; //length chaned , reorder:pop the node then push it in struct Mem_block *tmp = p; if(p == freeMemBlockList){// head node freeMemBlockList = p->next;//pop the node pushToFreeBlockList(tmp); //push into printf("---------Reordered01----------\n"); }else{ pr->next = p->next; pushToFreeBlockList(tmp); printf("---------Reordered02----------\n"); } foundFlag = 1; break; }else if(p->length == sizeNeed){//freeBlock length = sizeNeed : allocate the whole freeBlock,free the node of the list if(p == freeMemBlockList){//p is the head node freeMemBlockList = p->next; free(p); }else{ pr->next = p->next; free(p); } foundFlag = 1; break; } pr = p; p = p->next; } if(foundFlag){ printf("#---The space you want has been allocated.---#\n"); }else{ printf("#------------NO ENOUGH MEMOTY !--------------#\n"); } } void displayMemBlockList(){ if( isNoSpace() ){ printf("OS has NO FREE SPACE NOW !\n"); return; }else{ printf("\nFree Memory Block List: \nstartAddr\tlength\n"); } struct Mem_block *p = freeMemBlockList; while(p != NULL){ printf("%6d\t\t%6d\n", p->startAddr, p->length); if(p == tailBlock){ break; } p = p->next; } } void deleteFreeList(){ struct Mem_block *p = freeMemBlockList; if(tailBlock != NULL){// avoid to endless loop tailBlock->next = NULL; } while(p!=NULL){ struct Mem_block *tmp = p; p = p->next; free(tmp); } } void recycleMemBlock(int startAddr, int length){ int endAddr = startAddr + length; int startAlignFlag=0, endAlignFlag=0; struct Mem_block *p = freeMemBlockList; if(p == NULL){// freeList is empty struct Mem_block *p1 = (struct Mem_block *)malloc(sizeof(struct Mem_block)); p1->startAddr = startAddr; p1->length = length; p1->next = NULL; freeMemBlockList = p1; printf("-------Block has been recycled.-------\n"); return; } while(p != NULL){// freeList is not empty if(p->startAddr == endAddr){//the block is aligned with the next free block startAlignFlag = 1; printf("------the block is aligned with the next free block\n"); } int pEndAddr = p->startAddr + p->length; if(pEndAddr == startAddr){//the block is aligned with the previous free block printf("------the block is aligned with the previous free block\n"); endAlignFlag = 1; } p = p->next; } p = freeMemBlockList; if(startAlignFlag==1 && endAlignFlag==0){ printf("-----mark10\n"); while(p != NULL){ if(p->startAddr == endAddr){ p->startAddr = startAddr; p->length = p->length + length; break; } p = p->next; } }else if(startAlignFlag ==0 && endAlignFlag == 1){ printf("-----mark01\n"); while(p != NULL){ int pEndAddr = p->startAddr + p->length; if(pEndAddr == startAddr){ p->length = p->length + length; break; } p = p->next; } }else if(startAlignFlag ==1 && endAlignFlag == 1){ printf("-----mark11\n"); while(p != NULL){ int pEndAddr = p->startAddr + p->length; if(pEndAddr == startAddr){ p->length = p->length + length + p->next->length; struct Mem_block *pNext = p->next; p->next = pNext->next; free(pNext); break; } p = p->next; } }else{// no aligned block, just add a node to the freeMemBlockList printf("-----mark00\n"); struct Mem_block *blockToAdd = (struct Mem_block *)malloc(sizeof(struct Mem_block)); blockToAdd->startAddr = startAddr; blockToAdd->length = length; blockToAdd->next = NULL; struct Mem_block *pr = NULL; while(p != NULL){ if(p->startAddr > startAddr){ if(p == freeMemBlockList){ blockToAdd->next = freeMemBlockList; freeMemBlockList = blockToAdd; }else{ pr->next = blockToAdd; blockToAdd->next = p; } break; } pr = p; p = p->next; } if(p == NULL){//the startAddr of the Block to add is the max addr pr->next = blockToAdd; } } printf("-------Block has been recycled.-------\n"); } void showMenu(){ printf("#------Memory Simulation-----#\n"); printf("#---Address space: 0 ~ 1023 -#\n"); printf("?? which Algorithm do u prefer ??\n"); printf(" 0 --- Recycle\n"); printf(" 1 --- First Fit\n"); printf(" 2 --- Next Fit\n"); printf(" 3 --- Best Fit\n>>"); } int isLegal(int startAddr, int length){ if(startAddr < 0 ){ printf("-------startAddr CANNOT be lower than 0.\n"); return 0; }else if(length < 1){ printf("-------length CANNOT be smaller than 1.\n"); return 0; }else{ return 1; } } int main() { showMenu(); int algorithm = FirstFit; scanf("%d", &algorithm); init(algorithm); nextToFound = freeMemBlockList;//init for the Next Fit algorithm int sizeNeed = 0; int startAddr = 0,length = 0;// for recycle int RecycleTestFlag = 0; if(algorithm == Recycle){ RecycleTestFlag = 1; sizeNeed = 1; } while(1){ displayMemBlockList(); if(! RecycleTestFlag){ printf("input the size of the space you want:-->>"); scanf("%d", &sizeNeed); } if(sizeNeed < 1){ if(sizeNeed == 0) { printf("\nCongratulations!!! U have found the backdoor of this program. Simulation is refreshing...\n"); showMenu(); scanf("%d", &algorithm); if(algorithm == Recycle){ RecycleTestFlag = 1; sizeNeed = 1; } deleteFreeList(); printf("--------------------freeList deleted\n"); init(algorithm); printf("--------------------init finished\n"); }else{ printf("THe size CAN'T be smaller than 1 !\n"); } }else{ switch (algorithm){ case Recycle: startAddr = 0,length = 0; printf("input the [StartAddr length] of the memory block u want to recycle:\n>> "); scanf("%d%d", &startAddr, &length); if( ! isLegal(startAddr, length)){ continue; } recycleMemBlock(startAddr, length); break; case FirstFit: firstFit(sizeNeed); break; case NextFit: nextFit(sizeNeed); break; case BestFit: bestFit(sizeNeed); break; default: firstFit(sizeNeed); } } }//end of while displayMemBlockList(); return 0; }
the_stack_data/87636767.c
#include<stdio.h> int main() { char n; printf("Enter the first letter of your name:"); n= getchar(); printf("The first name of your name is:%c\n", n); return 0; }
the_stack_data/53940.c
/* A simple echo server using TCP */ #include <stdio.h> #include <sys/types.h> #include <sys/unistd.h> #include <sys/socket.h> #include <netinet/in.h> #include <sys/signal.h> #include <sys/wait.h> #include <stdlib.h> #include <strings.h> #include <string.h> #define SERVER_TCP_PORT 3000 /* well-known port */ #define BUFLEN 100 /* buffer length */ int echod(int); void reaper(int); int main(int argc, char **argv) { int sd, new_sd, client_len, port; struct sockaddr_in server, client; switch(argc){ case 1: port = SERVER_TCP_PORT; break; case 2: port = atoi(argv[1]); break; default: fprintf(stderr, "Usage: %s [port]\n", argv[0]); exit(1); } /* Create a stream socket */ if ((sd = socket(AF_INET, SOCK_STREAM, 0)) == -1) { fprintf(stderr, "Can't creat a socket\n"); exit(1); } /* Bind an address to the socket */ bzero((char *)&server, sizeof(struct sockaddr_in)); server.sin_family = AF_INET; server.sin_port = htons(port); server.sin_addr.s_addr = htonl(INADDR_ANY); if (bind(sd, (struct sockaddr *)&server, sizeof(server)) == -1){ fprintf(stderr, "Can't bind name to socket\n"); exit(1); } /* queue up to 5 connect requests */ listen(sd, 5); (void) signal(SIGCHLD, reaper); while(1) { client_len = sizeof(client); new_sd = accept(sd, (struct sockaddr *)&client, &client_len); if(new_sd < 0){ fprintf(stderr, "Can't accept client \n"); exit(1); } switch (fork()){ case 0: /* child */ (void) close(sd); exit(echod(new_sd)); default: /* parent */ (void) close(new_sd); break; case -1: fprintf(stderr, "fork: error\n"); } } } /* echod program */ int echod(int sd) { char *bp, buf[BUFLEN]; int n, bytes_to_read; FILE *fp; char str[1000]; char* filename; // return from read, filename = filename inputted by client read(sd, filename, BUFLEN); // need to read to get the file name // try to open file, if NULL, file doesn't exist fp = fopen(filename, "r"); // open the file if(fp == NULL) { fclose(fp); write(sd, "File does not exist.\n", BUFLEN); close(sd); return(0); } else { write(sd, "", BUFLEN); } // start uploading file to client printf("Uploading: %s \n", filename); while(fgets(buf, BUFLEN, fp) != NULL) // get file until file ends { write(sd, buf, BUFLEN); } close(sd); fclose(fp); // close the file return(0); } /* reaper */ void reaper(int sig) { int status; while(wait3(&status, WNOHANG, (struct rusage *)0) >= 0); }
the_stack_data/45450790.c
/* PR target/66112 */ /* { dg-do compile } */ /* { dg-options "-O2" } */ unsigned int foo (long long a, long long b) { unsigned int res; a &= ~0U; b &= ~0U; if (__builtin_mul_overflow (a, b, &res)) res = 0x123U; return res; } /* { dg-final { scan-assembler "jn?o\[ \t\]" } } */
the_stack_data/237641948.c
#include <stdio.h> // Returns -1 on error, > 0 on success int get_least_common_multiple(int a, int b) { int maximum = 0; if (a <= 0 || b <= 0) { return -1; } maximum = (a > b)? a : b; while (1) { if ((maximum % a == 0) && (maximum % b == 0)) { break; } maximum++; } return maximum; } int main() { int a = 0; int b = 0; int least_common_multiple = 0; while (1) { printf("Provide two integers: \n"); scanf("%d %d", &a, &b); if (-1 == (least_common_multiple = get_least_common_multiple(a, b))) { fprintf(stderr, "Failed to get least common multiple for %d and %d!\n", a, b); continue; } printf("The least common multiple of %d and %d is %d\n", a, b, least_common_multiple); } return 0; }
the_stack_data/284316.c
#include <stdio.h> #include <stdlib.h> int main(int argc, char **argv){ if (argc != 3) { fprintf(stderr,"\nusage txt2svm <P1> <P2>\n"); fprintf(stderr,"\nP1: input file name in the OPF ASCII format"); fprintf(stderr,"\nP2: output file name in the OPF binary format\n"); exit(-1); } printf("\nProgram to convert files written in the OPF ASCII format to the SVM data format."); FILE *fpIn = NULL,*fpOut = NULL; int n, ndata, nclasses, i,j, id,label; float aux; size_t result; fpIn = fopen(argv[1],"r"); fpOut = fopen(argv[2],"wb"); /*writting the number of samples*/ result = fscanf(fpIn,"%d",&n); printf("\nnobjects: %d",n); //result = fwrite(&n,sizeof(int),1,fpOut); /*writting the number of classes*/ result = fscanf(fpIn,"%d",&nclasses); printf("\nnclasses: %d",nclasses); //result = fwrite(&nclasses,sizeof(int),1,fpOut); /*writting the number of features*/ result = fscanf(fpIn,"%d",&ndata); printf("\nndata: %d\n",ndata); //result = fwrite(&ndata,sizeof(int),1,fpOut); /*writting data*/ for(i = 0; i < n; i++) { result = fscanf(fpIn,"%d",&id); //fwrite(&id,sizeof(int),1,fpOut); //printf("%d ",id); result = fscanf(fpIn,"%d",&label); fprintf(fpOut,"%d ",label); //fwrite(&label,sizeof(int),1,fpOut); for(j = 0; j < ndata; j++){ result = fscanf(fpIn,"%f",&aux); fprintf(fpOut,"%d:%.4f ",j+1,aux); //fwrite(&aux,sizeof(float),1,fpOut); } fprintf(fpOut,"\n"); } fclose(fpIn); fclose(fpOut); return 0; }
the_stack_data/45451418.c
/* Capstone Disassembly Engine */ /* TMS320C64x Backend by Fotis Loukos <[email protected]> 2016 */ #ifdef CAPSTONE_HAS_TMS320C64X #include <stdio.h> // debug #include <string.h> #include "../../utils.h" #include "TMS320C64xMapping.h" #define GET_INSTRINFO_ENUM #include "TMS320C64xGenInstrInfo.inc" static name_map reg_name_maps[] = { { TMS320C64X_REG_INVALID, NULL }, { TMS320C64X_REG_AMR, "amr" }, { TMS320C64X_REG_CSR, "csr" }, { TMS320C64X_REG_DIER, "dier" }, { TMS320C64X_REG_DNUM, "dnum" }, { TMS320C64X_REG_ECR, "ecr" }, { TMS320C64X_REG_GFPGFR, "gfpgfr" }, { TMS320C64X_REG_GPLYA, "gplya" }, { TMS320C64X_REG_GPLYB, "gplyb" }, { TMS320C64X_REG_ICR, "icr" }, { TMS320C64X_REG_IER, "ier" }, { TMS320C64X_REG_IERR, "ierr" }, { TMS320C64X_REG_ILC, "ilc" }, { TMS320C64X_REG_IRP, "irp" }, { TMS320C64X_REG_ISR, "isr" }, { TMS320C64X_REG_ISTP, "istp" }, { TMS320C64X_REG_ITSR, "itsr" }, { TMS320C64X_REG_NRP, "nrp" }, { TMS320C64X_REG_NTSR, "ntsr" }, { TMS320C64X_REG_REP, "rep" }, { TMS320C64X_REG_RILC, "rilc" }, { TMS320C64X_REG_SSR, "ssr" }, { TMS320C64X_REG_TSCH, "tsch" }, { TMS320C64X_REG_TSCL, "tscl" }, { TMS320C64X_REG_TSR, "tsr" }, { TMS320C64X_REG_A0, "a0" }, { TMS320C64X_REG_A1, "a1" }, { TMS320C64X_REG_A2, "a2" }, { TMS320C64X_REG_A3, "a3" }, { TMS320C64X_REG_A4, "a4" }, { TMS320C64X_REG_A5, "a5" }, { TMS320C64X_REG_A6, "a6" }, { TMS320C64X_REG_A7, "a7" }, { TMS320C64X_REG_A8, "a8" }, { TMS320C64X_REG_A9, "a9" }, { TMS320C64X_REG_A10, "a10" }, { TMS320C64X_REG_A11, "a11" }, { TMS320C64X_REG_A12, "a12" }, { TMS320C64X_REG_A13, "a13" }, { TMS320C64X_REG_A14, "a14" }, { TMS320C64X_REG_A15, "a15" }, { TMS320C64X_REG_A16, "a16" }, { TMS320C64X_REG_A17, "a17" }, { TMS320C64X_REG_A18, "a18" }, { TMS320C64X_REG_A19, "a19" }, { TMS320C64X_REG_A20, "a20" }, { TMS320C64X_REG_A21, "a21" }, { TMS320C64X_REG_A22, "a22" }, { TMS320C64X_REG_A23, "a23" }, { TMS320C64X_REG_A24, "a24" }, { TMS320C64X_REG_A25, "a25" }, { TMS320C64X_REG_A26, "a26" }, { TMS320C64X_REG_A27, "a27" }, { TMS320C64X_REG_A28, "a28" }, { TMS320C64X_REG_A29, "a29" }, { TMS320C64X_REG_A30, "a30" }, { TMS320C64X_REG_A31, "a31" }, { TMS320C64X_REG_B0, "b0" }, { TMS320C64X_REG_B1, "b1" }, { TMS320C64X_REG_B2, "b2" }, { TMS320C64X_REG_B3, "b3" }, { TMS320C64X_REG_B4, "b4" }, { TMS320C64X_REG_B5, "b5" }, { TMS320C64X_REG_B6, "b6" }, { TMS320C64X_REG_B7, "b7" }, { TMS320C64X_REG_B8, "b8" }, { TMS320C64X_REG_B9, "b9" }, { TMS320C64X_REG_B10, "b10" }, { TMS320C64X_REG_B11, "b11" }, { TMS320C64X_REG_B12, "b12" }, { TMS320C64X_REG_B13, "b13" }, { TMS320C64X_REG_B14, "b14" }, { TMS320C64X_REG_B15, "b15" }, { TMS320C64X_REG_B16, "b16" }, { TMS320C64X_REG_B17, "b17" }, { TMS320C64X_REG_B18, "b18" }, { TMS320C64X_REG_B19, "b19" }, { TMS320C64X_REG_B20, "b20" }, { TMS320C64X_REG_B21, "b21" }, { TMS320C64X_REG_B22, "b22" }, { TMS320C64X_REG_B23, "b23" }, { TMS320C64X_REG_B24, "b24" }, { TMS320C64X_REG_B25, "b25" }, { TMS320C64X_REG_B26, "b26" }, { TMS320C64X_REG_B27, "b27" }, { TMS320C64X_REG_B28, "b28" }, { TMS320C64X_REG_B29, "b29" }, { TMS320C64X_REG_B30, "b30" }, { TMS320C64X_REG_B31, "b31" }, { TMS320C64X_REG_PCE1, "pce1" }, }; const char *TMS320C64x_reg_name(csh handle, unsigned int reg) { #ifndef CAPSTONE_DIET if (reg >= ARR_SIZE(reg_name_maps)) return NULL; return reg_name_maps[reg].name; #else return NULL; #endif } tms320c64x_reg TMS320C64x_reg_id(char *name) { int i; for(i = 1; i < ARR_SIZE(reg_name_maps); i++) { if (!strcmp(name, reg_name_maps[i].name)) return reg_name_maps[i].id; } return 0; } static insn_map insns[] = { { 0, 0, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { 0 }, 0, 0 #endif }, { TMS320C64x_ABS2_l2_rr, TMS320C64X_INS_ABS2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ABS_l1_pp, TMS320C64X_INS_ABS, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ABS_l1_rr, TMS320C64X_INS_ABS, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ADD2_d2_rrr, TMS320C64X_INS_ADD2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADD2_l1_rrr_x2, TMS320C64X_INS_ADD2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ADD2_s1_rrr, TMS320C64X_INS_ADD2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_ADD4_l1_rrr_x2, TMS320C64X_INS_ADD4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ADDAB_d1_rir, TMS320C64X_INS_ADDAB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADDAB_d1_rrr, TMS320C64X_INS_ADDAB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADDAD_d1_rir, TMS320C64X_INS_ADDAD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADDAD_d1_rrr, TMS320C64X_INS_ADDAD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADDAH_d1_rir, TMS320C64X_INS_ADDAH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADDAH_d1_rrr, TMS320C64X_INS_ADDAH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADDAW_d1_rir, TMS320C64X_INS_ADDAW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADDAW_d1_rrr, TMS320C64X_INS_ADDAW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADDKPC_s3_iir, TMS320C64X_INS_ADDKPC, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_ADDK_s2_ir, TMS320C64X_INS_ADDK, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_ADDU_l1_rpp, TMS320C64X_INS_ADDU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ADDU_l1_rrp_x2, TMS320C64X_INS_ADDU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ADD_d1_rir, TMS320C64X_INS_ADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADD_d1_rrr, TMS320C64X_INS_ADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADD_d2_rir, TMS320C64X_INS_ADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADD_d2_rrr, TMS320C64X_INS_ADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ADD_l1_ipp, TMS320C64X_INS_ADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ADD_l1_irr, TMS320C64X_INS_ADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ADD_l1_rpp, TMS320C64X_INS_ADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ADD_l1_rrp_x2, TMS320C64X_INS_ADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ADD_l1_rrr_x2, TMS320C64X_INS_ADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ADD_s1_irr, TMS320C64X_INS_ADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_ADD_s1_rrr, TMS320C64X_INS_ADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_ANDN_d2_rrr, TMS320C64X_INS_ANDN, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_ANDN_l1_rrr_x2, TMS320C64X_INS_ANDN, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_ANDN_s4_rrr, TMS320C64X_INS_ANDN, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_AND_d2_rir, TMS320C64X_INS_AND, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_AND_d2_rrr, TMS320C64X_INS_AND, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_AND_l1_irr, TMS320C64X_INS_AND, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_AND_l1_rrr_x2, TMS320C64X_INS_AND, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_AND_s1_irr, TMS320C64X_INS_AND, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_AND_s1_rrr, TMS320C64X_INS_AND, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_AVG2_m1_rrr, TMS320C64X_INS_AVG2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_AVGU4_m1_rrr, TMS320C64X_INS_AVGU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_BDEC_s8_ir, TMS320C64X_INS_BDEC, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 1, 0 #endif }, { TMS320C64x_BITC4_m2_rr, TMS320C64X_INS_BITC4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_BNOP_s10_ri, TMS320C64X_INS_BNOP, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 1, 0 #endif }, { TMS320C64x_BNOP_s9_ii, TMS320C64X_INS_BNOP, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 1, 0 #endif }, { TMS320C64x_BPOS_s8_ir, TMS320C64X_INS_BPOS, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 1, 0 #endif }, { TMS320C64x_B_s5_i, TMS320C64X_INS_B, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 1, 0 #endif }, { TMS320C64x_B_s6_r, TMS320C64X_INS_B, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 1, 0 #endif }, { TMS320C64x_B_s7_irp, TMS320C64X_INS_B, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 1, 0 #endif }, { TMS320C64x_B_s7_nrp, TMS320C64X_INS_B, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 1, 0 #endif }, { TMS320C64x_CLR_s15_riir, TMS320C64X_INS_CLR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_CLR_s1_rrr, TMS320C64X_INS_CLR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_CMPEQ2_s1_rrr, TMS320C64X_INS_CMPEQ2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_CMPEQ4_s1_rrr, TMS320C64X_INS_CMPEQ4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_CMPEQ_l1_ipr, TMS320C64X_INS_CMPEQ, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPEQ_l1_irr, TMS320C64X_INS_CMPEQ, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPEQ_l1_rpr, TMS320C64X_INS_CMPEQ, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPEQ_l1_rrr_x2, TMS320C64X_INS_CMPEQ, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPGT2_s1_rrr, TMS320C64X_INS_CMPGT2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_CMPGTU4_s1_rrr, TMS320C64X_INS_CMPGTU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_CMPGT_l1_ipr, TMS320C64X_INS_CMPGT, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPGT_l1_irr, TMS320C64X_INS_CMPGT, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPGT_l1_rpr, TMS320C64X_INS_CMPGT, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPGT_l1_rrr_x2, TMS320C64X_INS_CMPGT, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPLTU_l1_ipr, TMS320C64X_INS_CMPLTU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPLTU_l1_irr, TMS320C64X_INS_CMPLTU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPLTU_l1_rpr, TMS320C64X_INS_CMPLTU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPLTU_l1_rrr_x2, TMS320C64X_INS_CMPLTU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPLT_l1_ipr, TMS320C64X_INS_CMPLT, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPLT_l1_irr, TMS320C64X_INS_CMPLT, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPLT_l1_rpr, TMS320C64X_INS_CMPLT, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_CMPLT_l1_rrr_x2, TMS320C64X_INS_CMPLT, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_DEAL_m2_rr, TMS320C64X_INS_DEAL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_DOTP2_m1_rrp, TMS320C64X_INS_DOTP2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_DOTP2_m1_rrr, TMS320C64X_INS_DOTP2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_DOTPN2_m1_rrr, TMS320C64X_INS_DOTPN2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_DOTPNRSU2_m1_rrr, TMS320C64X_INS_DOTPNRSU2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_DOTPRSU2_m1_rrr, TMS320C64X_INS_DOTPRSU2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_DOTPSU4_m1_rrr, TMS320C64X_INS_DOTPSU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_DOTPU4_m1_rrr, TMS320C64X_INS_DOTPU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_EXTU_s15_riir, TMS320C64X_INS_EXTU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_EXTU_s1_rrr, TMS320C64X_INS_EXTU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_EXT_s15_riir, TMS320C64X_INS_EXT, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_EXT_s1_rrr, TMS320C64X_INS_EXT, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_GMPGTU_l1_ipr, TMS320C64X_INS_GMPGTU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_GMPGTU_l1_irr, TMS320C64X_INS_GMPGTU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_GMPGTU_l1_rpr, TMS320C64X_INS_GMPGTU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_GMPGTU_l1_rrr_x2, TMS320C64X_INS_GMPGTU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_GMPY4_m1_rrr, TMS320C64X_INS_GMPY4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_LDBU_d5_mr, TMS320C64X_INS_LDBU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDBU_d6_mr, TMS320C64X_INS_LDBU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDB_d5_mr, TMS320C64X_INS_LDB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDB_d6_mr, TMS320C64X_INS_LDB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDDW_d7_mp, TMS320C64X_INS_LDDW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDHU_d5_mr, TMS320C64X_INS_LDHU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDHU_d6_mr, TMS320C64X_INS_LDHU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDH_d5_mr, TMS320C64X_INS_LDH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDH_d6_mr, TMS320C64X_INS_LDH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDNDW_d8_mp, TMS320C64X_INS_LDNDW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDNW_d5_mr, TMS320C64X_INS_LDNW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDW_d5_mr, TMS320C64X_INS_LDW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LDW_d6_mr, TMS320C64X_INS_LDW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_LMBD_l1_irr, TMS320C64X_INS_LMBD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_LMBD_l1_rrr_x2, TMS320C64X_INS_LMBD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_MAX2_l1_rrr_x2, TMS320C64X_INS_MAX2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_MAXU4_l1_rrr_x2, TMS320C64X_INS_MAXU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_MIN2_l1_rrr_x2, TMS320C64X_INS_MIN2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_MINU4_l1_rrr_x2, TMS320C64X_INS_MINU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_MPY2_m1_rrp, TMS320C64X_INS_MPY2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYHIR_m1_rrr, TMS320C64X_INS_MPYHIR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYHI_m1_rrp, TMS320C64X_INS_MPYHI, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYHLU_m4_rrr, TMS320C64X_INS_MPYHLU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYHL_m4_rrr, TMS320C64X_INS_MPYHL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYHSLU_m4_rrr, TMS320C64X_INS_MPYHSLU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYHSU_m4_rrr, TMS320C64X_INS_MPYHSU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYHULS_m4_rrr, TMS320C64X_INS_MPYHULS, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYHUS_m4_rrr, TMS320C64X_INS_MPYHUS, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYHU_m4_rrr, TMS320C64X_INS_MPYHU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYH_m4_rrr, TMS320C64X_INS_MPYH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYLHU_m4_rrr, TMS320C64X_INS_MPYLHU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYLH_m4_rrr, TMS320C64X_INS_MPYLH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYLIR_m1_rrr, TMS320C64X_INS_MPYLIR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYLI_m1_rrp, TMS320C64X_INS_MPYLI, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYLSHU_m4_rrr, TMS320C64X_INS_MPYLSHU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYLUHS_m4_rrr, TMS320C64X_INS_MPYLUHS, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYSU4_m1_rrp, TMS320C64X_INS_MPYSU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYSU_m4_irr, TMS320C64X_INS_MPYSU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYSU_m4_rrr, TMS320C64X_INS_MPYSU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYU4_m1_rrp, TMS320C64X_INS_MPYU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYUS_m4_rrr, TMS320C64X_INS_MPYUS, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPYU_m4_rrr, TMS320C64X_INS_MPYU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPY_m4_irr, TMS320C64X_INS_MPY, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MPY_m4_rrr, TMS320C64X_INS_MPY, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MVC_s1_rr, TMS320C64X_INS_MVC, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_MVC_s1_rr2, TMS320C64X_INS_MVC, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_MVD_m2_rr, TMS320C64X_INS_MVD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_MVKLH_s12_ir, TMS320C64X_INS_MVKLH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_MVKL_s12_ir, TMS320C64X_INS_MVKL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_MVK_d1_rr, TMS320C64X_INS_MVK, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_MVK_l2_ir, TMS320C64X_INS_MVK, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_NOP_n, TMS320C64X_INS_NOP, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_NO, 0 }, 0, 0 #endif }, { TMS320C64x_NORM_l1_pr, TMS320C64X_INS_NORM, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_NORM_l1_rr, TMS320C64X_INS_NORM, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_OR_d2_rir, TMS320C64X_INS_OR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_OR_d2_rrr, TMS320C64X_INS_OR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_OR_l1_irr, TMS320C64X_INS_OR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_OR_l1_rrr_x2, TMS320C64X_INS_OR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_OR_s1_irr, TMS320C64X_INS_OR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_OR_s1_rrr, TMS320C64X_INS_OR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_PACK2_l1_rrr_x2, TMS320C64X_INS_PACK2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_PACK2_s4_rrr, TMS320C64X_INS_PACK2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_PACKH2_l1_rrr_x2, TMS320C64X_INS_PACKH2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_PACKH2_s1_rrr, TMS320C64X_INS_PACKH2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_PACKH4_l1_rrr_x2, TMS320C64X_INS_PACKH4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_PACKHL2_l1_rrr_x2, TMS320C64X_INS_PACKHL2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_PACKHL2_s1_rrr, TMS320C64X_INS_PACKHL2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_PACKL4_l1_rrr_x2, TMS320C64X_INS_PACKL4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_PACKLH2_l1_rrr_x2, TMS320C64X_INS_PACKLH2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_PACKLH2_s1_rrr, TMS320C64X_INS_PACKLH2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_ROTL_m1_rir, TMS320C64X_INS_ROTL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_ROTL_m1_rrr, TMS320C64X_INS_ROTL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_SADD2_s4_rrr, TMS320C64X_INS_SADD2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SADDU4_s4_rrr, TMS320C64X_INS_SADDU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SADDUS2_s4_rrr, TMS320C64X_INS_SADDUS2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SADD_l1_ipp, TMS320C64X_INS_SADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SADD_l1_irr, TMS320C64X_INS_SADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SADD_l1_rpp, TMS320C64X_INS_SADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SADD_l1_rrr_x2, TMS320C64X_INS_SADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SADD_s1_rrr, TMS320C64X_INS_SADD, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SAT_l1_pr, TMS320C64X_INS_SAT, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SET_s15_riir, TMS320C64X_INS_SET, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SET_s1_rrr, TMS320C64X_INS_SET, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHFL_m2_rr, TMS320C64X_INS_SHFL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_SHLMB_l1_rrr_x2, TMS320C64X_INS_SHLMB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SHLMB_s4_rrr, TMS320C64X_INS_SHLMB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHL_s1_pip, TMS320C64X_INS_SHL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHL_s1_prp, TMS320C64X_INS_SHL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHL_s1_rip, TMS320C64X_INS_SHL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHL_s1_rir, TMS320C64X_INS_SHL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHL_s1_rrp, TMS320C64X_INS_SHL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHL_s1_rrr, TMS320C64X_INS_SHL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHR2_s1_rir, TMS320C64X_INS_SHR2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHR2_s4_rrr, TMS320C64X_INS_SHR2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHRMB_l1_rrr_x2, TMS320C64X_INS_SHRMB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SHRMB_s4_rrr, TMS320C64X_INS_SHRMB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHRU2_s1_rir, TMS320C64X_INS_SHRU2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHRU2_s4_rrr, TMS320C64X_INS_SHRU2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHRU_s1_pip, TMS320C64X_INS_SHRU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHRU_s1_prp, TMS320C64X_INS_SHRU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHRU_s1_rir, TMS320C64X_INS_SHRU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHRU_s1_rrr, TMS320C64X_INS_SHRU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHR_s1_pip, TMS320C64X_INS_SHR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHR_s1_prp, TMS320C64X_INS_SHR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHR_s1_rir, TMS320C64X_INS_SHR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SHR_s1_rrr, TMS320C64X_INS_SHR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SMPY2_m1_rrp, TMS320C64X_INS_SMPY2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_SMPYHL_m4_rrr, TMS320C64X_INS_SMPYHL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_SMPYH_m4_rrr, TMS320C64X_INS_SMPYH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_SMPYLH_m4_rrr, TMS320C64X_INS_SMPYLH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_SMPY_m4_rrr, TMS320C64X_INS_SMPY, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_SPACK2_s4_rrr, TMS320C64X_INS_SPACK2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SPACKU4_s4_rrr, TMS320C64X_INS_SPACKU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SSHL_s1_rir, TMS320C64X_INS_SSHL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SSHL_s1_rrr, TMS320C64X_INS_SSHL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SSHVL_m1_rrr, TMS320C64X_INS_SSHVL, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_SSHVR_m1_rrr, TMS320C64X_INS_SSHVR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_SSUB_l1_ipp, TMS320C64X_INS_SSUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SSUB_l1_irr, TMS320C64X_INS_SSUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SSUB_l1_rrr_x1, TMS320C64X_INS_SSUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SSUB_l1_rrr_x2, TMS320C64X_INS_SSUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_STB_d5_rm, TMS320C64X_INS_STB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_STB_d6_rm, TMS320C64X_INS_STB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_STDW_d7_pm, TMS320C64X_INS_STDW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_STH_d5_rm, TMS320C64X_INS_STH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_STH_d6_rm, TMS320C64X_INS_STH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_STNDW_d8_pm, TMS320C64X_INS_STNDW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_STNW_d5_rm, TMS320C64X_INS_STNW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_STW_d5_rm, TMS320C64X_INS_STW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_STW_d6_rm, TMS320C64X_INS_STW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_SUB2_d2_rrr, TMS320C64X_INS_SUB2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_SUB2_l1_rrr_x2, TMS320C64X_INS_SUB2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUB2_s1_rrr, TMS320C64X_INS_SUB2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SUB4_l1_rrr_x2, TMS320C64X_INS_SUB4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUBABS4_l1_rrr_x2, TMS320C64X_INS_SUBABS4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUBAB_d1_rir, TMS320C64X_INS_SUBAB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_SUBAB_d1_rrr, TMS320C64X_INS_SUBAB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_SUBAH_d1_rir, TMS320C64X_INS_SUBAH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_SUBAH_d1_rrr, TMS320C64X_INS_SUBAH, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_SUBAW_d1_rir, TMS320C64X_INS_SUBAW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_SUBAW_d1_rrr, TMS320C64X_INS_SUBAW, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_SUBC_l1_rrr_x2, TMS320C64X_INS_SUBC, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUBU_l1_rrp_x1, TMS320C64X_INS_SUBU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUBU_l1_rrp_x2, TMS320C64X_INS_SUBU, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_d1_rir, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_d1_rrr, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_d2_rrr, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_l1_ipp, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_l1_irr, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_l1_rrp_x1, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_l1_rrp_x2, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_l1_rrr_x1, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_l1_rrr_x2, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_s1_irr, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_s1_rrr, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SUB_s4_rrr, TMS320C64X_INS_SUB, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_SWAP4_l2_rr, TMS320C64X_INS_SWAP4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_UNPKHU4_l2_rr, TMS320C64X_INS_UNPKHU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_UNPKHU4_s14_rr, TMS320C64X_INS_UNPKHU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_UNPKLU4_l2_rr, TMS320C64X_INS_UNPKLU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_UNPKLU4_s14_rr, TMS320C64X_INS_UNPKLU4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_XOR_d2_rir, TMS320C64X_INS_XOR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_XOR_d2_rrr, TMS320C64X_INS_XOR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_D, 0 }, 0, 0 #endif }, { TMS320C64x_XOR_l1_irr, TMS320C64X_INS_XOR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_XOR_l1_rrr_x2, TMS320C64X_INS_XOR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_L, 0 }, 0, 0 #endif }, { TMS320C64x_XOR_s1_irr, TMS320C64X_INS_XOR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_XOR_s1_rrr, TMS320C64X_INS_XOR, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_S, 0 }, 0, 0 #endif }, { TMS320C64x_XPND2_m2_rr, TMS320C64X_INS_XPND2, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, { TMS320C64x_XPND4_m2_rr, TMS320C64X_INS_XPND4, #ifndef CAPSTONE_DIET { 0 }, { 0 }, { TMS320C64X_GRP_FUNIT_M, 0 }, 0, 0 #endif }, }; void TMS320C64x_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id) { unsigned short i; i = insn_find(insns, ARR_SIZE(insns), id, &h->insn_cache); if (i != 0) { insn->id = insns[i].mapid; if (h->detail) { #ifndef CAPSTONE_DIET memcpy(insn->detail->regs_read, insns[i].regs_use, sizeof(insns[i].regs_use)); insn->detail->regs_read_count = (uint8_t)count_positive(insns[i].regs_use); memcpy(insn->detail->regs_write, insns[i].regs_mod, sizeof(insns[i].regs_mod)); insn->detail->regs_write_count = (uint8_t)count_positive(insns[i].regs_mod); memcpy(insn->detail->groups, insns[i].groups, sizeof(insns[i].groups)); insn->detail->groups_count = (uint8_t)count_positive8(insns[i].groups); if (insns[i].branch || insns[i].indirect_branch) { insn->detail->groups[insn->detail->groups_count] = TMS320C64X_GRP_JUMP; insn->detail->groups_count++; } #endif } } } #ifndef CAPSTONE_DIET static name_map insn_name_maps[] = { { TMS320C64X_INS_INVALID, NULL }, { TMS320C64X_INS_ADD, "add" }, { TMS320C64X_INS_NOP, "nop" }, }; // special alias insn static name_map alias_insn_names[] = { { 0, NULL } }; #endif const char *TMS320C64x_insn_name(csh handle, unsigned int id) { #ifndef CAPSTONE_DIET unsigned int i; if (id >= TMS320C64X_INS_ENDING) return NULL; // handle special alias first for (i = 0; i < ARR_SIZE(alias_insn_names); i++) { if (alias_insn_names[i].id == id) return alias_insn_names[i].name; } return insn_name_maps[id].name; #else return NULL; #endif } #ifndef CAPSTONE_DIET static name_map group_name_maps[] = { { TMS320C64X_GRP_INVALID, NULL }, { TMS320C64X_GRP_FUNIT_D, "funit_d" }, { TMS320C64X_GRP_FUNIT_L, "funit_l" }, { TMS320C64X_GRP_FUNIT_M, "funit_m" }, { TMS320C64X_GRP_FUNIT_S, "funit_s" }, { TMS320C64X_GRP_FUNIT_NO, "funit_no" }, { TMS320C64X_GRP_JUMP, "jump" }, }; #endif const char *TMS320C64x_group_name(csh handle, unsigned int id) { #ifndef CAPSTONE_DIET unsigned int i; if (id >= TMS320C64X_GRP_ENDING) return NULL; for (i = 0; i < ARR_SIZE(group_name_maps); i++) { if (group_name_maps[i].id == id) return group_name_maps[i].name; } return group_name_maps[id].name; #else return NULL; #endif } tms320c64x_reg TMS320C64x_map_register(unsigned int r) { static unsigned int map[] = { 0, }; if (r < ARR_SIZE(map)) return map[r]; return 0; } #endif
the_stack_data/57949832.c
#include <stdio.h> #include <sys/socket.h> #include <stdlib.h> #include <netinet/in.h> #include <string.h> #include <arpa/inet.h> #include <unistd.h> #define PORT 8080 int main(int argc, char const *argv[]) { struct sockaddr_in address; int sock = 0, valread; struct sockaddr_in serv_addr; char *hello = "12343212312412312341232112121313"; char buffer[1024] = {0}; if ((sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) { printf("\n Socket creation error \n"); return -1; } memset(&serv_addr, '0', sizeof(serv_addr)); serv_addr.sin_family = AF_INET; serv_addr.sin_port = htons(PORT); // Convert IPv4 and IPv6 addresses from text to binary form if(inet_pton(AF_INET, "127.0.0.1", &serv_addr.sin_addr)<=0) { printf("\nInvalid address/ Address not supported \n"); return -1; } if (connect(sock, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) < 0) { printf("\nConnection Failed \n"); return -1; } send(sock , hello , strlen(hello) , 0 ); printf("Hello message sent\n"); valread = read( sock , buffer, 1024); printf("%s\n",buffer ); return 0; }
the_stack_data/231392137.c
#include<stdio.h> int main() { int a; scanf("%d",&a); if(a>0) { if(a%2==0) printf("Even"); else printf("Odd"); } else printf("Invalid"); return 0; }
the_stack_data/85992.c
/* Regular expression tests. Copyright (C) 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek <[email protected]>, 2003. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include <sys/types.h> #ifdef HAVE_MCHECK_H #include <mcheck.h> #endif #include <regex.h> #include <stdio.h> #include <stdlib.h> #include <string.h> void frob_escapes (char *src, int pattern) { char *dst; for (dst = src; *src != '\0'; dst++, src++) { if (*src == '\\') { switch (src[1]) { case 't': src++; *dst = '\t'; continue; case 'n': src++; *dst = '\n'; continue; case 'r': src++; *dst = '\r'; continue; case '\\': case '^': case '{': case '|': case '}': if (!pattern) { src++; *dst = *src; continue; } break; } } if (src != dst) *dst = *src; } *dst = '\0'; } int main (int argc, char **argv) { int ret = 0, n; char *line = NULL; size_t line_len = 0; ssize_t len; FILE *f; char *pattern, *string; int flags = REG_EXTENDED; int eflags = 0; regex_t re; regmatch_t rm[20]; #ifdef HAVE_MCHECK_H mtrace (); #endif if (argc < 2) { fprintf (stderr, "Missing test filename\n"); return 1; } f = fopen (argv[1], "r"); if (f == NULL) { fprintf (stderr, "Couldn't open %s\n", argv[1]); return 1; } while ((len = getline (&line, &line_len, f)) > 0) { char *p, *q; int i; if (line[len - 1] == '\n') line[--len] = '\0'; puts (line); if (line[0] == ';') continue; if (line[0] == '\0') continue; if (line[0] == '-') { if (strstr (line, "REG_BASIC")) flags = 0; else flags = REG_EXTENDED; if (strstr (line, "REG_ICASE")) flags |= REG_ICASE; if (strstr (line, "REG_NEWLINE")) flags |= REG_NEWLINE; eflags = 0; if (strstr (line, "REG_NOTBOL")) eflags |= REG_NOTBOL; if (strstr (line, "REG_NOTEOL")) eflags |= REG_NOTEOL; continue; } pattern = line + strspn (line, " \t"); if (*pattern == '\0') continue; p = pattern + strcspn (pattern, " \t"); if (*p == '\0') continue; *p++ = '\0'; string = p + strspn (p, " \t"); if (*string == '\0') continue; if (*string == '"') { string++; p = strchr (string, '"'); if (p == NULL) continue; *p++ = '\0'; } else { p = string + strcspn (string, " \t"); if (*string == '!') string = NULL; else if (*p == '\0') continue; else *p++ = '\0'; } frob_escapes (pattern, 1); if (string != NULL) frob_escapes (string, 0); n = regcomp (&re, pattern, flags); if (n != 0) { if (string != NULL) { char buf[500]; regerror (n, &re, buf, sizeof (buf)); printf ("FAIL regcomp unexpectedly failed: %s\n", buf); ret = 1; } continue; } else if (string == NULL) { regfree (&re); puts ("FAIL regcomp unpexpectedly succeeded"); ret = 1; continue; } if (regexec (&re, string, 20, rm, eflags)) { for (i = 0; i < 20; ++i) { rm[i].rm_so = -1; rm[i].rm_eo = -1; } } regfree (&re); for (i = 0; i < 20 && *p != '\0'; ++i) { int rm_so, rm_eo; rm_so = strtol (p, &q, 10); if (p == q) break; p = q; rm_eo = strtol (p, &q, 10); if (p == q) break; p = q; if (rm[i].rm_so != rm_so || rm[i].rm_eo != rm_eo) { printf ("FAIL rm[%d] %d..%d != expected %d..%d\n", i, rm[i].rm_so, rm[i].rm_eo, rm_so, rm_eo); ret = 1; break; } } } free (line); fclose (f); return ret; }
the_stack_data/105327.c
/* Taxonomy Classification: 0000020000000000000100 */ /* * WRITE/READ 0 write * WHICH BOUND 0 upper * DATA TYPE 0 char * MEMORY LOCATION 0 stack * SCOPE 0 same * CONTAINER 2 struct * POINTER 0 no * INDEX COMPLEXITY 0 constant * ADDRESS COMPLEXITY 0 constant * LENGTH COMPLEXITY 0 N/A * ADDRESS ALIAS 0 none * INDEX ALIAS 0 none * LOCAL CONTROL FLOW 0 none * SECONDARY CONTROL FLOW 0 none * LOOP STRUCTURE 0 no * LOOP COMPLEXITY 0 N/A * ASYNCHRONY 0 no * TAINT 0 no * RUNTIME ENV. DEPENDENCE 0 no * MAGNITUDE 1 1 byte * CONTINUOUS/DISCRETE 0 discrete * SIGNEDNESS 0 no */ /* Copyright 2005 Massachusetts Institute of Technology All rights reserved. Redistribution and use of software in source and binary forms, with or without modification, are permitted provided that the following conditions are met. - Redistributions of source code must retain the above copyright notice, this set of conditions and the disclaimer below. - Redistributions in binary form must reproduce the copyright notice, this set of conditions, and the disclaimer below in the documentation and/or other materials provided with the distribution. - Neither the name of the Massachusetts Institute of Technology 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". 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 OWNER 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. */ typedef struct { char buf1[10]; char buf2[10]; } my_struct; int main(int argc, char *argv[]) { my_struct s; /* BAD */ s.buf1[10] = 'A'; return 0; }
the_stack_data/162644461.c
#include <arpa/inet.h> #include <errno.h> #include <stdio.h> #include <string.h> #include <sys/socket.h> const char* inet_ntop(int af, const void* restrict a0, char* restrict s, socklen_t l) { const unsigned char* a = a0; int i, j, max, best; char buf[100]; switch (af) { case AF_INET: if (snprintf(s, l, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]) < l) return s; break; case AF_INET6: if (memcmp(a, "\0\0\0\0\0\0\0\0\0\0\377\377", 12)) snprintf(buf, sizeof buf, "%x:%x:%x:%x:%x:%x:%x:%x", 256 * a[0] + a[1], 256 * a[2] + a[3], 256 * a[4] + a[5], 256 * a[6] + a[7], 256 * a[8] + a[9], 256 * a[10] + a[11], 256 * a[12] + a[13], 256 * a[14] + a[15]); else snprintf(buf, sizeof buf, "%x:%x:%x:%x:%x:%x:%d.%d.%d.%d", 256 * a[0] + a[1], 256 * a[2] + a[3], 256 * a[4] + a[5], 256 * a[6] + a[7], 256 * a[8] + a[9], 256 * a[10] + a[11], a[12], a[13], a[14], a[15]); /* Replace longest /(^0|:)[:0]{2,}/ with "::" */ for (i = best = 0, max = 2; buf[i]; i++) { if (i && buf[i] != ':') continue; j = strspn(buf + i, ":0"); if (j > max) best = i, max = j; } if (max > 2) { buf[best] = buf[best + 1] = ':'; memmove(buf + best + 2, buf + best + max, i - best - max + 1); } if (strlen(buf) < l) { strcpy(s, buf); return s; } break; default: errno = EAFNOSUPPORT; return 0; } errno = ENOSPC; return 0; }
the_stack_data/122461.c
/* PR tree-optimization/78436 */ struct S { long int a : 24; signed char b : 8; } s; __attribute__((noinline, noclone)) void foo () { s.b = 0; s.a = -1193165L; } int main () { foo (); if (s.b != 0) __builtin_abort (); return 0; }
the_stack_data/836735.c
#include <stdlib.h> #include <stdio.h> void _safe_free(void **pointer) { if (*pointer == NULL) return; free(*pointer); *pointer = NULL; } #define SAFE_FREE(p) _safe_free((void **)p) void s_free(void **p) { SAFE_FREE(p); }
the_stack_data/382375.c
/* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-optimized" } */ int f (int a0,int a1,int a2,int a3,int a4) { int b0, b1, b2, b3, b4,e; /* this can be optimized to four additions... */ b4 = a4 + a3 + a2 + a1 + a0; b3 = a3 + a2 + a1 + a0; b2 = a2 + a1 + a0; b1 = a1 + a0; /* This is actually 0 */ e = b4 - b3 + b2 - b1 - a4 - a2; return e; } /* We can't reassociate the expressions due to undefined signed overflow. */ /* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" { xfail *-*-* } } } */
the_stack_data/6386501.c
/* ----------------------------------------------------------------------------- * * (c) The GHC Team 2000 * * RTS GTK Front Panel (callbacks) * * ---------------------------------------------------------------------------*/ #ifdef RTS_GTK_FRONTPANEL #include "Rts.h" #include <gtk/gtk.h> #include "VisCallbacks.h" #include "VisWindow.h" #include "VisSupport.h" #include "FrontPanel.h" void on_cont_radio_clicked (GtkButton *button, gpointer user_data) { update_mode = Continuous; } void on_stop_before_radio_clicked (GtkButton *button, gpointer user_data) { update_mode = BeforeGC; } void on_stop_after_radio_clicked (GtkButton *button, gpointer user_data) { update_mode = AfterGC; } void on_stop_both_radio_clicked (GtkButton *button, gpointer user_data) { update_mode = BeforeAfterGC; } void on_stop_but_clicked (GtkButton *button, gpointer user_data) { stop_now = TRUE; } void on_continue_but_clicked (GtkButton *button, gpointer user_data) { continue_now = TRUE; } void on_quit_but_clicked (GtkButton *button, gpointer user_data) { quit = TRUE; } #endif /* RTS_GTK_FRONTPANEL */
the_stack_data/4851.c
#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct { int e;//nr de muchii int v;//nr de noduri int **a;//matricea de adiacenta } GRAF;//structura in care avem nr de noduri, muchii si matricea grafului void testare(GRAF *p)//functie ce verifica daca a fost efectuata alocarea dinamica { if(p==NULL) { printf("Alocare dinamica esuata!"); exit(1); } } ///am folosit for de la 1 pentru a putea vedea eu mai usor graful si a lucra mai usor cu el GRAF *creare_matrice_adiacenta_graf()//funtia genereaza graful prin matricea de adiacenta { int i,nod1,nod2; char optiune; GRAF *p; p=(GRAF*)malloc(sizeof(GRAF));//alocam memorie pt un element de tip GRAF testare(p);//testam daca s-a alocat memoria printf("Introduceti numarul de noduri ale grafului.\n"); scanf("%d",&p->v);//citim nr de noduri al grafului do { printf("Introduceti numarul de muchii ale grafului.\n"); scanf("%d",&p->e);//introducem nr de muchii al grafului } while(p->e>(p->v*((p->v)-1))/2); //numarul de muchii trebuie sa fie mai mic sau egal decat nr de noduri inmultit cu nr de noduri -1 pe doi p->a=(int**)malloc(sizeof(int*)*p->v);//alocam dinamic memorie in matrice pt nr de nduri testare(p->a);//testam daca s-a alocat dinamic for(i=1; i<=p->v; i++) { p->a[i]=(int*)calloc(p->v+1,sizeof(int));//alocam memorie initializand toata matricea de adiacenta cu 0 } testare(p->a);//testam daca s-a alocat dinamic memoria printf("Doriti ca graful sa fie orientat?(D/N)\nD=Da\nN=Nu\n"); getchar(); scanf("%c",&optiune);//alegem daca graful e orientat sau neorientat printf("Introduceti perechile de noduri.\n");//introducem perechile de noduri if(optiune=='N' || optiune=='n')//daca optiunea e nu graful va fi neorientat { for(i=1; i<=p->e; i++) { printf("Perechea %d:\n",i); printf("u="); scanf("%d",&nod1); printf("v="); scanf("%d",&nod2); p->a[nod1][nod2]=1; p->a[nod2][nod1]=1;//daca graful e neorientat matricea de adiacenta va fi simetrica fata de diagonala principala } } else { for(i=1; i<=p->e; i++)//daca alegem optiunea da atunci graful va fi orientat { printf("Perechea %d:\n",i); printf("u="); scanf("%d",&nod1); printf("v="); scanf("%d",&nod2); p->a[nod1][nod2]=1; } } return p;//returnam graful } void afisare_matrice_adiacenta(GRAF *p)//functia afiseaza matricea de adiacenta a grafului { printf("Matricea de adiacenta a grafului este: \n"); for(int i=1; i<=p->v; i++) { for(int j=1; j<=p->v; j++) printf("%d ",p->a[i][j]); printf("\n"); } } void BFS(GRAF *p)//functie pentru parcurgerea BFS (parcurgerea in latime) { int nod,nod_destinatie,vizitat[p->v],coada[p->v],i,prim_coada,ultim_coada;//ne folosim de ajutorul unei cozi implementata cu vectori for(i=1; i<=p->v; i++) //marcam toate nodurile ca nevizitate vizitat[i]=0; printf("Introduceti nodul din care doriti sa porniti.\n"); scanf("%d",&nod);//introducem nodul de la care dorim sa incepem parcurgerea BFS printf("Intoduceti nodul la care doriti sa ajungeti.\n"); scanf("%d",&nod_destinatie); vizitat[nod]=1;//marcam nodul de la care incepem parcurgerea ca vizitat coada[1]=nod;//introducem nodul in coada prim_coada=ultim_coada=1;//marcam pozitia primului si ultimului element al cozii cu 1 printf("Nodurile vizitate sunt: \n"); printf("%d ",nod);//afisam nodul de la care incepe parcurgerea while(prim_coada<=ultim_coada)//cat timp coada e nenula { int crt=coada[prim_coada++];//extragem nod din coada for(i=1; i<=prim_coada; i++) if(p->a[crt][i]==1 && vizitat[i]==0)//daca exista muchie si nodul i este nevizitat { coada[++ultim_coada]=i;//punem nodul i in coada printf("%d ",i);//afisam nodul vizitat[i]=1;//marcam nodul ca vizitat } } } int main(void) { GRAF *p; int optiune; p=creare_matrice_adiacenta_graf();//generam graful printf("\n"); afisare_matrice_adiacenta(p);//afisam matricea de adiacenta printf("\n"); BFS(p); return 0; }
the_stack_data/13452.c
// hello world // #include <stdio.h> int _main(void) { // FILE *haha; // haha = fopen("/luke.igh",""); return 1; }
the_stack_data/34314.c
/* 2005.11 yhlu add let the real sb to use small unitid */ // only for sb ht chain static void enumerate_ht_chain(void) { #if CONFIG_HT_CHAIN_UNITID_BASE != 0 /* CONFIG_HT_CHAIN_UNITID_BASE could be 0 (only one ht device in the ht chain), if so, don't need to go through the chain */ /* Assumption the HT chain that is bus 0 has the HT I/O Hub on it. * On most boards this just happens. If a cpu has multiple * non Coherent links the appropriate bus registers for the * links needs to be programed to point at bus 0. */ unsigned next_unitid, last_unitid; device_t dev; #if CONFIG_HT_CHAIN_END_UNITID_BASE != 0x20 //let't record the device of last ht device, So we can set the Unitid to CONFIG_HT_CHAIN_END_UNITID_BASE unsigned real_last_unitid = 0; uint8_t real_last_pos = 0; int ht_dev_num = 0; // except host_bridge uint8_t end_used = 0; #endif dev = PCI_DEV(0,0,0); next_unitid = CONFIG_HT_CHAIN_UNITID_BASE; do { uint32_t id; uint8_t hdr_type, pos; last_unitid = next_unitid; id = pci_read_config32(dev, PCI_VENDOR_ID); /* If the chain is enumerated quit */ if (((id & 0xffff) == 0x0000) || ((id & 0xffff) == 0xffff) || (((id >> 16) & 0xffff) == 0xffff) || (((id >> 16) & 0xffff) == 0x0000)) { break; } hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE); pos = 0; hdr_type &= 0x7f; if ((hdr_type == PCI_HEADER_TYPE_NORMAL) || (hdr_type == PCI_HEADER_TYPE_BRIDGE)) { pos = pci_read_config8(dev, PCI_CAPABILITY_LIST); } while(pos != 0) { uint8_t cap; cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID); if (cap == PCI_CAP_ID_HT) { uint16_t flags; /* Read and write and reread flags so the link * direction bit is valid. */ flags = pci_read_config16(dev, pos + PCI_CAP_FLAGS); pci_write_config16(dev, pos + PCI_CAP_FLAGS, flags); flags = pci_read_config16(dev, pos + PCI_CAP_FLAGS); if ((flags >> 13) == 0) { unsigned count; unsigned ctrl, ctrl_off; device_t devx; #if CONFIG_HT_CHAIN_END_UNITID_BASE != 0x20 if(next_unitid>=0x18) { // don't get mask out by k8, at this time BSP, RT is not enabled, it will response from 0x18,0--0x1f. if(!end_used) { next_unitid = CONFIG_HT_CHAIN_END_UNITID_BASE; end_used = 1; } else { goto out; } } real_last_unitid = next_unitid; real_last_pos = pos; ht_dev_num++; #endif flags &= ~0x1f; flags |= next_unitid & 0x1f; count = (flags >> 5) & 0x1f; devx = PCI_DEV(0, next_unitid, 0); pci_write_config16(dev, pos + PCI_CAP_FLAGS, flags); next_unitid += count; flags = pci_read_config16(devx, pos + PCI_CAP_FLAGS); /* Test for end of chain */ ctrl_off = ((flags >> 10) & 1)? PCI_HT_CAP_SLAVE_CTRL0 : PCI_HT_CAP_SLAVE_CTRL1; // another end do { ctrl = pci_read_config16(devx, pos + ctrl_off); /* Is this the end of the hypertransport chain? */ if (ctrl & (1 << 6)) { goto out; } if (ctrl & ((1 << 4) | (1 << 8))) { /* * Either the link has failed, or we have * a CRC error. * Sometimes this can happen due to link * retrain, so lets knock it down and see * if its transient */ ctrl |= ((1 << 4) | (1 <<8)); // Link fail + Crc pci_write_config16(devx, pos + ctrl_off, ctrl); ctrl = pci_read_config16(devx, pos + ctrl_off); if (ctrl & ((1 << 4) | (1 << 8))) { // can not clear the error break; } } } while((ctrl & (1 << 5)) == 0); break; } } pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT); } } while(last_unitid != next_unitid); out: ; #if CONFIG_HT_CHAIN_END_UNITID_BASE != 0x20 if((ht_dev_num>1) && (real_last_unitid != CONFIG_HT_CHAIN_END_UNITID_BASE) && !end_used) { uint16_t flags; dev = PCI_DEV(0,real_last_unitid, 0); flags = pci_read_config16(dev, real_last_pos + PCI_CAP_FLAGS); flags &= ~0x1f; flags |= CONFIG_HT_CHAIN_END_UNITID_BASE & 0x1f; pci_write_config16(dev, real_last_pos + PCI_CAP_FLAGS, flags); } #endif #endif }
the_stack_data/72013905.c
#include <stdbool.h> #include <stdlib.h> #ifdef S2E_TEST #include <time.h> #include <s2e/s2e.h> #endif extern bool tsort( const char * filename); void begin_target_inner(); #ifndef TASE_TEST int main (int argc, char **argv) { begin_target_inner(); } #endif const char * filename = "./tsortFile"; void begin_target_inner () { #ifdef S2E_TEST struct timespec start; clock_gettime(CLOCK_REALTIME, &start); #endif tsort(filename); #ifdef S2E_TEST struct timespec end; clock_gettime(CLOCK_REALTIME, &end); //Convert time uint64_t nanoSecondsTotal = (end.tv_sec - start.tv_sec) * 1000000000 + end.tv_nsec - start.tv_nsec; double secondsTotal = nanoSecondsTotal/1000000000.; s2e_printf("TOTAL Elapsed time is %lu nanoseconds \n", nanoSecondsTotal); s2e_printf("That's roughly %lf seconds \n", secondsTotal); #endif }
the_stack_data/172829.c
/* { dg-do compile } */ /* { dg-options "-O3 -funroll-loops -fno-tree-vectorize -fdump-tree-cunroll-details -fno-peel-loops" } */ #define N 8 #define M 14 typedef unsigned char e_u8; e_u8 x[256]; #define MAX(a,b) ((a)>=(b)?(a):(b)) #define btype e_u8 static inline void bar1(e_u8 a[4][N], e_u8 b[4][N], btype n) { int i, j; for(i = 0; i < 4; i++) for(j = 0; j < n; j++) a[i][j] ^= b[i][j]; } static inline void bar2(e_u8 a[4][N], e_u8 b[256], btype n) { int i, j; for(i = 0; i < 4; i++) for(j = 0; j < n; j++) a[i][j] = b[a[i][j]] ; } int foo1 (e_u8 a[4][N], int b1, int b2, e_u8 b[M+1][4][N]) { btype n; int r, m; switch (b2) { case 128: n = 4; break; case 192: n = 6; break; case 256: n = 8; break; default : return (-2); } switch (MAX(b1,b2)) { case 128: m = 10; break; case 192: m = 12; break; case 256: m = 14; break; default : return (-3); } bar1(a,b[m],n); bar2(a,x,n); return 0; } /* { dg-final { scan-tree-dump-times "loop with 4 iterations completely unrolled" 2 "cunroll" } } */ /* { dg-final { scan-tree-dump-times "loop with 8 iterations completely unrolled" 2 "cunroll" } } */
the_stack_data/6387689.c
#include<stdio.h> int main() { }
the_stack_data/3262012.c
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> #include <math.h> #define BASE 31 #define PRIME 1000000007 #define min(x, y) \ ({ __typeof__ (x) _x = (x); \ __typeof__ (y) _y = (y); \ _x > _y ? _y : _x; }) static void preprocess(const char *A, unsigned long *hash_table, int len); static unsigned long hash_lookup(const unsigned long *hash_table, int left, int right); static bool hash_match_check(const unsigned long *hash_table, int left, int right, int split_index); static bool binary_search_compare(const unsigned long *hash_table, int left, int right, int split_index, int *retval); static int lcp_splitting(const char *A, const unsigned long *hash_table, int len, int i); /* * Preprocess by populating the hash_table with calculated * progressive cumulative hash values. * * @A: string to be preprocessed * @hash_table: hash_table that should be populated * @len: length of string @A */ static void preprocess(const char *A, unsigned long *hash_table, int len) { hash_table[0] = A[0] - 'a' + 1; for (int i = 1; i < len; i++) hash_table[i] = ((hash_table[i-1]*BASE)%PRIME + (A[i] - 'a' + 1))%PRIME; } /* * Calculate and return the cumulative hash value that a substring * (string[left...right]) would have, by making use of the existing * preprocessed @hash_table. * * @hash_table: preprocessed hashtable that contains cumulative hash * values calculated using the hash function * @left: left-most boundary index * @right: right-most boundary index */ static unsigned long hash_lookup(const unsigned long *hash_table, int left, int right) { if (!left) return hash_table[right]; unsigned long power_factor = (unsigned long)pow(BASE, right-left+1)%PRIME; return (hash_table[right] - (hash_table[left-1]*(power_factor)%PRIME)); } /* * Checks if the two substrings * string[left...right] and string[left+@split_index...right+@split_index] * have the same hash value or not. * This determines if the substrings are identical or not. * * Returns true, if the hash values of the respective substrings * is equal. Returns false otherwise. * * @hash_table: preprocessed hashtable that contains cumulative hash * values calculated using the hash function * @left: left-most boundary index * @right: right-most boundary index * @split_index: index that divides the initial string into two */ static bool hash_match_check(const unsigned long *hash_table, int left, int right, int split_index) { if (hash_lookup(hash_table, left, right) == hash_lookup(hash_table, split_index+left, split_index+right)) return true; return false; } /* * Determines the longest common prefix by * performing binary search (by applying mathematical principles * and formula which helps speed things along significantly). * * @hash_table: preprocessed hashtable that contains cumulative hash * values calculated using the hash function * @left: left-most boundary index * @right: right-most boundary index * @split_index: index that divides the initial string into two * @retval: pointer to the length of the longest common prefix */ static bool binary_search_compare(const unsigned long *hash_table, int left, int right, int split_index, int *retval) { if (hash_match_check(hash_table, left, right, split_index)) { *retval += (right - left + 1); return true; } if (right <= left) return false; else { int mid = (left + right)/2; if (!binary_search_compare(hash_table, left, mid, split_index, retval)) return false; binary_search_compare(hash_table, mid+1, right, split_index, retval); } } /* * Returns the length of the longest common prefix observed * between the substrings obtained when a string is split * into two parts. * * @A: the string that is supposed to be split * @hash_table: preprocessed hashtable that contains cumulative hash * values calculated using the hash function * @len: length of the string * @split_index: index at which the split occurs * * The "split" occurs such that @A gets split into * @A[0...@split_index-1] and @A[@split_index...@len-1] * * It must be noted that the idea of splitting is purely conceptual here. * Rather than literally splitting @A, manipulation of indexes properly * to reflect the same idea proves to be sufficient. */ static int lcp_splitting(const char *A, const unsigned long *hash_table, int len, int i) { int retval = 0; /* * Since @retval has been initialized with 0, we do not have to check * the return value and see if binary_search_compare succeeded or not. */ binary_search_compare(hash_table, 0, min(len - i, i) - 1, i, &retval); return retval; } int main(void) { int len; int queries; unsigned long *hash_table; scanf("%d", &len); char A[len]; scanf("%s", A); hash_table = (unsigned long *)malloc(strlen(A)*sizeof(unsigned long)); preprocess(A, hash_table, len); scanf("%d", &queries); for (int z = 0; z < queries; z++) { int split_index; scanf("%d", &split_index); printf("\n%d", lcp_splitting(A, hash_table, len, split_index)); } free(hash_table); return 0; }
the_stack_data/6502.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_str_is_printable.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bnidia <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/07/10 22:01:03 by bnidia #+# #+# */ /* Updated: 2021/07/10 22:05:03 by bnidia ### ########.fr */ /* */ /* ************************************************************************** */ int ft_str_is_printable(char *str) { int i; i = 0; while (str[i]) { if (!(str[i] >= 32 && str[i] <= 127)) { return (0); } i++; } return (1); }
the_stack_data/79343.c
#include <sys/mman.h> #include <stdio.h> #include <unistd.h> #include <string.h> #include <sys/time.h> #include <sys/resource.h> #ifndef MCL_ONFAULT #define MCL_ONFAULT (MCL_FUTURE << 1) #endif static int test_limit(void) { int ret = 1; struct rlimit lims; void *map; if (getrlimit(RLIMIT_MEMLOCK, &lims)) { perror("getrlimit"); return ret; } if (mlockall(MCL_CURRENT | MCL_ONFAULT | MCL_FUTURE)) { perror("mlockall"); return ret; } map = mmap(NULL, 2 * lims.rlim_max, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_POPULATE, 0, 0); if (map != MAP_FAILED) printf("mmap should have failed, but didn't\n"); else { ret = 0; munmap(map, 2 * lims.rlim_max); } munlockall(); return ret; } int main(int argc, char **argv) { int ret = 0; ret += test_limit(); return ret; }
the_stack_data/243892131.c
/* m1 has x rows and y columns m2 has y rows and z columns */ #include <stdio.h> #include <stdlib.h> void matrix_plus (int *m1, int *m2, int *r, int x, int y ); void input_matrix ( int *m , int x, int y ); void matrix_output ( int *r, int x, int z ); int main ( int argc, char const *argv[]) { int *m1, *m2, *r, x, y; printf("Please input the matrixs' number of rows and number of columns\t"); scanf("%d %d",&x,&y); if ( x < 1 || y < 1 ) { printf("err"); return EXIT_FAILURE; } m1 = (int*)malloc(sizeof(int)*x*y); m2 = (int*)malloc(sizeof(int)*x*y); r = (int*)malloc(sizeof(int)*x*y); printf("Please input the first matrix\n"); input_matrix(m1,x,y); printf("Please input the second matrix\n"); input_matrix(m2,x,y); matrix_plus(m1,m2,r,x,y); matrix_output(r,x,y); free(m1); free(m2); free(r); return EXIT_SUCCESS; } void input_matrix ( int *m, int x, int y ) { /* x is row, y is column. Please input in this order: 1 2 3 4 5 6 7 8 9 */ int num = 0; int *mp; mp = m; for ( num = 0; num < (x*y); num++ ) { scanf("%d",mp); mp++; } } void matrix_plus (int *m1, int *m2, int *r, int x, int y ) { int *m1p; int *m2p; int *rp; int num; m1p = m1; m2p = m2; rp = r; for ( num = 0; num < (x*y); num++ ) { *r = *m1p + *m2p; r++; m1p++; m2p++; } } void matrix_output ( int *r, int x, int y ) { int *rp; int num; int cnt = 0; rp = r; printf("The answer is\n"); for ( num = 0; num < (x*y); num++) { printf("%5d ",*rp); rp++; cnt++; if ( cnt == y ) { printf("\n"); cnt = 0; } } }