file
stringlengths
18
26
data
stringlengths
2
1.05M
the_stack_data/70982.c
/* C Primer Plus 5th Edition * Programming Exercies 7 * * Copyright (c) 2017 Fred Crowson <[email protected]> */ #include <stdio.h> #define TAXRATE 0.15 /* Starting Tax Rate */ #define TAXSTEP 0.05 /* Taxes go up in 5% intervals */ #define TAXBANDA 300 /* First Tax Band */ #define TAXBANDB 450 /* Second Tax Band */ #define BASICPAY 10.00 /* Basic Pay Rate */ int main(void); float taxes(float); int main(void) { int hours; float gross; /* Gross Pay */ float tax; /* Taxes owed */ printf("Please enter hours worked in week: "); scanf("%d", &hours); gross = (float) hours * BASICPAY; tax = taxes(gross); printf("Hours worked: %d\n", hours); printf("Gross Pay: %0.2f\n", gross); printf("Tax Owed: %0.2f\n", tax); printf("Net Pay: %0.2f\n", gross - tax); /* no need for netpay var */ return 0; } float taxes(float gp) { float totaltax = 0.0; if (gp > TAXBANDB) { totaltax = (TAXBANDA * TAXRATE) + ((TAXBANDB - TAXBANDA) * (TAXRATE + TAXSTEP)) + (gp - TAXBANDB) * (TAXRATE + (TAXSTEP * 2)); } if (gp <= TAXBANDB && gp > TAXBANDA) { totaltax = (TAXBANDA * TAXRATE) + ((gp - TAXBANDA) * (TAXRATE + TAXSTEP)); } if (gp <= TAXBANDA) { totaltax = (gp * TAXRATE); } return totaltax; }
the_stack_data/247017639.c
/*** * This code is a part of EvoApproxLib library (ehw.fit.vutbr.cz/approxlib) distributed under The MIT License. * When used, please cite the following article(s): V. Mrazek, R. Hrbacek, Z. Vasicek and L. Sekanina, "EvoApprox8b: Library of approximate adders and multipliers for circuit design and benchmarking of approximation methods". Design, Automation & Test in Europe Conference & Exhibition (DATE), 2017, Lausanne, 2017, pp. 258-261. doi: 10.23919/DATE.2017.7926993 * This file contains a circuit from evoapprox8b dataset. Note that a new version of library was already published. ***/ #include <stdint.h> #include <stdlib.h> /// Approximate function add8_038 /// Library = EvoApprox8b /// Circuit = add8_038 /// Area (180) = 1816 /// Delay (180) = 1.220 /// Power (180) = 624.40 /// Area (45) = 120 /// Delay (45) = 0.510 /// Power (45) = 49.88 /// Nodes = 37 /// HD = 32640 /// MAE = 0.50000 /// MSE = 1.00000 /// MRE = 0.27 % /// WCE = 2 /// WCRE = 100 % /// EP = 25.0 % uint16_t add8_038(uint8_t a, uint8_t b) { uint16_t c = 0; uint8_t n0 = (a >> 0) & 0x1; uint8_t n2 = (a >> 1) & 0x1; uint8_t n4 = (a >> 2) & 0x1; uint8_t n6 = (a >> 3) & 0x1; uint8_t n8 = (a >> 4) & 0x1; uint8_t n10 = (a >> 5) & 0x1; uint8_t n12 = (a >> 6) & 0x1; uint8_t n14 = (a >> 7) & 0x1; uint8_t n16 = (b >> 0) & 0x1; uint8_t n18 = (b >> 1) & 0x1; uint8_t n20 = (b >> 2) & 0x1; uint8_t n22 = (b >> 3) & 0x1; uint8_t n24 = (b >> 4) & 0x1; uint8_t n26 = (b >> 5) & 0x1; uint8_t n28 = (b >> 6) & 0x1; uint8_t n30 = (b >> 7) & 0x1; uint8_t n32; uint8_t n40; uint8_t n41; uint8_t n47; uint8_t n50; uint8_t n51; uint8_t n56; uint8_t n57; uint8_t n58; uint8_t n59; uint8_t n68; uint8_t n69; uint8_t n78; uint8_t n79; uint8_t n86; uint8_t n87; uint8_t n90; uint8_t n91; uint8_t n96; uint8_t n97; uint8_t n107; uint8_t n124; uint8_t n125; uint8_t n135; uint8_t n143; uint8_t n152; uint8_t n162; uint8_t n171; uint8_t n181; uint8_t n199; uint8_t n208; uint8_t n227; uint8_t n272; uint8_t n273; uint8_t n282; uint8_t n293; uint8_t n311; uint8_t n320; uint8_t n328; uint8_t n338; uint8_t n349; uint8_t n366; uint8_t n376; uint8_t n384; uint8_t n394; uint8_t n404; uint8_t n412; uint8_t n413; uint8_t n422; n32 = n0 ^ n16; n40 = n2 ^ n18; n41 = n2 & n18; n47 = n24 | n8; n50 = n4 ^ n20; n51 = n4 & n20; n56 = n50; n57 = n50; n58 = n6 ^ n22; n59 = n6 & n22; n68 = n8 ^ n24; n69 = n8 & n24; n78 = n10 ^ n26; n79 = n10 & n26; n86 = n12 ^ n28; n87 = n12 & n28; n90 = n78; n91 = n78; n96 = n14 ^ n30; n97 = n14 & n30; n107 = n56 & n41; n124 = n51 | n107; n125 = n51 | n107; n135 = n47 & n59; n143 = n68 & n58; n152 = n69 | n135; n162 = n86 & n79; n171 = n86 & n90; n181 = n87 | n162; n199 = n124; n208 = n143 & n125; n227 = n152 | n208; n272 = n227; n273 = n227; n282 = n171 & n273; n293 = n181 | n282; n311 = n41; n320 = n58 & n199; n328 = n59 | n320; n338 = n91 & n272; n349 = n79 | n338; n366 = n57 ^ n311; n376 = n58 ^ n199; n384 = n68 ^ n328; n394 = n91 ^ n272; n404 = n86 ^ n349; n412 = n96 ^ n293; n413 = n96 & n293; n422 = n97 | n413; c |= (n32 & 0x1) << 0; c |= (n40 & 0x1) << 1; c |= (n366 & 0x1) << 2; c |= (n376 & 0x1) << 3; c |= (n384 & 0x1) << 4; c |= (n394 & 0x1) << 5; c |= (n404 & 0x1) << 6; c |= (n412 & 0x1) << 7; c |= (n422 & 0x1) << 8; return c; }
the_stack_data/103264615.c
#include <stdio.h> #include <stdlib.h> void sum(int *p, int N) { int sum = 0; int i = 0, j = 0; for (i = 0; i < N; ++i) { for (j = 0; j < N; ++j) { if (i != j) { sum = sum + p[i] * 10 + p[j]; } } } printf("%d\n", sum); } int main(void) { int N = 0; int *p = (int *)calloc(N, sizeof(int)); scanf("%d", &N); int i = 0; for (i = 0; i < N; ++i) { scanf("%d", &p[i]); } sum(p, N); free(p); return 0; }
the_stack_data/110671.c
#include<stdio.h> #include<stdlib.h> struct Node { int data; struct Node *next; } *firstNode = NULL; void createNodes(int array[], int numberOfNodes) { struct Node *tempNode, *lastNode; firstNode = (struct Node *) malloc(sizeof(struct Node)); firstNode->data = array[0]; firstNode->next = NULL; lastNode = firstNode; for(int i = 1; i < numberOfNodes; i++) { tempNode = (struct Node *) malloc(sizeof(struct Node)); tempNode->data = array[i]; tempNode->next = NULL; lastNode->next = tempNode; lastNode = tempNode; } } void displayNodes(struct Node *pointNode) { printf("\nDisplaying Linked List Values:\n\n"); while(pointNode != NULL) { printf("%d ", pointNode->data); pointNode = pointNode->next; } printf("\n"); } int main() { int array [] = {10, 23, 24, 11, 1, 2, 6, 7, 3}; createNodes(array, 9); displayNodes(firstNode); return 0; }
the_stack_data/137137.c
#include <stdio.h> int main() { long a = 0, b = 0, c = 0, d = 0, e = 0, f = 0, g = 0, h = 0; b = 57, c = 57; a = 0; if (a != 1) { b *= 100; b -= -100000; c = b; c -= -17000; } while (1) { f = 1; d = 2; do { e = 2; // Since b and d are integers, if this isn't true, d * e will never equal b if (b % d == 0) { do { if (d * e == b) { f = 0; } e -= -1; g = e - b; } while (g != 0); } d -= -1; g = d - b; } while (g != 0); if (f == 0) { h -= -1; } g = b - c; if (g == 0) { break; } b -= -17; } printf("h: %d\n", h); }
the_stack_data/215767833.c
/* * Copyright (C) 2004 CodeSourcery, LLC * * Permission to use, copy, modify, and distribute this file * for any purpose is hereby granted without fee, provided that * the above copyright notice and this notice appears in all * copies. * * This file is distributed WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ /* Handle ELF .{pre_init,init,fini}_array sections. */ #include <sys/types.h> #ifdef HAVE_INITFINI_ARRAY /* These magic symbols are provided by the linker. */ extern void (*__preinit_array_start []) (void) __attribute__((weak)); extern void (*__preinit_array_end []) (void) __attribute__((weak)); extern void (*__init_array_start []) (void) __attribute__((weak)); extern void (*__init_array_end []) (void) __attribute__((weak)); extern void _init (void); /* Iterate over all the init routines. */ void __libc_init_array (void) { size_t count; size_t i; count = __preinit_array_end - __preinit_array_start; for (i = 0; i < count; i++) __preinit_array_start[i] (); _init (); count = __init_array_end - __init_array_start; for (i = 0; i < count; i++) __init_array_start[i] (); } #endif
the_stack_data/176706932.c
#include <stdio.h> #include <string.h> #define N 1564 typedef struct { char nome_rua[15]; char bairro[15]; int numero; char cidade[15]; char estado[3]; }endereco; typedef struct { char tipo[13]; endereco end; float valor; char situacao[8]; }cadastro; void ler_arquivo(int *cont, cadastro *p){ FILE *arquivo; arquivo=fopen("Imoveis.txt","r"); if(arquivo==NULL){ return; } while (!feof(arquivo)) { fscanf(arquivo,"----Imovel %d----\n",cont); fscanf(arquivo,"Tipo do imovel:%s\n",p[*cont].tipo); fscanf(arquivo,"Nome da rua:%s\n",p[*cont].end.nome_rua); fscanf(arquivo,"Nome do bairro:%s\n",p[*cont].end.bairro); fscanf(arquivo,"Numero do imovel:%d\n",&p[*cont].end.numero); fscanf(arquivo,"cidade:%s\n",p[*cont].end.cidade); fscanf(arquivo,"estado:%s\n",p[*cont].end.estado); fscanf(arquivo,"preco:%f\n",&p[*cont].valor); fscanf(arquivo,"Situacao:%s\n",p[*cont].situacao); (*cont)++; } fclose(arquivo); } void cadastrar(int *cont, cadastro *p){ printf("Digite o tipo de imovel:"); scanf(" %[^\n]s",p[*cont].tipo); printf("Digite o Nome da rua:"); scanf(" %[^\n]s",p[*cont].end.nome_rua); printf("Digite o Nome do bairro:"); scanf(" %[^\n]s",p[*cont].end.bairro); printf("Digite o Numero do imovel:"); scanf(" %d",&p[*cont].end.numero); printf("Digite o Nome da cidade:"); scanf(" %[^\n]s",p[*cont].end.cidade); printf("Digite o Estado(sigla):"); scanf(" %[^\n]s",p[*cont].end.estado); printf("Digite o preco do imovel:"); scanf(" %f",&p[*cont].valor); printf("Digite a situacao:"); scanf(" %[^\n]s",p[*cont].situacao); (*cont)++; } void salvar_arquivo(int cont,cadastro *p){ FILE *arquivo; arquivo=fopen("Imoveis.txt","a"); if(arquivo==NULL){ printf("Erro pra abri arquivo!!!"); return; } fprintf(arquivo,"----Imovel %d----\n",cont); fprintf(arquivo,"Tipo do imovel:%s\n",p[cont].tipo); fprintf(arquivo,"Nome da rua:%s\n",p[cont].end.nome_rua); fprintf(arquivo,"Nome do bairro:%s\n",p[cont].end.bairro); fprintf(arquivo,"Numero do imovel:%d\n",p[cont].end.numero); fprintf(arquivo,"cidade:%s\n",p[cont].end.cidade); fprintf(arquivo,"estado:%s\n",p[cont].end.estado); fprintf(arquivo,"preco:%2.f\n",p[cont].valor); fprintf(arquivo,"Situacao:%s\n\n",p[cont].situacao); fclose(arquivo); } void imprimir(int cont, cadastro *p){ printf("----Imovel %d----\n",cont); printf("Tipo do imovel:%s\n",p[cont].tipo); printf("Nome da rua:%s\n",p[cont].end.nome_rua); printf("Nome do bairro:%s\n",p[cont].end.bairro); printf("Numero do imovel:%d\n",p[cont].end.numero); printf("cidade:%s\n",p[cont].end.cidade); printf("estado:%s\n",p[cont].end.estado); printf("preco:%2.f\n",p[cont].valor); printf("Situacao:%s\n\n",p[cont].situacao); } void pesquisar_tipo(int cont, cadastro *p){ char digitado[10]; printf("Digite o tipo para pesquisar:"); scanf(" %[^\n]s",digitado); int i; for(i=0;i<cont;i++){ if(strcmp(digitado,p[i].tipo)==0){ imprimir(i,p); } } } void pesquisar_situacao(int cont, cadastro *p){ char digitado[10]; printf("Digite a situacao para pesquisar:"); scanf(" %[^\n]s",digitado); int i; for(i=0;i<cont;i++){ if(strcmp(digitado,p[i].situacao)==0){ imprimir(i,p); } } } void pesquisar_preco(int cont, cadastro *p){ int Num,Num2,i; printf("Digite o preco Min:"); scanf("%d",&Num); printf("Digite o preco Max:"); scanf("%d",&Num2); for(i=0;i<cont;i++){ if( (p[i].valor>=Num) && (p[i].valor<=Num2)){ imprimir(i,p); } } } int main(){ cadastro p[N]; int cont=0,opcao; ler_arquivo(&cont,p); while(1){ printf("Menu:\n1)Cadastrar Imovel\n2)Pesquisar por tipo\n3)aluguel\n4)pesquisar por faixa de preco\n5)Sair.\n"); printf("R="); scanf("%d",&opcao); if(opcao==1){ cadastrar(&cont,p); salvar_arquivo((cont-1),p); } if(opcao==2){ pesquisar_tipo(cont,p); } if(opcao==3){ pesquisar_situacao(cont,p); } if(opcao==4){ pesquisar_preco(cont,p); } if(opcao==5){ printf("Volte sempre!!!!\n"); break; } else { printf("opcao invalida!!!!\n"); } } }
the_stack_data/731649.c
#include <stdio.h> #include <stdlib.h> #define TAILLE 500 void print() { printf("Hello World \n"); } // Test for calls with STATIC_CONTROLIZE_ACROSS_USER_CALL TRUE int main () { int A[TAILLE]; int i = 0; for (i = 0; i < TAILLE; i++) A[i] = 0; print(); for (i = 1; i < TAILLE; i++) A[i-1] = 1; return A[0]; }
the_stack_data/248579537.c
#include <stdio.h> #include <stdlib.h> int main() { int nb; int resu; printf("Quelle valeur de la suite voulez vous afficher ?\n"); scanf("%d", &nb); resu = fi(nb); printf("La %deme valeur de la suite est %d!", nb, resu); return 0; }
the_stack_data/190767427.c
#include <stdio.h> typedef void (*myfunc)(); int nullPointerFunctionTest(void (*foo)()); int main(int argc, char **argv) { myfunc foo = (myfunc)0; return nullPointerFunctionTest(foo); }
the_stack_data/148577724.c
#include <stdio.h> #include <stdlib.h> #include <string.h> typedef int DATATYPE; typedef struct _list_stack { DATATYPE data; struct _list_stack *next; } stack; stack *stackCreate() { stack *s = (stack *)malloc(sizeof(stack)); if (s == NULL) { return NULL; } s->next = NULL; return s; } void stackDestroy(stack *s) { stack *tempS = NULL; while (s->next != NULL) { tempS = s->next; s->next = tempS->next; free(tempS); } free(s); } void stackPush(stack *s, DATATYPE data) { stack *node = (stack *)malloc(sizeof(stack)); if (node == NULL) { return; } node->data = data; node->next = s->next; s->next = node; } DATATYPE stackPop(stack *s) { if (s->next == NULL) { return 0; } stack *next = s->next; DATATYPE data = next->data; s->next = next->next; free(next); return data; } DATATYPE stackPeek(stack *s) { if (s->next == NULL) { return 0; } return s->next->data; } //้ฆ–ๅ…ˆๅฐ†-1ๆ”พๅ…ฅๆ ˆ้กถ๏ผŒ้‡ๅˆฐโ€˜(โ€™ๅฐ†ไธ‹ๆ ‡ๅ…ฅๆ ˆ๏ผŒ //้‡ๅˆฐโ€˜)โ€™ๅผนๅ‡บๆ ˆ้กถๅ…ƒ็ด ๏ผŒๅนถๅฐ†ๅฝ“ๅ‰ๅ…ƒ็ด ไธ‹ๆ ‡ไธŽๆ ˆ้กถ็š„็›ธๅ‡๏ผŒๅพ—ๅ‡บๅฝ“ๅ‰ๆœ‰ๆ•ˆ้•ฟๅบฆ๏ผŒ //่ฎฐๅฝ•ไธ‹ๆœ€ๅคงๅ€ผ int longestValidParentheses(char * s){ int len = (int)strlen(s); if (len == 0 || len == 1) { return 0; } int max = 0; stack *st = stackCreate(); stackPush(st, -1); for (int i = 0; i < len; i++) { if (s[i] == '(') { stackPush(st, i); } else if (s[i] == ')') { stackPop(st); if (st->next == NULL) { stackPush(st, i); } else { int temp = i - stackPeek(st); max = temp > max ? temp : max; } } } stackDestroy(st); return max; } //ๅทฆๅณ้ๅŽ† //ไธคไธช่ฎกๆ•ฐๅ™จleft=(็š„ๆ•ฐ๏ผŒright=)็š„ๆ•ฐ๏ผŒ //ๅฝ“ left=right ๅฝ“ๅ‰ๆœ‰ๆ•ˆ้•ฟๅบฆ=left*2๏ผŒๅฆ‚ๆžœleft<right,้ƒฝ็ฝฎไธบ0ใ€‚ //ไปŽๅทฆๅˆฐๅณleft<right = 0๏ผŒไปŽๅณๅˆฐๅทฆ left>right = 0๏ผŒ้ๅŽ†้ๅŽ†ไธคๆฌก๏ผŒๆ‰พๅˆฐๆœ€ๅคงๅ€ผ int longestValidParentheses1(char * s){ int len = (int)strlen(s); if (len == 0 || len == 1) { return 0; } int max = 0, left = 0, right = 0; for (int i = 0; i < len; i++) { if (s[i] == '(') { left++; } else if (s[i] == ')'){ right++; } if (left == right) { int temp = left * 2; max = temp > max ? temp : max; } else if (left < right) { left = right = 0; } } left = right = 0; for (int i = len - 1; i >= 0; i--) { if (s[i] == '(') { left++; } else if (s[i] == ')'){ right++; } if (left == right) { int temp = left * 2; max = temp > max ? temp : max; } else if (left > right) { left = right = 0; } } return max; } //ๅŠจๆ€่ง„ๅˆ’ๆ–นๆณ• //ไปฅ ( ็ป“ๅฐพ็š„๏ผŒ่‚ฏๅฎšไธๆ˜ฏๆœ‰ๆ•ˆ็š„ๆ‹ฌๅท ...)( ...(( //ๆ‰€ไปฅๅช่ฆ่€ƒ่™‘็ป“ๅฐพๆ˜ฏ ) ็š„ๆƒ…ๅ†ต๏ผŒ่ฟ™ๆ—ถๆœ‰ไธค็งๆƒ…ๅ†ต ...() ...)) int longestValidParentheses0(char * s){ int len = (int)strlen(s); if (len == 0 || len == 1) { return 0; } int max = 0; int *dp = (int *)malloc(sizeof(int) * len); for (int i = 0; i < len; i++) { dp[i] = 0; } for (int i = 1; i < len; i++) { if (s[i] == ')') { if (s[i-1] == '(') { dp[i] = i >= 2 ? dp[i-2] + 2 : 2; } else if (i - dp[i-1] > 0 && s[i-dp[i-1]-1] == '(') { int temp = i - dp[i-1] - 2; dp[i] = dp[i-1] + (temp >= 0 ? dp[temp] : 0) + 2; } max = dp[i] > max ? dp[i] : max; } } return max; } int main(int argc, const char * argv[]) { char *s = "()()(()((()))"; printf(" = %d\n", longestValidParentheses0(s)); return 0; }
the_stack_data/21642.c
#include <stdio.h> #include <math.h> #define N 5 int main(){ float salarios[N], salarios_reajustados[N]; int i; for(i=0; i<N ; i++){ printf("Digite o salรกrio do funcionรกrio %d: ", i+1); scanf("%f", &salarios[i]); } for(i=0; i<N ; i++){ salarios_reajustados[i] = salarios[i] * 1.02; } printf("\n-----Salรกrios dos funcionรกrios-----\n|"); for(i=0; i<N ; i++){ printf(" %f |", salarios[i]); } printf("\n-----Salรกrios reajustados-----\n|"); for(i=0; i<N ; i++){ printf(" %f |", salarios_reajustados[i]); } return 0; }
the_stack_data/234519024.c
/* { dg-do compile } */ /* { dg-require-effective-target ia32 } */ void foo1(int i, int j) __attribute__((fastcall, cdecl)); /* { dg-error "not compatible" } */ void foo2(int i, int j) __attribute__((fastcall, stdcall)); /* { dg-error "not compatible" } */ void foo3(int i, int j) __attribute__((fastcall, regparm(2))); /* { dg-error "not compatible" } */ void foo4(int i, int j) __attribute__((stdcall, cdecl)); /* { dg-error "not compatible" } */ void foo5(int i, int j) __attribute__((stdcall, fastcall)); /* { dg-error "not compatible" } */ void foo6(int i, int j) __attribute__((cdecl, fastcall)); /* { dg-error "not compatible" } */ void foo7(int i, int j) __attribute__((cdecl, stdcall)); /* { dg-error "not compatible" } */ void foo8(int i, int j) __attribute__((regparm(2), fastcall)); /* { dg-error "not compatible" } */
the_stack_data/521853.c
//===--------------- fixtfsi_test.c - Test __fixtfsi ----------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file tests __fixtfsi for the compiler_rt library. // //===----------------------------------------------------------------------===// #include <stdio.h> #if __LDBL_MANT_DIG__ == 113 #include "fp_test.h" int __fixtfsi(long double a); int test__fixtfsi(long double a, int expected) { int x = __fixtfsi(a); int ret = (x != expected); if (ret){ printf("error in test__fixtfsi(%.20Lf) = %d, " "expected %d\n", a, x, expected); } return ret; } char assumption_1[sizeof(long double) * CHAR_BIT == 128] = {0}; #endif int main() { #if __LDBL_MANT_DIG__ == 113 if (test__fixtfsi(makeInf128(), 0x7fffffff)) return 1; if (test__fixtfsi(0, 0x0)) return 1; if (test__fixtfsi(0x1.23456789abcdefp+5, 0x24)) return 1; if (test__fixtfsi(0x1.23456789abcdefp-3, 0x0)) return 1; if (test__fixtfsi(0x1.23456789abcdefp+20, 0x123456)) return 1; if (test__fixtfsi(0x1.23456789abcdefp+40, 0x7fffffff)) return 1; if (test__fixtfsi(0x1.23456789abcdefp+256, 0x7fffffff)) return 1; if (test__fixtfsi(-0x1.23456789abcdefp+20, 0xffedcbaa)) return 1; if (test__fixtfsi(-0x1.23456789abcdefp+40, 0x80000000)) return 1; #else printf("skipped\n"); #endif return 0; }
the_stack_data/467522.c
#include <stdio.h> /* retorna o num de divisores pares de n */ int div(int n); /* Nao modifique o main!! */ int main () { int n; scanf("%d", &n); printf("%d\n", div(n)); return 0; } int div(int n){ int cont=0; for (int i=n;i>0;i--){ if(n%i==0){ if(i%2==0){ cont++; } } } return cont; }
the_stack_data/7951137.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-โ”‚ โ”‚vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :viโ”‚ โ•žโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•ก โ”‚ Copyright 2021 Justine Alexandra Roberts Tunney โ”‚ โ”‚ โ”‚ โ”‚ Permission to use, copy, modify, and/or distribute this software for โ”‚ โ”‚ any purpose with or without fee is hereby granted, provided that the โ”‚ โ”‚ above copyright notice and this permission notice appear in all copies. โ”‚ โ”‚ โ”‚ โ”‚ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL โ”‚ โ”‚ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED โ”‚ โ”‚ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE โ”‚ โ”‚ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL โ”‚ โ”‚ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR โ”‚ โ”‚ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER โ”‚ โ”‚ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR โ”‚ โ”‚ PERFORMANCE OF THIS SOFTWARE. โ”‚ โ•šโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€*/ int __signgam;
the_stack_data/151704605.c
void _ZN10__cxxabiv116__enum_type_infoD0Ev() {} ; void _ZN10__cxxabiv116__enum_type_infoD1Ev() {} ; void _ZN10__cxxabiv116__enum_type_infoD2Ev() {} ; void _ZN10__cxxabiv117__array_type_infoD0Ev() {} ; void _ZN10__cxxabiv117__array_type_infoD1Ev() {} ; void _ZN10__cxxabiv117__array_type_infoD2Ev() {} ; void _ZN10__cxxabiv117__class_type_infoD0Ev() {} ; void _ZN10__cxxabiv117__class_type_infoD1Ev() {} ; void _ZN10__cxxabiv117__class_type_infoD2Ev() {} ; void _ZN10__cxxabiv117__pbase_type_infoD0Ev() {} ; void _ZN10__cxxabiv117__pbase_type_infoD1Ev() {} ; void _ZN10__cxxabiv117__pbase_type_infoD2Ev() {} ; void _ZN10__cxxabiv119__pointer_type_infoD0Ev() {} ; void _ZN10__cxxabiv119__pointer_type_infoD1Ev() {} ; void _ZN10__cxxabiv119__pointer_type_infoD2Ev() {} ; void _ZN10__cxxabiv120__function_type_infoD0Ev() {} ; void _ZN10__cxxabiv120__function_type_infoD1Ev() {} ; void _ZN10__cxxabiv120__function_type_infoD2Ev() {} ; void _ZN10__cxxabiv120__si_class_type_infoD0Ev() {} ; void _ZN10__cxxabiv120__si_class_type_infoD1Ev() {} ; void _ZN10__cxxabiv120__si_class_type_infoD2Ev() {} ; void _ZN10__cxxabiv121__vmi_class_type_infoD0Ev() {} ; void _ZN10__cxxabiv121__vmi_class_type_infoD1Ev() {} ; void _ZN10__cxxabiv121__vmi_class_type_infoD2Ev() {} ; void _ZN10__cxxabiv123__fundamental_type_infoD0Ev() {} ; void _ZN10__cxxabiv123__fundamental_type_infoD1Ev() {} ; void _ZN10__cxxabiv123__fundamental_type_infoD2Ev() {} ; void _ZN10__cxxabiv129__pointer_to_member_type_infoD0Ev() {} ; void _ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev() {} ; void _ZN10__cxxabiv129__pointer_to_member_type_infoD2Ev() {} ; void _ZN9__gnu_cxx12__atomic_addEPVii() {} ; void _ZN9__gnu_cxx17__pool_alloc_base12_M_get_mutexEv() {} ; void _ZN9__gnu_cxx17__pool_alloc_base16_M_get_free_listEm() {} ; void _ZN9__gnu_cxx17__pool_alloc_base9_M_refillEm() {} ; void _ZN9__gnu_cxx18__exchange_and_addEPVii() {} ; void _ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE4fileEv() {} ; void _ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE4fileEv() {} ; void _ZN9__gnu_cxx27__verbose_terminate_handlerEv() {} ; void _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj() {} ; void _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE() {} ; void _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv() {} ; void _ZNK10__cxxabiv117__class_type_info12__do_dyncastElNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE() {} ; void _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcElPKvPKS0_S2_() {} ; void _ZNK10__cxxabiv117__pbase_type_info10__do_catchEPKSt9type_infoPPvj() {} ; void _ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj() {} ; void _ZNK10__cxxabiv119__pointer_type_info14__is_pointer_pEv() {} ; void _ZNK10__cxxabiv119__pointer_type_info15__pointer_catchEPKNS_17__pbase_type_infoEPPvj() {} ; void _ZNK10__cxxabiv120__function_type_info15__is_function_pEv() {} ; void _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE() {} ; void _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE() {} ; void _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcElPKvPKNS_17__class_type_infoES2_() {} ; void _ZNK10__cxxabiv121__vmi_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE() {} ; void _ZNK10__cxxabiv121__vmi_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE() {} ; void _ZNK10__cxxabiv121__vmi_class_type_info20__do_find_public_srcElPKvPKNS_17__class_type_infoES2_() {} ; void _ZNK10__cxxabiv129__pointer_to_member_type_info15__pointer_catchEPKNS_17__pbase_type_infoEPPvj() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEPKwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEPKwmm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofERKS2_m() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEPKwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEPKwmm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofERKS2_m() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE13get_allocatorEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEPKwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEPKwmm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofERKS2_m() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEPKwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEPKwmm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofERKS2_m() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE2atEm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE3endEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE4_Rep12_M_is_leakedEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE4_Rep12_M_is_sharedEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE4copyEPwmm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE4dataEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE4findEPKwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE4findEPKwmm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE4findERKS2_m() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE4findEwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE4rendEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE4sizeEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE5beginEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE5c_strEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE5emptyEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE5rfindEPKwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE5rfindEPKwmm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE5rfindERKS2_m() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE5rfindEwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE6_M_repEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE6lengthEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE6rbeginEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE6substrEmm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE7_M_dataEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE7_M_iendEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE7compareEPKw() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE7compareERKS2_() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmPKw() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmPKwm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmRKS2_() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmRKS2_mm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE8_M_checkEmPKc() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE8_M_limitEmm() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE8capacityEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE8max_sizeEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEE9_M_ibeginEv() {} ; void _ZNKSbIwSt11char_traitsIwESaIwEEixEm() {} ; void _ZNKSi6gcountEv() {} ; void _ZNKSi6sentrycvbEv() {} ; void _ZNKSo6sentrycvbEv() {} ; void _ZNKSs12find_last_ofEPKcm() {} ; void _ZNKSs12find_last_ofEPKcmm() {} ; void _ZNKSs12find_last_ofERKSsm() {} ; void _ZNKSs12find_last_ofEcm() {} ; void _ZNKSs13find_first_ofEPKcm() {} ; void _ZNKSs13find_first_ofEPKcmm() {} ; void _ZNKSs13find_first_ofERKSsm() {} ; void _ZNKSs13find_first_ofEcm() {} ; void _ZNKSs13get_allocatorEv() {} ; void _ZNKSs16find_last_not_ofEPKcm() {} ; void _ZNKSs16find_last_not_ofEPKcmm() {} ; void _ZNKSs16find_last_not_ofERKSsm() {} ; void _ZNKSs16find_last_not_ofEcm() {} ; void _ZNKSs17find_first_not_ofEPKcm() {} ; void _ZNKSs17find_first_not_ofEPKcmm() {} ; void _ZNKSs17find_first_not_ofERKSsm() {} ; void _ZNKSs17find_first_not_ofEcm() {} ; void _ZNKSs2atEm() {} ; void _ZNKSs3endEv() {} ; void _ZNKSs4_Rep12_M_is_leakedEv() {} ; void _ZNKSs4_Rep12_M_is_sharedEv() {} ; void _ZNKSs4copyEPcmm() {} ; void _ZNKSs4dataEv() {} ; void _ZNKSs4findEPKcm() {} ; void _ZNKSs4findEPKcmm() {} ; void _ZNKSs4findERKSsm() {} ; void _ZNKSs4findEcm() {} ; void _ZNKSs4rendEv() {} ; void _ZNKSs4sizeEv() {} ; void _ZNKSs5beginEv() {} ; void _ZNKSs5c_strEv() {} ; void _ZNKSs5emptyEv() {} ; void _ZNKSs5rfindEPKcm() {} ; void _ZNKSs5rfindEPKcmm() {} ; void _ZNKSs5rfindERKSsm() {} ; void _ZNKSs5rfindEcm() {} ; void _ZNKSs6_M_repEv() {} ; void _ZNKSs6lengthEv() {} ; void _ZNKSs6rbeginEv() {} ; void _ZNKSs6substrEmm() {} ; void _ZNKSs7_M_dataEv() {} ; void _ZNKSs7_M_iendEv() {} ; void _ZNKSs7compareEPKc() {} ; void _ZNKSs7compareERKSs() {} ; void _ZNKSs7compareEmmPKc() {} ; void _ZNKSs7compareEmmPKcm() {} ; void _ZNKSs7compareEmmRKSs() {} ; void _ZNKSs7compareEmmRKSsmm() {} ; void _ZNKSs8_M_checkEmPKc() {} ; void _ZNKSs8_M_limitEmm() {} ; void _ZNKSs8capacityEv() {} ; void _ZNKSs8max_sizeEv() {} ; void _ZNKSs9_M_ibeginEv() {} ; void _ZNKSsixEm() {} ; void _ZNKSt10moneypunctIcLb0EE10neg_formatEv() {} ; void _ZNKSt10moneypunctIcLb0EE10pos_formatEv() {} ; void _ZNKSt10moneypunctIcLb0EE11curr_symbolEv() {} ; void _ZNKSt10moneypunctIcLb0EE11do_groupingEv() {} ; void _ZNKSt10moneypunctIcLb0EE11frac_digitsEv() {} ; void _ZNKSt10moneypunctIcLb0EE13decimal_pointEv() {} ; void _ZNKSt10moneypunctIcLb0EE13do_neg_formatEv() {} ; void _ZNKSt10moneypunctIcLb0EE13do_pos_formatEv() {} ; void _ZNKSt10moneypunctIcLb0EE13negative_signEv() {} ; void _ZNKSt10moneypunctIcLb0EE13positive_signEv() {} ; void _ZNKSt10moneypunctIcLb0EE13thousands_sepEv() {} ; void _ZNKSt10moneypunctIcLb0EE14do_curr_symbolEv() {} ; void _ZNKSt10moneypunctIcLb0EE14do_frac_digitsEv() {} ; void _ZNKSt10moneypunctIcLb0EE16do_decimal_pointEv() {} ; void _ZNKSt10moneypunctIcLb0EE16do_negative_signEv() {} ; void _ZNKSt10moneypunctIcLb0EE16do_positive_signEv() {} ; void _ZNKSt10moneypunctIcLb0EE16do_thousands_sepEv() {} ; void _ZNKSt10moneypunctIcLb0EE8groupingEv() {} ; void _ZNKSt10moneypunctIcLb1EE10neg_formatEv() {} ; void _ZNKSt10moneypunctIcLb1EE10pos_formatEv() {} ; void _ZNKSt10moneypunctIcLb1EE11curr_symbolEv() {} ; void _ZNKSt10moneypunctIcLb1EE11do_groupingEv() {} ; void _ZNKSt10moneypunctIcLb1EE11frac_digitsEv() {} ; void _ZNKSt10moneypunctIcLb1EE13decimal_pointEv() {} ; void _ZNKSt10moneypunctIcLb1EE13do_neg_formatEv() {} ; void _ZNKSt10moneypunctIcLb1EE13do_pos_formatEv() {} ; void _ZNKSt10moneypunctIcLb1EE13negative_signEv() {} ; void _ZNKSt10moneypunctIcLb1EE13positive_signEv() {} ; void _ZNKSt10moneypunctIcLb1EE13thousands_sepEv() {} ; void _ZNKSt10moneypunctIcLb1EE14do_curr_symbolEv() {} ; void _ZNKSt10moneypunctIcLb1EE14do_frac_digitsEv() {} ; void _ZNKSt10moneypunctIcLb1EE16do_decimal_pointEv() {} ; void _ZNKSt10moneypunctIcLb1EE16do_negative_signEv() {} ; void _ZNKSt10moneypunctIcLb1EE16do_positive_signEv() {} ; void _ZNKSt10moneypunctIcLb1EE16do_thousands_sepEv() {} ; void _ZNKSt10moneypunctIcLb1EE8groupingEv() {} ; void _ZNKSt10moneypunctIwLb0EE10neg_formatEv() {} ; void _ZNKSt10moneypunctIwLb0EE10pos_formatEv() {} ; void _ZNKSt10moneypunctIwLb0EE11curr_symbolEv() {} ; void _ZNKSt10moneypunctIwLb0EE11do_groupingEv() {} ; void _ZNKSt10moneypunctIwLb0EE11frac_digitsEv() {} ; void _ZNKSt10moneypunctIwLb0EE13decimal_pointEv() {} ; void _ZNKSt10moneypunctIwLb0EE13do_neg_formatEv() {} ; void _ZNKSt10moneypunctIwLb0EE13do_pos_formatEv() {} ; void _ZNKSt10moneypunctIwLb0EE13negative_signEv() {} ; void _ZNKSt10moneypunctIwLb0EE13positive_signEv() {} ; void _ZNKSt10moneypunctIwLb0EE13thousands_sepEv() {} ; void _ZNKSt10moneypunctIwLb0EE14do_curr_symbolEv() {} ; void _ZNKSt10moneypunctIwLb0EE14do_frac_digitsEv() {} ; void _ZNKSt10moneypunctIwLb0EE16do_decimal_pointEv() {} ; void _ZNKSt10moneypunctIwLb0EE16do_negative_signEv() {} ; void _ZNKSt10moneypunctIwLb0EE16do_positive_signEv() {} ; void _ZNKSt10moneypunctIwLb0EE16do_thousands_sepEv() {} ; void _ZNKSt10moneypunctIwLb0EE8groupingEv() {} ; void _ZNKSt10moneypunctIwLb1EE10neg_formatEv() {} ; void _ZNKSt10moneypunctIwLb1EE10pos_formatEv() {} ; void _ZNKSt10moneypunctIwLb1EE11curr_symbolEv() {} ; void _ZNKSt10moneypunctIwLb1EE11do_groupingEv() {} ; void _ZNKSt10moneypunctIwLb1EE11frac_digitsEv() {} ; void _ZNKSt10moneypunctIwLb1EE13decimal_pointEv() {} ; void _ZNKSt10moneypunctIwLb1EE13do_neg_formatEv() {} ; void _ZNKSt10moneypunctIwLb1EE13do_pos_formatEv() {} ; void _ZNKSt10moneypunctIwLb1EE13negative_signEv() {} ; void _ZNKSt10moneypunctIwLb1EE13positive_signEv() {} ; void _ZNKSt10moneypunctIwLb1EE13thousands_sepEv() {} ; void _ZNKSt10moneypunctIwLb1EE14do_curr_symbolEv() {} ; void _ZNKSt10moneypunctIwLb1EE14do_frac_digitsEv() {} ; void _ZNKSt10moneypunctIwLb1EE16do_decimal_pointEv() {} ; void _ZNKSt10moneypunctIwLb1EE16do_negative_signEv() {} ; void _ZNKSt10moneypunctIwLb1EE16do_positive_signEv() {} ; void _ZNKSt10moneypunctIwLb1EE16do_thousands_sepEv() {} ; void _ZNKSt10moneypunctIwLb1EE8groupingEv() {} ; void _ZNKSt11__timepunctIcE15_M_am_pm_formatEPKc() {} ; void _ZNKSt11__timepunctIcE15_M_date_formatsEPPKc() {} ; void _ZNKSt11__timepunctIcE15_M_time_formatsEPPKc() {} ; void _ZNKSt11__timepunctIcE19_M_days_abbreviatedEPPKc() {} ; void _ZNKSt11__timepunctIcE20_M_date_time_formatsEPPKc() {} ; void _ZNKSt11__timepunctIcE21_M_months_abbreviatedEPPKc() {} ; void _ZNKSt11__timepunctIcE6_M_putEPcmPKcPK2tm() {} ; void _ZNKSt11__timepunctIcE7_M_daysEPPKc() {} ; void _ZNKSt11__timepunctIcE8_M_am_pmEPPKc() {} ; void _ZNKSt11__timepunctIcE9_M_monthsEPPKc() {} ; void _ZNKSt11__timepunctIwE15_M_am_pm_formatEPKw() {} ; void _ZNKSt11__timepunctIwE15_M_date_formatsEPPKw() {} ; void _ZNKSt11__timepunctIwE15_M_time_formatsEPPKw() {} ; void _ZNKSt11__timepunctIwE19_M_days_abbreviatedEPPKw() {} ; void _ZNKSt11__timepunctIwE20_M_date_time_formatsEPPKw() {} ; void _ZNKSt11__timepunctIwE21_M_months_abbreviatedEPPKw() {} ; void _ZNKSt11__timepunctIwE6_M_putEPwmPKwPK2tm() {} ; void _ZNKSt11__timepunctIwE7_M_daysEPPKw() {} ; void _ZNKSt11__timepunctIwE8_M_am_pmEPPKw() {} ; void _ZNKSt11__timepunctIwE9_M_monthsEPPKw() {} ; void _ZNKSt11logic_error4whatEv() {} ; void _ZNKSt12__basic_fileIcE7is_openEv() {} ; void _ZNKSt13basic_filebufIcSt11char_traitsIcEE7is_openEv() {} ; void _ZNKSt13basic_filebufIwSt11char_traitsIwEE7is_openEv() {} ; void _ZNKSt13basic_fstreamIcSt11char_traitsIcEE5rdbufEv() {} ; void _ZNKSt13basic_fstreamIwSt11char_traitsIwEE5rdbufEv() {} ; void _ZNKSt13basic_istreamIwSt11char_traitsIwEE6gcountEv() {} ; void _ZNKSt13basic_istreamIwSt11char_traitsIwEE6sentrycvbEv() {} ; void _ZNKSt13basic_ostreamIwSt11char_traitsIwEE6sentrycvbEv() {} ; void _ZNKSt13runtime_error4whatEv() {} ; void _ZNKSt14basic_ifstreamIcSt11char_traitsIcEE5rdbufEv() {} ; void _ZNKSt14basic_ifstreamIwSt11char_traitsIwEE5rdbufEv() {} ; void _ZNKSt14basic_ofstreamIcSt11char_traitsIcEE5rdbufEv() {} ; void _ZNKSt14basic_ofstreamIwSt11char_traitsIwEE5rdbufEv() {} ; void _ZNKSt15basic_streambufIcSt11char_traitsIcEE4gptrEv() {} ; void _ZNKSt15basic_streambufIcSt11char_traitsIcEE4pptrEv() {} ; void _ZNKSt15basic_streambufIcSt11char_traitsIcEE5ebackEv() {} ; void _ZNKSt15basic_streambufIcSt11char_traitsIcEE5egptrEv() {} ; void _ZNKSt15basic_streambufIcSt11char_traitsIcEE5epptrEv() {} ; void _ZNKSt15basic_streambufIcSt11char_traitsIcEE5pbaseEv() {} ; void _ZNKSt15basic_streambufIcSt11char_traitsIcEE6getlocEv() {} ; void _ZNKSt15basic_streambufIwSt11char_traitsIwEE4gptrEv() {} ; void _ZNKSt15basic_streambufIwSt11char_traitsIwEE4pptrEv() {} ; void _ZNKSt15basic_streambufIwSt11char_traitsIwEE5ebackEv() {} ; void _ZNKSt15basic_streambufIwSt11char_traitsIwEE5egptrEv() {} ; void _ZNKSt15basic_streambufIwSt11char_traitsIwEE5epptrEv() {} ; void _ZNKSt15basic_streambufIwSt11char_traitsIwEE5pbaseEv() {} ; void _ZNKSt15basic_streambufIwSt11char_traitsIwEE6getlocEv() {} ; void _ZNKSt15basic_stringbufIcSt11char_traitsIcESaIcEE3strEv() {} ; void _ZNKSt15basic_stringbufIwSt11char_traitsIwESaIwEE3strEv() {} ; void _ZNKSt18basic_stringstreamIcSt11char_traitsIcESaIcEE3strEv() {} ; void _ZNKSt18basic_stringstreamIcSt11char_traitsIcESaIcEE5rdbufEv() {} ; void _ZNKSt18basic_stringstreamIwSt11char_traitsIwESaIwEE3strEv() {} ; void _ZNKSt18basic_stringstreamIwSt11char_traitsIwESaIwEE5rdbufEv() {} ; void _ZNKSt19basic_istringstreamIcSt11char_traitsIcESaIcEE3strEv() {} ; void _ZNKSt19basic_istringstreamIcSt11char_traitsIcESaIcEE5rdbufEv() {} ; void _ZNKSt19basic_istringstreamIwSt11char_traitsIwESaIwEE3strEv() {} ; void _ZNKSt19basic_istringstreamIwSt11char_traitsIwESaIwEE5rdbufEv() {} ; void _ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strEv() {} ; void _ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE5rdbufEv() {} ; void _ZNKSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE3strEv() {} ; void _ZNKSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE5rdbufEv() {} ; void _ZNKSt5ctypeIcE10do_tolowerEPcPKc() {} ; void _ZNKSt5ctypeIcE10do_tolowerEc() {} ; void _ZNKSt5ctypeIcE10do_toupperEPcPKc() {} ; void _ZNKSt5ctypeIcE10do_toupperEc() {} ; void _ZNKSt5ctypeIcE8do_widenEPKcS2_Pc() {} ; void _ZNKSt5ctypeIcE8do_widenEc() {} ; void _ZNKSt5ctypeIcE9do_narrowEPKcS2_cPc() {} ; void _ZNKSt5ctypeIcE9do_narrowEcc() {} ; void _ZNKSt5ctypeIwE10do_scan_isEtPKwS2_() {} ; void _ZNKSt5ctypeIwE10do_tolowerEPwPKw() {} ; void _ZNKSt5ctypeIwE10do_tolowerEw() {} ; void _ZNKSt5ctypeIwE10do_toupperEPwPKw() {} ; void _ZNKSt5ctypeIwE10do_toupperEw() {} ; void _ZNKSt5ctypeIwE11do_scan_notEtPKwS2_() {} ; void _ZNKSt5ctypeIwE19_M_convert_to_wmaskEt() {} ; void _ZNKSt5ctypeIwE5do_isEPKwS2_Pt() {} ; void _ZNKSt5ctypeIwE5do_isEtw() {} ; void _ZNKSt5ctypeIwE8do_widenEPKcS2_Pw() {} ; void _ZNKSt5ctypeIwE8do_widenEc() {} ; void _ZNKSt5ctypeIwE9do_narrowEPKwS2_cPc() {} ; void _ZNKSt5ctypeIwE9do_narrowEwc() {} ; void _ZNKSt6locale2id5_M_idEv() {} ; void _ZNKSt6locale4nameEv() {} ; void _ZNKSt6localeeqERKS_() {} ; void _ZNKSt7codecvtIcc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_() {} ; void _ZNKSt7codecvtIcc11__mbstate_tE11do_encodingEv() {} ; void _ZNKSt7codecvtIcc11__mbstate_tE13do_max_lengthEv() {} ; void _ZNKSt7codecvtIcc11__mbstate_tE16do_always_noconvEv() {} ; void _ZNKSt7codecvtIcc11__mbstate_tE5do_inERS0_PKcS4_RS4_PcS6_RS6_() {} ; void _ZNKSt7codecvtIcc11__mbstate_tE6do_outERS0_PKcS4_RS4_PcS6_RS6_() {} ; void _ZNKSt7codecvtIcc11__mbstate_tE9do_lengthERS0_PKcS4_m() {} ; void _ZNKSt7codecvtIwc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_() {} ; void _ZNKSt7codecvtIwc11__mbstate_tE11do_encodingEv() {} ; void _ZNKSt7codecvtIwc11__mbstate_tE13do_max_lengthEv() {} ; void _ZNKSt7codecvtIwc11__mbstate_tE16do_always_noconvEv() {} ; void _ZNKSt7codecvtIwc11__mbstate_tE5do_inERS0_PKcS4_RS4_PwS6_RS6_() {} ; void _ZNKSt7codecvtIwc11__mbstate_tE6do_outERS0_PKwS4_RS4_PcS6_RS6_() {} ; void _ZNKSt7codecvtIwc11__mbstate_tE9do_lengthERS0_PKcS4_m() {} ; void _ZNKSt7collateIcE10_M_compareEPKcS2_() {} ; void _ZNKSt7collateIcE10do_compareEPKcS2_S2_S2_() {} ; void _ZNKSt7collateIcE12_M_transformEPcPKcm() {} ; void _ZNKSt7collateIcE12do_transformEPKcS2_() {} ; void _ZNKSt7collateIcE4hashEPKcS2_() {} ; void _ZNKSt7collateIcE7compareEPKcS2_S2_S2_() {} ; void _ZNKSt7collateIcE7do_hashEPKcS2_() {} ; void _ZNKSt7collateIcE9transformEPKcS2_() {} ; void _ZNKSt7collateIwE10_M_compareEPKwS2_() {} ; void _ZNKSt7collateIwE10do_compareEPKwS2_S2_S2_() {} ; void _ZNKSt7collateIwE12_M_transformEPwPKwm() {} ; void _ZNKSt7collateIwE12do_transformEPKwS2_() {} ; void _ZNKSt7collateIwE4hashEPKwS2_() {} ; void _ZNKSt7collateIwE7compareEPKwS2_S2_S2_() {} ; void _ZNKSt7collateIwE7do_hashEPKwS2_() {} ; void _ZNKSt7collateIwE9transformEPKwS2_() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIjEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIlEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intImEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intItEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIxEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIyEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx() {} ; void _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIjEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIlEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intImEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intItEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIxEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIyEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx() {} ; void _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE12_M_group_intEPKcmcRSt8ios_basePcS9_Ri() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIlEES3_S3_RSt8ios_basecT_() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intImEES3_S3_RSt8ios_basecT_() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIxEES3_S3_RSt8ios_basecT_() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIyEES3_S3_RSt8ios_basecT_() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE14_M_group_floatEPKcmcS6_PcS7_Ri() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIeEES3_S3_RSt8ios_baseccT_() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPKv() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecb() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecd() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basece() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecl() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecm() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecx() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecy() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6_M_padEclRSt8ios_basePcPKcRi() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPKv() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecb() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basece() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecl() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecm() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecx() {} ; void _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecy() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE12_M_group_intEPKcmwRSt8ios_basePwS9_Ri() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIlEES3_S3_RSt8ios_basewT_() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intImEES3_S3_RSt8ios_basewT_() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIxEES3_S3_RSt8ios_basewT_() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIyEES3_S3_RSt8ios_basewT_() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE14_M_group_floatEPKcmwPKwPwS9_Ri() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIdEES3_S3_RSt8ios_basewcT_() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIeEES3_S3_RSt8ios_basewcT_() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPKv() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewb() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewd() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewe() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewl() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewm() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewx() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewy() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6_M_padEwlRSt8ios_basePwPKwRi() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPKv() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewb() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewd() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewe() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewl() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewm() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewx() {} ; void _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewy() {} ; void _ZNKSt8ios_base7failure4whatEv() {} ; void _ZNKSt8messagesIcE18_M_convert_to_charERKSs() {} ; void _ZNKSt8messagesIcE20_M_convert_from_charEPc() {} ; void _ZNKSt8messagesIcE3getEiiiRKSs() {} ; void _ZNKSt8messagesIcE4openERKSsRKSt6locale() {} ; void _ZNKSt8messagesIcE4openERKSsRKSt6localePKc() {} ; void _ZNKSt8messagesIcE5closeEi() {} ; void _ZNKSt8messagesIcE6do_getEiiiRKSs() {} ; void _ZNKSt8messagesIcE7do_openERKSsRKSt6locale() {} ; void _ZNKSt8messagesIcE8do_closeEi() {} ; void _ZNKSt8messagesIwE18_M_convert_to_charERKSbIwSt11char_traitsIwESaIwEE() {} ; void _ZNKSt8messagesIwE20_M_convert_from_charEPc() {} ; void _ZNKSt8messagesIwE3getEiiiRKSbIwSt11char_traitsIwESaIwEE() {} ; void _ZNKSt8messagesIwE4openERKSsRKSt6locale() {} ; void _ZNKSt8messagesIwE4openERKSsRKSt6localePKc() {} ; void _ZNKSt8messagesIwE5closeEi() {} ; void _ZNKSt8messagesIwE6do_getEiiiRKSbIwSt11char_traitsIwESaIwEE() {} ; void _ZNKSt8messagesIwE7do_openERKSsRKSt6locale() {} ; void _ZNKSt8messagesIwE8do_closeEi() {} ; void _ZNKSt8numpunctIcE11do_groupingEv() {} ; void _ZNKSt8numpunctIcE11do_truenameEv() {} ; void _ZNKSt8numpunctIcE12do_falsenameEv() {} ; void _ZNKSt8numpunctIcE13decimal_pointEv() {} ; void _ZNKSt8numpunctIcE13thousands_sepEv() {} ; void _ZNKSt8numpunctIcE16do_decimal_pointEv() {} ; void _ZNKSt8numpunctIcE16do_thousands_sepEv() {} ; void _ZNKSt8numpunctIcE8groupingEv() {} ; void _ZNKSt8numpunctIcE8truenameEv() {} ; void _ZNKSt8numpunctIcE9falsenameEv() {} ; void _ZNKSt8numpunctIwE11do_groupingEv() {} ; void _ZNKSt8numpunctIwE11do_truenameEv() {} ; void _ZNKSt8numpunctIwE12do_falsenameEv() {} ; void _ZNKSt8numpunctIwE13decimal_pointEv() {} ; void _ZNKSt8numpunctIwE13thousands_sepEv() {} ; void _ZNKSt8numpunctIwE16do_decimal_pointEv() {} ; void _ZNKSt8numpunctIwE16do_thousands_sepEv() {} ; void _ZNKSt8numpunctIwE8groupingEv() {} ; void _ZNKSt8numpunctIwE8truenameEv() {} ; void _ZNKSt8numpunctIwE9falsenameEv() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10date_orderEv() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13do_date_orderEv() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14do_get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE15_M_extract_nameES3_S3_RiPPKcmRSt8ios_baseRSt12_Ios_Iostate() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16do_get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE21_M_extract_via_formatES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tmPKc() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10date_orderEv() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13do_date_orderEv() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14do_get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE15_M_extract_nameES3_S3_RiPPKwmRSt8ios_baseRSt12_Ios_Iostate() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16do_get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE21_M_extract_via_formatES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tmPKw() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm() {} ; void _ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_() {} ; void _ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmcc() {} ; void _ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPK2tmcc() {} ; void _ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmPKwSB_() {} ; void _ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmcc() {} ; void _ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPK2tmcc() {} ; void _ZNKSt8valarrayImE4sizeEv() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEE10exceptionsEv() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEE3badEv() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEE3eofEv() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEE3tieEv() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEE4failEv() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEE4fillEv() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEE4goodEv() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEE5rdbufEv() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEE5widenEc() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEE6narrowEcc() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEE7rdstateEv() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEEcvPvEv() {} ; void _ZNKSt9basic_iosIcSt11char_traitsIcEEntEv() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEE10exceptionsEv() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEE3badEv() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEE3eofEv() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEE3tieEv() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEE4failEv() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEE4fillEv() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEE4goodEv() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEE5rdbufEv() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEE5widenEc() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEE6narrowEwc() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEE7rdstateEv() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEEcvPvEv() {} ; void _ZNKSt9basic_iosIwSt11char_traitsIwEEntEv() {} ; void _ZNKSt9exception4whatEv() {} ; void _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb0EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs() {} ; void _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb1EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs() {} ; void _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSs() {} ; void _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe() {} ; void _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSs() {} ; void _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe() {} ; void _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb0EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs() {} ; void _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb1EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs() {} ; void _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSbIwS2_SaIwEE() {} ; void _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe() {} ; void _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSbIwS2_SaIwEE() {} ; void _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe() {} ; void _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basecRKSs() {} ; void _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basece() {} ; void _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSs() {} ; void _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basece() {} ; void _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb0EEES3_S3_RSt8ios_basecRKSs() {} ; void _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb1EEES3_S3_RSt8ios_basecRKSs() {} ; void _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewRKSbIwS2_SaIwEE() {} ; void _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewe() {} ; void _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEE() {} ; void _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewe() {} ; void _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb0EEES3_S3_RSt8ios_basewRKSbIwS2_SaIwEE() {} ; void _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb1EEES3_S3_RSt8ios_basewRKSbIwS2_SaIwEE() {} ; void _ZNKSt9type_info10__do_catchEPKS_PPvj() {} ; void _ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv() {} ; void _ZNKSt9type_info14__is_pointer_pEv() {} ; void _ZNKSt9type_info15__is_function_pEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE12_Alloc_hiderC1EPwRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE12_Alloc_hiderC2EPwRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE12_M_leak_hardEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE12_S_constructEmwRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE12_S_empty_repEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwN9__gnu_cxx17__normal_iteratorIPKwS2_EES8_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwN9__gnu_cxx17__normal_iteratorIS3_S2_EES6_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwPKwS5_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwS3_S3_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE14_M_replace_auxEmmmw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE15_M_replace_safeEmmPKwm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE2atEm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE3endEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_destroyERKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_disposeERKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_refcopyEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_refdataEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4_Rep12_S_empty_repEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4_Rep13_M_set_leakedEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4_Rep15_M_set_sharableEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4_Rep7_M_grabERKS1_S5_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4_Rep8_M_cloneERKS1_m() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4_Rep9_S_createEmmRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4rendEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE4swapERS2_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE5beginEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE5clearEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE5eraseEN9__gnu_cxx17__normal_iteratorIPwS2_EE() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE5eraseEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE5eraseEmm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6appendEPKw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6appendEPKwm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_mm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6appendEmw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6assignEPKw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_mm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6assignEmw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6insertEN9__gnu_cxx17__normal_iteratorIPwS2_EEmw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6insertEN9__gnu_cxx17__normal_iteratorIPwS2_EEw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6insertEmPKw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6insertEmPKwm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6insertEmRKS2_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6insertEmRKS2_mm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6insertEmmw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6rbeginEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6resizeEm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE6resizeEmw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7_M_dataEPw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7_M_leakEv() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_NS4_IPKwS2_EES9_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_PKw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_PKwS8_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_PKwm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_RKS2_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_S5_S5_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_S6_S6_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_mw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmPKw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmPKwm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmRKS2_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmRKS2_mm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmmw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE7reserveEm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE9_M_mutateEmmm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEE9push_backEw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC1EPKwRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC1EPKwmRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC1ERKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_mm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_mmRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC1EmwRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC1Ev() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC1IN9__gnu_cxx17__normal_iteratorIPwS2_EEEET_S8_RKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC1IPKwEET_S6_RKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC1IPwEET_S5_RKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC2EPKwRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC2EPKwmRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC2ERKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_mm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_mmRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC2EmwRKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC2Ev() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC2IN9__gnu_cxx17__normal_iteratorIPwS2_EEEET_S8_RKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC2IPKwEET_S6_RKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEC2IPwEET_S5_RKS1_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEED1Ev() {} ; void _ZNSbIwSt11char_traitsIwESaIwEED2Ev() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEaSEPKw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEaSERKS2_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEaSEw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEixEm() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEpLEPKw() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEpLERKS2_() {} ; void _ZNSbIwSt11char_traitsIwESaIwEEpLEw() {} ; void _ZNSdC1EPSt15basic_streambufIcSt11char_traitsIcEE() {} ; void _ZNSdC1Ev() {} ; void _ZNSdC2EPSt15basic_streambufIcSt11char_traitsIcEE() {} ; void _ZNSdC2Ev() {} ; void _ZNSdD0Ev() {} ; void _ZNSdD1Ev() {} ; void _ZNSdD2Ev() {} ; void _ZNSi3getEPcl() {} ; void _ZNSi3getEPclc() {} ; void _ZNSi3getERSt15basic_streambufIcSt11char_traitsIcEE() {} ; void _ZNSi3getERSt15basic_streambufIcSt11char_traitsIcEEc() {} ; void _ZNSi3getERc() {} ; void _ZNSi3getEv() {} ; void _ZNSi4peekEv() {} ; void _ZNSi4readEPcl() {} ; void _ZNSi4syncEv() {} ; void _ZNSi5seekgESt4fposI11__mbstate_tE() {} ; void _ZNSi5seekgElSt12_Ios_Seekdir() {} ; void _ZNSi5tellgEv() {} ; void _ZNSi5ungetEv() {} ; void _ZNSi6ignoreEli() {} ; void _ZNSi6sentryC1ERSib() {} ; void _ZNSi6sentryC2ERSib() {} ; void _ZNSi7getlineEPcl() {} ; void _ZNSi7getlineEPclc() {} ; void _ZNSi7putbackEc() {} ; void _ZNSi8readsomeEPcl() {} ; void _ZNSiC1EPSt15basic_streambufIcSt11char_traitsIcEE() {} ; void _ZNSiC1Ev() {} ; void _ZNSiC2EPSt15basic_streambufIcSt11char_traitsIcEE() {} ; void _ZNSiC2Ev() {} ; void _ZNSiD0Ev() {} ; void _ZNSiD1Ev() {} ; void _ZNSiD2Ev() {} ; void _ZNSirsEPFRSiS_E() {} ; void _ZNSirsEPFRSt8ios_baseS0_E() {} ; void _ZNSirsEPFRSt9basic_iosIcSt11char_traitsIcEES3_E() {} ; void _ZNSirsEPSt15basic_streambufIcSt11char_traitsIcEE() {} ; void _ZNSirsERPv() {} ; void _ZNSirsERb() {} ; void _ZNSirsERd() {} ; void _ZNSirsERe() {} ; void _ZNSirsERf() {} ; void _ZNSirsERi() {} ; void _ZNSirsERj() {} ; void _ZNSirsERl() {} ; void _ZNSirsERm() {} ; void _ZNSirsERs() {} ; void _ZNSirsERt() {} ; void _ZNSirsERx() {} ; void _ZNSirsERy() {} ; void _ZNSo3putEc() {} ; void _ZNSo5flushEv() {} ; void _ZNSo5seekpESt4fposI11__mbstate_tE() {} ; void _ZNSo5seekpElSt12_Ios_Seekdir() {} ; void _ZNSo5tellpEv() {} ; void _ZNSo5writeEPKcl() {} ; void _ZNSo6sentryC1ERSo() {} ; void _ZNSo6sentryC2ERSo() {} ; void _ZNSo6sentryD1Ev() {} ; void _ZNSo6sentryD2Ev() {} ; void _ZNSo8_M_writeEPKcl() {} ; void _ZNSoC1EPSt15basic_streambufIcSt11char_traitsIcEE() {} ; void _ZNSoC1Ev() {} ; void _ZNSoC2EPSt15basic_streambufIcSt11char_traitsIcEE() {} ; void _ZNSoC2Ev() {} ; void _ZNSoD0Ev() {} ; void _ZNSoD1Ev() {} ; void _ZNSoD2Ev() {} ; void _ZNSolsEPFRSoS_E() {} ; void _ZNSolsEPFRSt8ios_baseS0_E() {} ; void _ZNSolsEPFRSt9basic_iosIcSt11char_traitsIcEES3_E() {} ; void _ZNSolsEPKv() {} ; void _ZNSolsEPSt15basic_streambufIcSt11char_traitsIcEE() {} ; void _ZNSolsEb() {} ; void _ZNSolsEd() {} ; void _ZNSolsEe() {} ; void _ZNSolsEf() {} ; void _ZNSolsEi() {} ; void _ZNSolsEj() {} ; void _ZNSolsEl() {} ; void _ZNSolsEm() {} ; void _ZNSolsEs() {} ; void _ZNSolsEt() {} ; void _ZNSolsEx() {} ; void _ZNSolsEy() {} ; void _ZNSs12_Alloc_hiderC1EPcRKSaIcE() {} ; void _ZNSs12_Alloc_hiderC2EPcRKSaIcE() {} ; void _ZNSs12_M_leak_hardEv() {} ; void _ZNSs12_S_constructEmcRKSaIcE() {} ; void _ZNSs12_S_empty_repEv() {} ; void _ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIPKcSsEES4_() {} ; void _ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIS_SsEES2_() {} ; void _ZNSs13_S_copy_charsEPcPKcS1_() {} ; void _ZNSs13_S_copy_charsEPcS_S_() {} ; void _ZNSs14_M_replace_auxEmmmc() {} ; void _ZNSs15_M_replace_safeEmmPKcm() {} ; void _ZNSs2atEm() {} ; void _ZNSs3endEv() {} ; void _ZNSs4_Rep10_M_destroyERKSaIcE() {} ; void _ZNSs4_Rep10_M_disposeERKSaIcE() {} ; void _ZNSs4_Rep10_M_refcopyEv() {} ; void _ZNSs4_Rep10_M_refdataEv() {} ; void _ZNSs4_Rep12_S_empty_repEv() {} ; void _ZNSs4_Rep13_M_set_leakedEv() {} ; void _ZNSs4_Rep15_M_set_sharableEv() {} ; void _ZNSs4_Rep7_M_grabERKSaIcES2_() {} ; void _ZNSs4_Rep8_M_cloneERKSaIcEm() {} ; void _ZNSs4_Rep9_S_createEmmRKSaIcE() {} ; void _ZNSs4rendEv() {} ; void _ZNSs4swapERSs() {} ; void _ZNSs5beginEv() {} ; void _ZNSs5clearEv() {} ; void _ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEE() {} ; void _ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2_() {} ; void _ZNSs5eraseEmm() {} ; void _ZNSs6appendEPKc() {} ; void _ZNSs6appendEPKcm() {} ; void _ZNSs6appendERKSs() {} ; void _ZNSs6appendERKSsmm() {} ; void _ZNSs6appendEmc() {} ; void _ZNSs6assignEPKc() {} ; void _ZNSs6assignEPKcm() {} ; void _ZNSs6assignERKSs() {} ; void _ZNSs6assignERKSsmm() {} ; void _ZNSs6assignEmc() {} ; void _ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEc() {} ; void _ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEmc() {} ; void _ZNSs6insertEmPKc() {} ; void _ZNSs6insertEmPKcm() {} ; void _ZNSs6insertEmRKSs() {} ; void _ZNSs6insertEmRKSsmm() {} ; void _ZNSs6insertEmmc() {} ; void _ZNSs6rbeginEv() {} ; void _ZNSs6resizeEm() {} ; void _ZNSs6resizeEmc() {} ; void _ZNSs7_M_dataEPc() {} ; void _ZNSs7_M_leakEv() {} ; void _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_NS0_IPKcSsEES5_() {} ; void _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKc() {} ; void _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcS4_() {} ; void _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcm() {} ; void _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_RKSs() {} ; void _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S1_S1_() {} ; void _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S2_S2_() {} ; void _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_mc() {} ; void _ZNSs7replaceEmmPKc() {} ; void _ZNSs7replaceEmmPKcm() {} ; void _ZNSs7replaceEmmRKSs() {} ; void _ZNSs7replaceEmmRKSsmm() {} ; void _ZNSs7replaceEmmmc() {} ; void _ZNSs7reserveEm() {} ; void _ZNSs9_M_mutateEmmm() {} ; void _ZNSs9push_backEc() {} ; void _ZNSsC1EPKcRKSaIcE() {} ; void _ZNSsC1EPKcmRKSaIcE() {} ; void _ZNSsC1ERKSaIcE() {} ; void _ZNSsC1ERKSs() {} ; void _ZNSsC1ERKSsmm() {} ; void _ZNSsC1ERKSsmmRKSaIcE() {} ; void _ZNSsC1EmcRKSaIcE() {} ; void _ZNSsC1Ev() {} ; void _ZNSsC1IN9__gnu_cxx17__normal_iteratorIPcSsEEEET_S4_RKSaIcE() {} ; void _ZNSsC1IPKcEET_S2_RKSaIcE() {} ; void _ZNSsC1IPcEET_S1_RKSaIcE() {} ; void _ZNSsC2EPKcRKSaIcE() {} ; void _ZNSsC2EPKcmRKSaIcE() {} ; void _ZNSsC2ERKSaIcE() {} ; void _ZNSsC2ERKSs() {} ; void _ZNSsC2ERKSsmm() {} ; void _ZNSsC2ERKSsmmRKSaIcE() {} ; void _ZNSsC2EmcRKSaIcE() {} ; void _ZNSsC2Ev() {} ; void _ZNSsC2IN9__gnu_cxx17__normal_iteratorIPcSsEEEET_S4_RKSaIcE() {} ; void _ZNSsC2IPKcEET_S2_RKSaIcE() {} ; void _ZNSsC2IPcEET_S1_RKSaIcE() {} ; void _ZNSsD1Ev() {} ; void _ZNSsD2Ev() {} ; void _ZNSsaSEPKc() {} ; void _ZNSsaSERKSs() {} ; void _ZNSsaSEc() {} ; void _ZNSsixEm() {} ; void _ZNSspLEPKc() {} ; void _ZNSspLERKSs() {} ; void _ZNSspLEc() {} ; void _ZNSt10__num_base15_S_format_floatERKSt8ios_basePcc() {} ; void _ZNSt10bad_typeidD0Ev() {} ; void _ZNSt10bad_typeidD1Ev() {} ; void _ZNSt10bad_typeidD2Ev() {} ; void _ZNSt10money_base20_S_construct_patternEccc() {} ; void _ZNSt10moneypunctIcLb0EE24_M_initialize_moneypunctEP15__locale_structPKc() {} ; void _ZNSt10moneypunctIcLb0EEC1EP15__locale_structPKcm() {} ; void _ZNSt10moneypunctIcLb0EEC1EPSt18__moneypunct_cacheIcLb0EEm() {} ; void _ZNSt10moneypunctIcLb0EEC1Em() {} ; void _ZNSt10moneypunctIcLb0EEC2EP15__locale_structPKcm() {} ; void _ZNSt10moneypunctIcLb0EEC2EPSt18__moneypunct_cacheIcLb0EEm() {} ; void _ZNSt10moneypunctIcLb0EEC2Em() {} ; void _ZNSt10moneypunctIcLb0EED0Ev() {} ; void _ZNSt10moneypunctIcLb0EED1Ev() {} ; void _ZNSt10moneypunctIcLb0EED2Ev() {} ; void _ZNSt10moneypunctIcLb1EE24_M_initialize_moneypunctEP15__locale_structPKc() {} ; void _ZNSt10moneypunctIcLb1EEC1EP15__locale_structPKcm() {} ; void _ZNSt10moneypunctIcLb1EEC1EPSt18__moneypunct_cacheIcLb1EEm() {} ; void _ZNSt10moneypunctIcLb1EEC1Em() {} ; void _ZNSt10moneypunctIcLb1EEC2EP15__locale_structPKcm() {} ; void _ZNSt10moneypunctIcLb1EEC2EPSt18__moneypunct_cacheIcLb1EEm() {} ; void _ZNSt10moneypunctIcLb1EEC2Em() {} ; void _ZNSt10moneypunctIcLb1EED0Ev() {} ; void _ZNSt10moneypunctIcLb1EED1Ev() {} ; void _ZNSt10moneypunctIcLb1EED2Ev() {} ; void _ZNSt10moneypunctIwLb0EE24_M_initialize_moneypunctEP15__locale_structPKc() {} ; void _ZNSt10moneypunctIwLb0EEC1EP15__locale_structPKcm() {} ; void _ZNSt10moneypunctIwLb0EEC1EPSt18__moneypunct_cacheIwLb0EEm() {} ; void _ZNSt10moneypunctIwLb0EEC1Em() {} ; void _ZNSt10moneypunctIwLb0EEC2EP15__locale_structPKcm() {} ; void _ZNSt10moneypunctIwLb0EEC2EPSt18__moneypunct_cacheIwLb0EEm() {} ; void _ZNSt10moneypunctIwLb0EEC2Em() {} ; void _ZNSt10moneypunctIwLb0EED0Ev() {} ; void _ZNSt10moneypunctIwLb0EED1Ev() {} ; void _ZNSt10moneypunctIwLb0EED2Ev() {} ; void _ZNSt10moneypunctIwLb1EE24_M_initialize_moneypunctEP15__locale_structPKc() {} ; void _ZNSt10moneypunctIwLb1EEC1EP15__locale_structPKcm() {} ; void _ZNSt10moneypunctIwLb1EEC1EPSt18__moneypunct_cacheIwLb1EEm() {} ; void _ZNSt10moneypunctIwLb1EEC1Em() {} ; void _ZNSt10moneypunctIwLb1EEC2EP15__locale_structPKcm() {} ; void _ZNSt10moneypunctIwLb1EEC2EPSt18__moneypunct_cacheIwLb1EEm() {} ; void _ZNSt10moneypunctIwLb1EEC2Em() {} ; void _ZNSt10moneypunctIwLb1EED0Ev() {} ; void _ZNSt10moneypunctIwLb1EED1Ev() {} ; void _ZNSt10moneypunctIwLb1EED2Ev() {} ; void _ZNSt11__timepunctIcE23_M_initialize_timepunctEP15__locale_struct() {} ; void _ZNSt11__timepunctIcEC1EP15__locale_structPKcm() {} ; void _ZNSt11__timepunctIcEC1EPSt17__timepunct_cacheIcEm() {} ; void _ZNSt11__timepunctIcEC1Em() {} ; void _ZNSt11__timepunctIcEC2EP15__locale_structPKcm() {} ; void _ZNSt11__timepunctIcEC2EPSt17__timepunct_cacheIcEm() {} ; void _ZNSt11__timepunctIcEC2Em() {} ; void _ZNSt11__timepunctIcED0Ev() {} ; void _ZNSt11__timepunctIcED1Ev() {} ; void _ZNSt11__timepunctIcED2Ev() {} ; void _ZNSt11__timepunctIwE23_M_initialize_timepunctEP15__locale_struct() {} ; void _ZNSt11__timepunctIwEC1EP15__locale_structPKcm() {} ; void _ZNSt11__timepunctIwEC1EPSt17__timepunct_cacheIwEm() {} ; void _ZNSt11__timepunctIwEC1Em() {} ; void _ZNSt11__timepunctIwEC2EP15__locale_structPKcm() {} ; void _ZNSt11__timepunctIwEC2EPSt17__timepunct_cacheIwEm() {} ; void _ZNSt11__timepunctIwEC2Em() {} ; void _ZNSt11__timepunctIwED0Ev() {} ; void _ZNSt11__timepunctIwED1Ev() {} ; void _ZNSt11__timepunctIwED2Ev() {} ; void _ZNSt11logic_errorC1ERKSs() {} ; void _ZNSt11logic_errorC2ERKSs() {} ; void _ZNSt11logic_errorD0Ev() {} ; void _ZNSt11logic_errorD1Ev() {} ; void _ZNSt11logic_errorD2Ev() {} ; void _ZNSt11range_errorC1ERKSs() {} ; void _ZNSt11range_errorC2ERKSs() {} ; void _ZNSt11range_errorD0Ev() {} ; void _ZNSt11range_errorD1Ev() {} ; void _ZNSt12__basic_fileIcE2fdEv() {} ; void _ZNSt12__basic_fileIcE4fileEv() {} ; void _ZNSt12__basic_fileIcE4openEPKcSt13_Ios_Openmodei() {} ; void _ZNSt12__basic_fileIcE4syncEv() {} ; void _ZNSt12__basic_fileIcE5closeEv() {} ; void _ZNSt12__basic_fileIcE6xsgetnEPcl() {} ; void _ZNSt12__basic_fileIcE6xsputnEPKcl() {} ; void _ZNSt12__basic_fileIcE7seekoffElSt12_Ios_Seekdir() {} ; void _ZNSt12__basic_fileIcE8sys_openEP8_IO_FILESt13_Ios_Openmode() {} ; void _ZNSt12__basic_fileIcE8sys_openEiSt13_Ios_Openmode() {} ; void _ZNSt12__basic_fileIcE8xsputn_2EPKclS2_l() {} ; void _ZNSt12__basic_fileIcE9showmanycEv() {} ; void _ZNSt12__basic_fileIcEC1EP15pthread_mutex_t() {} ; void _ZNSt12__basic_fileIcEC2EP15pthread_mutex_t() {} ; void _ZNSt12__basic_fileIcED1Ev() {} ; void _ZNSt12__basic_fileIcED2Ev() {} ; void _ZNSt12ctype_bynameIcEC1EPKcm() {} ; void _ZNSt12ctype_bynameIcEC2EPKcm() {} ; void _ZNSt12ctype_bynameIcED0Ev() {} ; void _ZNSt12ctype_bynameIcED1Ev() {} ; void _ZNSt12ctype_bynameIcED2Ev() {} ; void _ZNSt12ctype_bynameIwEC1EPKcm() {} ; void _ZNSt12ctype_bynameIwEC2EPKcm() {} ; void _ZNSt12ctype_bynameIwED0Ev() {} ; void _ZNSt12ctype_bynameIwED1Ev() {} ; void _ZNSt12ctype_bynameIwED2Ev() {} ; void _ZNSt12domain_errorC1ERKSs() {} ; void _ZNSt12domain_errorC2ERKSs() {} ; void _ZNSt12domain_errorD0Ev() {} ; void _ZNSt12domain_errorD1Ev() {} ; void _ZNSt12length_errorC1ERKSs() {} ; void _ZNSt12length_errorC2ERKSs() {} ; void _ZNSt12length_errorD0Ev() {} ; void _ZNSt12length_errorD1Ev() {} ; void _ZNSt12out_of_rangeC1ERKSs() {} ; void _ZNSt12out_of_rangeC2ERKSs() {} ; void _ZNSt12out_of_rangeD0Ev() {} ; void _ZNSt12out_of_rangeD1Ev() {} ; void _ZNSt13bad_exceptionD0Ev() {} ; void _ZNSt13bad_exceptionD1Ev() {} ; void _ZNSt13bad_exceptionD2Ev() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE13_M_set_bufferEl() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE15_M_create_pbackEv() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE16_M_destroy_pbackEv() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE19_M_terminate_outputEv() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE22_M_convert_to_externalEPcl() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE26_M_destroy_internal_bufferEv() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE27_M_allocate_internal_bufferEv() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE4syncEv() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE5closeEv() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE5imbueERKSt6locale() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE6setbufEPcl() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE6xsgetnEPcl() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE6xsputnEPKcl() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE7_M_seekElSt12_Ios_Seekdir11__mbstate_t() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE8overflowEi() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE9pbackfailEi() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE9showmanycEv() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEE9underflowEv() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEEC1Ev() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEEC2Ev() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEED0Ev() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEED1Ev() {} ; void _ZNSt13basic_filebufIcSt11char_traitsIcEED2Ev() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE13_M_set_bufferEl() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE15_M_create_pbackEv() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE16_M_destroy_pbackEv() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE19_M_terminate_outputEv() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE22_M_convert_to_externalEPwl() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE26_M_destroy_internal_bufferEv() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE27_M_allocate_internal_bufferEv() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE4syncEv() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE5closeEv() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE5imbueERKSt6locale() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE6setbufEPwl() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE6xsgetnEPwl() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE6xsputnEPKwl() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE7_M_seekElSt12_Ios_Seekdir11__mbstate_t() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE8overflowEj() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE9pbackfailEj() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE9showmanycEv() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEE9underflowEv() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEEC1Ev() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEEC2Ev() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEED0Ev() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEED1Ev() {} ; void _ZNSt13basic_filebufIwSt11char_traitsIwEED2Ev() {} ; void _ZNSt13basic_fstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode() {} ; void _ZNSt13basic_fstreamIcSt11char_traitsIcEE5closeEv() {} ; void _ZNSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv() {} ; void _ZNSt13basic_fstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode() {} ; void _ZNSt13basic_fstreamIcSt11char_traitsIcEEC1Ev() {} ; void _ZNSt13basic_fstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode() {} ; void _ZNSt13basic_fstreamIcSt11char_traitsIcEEC2Ev() {} ; void _ZNSt13basic_fstreamIcSt11char_traitsIcEED0Ev() {} ; void _ZNSt13basic_fstreamIcSt11char_traitsIcEED1Ev() {} ; void _ZNSt13basic_fstreamIcSt11char_traitsIcEED2Ev() {} ; void _ZNSt13basic_fstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode() {} ; void _ZNSt13basic_fstreamIwSt11char_traitsIwEE5closeEv() {} ; void _ZNSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv() {} ; void _ZNSt13basic_fstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode() {} ; void _ZNSt13basic_fstreamIwSt11char_traitsIwEEC1Ev() {} ; void _ZNSt13basic_fstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode() {} ; void _ZNSt13basic_fstreamIwSt11char_traitsIwEEC2Ev() {} ; void _ZNSt13basic_fstreamIwSt11char_traitsIwEED0Ev() {} ; void _ZNSt13basic_fstreamIwSt11char_traitsIwEED1Ev() {} ; void _ZNSt13basic_fstreamIwSt11char_traitsIwEED2Ev() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwl() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwlw() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE3getERSt15basic_streambufIwS1_E() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE3getERSt15basic_streambufIwS1_Ew() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE3getERw() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE3getEv() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE4peekEv() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE4readEPwl() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE4syncEv() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgESt4fposI11__mbstate_tE() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgElSt12_Ios_Seekdir() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE5tellgEv() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE5ungetEv() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreElj() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE6sentryC1ERS2_b() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE6sentryC2ERS2_b() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwl() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwlw() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE7putbackEw() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEE8readsomeEPwl() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEEC1Ev() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEEC2Ev() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEED0Ev() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEED1Ev() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEED2Ev() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRS2_S3_E() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRSt8ios_baseS4_E() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRSt9basic_iosIwS1_ES5_E() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsEPSt15basic_streambufIwS1_E() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERPv() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERb() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERd() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERe() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERf() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERi() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERj() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERl() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERm() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERs() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERt() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERx() {} ; void _ZNSt13basic_istreamIwSt11char_traitsIwEErsERy() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEE3putEw() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEE5flushEv() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpESt4fposI11__mbstate_tE() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpElSt12_Ios_Seekdir() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEE5tellpEv() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEE5writeEPKwl() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC1ERS2_() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD1Ev() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD2Ev() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEE8_M_writeEPKwl() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEEC1Ev() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEEC2Ev() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEED0Ev() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEED1Ev() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEED2Ev() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRS2_S3_E() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRSt8ios_baseS4_E() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRSt9basic_iosIwS1_ES5_E() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPKv() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPSt15basic_streambufIwS1_E() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEb() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEd() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEe() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEf() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEi() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEj() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEl() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEm() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEs() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEt() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEx() {} ; void _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEy() {} ; void _ZNSt13runtime_errorC1ERKSs() {} ; void _ZNSt13runtime_errorC2ERKSs() {} ; void _ZNSt13runtime_errorD0Ev() {} ; void _ZNSt13runtime_errorD1Ev() {} ; void _ZNSt13runtime_errorD2Ev() {} ; void _ZNSt14basic_ifstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ifstreamIcSt11char_traitsIcEE5closeEv() {} ; void _ZNSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv() {} ; void _ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1Ev() {} ; void _ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2Ev() {} ; void _ZNSt14basic_ifstreamIcSt11char_traitsIcEED0Ev() {} ; void _ZNSt14basic_ifstreamIcSt11char_traitsIcEED1Ev() {} ; void _ZNSt14basic_ifstreamIcSt11char_traitsIcEED2Ev() {} ; void _ZNSt14basic_ifstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ifstreamIwSt11char_traitsIwEE5closeEv() {} ; void _ZNSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv() {} ; void _ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1Ev() {} ; void _ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2Ev() {} ; void _ZNSt14basic_ifstreamIwSt11char_traitsIwEED0Ev() {} ; void _ZNSt14basic_ifstreamIwSt11char_traitsIwEED1Ev() {} ; void _ZNSt14basic_ifstreamIwSt11char_traitsIwEED2Ev() {} ; void _ZNSt14basic_iostreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E() {} ; void _ZNSt14basic_iostreamIwSt11char_traitsIwEEC1Ev() {} ; void _ZNSt14basic_iostreamIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E() {} ; void _ZNSt14basic_iostreamIwSt11char_traitsIwEEC2Ev() {} ; void _ZNSt14basic_iostreamIwSt11char_traitsIwEED0Ev() {} ; void _ZNSt14basic_iostreamIwSt11char_traitsIwEED1Ev() {} ; void _ZNSt14basic_iostreamIwSt11char_traitsIwEED2Ev() {} ; void _ZNSt14basic_ofstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ofstreamIcSt11char_traitsIcEE5closeEv() {} ; void _ZNSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv() {} ; void _ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1Ev() {} ; void _ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2Ev() {} ; void _ZNSt14basic_ofstreamIcSt11char_traitsIcEED0Ev() {} ; void _ZNSt14basic_ofstreamIcSt11char_traitsIcEED1Ev() {} ; void _ZNSt14basic_ofstreamIcSt11char_traitsIcEED2Ev() {} ; void _ZNSt14basic_ofstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ofstreamIwSt11char_traitsIwEE5closeEv() {} ; void _ZNSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv() {} ; void _ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1Ev() {} ; void _ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode() {} ; void _ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2Ev() {} ; void _ZNSt14basic_ofstreamIwSt11char_traitsIwEED0Ev() {} ; void _ZNSt14basic_ofstreamIwSt11char_traitsIwEED1Ev() {} ; void _ZNSt14basic_ofstreamIwSt11char_traitsIwEED2Ev() {} ; void _ZNSt14codecvt_bynameIcc11__mbstate_tEC1EPKcm() {} ; void _ZNSt14codecvt_bynameIcc11__mbstate_tEC2EPKcm() {} ; void _ZNSt14codecvt_bynameIcc11__mbstate_tED0Ev() {} ; void _ZNSt14codecvt_bynameIcc11__mbstate_tED1Ev() {} ; void _ZNSt14codecvt_bynameIcc11__mbstate_tED2Ev() {} ; void _ZNSt14codecvt_bynameIwc11__mbstate_tEC1EPKcm() {} ; void _ZNSt14codecvt_bynameIwc11__mbstate_tEC2EPKcm() {} ; void _ZNSt14codecvt_bynameIwc11__mbstate_tED0Ev() {} ; void _ZNSt14codecvt_bynameIwc11__mbstate_tED1Ev() {} ; void _ZNSt14codecvt_bynameIwc11__mbstate_tED2Ev() {} ; void _ZNSt14collate_bynameIcEC1EPKcm() {} ; void _ZNSt14collate_bynameIcEC2EPKcm() {} ; void _ZNSt14collate_bynameIcED0Ev() {} ; void _ZNSt14collate_bynameIcED1Ev() {} ; void _ZNSt14collate_bynameIcED2Ev() {} ; void _ZNSt14collate_bynameIwEC1EPKcm() {} ; void _ZNSt14collate_bynameIwEC2EPKcm() {} ; void _ZNSt14collate_bynameIwED0Ev() {} ; void _ZNSt14collate_bynameIwED1Ev() {} ; void _ZNSt14collate_bynameIwED2Ev() {} ; void _ZNSt14overflow_errorC1ERKSs() {} ; void _ZNSt14overflow_errorC2ERKSs() {} ; void _ZNSt14overflow_errorD0Ev() {} ; void _ZNSt14overflow_errorD1Ev() {} ; void _ZNSt15_List_node_base4hookEPS_() {} ; void _ZNSt15_List_node_base4swapERS_S0_() {} ; void _ZNSt15_List_node_base6unhookEv() {} ; void _ZNSt15_List_node_base7reverseEv() {} ; void _ZNSt15_List_node_base8transferEPS_S0_() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekposESt4fposI11__mbstate_tESt13_Ios_Openmode() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE4setgEPcS3_S3_() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE4setpEPcS3_() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE4syncEv() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE5gbumpEi() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE5imbueERKSt6locale() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE5pbumpEi() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE5sgetcEv() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE5sgetnEPcl() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE5sputcEc() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE5sputnEPKcl() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE5uflowEv() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE6sbumpcEv() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE6setbufEPcl() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE6snextcEv() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE6xsgetnEPcl() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKcl() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE7pubsyncEv() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE7sungetcEv() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE8in_availEv() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE8overflowEi() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE8pubimbueERKSt6locale() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE9pbackfailEi() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE9pubsetbufEPcl() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE9showmanycEv() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE9sputbackcEc() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEE9underflowEv() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEEC1ERKS2_() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEEC1Ev() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEEC2ERKS2_() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEEC2Ev() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEED0Ev() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEED1Ev() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEED2Ev() {} ; void _ZNSt15basic_streambufIcSt11char_traitsIcEEaSERKS2_() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekposESt4fposI11__mbstate_tESt13_Ios_Openmode() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE4setgEPwS3_S3_() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE4setpEPwS3_() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE4syncEv() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE5gbumpEi() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE5imbueERKSt6locale() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE5pbumpEi() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE5sgetcEv() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE5sgetnEPwl() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE5sputcEw() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE5sputnEPKwl() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE5uflowEv() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE6sbumpcEv() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE6setbufEPwl() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE6snextcEv() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE6xsgetnEPwl() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwl() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE7pubsyncEv() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE7sungetcEv() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE8in_availEv() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE8overflowEj() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE8pubimbueERKSt6locale() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE9pbackfailEj() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE9pubsetbufEPwl() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE9showmanycEv() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE9sputbackcEw() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEE9underflowEv() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEEC1ERKS2_() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEEC1Ev() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEEC2ERKS2_() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEEC2Ev() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEED0Ev() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEED1Ev() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEED2Ev() {} ; void _ZNSt15basic_streambufIwSt11char_traitsIwEEaSERKS2_() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE15_M_update_egptrEv() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE17_M_stringbuf_initESt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE3strERKSs() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE6setbufEPcl() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7_M_syncEPcmm() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE8overflowEi() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9pbackfailEi() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9underflowEv() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEED0Ev() {} ; void _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEED1Ev() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE15_M_update_egptrEv() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE17_M_stringbuf_initESt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE6setbufEPwl() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7_M_syncEPwmm() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE8overflowEj() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9pbackfailEj() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9underflowEv() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEED0Ev() {} ; void _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEED1Ev() {} ; void _ZNSt15messages_bynameIcEC1EPKcm() {} ; void _ZNSt15messages_bynameIcEC2EPKcm() {} ; void _ZNSt15messages_bynameIcED0Ev() {} ; void _ZNSt15messages_bynameIcED1Ev() {} ; void _ZNSt15messages_bynameIcED2Ev() {} ; void _ZNSt15messages_bynameIwEC1EPKcm() {} ; void _ZNSt15messages_bynameIwEC2EPKcm() {} ; void _ZNSt15messages_bynameIwED0Ev() {} ; void _ZNSt15messages_bynameIwED1Ev() {} ; void _ZNSt15messages_bynameIwED2Ev() {} ; void _ZNSt15numpunct_bynameIcEC1EPKcm() {} ; void _ZNSt15numpunct_bynameIcEC2EPKcm() {} ; void _ZNSt15numpunct_bynameIcED0Ev() {} ; void _ZNSt15numpunct_bynameIcED1Ev() {} ; void _ZNSt15numpunct_bynameIcED2Ev() {} ; void _ZNSt15numpunct_bynameIwEC1EPKcm() {} ; void _ZNSt15numpunct_bynameIwEC2EPKcm() {} ; void _ZNSt15numpunct_bynameIwED0Ev() {} ; void _ZNSt15numpunct_bynameIwED1Ev() {} ; void _ZNSt15numpunct_bynameIwED2Ev() {} ; void _ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm() {} ; void _ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm() {} ; void _ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev() {} ; void _ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev() {} ; void _ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev() {} ; void _ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm() {} ; void _ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm() {} ; void _ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev() {} ; void _ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev() {} ; void _ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev() {} ; void _ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm() {} ; void _ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm() {} ; void _ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev() {} ; void _ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev() {} ; void _ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev() {} ; void _ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm() {} ; void _ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm() {} ; void _ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev() {} ; void _ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev() {} ; void _ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev() {} ; void _ZNSt15underflow_errorC1ERKSs() {} ; void _ZNSt15underflow_errorC2ERKSs() {} ; void _ZNSt15underflow_errorD0Ev() {} ; void _ZNSt15underflow_errorD1Ev() {} ; void _ZNSt16invalid_argumentC1ERKSs() {} ; void _ZNSt16invalid_argumentC2ERKSs() {} ; void _ZNSt16invalid_argumentD0Ev() {} ; void _ZNSt16invalid_argumentD1Ev() {} ; void _ZNSt17moneypunct_bynameIcLb0EEC1EPKcm() {} ; void _ZNSt17moneypunct_bynameIcLb0EEC2EPKcm() {} ; void _ZNSt17moneypunct_bynameIcLb0EED0Ev() {} ; void _ZNSt17moneypunct_bynameIcLb0EED1Ev() {} ; void _ZNSt17moneypunct_bynameIcLb0EED2Ev() {} ; void _ZNSt17moneypunct_bynameIcLb1EEC1EPKcm() {} ; void _ZNSt17moneypunct_bynameIcLb1EEC2EPKcm() {} ; void _ZNSt17moneypunct_bynameIcLb1EED0Ev() {} ; void _ZNSt17moneypunct_bynameIcLb1EED1Ev() {} ; void _ZNSt17moneypunct_bynameIcLb1EED2Ev() {} ; void _ZNSt17moneypunct_bynameIwLb0EEC1EPKcm() {} ; void _ZNSt17moneypunct_bynameIwLb0EEC2EPKcm() {} ; void _ZNSt17moneypunct_bynameIwLb0EED0Ev() {} ; void _ZNSt17moneypunct_bynameIwLb0EED1Ev() {} ; void _ZNSt17moneypunct_bynameIwLb0EED2Ev() {} ; void _ZNSt17moneypunct_bynameIwLb1EEC1EPKcm() {} ; void _ZNSt17moneypunct_bynameIwLb1EEC2EPKcm() {} ; void _ZNSt17moneypunct_bynameIwLb1EED0Ev() {} ; void _ZNSt17moneypunct_bynameIwLb1EED1Ev() {} ; void _ZNSt17moneypunct_bynameIwLb1EED2Ev() {} ; void _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEE3strERKSs() {} ; void _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode() {} ; void _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode() {} ; void _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode() {} ; void _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode() {} ; void _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev() {} ; void _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev() {} ; void _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED2Ev() {} ; void _ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E() {} ; void _ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode() {} ; void _ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode() {} ; void _ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode() {} ; void _ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode() {} ; void _ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev() {} ; void _ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev() {} ; void _ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED2Ev() {} ; void _ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEE3strERKSs() {} ; void _ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode() {} ; void _ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode() {} ; void _ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode() {} ; void _ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode() {} ; void _ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED0Ev() {} ; void _ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED1Ev() {} ; void _ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED2Ev() {} ; void _ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E() {} ; void _ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode() {} ; void _ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode() {} ; void _ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode() {} ; void _ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode() {} ; void _ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED0Ev() {} ; void _ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED1Ev() {} ; void _ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED2Ev() {} ; void _ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strERKSs() {} ; void _ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode() {} ; void _ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode() {} ; void _ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode() {} ; void _ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode() {} ; void _ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED0Ev() {} ; void _ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED1Ev() {} ; void _ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED2Ev() {} ; void _ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E() {} ; void _ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode() {} ; void _ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode() {} ; void _ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode() {} ; void _ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode() {} ; void _ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED0Ev() {} ; void _ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED1Ev() {} ; void _ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED2Ev() {} ; void _ZNSt5ctypeIcE13classic_tableEv() {} ; void _ZNSt5ctypeIcEC1EP15__locale_structPKtbm() {} ; void _ZNSt5ctypeIcEC1EPKtbm() {} ; void _ZNSt5ctypeIcEC2EP15__locale_structPKtbm() {} ; void _ZNSt5ctypeIcEC2EPKtbm() {} ; void _ZNSt5ctypeIcED0Ev() {} ; void _ZNSt5ctypeIcED1Ev() {} ; void _ZNSt5ctypeIcED2Ev() {} ; void _ZNSt5ctypeIwE19_M_initialize_ctypeEv() {} ; void _ZNSt5ctypeIwEC1EP15__locale_structm() {} ; void _ZNSt5ctypeIwEC1Em() {} ; void _ZNSt5ctypeIwEC2EP15__locale_structm() {} ; void _ZNSt5ctypeIwEC2Em() {} ; void _ZNSt5ctypeIwED0Ev() {} ; void _ZNSt5ctypeIwED1Ev() {} ; void _ZNSt5ctypeIwED2Ev() {} ; void _ZNSt6gslice8_IndexerC1EmRKSt8valarrayImES4_() {} ; void _ZNSt6gslice8_IndexerC2EmRKSt8valarrayImES4_() {} ; void _ZNSt6locale11_M_coalesceERKS_S1_i() {} ; void _ZNSt6locale21_S_normalize_categoryEi() {} ; void _ZNSt6locale5_Impl16_M_install_facetEPKNS_2idEPKNS_5facetE() {} ; void _ZNSt6locale5_Impl16_M_replace_facetEPKS0_PKNS_2idE() {} ; void _ZNSt6locale5_ImplC1EPKcm() {} ; void _ZNSt6locale5_ImplC1ERKS0_m() {} ; void _ZNSt6locale5_ImplC1Em() {} ; void _ZNSt6locale5_ImplC2EPKcm() {} ; void _ZNSt6locale5_ImplC2ERKS0_m() {} ; void _ZNSt6locale5_ImplC2Em() {} ; void _ZNSt6locale5_ImplD1Ev() {} ; void _ZNSt6locale5_ImplD2Ev() {} ; void _ZNSt6locale5facet15_S_get_c_localeEv() {} ; void _ZNSt6locale5facet17_S_clone_c_localeERP15__locale_struct() {} ; void _ZNSt6locale5facet18_S_create_c_localeERP15__locale_structPKcS2_() {} ; void _ZNSt6locale5facet19_S_destroy_c_localeERP15__locale_struct() {} ; void _ZNSt6locale5facetD0Ev() {} ; void _ZNSt6locale5facetD1Ev() {} ; void _ZNSt6locale5facetD2Ev() {} ; void _ZNSt6locale6globalERKS_() {} ; void _ZNSt6locale7classicEv() {} ; void _ZNSt6localeC1EPKc() {} ; void _ZNSt6localeC1EPNS_5_ImplE() {} ; void _ZNSt6localeC1ERKS_() {} ; void _ZNSt6localeC1ERKS_PKci() {} ; void _ZNSt6localeC1ERKS_S1_i() {} ; void _ZNSt6localeC1Ev() {} ; void _ZNSt6localeC2EPKc() {} ; void _ZNSt6localeC2EPNS_5_ImplE() {} ; void _ZNSt6localeC2ERKS_() {} ; void _ZNSt6localeC2ERKS_PKci() {} ; void _ZNSt6localeC2ERKS_S1_i() {} ; void _ZNSt6localeC2Ev() {} ; void _ZNSt6localeD1Ev() {} ; void _ZNSt6localeD2Ev() {} ; void _ZNSt6localeaSERKS_() {} ; void _ZNSt7codecvtIcc11__mbstate_tEC1EP15__locale_structm() {} ; void _ZNSt7codecvtIcc11__mbstate_tEC1Em() {} ; void _ZNSt7codecvtIcc11__mbstate_tEC2EP15__locale_structm() {} ; void _ZNSt7codecvtIcc11__mbstate_tEC2Em() {} ; void _ZNSt7codecvtIcc11__mbstate_tED0Ev() {} ; void _ZNSt7codecvtIcc11__mbstate_tED1Ev() {} ; void _ZNSt7codecvtIcc11__mbstate_tED2Ev() {} ; void _ZNSt7codecvtIwc11__mbstate_tEC1EP15__locale_structm() {} ; void _ZNSt7codecvtIwc11__mbstate_tEC1Em() {} ; void _ZNSt7codecvtIwc11__mbstate_tEC2EP15__locale_structm() {} ; void _ZNSt7codecvtIwc11__mbstate_tEC2Em() {} ; void _ZNSt7codecvtIwc11__mbstate_tED0Ev() {} ; void _ZNSt7codecvtIwc11__mbstate_tED1Ev() {} ; void _ZNSt7codecvtIwc11__mbstate_tED2Ev() {} ; void _ZNSt7collateIcEC1EP15__locale_structm() {} ; void _ZNSt7collateIcEC1Em() {} ; void _ZNSt7collateIcEC2EP15__locale_structm() {} ; void _ZNSt7collateIcEC2Em() {} ; void _ZNSt7collateIcED0Ev() {} ; void _ZNSt7collateIcED1Ev() {} ; void _ZNSt7collateIcED2Ev() {} ; void _ZNSt7collateIwEC1EP15__locale_structm() {} ; void _ZNSt7collateIwEC1Em() {} ; void _ZNSt7collateIwEC2EP15__locale_structm() {} ; void _ZNSt7collateIwEC2Em() {} ; void _ZNSt7collateIwED0Ev() {} ; void _ZNSt7collateIwED1Ev() {} ; void _ZNSt7collateIwED2Ev() {} ; void _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em() {} ; void _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em() {} ; void _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev() {} ; void _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev() {} ; void _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev() {} ; void _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em() {} ; void _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em() {} ; void _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev() {} ; void _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev() {} ; void _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev() {} ; void _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em() {} ; void _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em() {} ; void _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev() {} ; void _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev() {} ; void _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev() {} ; void _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em() {} ; void _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em() {} ; void _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev() {} ; void _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev() {} ; void _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev() {} ; void _ZNSt8bad_castD0Ev() {} ; void _ZNSt8bad_castD1Ev() {} ; void _ZNSt8bad_castD2Ev() {} ; void _ZNSt8ios_base13_M_grow_wordsEib() {} ; void _ZNSt8ios_base15sync_with_stdioEb() {} ; void _ZNSt8ios_base17register_callbackEPFvNS_5eventERS_iEi() {} ; void _ZNSt8ios_base4InitC1Ev() {} ; void _ZNSt8ios_base4InitC2Ev() {} ; void _ZNSt8ios_base4InitD1Ev() {} ; void _ZNSt8ios_base4InitD2Ev() {} ; void _ZNSt8ios_base5imbueERKSt6locale() {} ; void _ZNSt8ios_base6xallocEv() {} ; void _ZNSt8ios_base7_M_initEv() {} ; void _ZNSt8ios_base7failureC1ERKSs() {} ; void _ZNSt8ios_base7failureC2ERKSs() {} ; void _ZNSt8ios_base7failureD0Ev() {} ; void _ZNSt8ios_base7failureD1Ev() {} ; void _ZNSt8ios_base7failureD2Ev() {} ; void _ZNSt8ios_baseC1Ev() {} ; void _ZNSt8ios_baseC2Ev() {} ; void _ZNSt8ios_baseD0Ev() {} ; void _ZNSt8ios_baseD1Ev() {} ; void _ZNSt8ios_baseD2Ev() {} ; void _ZNSt8messagesIcEC1EP15__locale_structPKcm() {} ; void _ZNSt8messagesIcEC1Em() {} ; void _ZNSt8messagesIcEC2EP15__locale_structPKcm() {} ; void _ZNSt8messagesIcEC2Em() {} ; void _ZNSt8messagesIcED0Ev() {} ; void _ZNSt8messagesIcED1Ev() {} ; void _ZNSt8messagesIcED2Ev() {} ; void _ZNSt8messagesIwEC1EP15__locale_structPKcm() {} ; void _ZNSt8messagesIwEC1Em() {} ; void _ZNSt8messagesIwEC2EP15__locale_structPKcm() {} ; void _ZNSt8messagesIwEC2Em() {} ; void _ZNSt8messagesIwED0Ev() {} ; void _ZNSt8messagesIwED1Ev() {} ; void _ZNSt8messagesIwED2Ev() {} ; void _ZNSt8numpunctIcE22_M_initialize_numpunctEP15__locale_struct() {} ; void _ZNSt8numpunctIcEC1EP15__locale_structm() {} ; void _ZNSt8numpunctIcEC1EPSt16__numpunct_cacheIcEm() {} ; void _ZNSt8numpunctIcEC1Em() {} ; void _ZNSt8numpunctIcEC2EP15__locale_structm() {} ; void _ZNSt8numpunctIcEC2EPSt16__numpunct_cacheIcEm() {} ; void _ZNSt8numpunctIcEC2Em() {} ; void _ZNSt8numpunctIcED0Ev() {} ; void _ZNSt8numpunctIcED1Ev() {} ; void _ZNSt8numpunctIcED2Ev() {} ; void _ZNSt8numpunctIwE22_M_initialize_numpunctEP15__locale_struct() {} ; void _ZNSt8numpunctIwEC1EP15__locale_structm() {} ; void _ZNSt8numpunctIwEC1Em() {} ; void _ZNSt8numpunctIwEC2EP15__locale_structm() {} ; void _ZNSt8numpunctIwEC2Em() {} ; void _ZNSt8numpunctIwED0Ev() {} ; void _ZNSt8numpunctIwED1Ev() {} ; void _ZNSt8numpunctIwED2Ev() {} ; void _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em() {} ; void _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em() {} ; void _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev() {} ; void _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev() {} ; void _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev() {} ; void _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em() {} ; void _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em() {} ; void _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev() {} ; void _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev() {} ; void _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev() {} ; void _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em() {} ; void _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em() {} ; void _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev() {} ; void _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev() {} ; void _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev() {} ; void _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em() {} ; void _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em() {} ; void _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev() {} ; void _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev() {} ; void _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev() {} ; void _ZNSt8valarrayImEC1ERKS0_() {} ; void _ZNSt8valarrayImEC1Em() {} ; void _ZNSt8valarrayImEC2ERKS0_() {} ; void _ZNSt8valarrayImEC2Em() {} ; void _ZNSt8valarrayImED1Ev() {} ; void _ZNSt8valarrayImED2Ev() {} ; void _ZNSt8valarrayImEixEm() {} ; void _ZNSt9bad_allocD0Ev() {} ; void _ZNSt9bad_allocD1Ev() {} ; void _ZNSt9bad_allocD2Ev() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEE10exceptionsESt12_Ios_Iostate() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEE11_M_setstateESt12_Ios_Iostate() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEE3tieEPSo() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEE4fillEc() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEE4initEPSt15basic_streambufIcS1_E() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEE5clearESt12_Ios_Iostate() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEE5imbueERKSt6locale() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEE5rdbufEPSt15basic_streambufIcS1_E() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEE7copyfmtERKS2_() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEE8setstateESt12_Ios_Iostate() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEEC1EPSt15basic_streambufIcS1_E() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEEC1Ev() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEEC2EPSt15basic_streambufIcS1_E() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEEC2Ev() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEED0Ev() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEED1Ev() {} ; void _ZNSt9basic_iosIcSt11char_traitsIcEED2Ev() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEE10exceptionsESt12_Ios_Iostate() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEE11_M_setstateESt12_Ios_Iostate() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEE3tieEPSt13basic_ostreamIwS1_E() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEE4fillEw() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEE4initEPSt15basic_streambufIwS1_E() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEE5clearESt12_Ios_Iostate() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEE5imbueERKSt6locale() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEE5rdbufEPSt15basic_streambufIwS1_E() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEE7copyfmtERKS2_() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEE8setstateESt12_Ios_Iostate() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEEC1Ev() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEEC2Ev() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEED0Ev() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEED1Ev() {} ; void _ZNSt9basic_iosIwSt11char_traitsIwEED2Ev() {} ; void _ZNSt9exceptionD0Ev() {} ; void _ZNSt9exceptionD1Ev() {} ; void _ZNSt9exceptionD2Ev() {} ; void _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em() {} ; void _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em() {} ; void _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev() {} ; void _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev() {} ; void _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev() {} ; void _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em() {} ; void _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em() {} ; void _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev() {} ; void _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev() {} ; void _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev() {} ; void _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em() {} ; void _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em() {} ; void _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev() {} ; void _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev() {} ; void _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev() {} ; void _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em() {} ; void _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em() {} ; void _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev() {} ; void _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev() {} ; void _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev() {} ; void _ZNSt9type_infoD0Ev() {} ; void _ZNSt9type_infoD1Ev() {} ; void _ZNSt9type_infoD2Ev() {} ; void _ZSt10unexpectedv() {} ; void _ZSt13set_terminatePFvvE() {} ; void _ZSt14__convert_to_vIdEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct() {} ; void _ZSt14__convert_to_vIeEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct() {} ; void _ZSt14__convert_to_vIfEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct() {} ; void _ZSt14set_unexpectedPFvvE() {} ; void _ZSt15set_new_handlerPFvvE() {} ; void _ZSt16__throw_bad_castv() {} ; void _ZSt17__throw_bad_allocv() {} ; void _ZSt18_Rb_tree_decrementPKSt18_Rb_tree_node_base() {} ; void _ZSt18_Rb_tree_decrementPSt18_Rb_tree_node_base() {} ; void _ZSt18_Rb_tree_incrementPKSt18_Rb_tree_node_base() {} ; void _ZSt18_Rb_tree_incrementPSt18_Rb_tree_node_base() {} ; void _ZSt18__throw_bad_typeidv() {} ; void _ZSt18uncaught_exceptionv() {} ; void _ZSt19__throw_ios_failurePKc() {} ; void _ZSt19__throw_logic_errorPKc() {} ; void _ZSt19__throw_range_errorPKc() {} ; void _ZSt20_Rb_tree_black_countPKSt18_Rb_tree_node_baseS1_() {} ; void _ZSt20_Rb_tree_rotate_leftPSt18_Rb_tree_node_baseRS0_() {} ; void _ZSt20__throw_domain_errorPKc() {} ; void _ZSt20__throw_length_errorPKc() {} ; void _ZSt20__throw_out_of_rangePKc() {} ; void _ZSt21_Rb_tree_rotate_rightPSt18_Rb_tree_node_baseRS0_() {} ; void _ZSt21__throw_bad_exceptionv() {} ; void _ZSt21__throw_runtime_errorPKc() {} ; void _ZSt22__throw_overflow_errorPKc() {} ; void _ZSt23__throw_underflow_errorPKc() {} ; void _ZSt24__throw_invalid_argumentPKc() {} ; void _ZSt28_Rb_tree_rebalance_for_erasePSt18_Rb_tree_node_baseRS_() {} ; void _ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_() {} ; void _ZSt2wsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_() {} ; void _ZSt2wsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_() {} ; void _ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_() {} ; void _ZSt4endlIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_() {} ; void _ZSt4endsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_() {} ; void _ZSt4endsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_() {} ; void _ZSt5flushIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_() {} ; void _ZSt5flushIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_() {} ; void _ZSt7getlineIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E() {} ; void _ZSt7getlineIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_ES4_() {} ; void _ZSt7getlineIwSt11char_traitsIwESaIwEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E() {} ; void _ZSt7getlineIwSt11char_traitsIwESaIwEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_ES4_() {} ; void _ZSt9has_facetISt10moneypunctIcLb0EEEbRKSt6locale() {} ; void _ZSt9has_facetISt10moneypunctIwLb0EEEbRKSt6locale() {} ; void _ZSt9has_facetISt11__timepunctIcEEbRKSt6locale() {} ; void _ZSt9has_facetISt11__timepunctIwEEbRKSt6locale() {} ; void _ZSt9has_facetISt5ctypeIcEEbRKSt6locale() {} ; void _ZSt9has_facetISt5ctypeIwEEbRKSt6locale() {} ; void _ZSt9has_facetISt7codecvtIcc11__mbstate_tEEbRKSt6locale() {} ; void _ZSt9has_facetISt7codecvtIwc11__mbstate_tEEbRKSt6locale() {} ; void _ZSt9has_facetISt7collateIcEEbRKSt6locale() {} ; void _ZSt9has_facetISt7collateIwEEbRKSt6locale() {} ; void _ZSt9has_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale() {} ; void _ZSt9has_facetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale() {} ; void _ZSt9has_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale() {} ; void _ZSt9has_facetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale() {} ; void _ZSt9has_facetISt8messagesIcEEbRKSt6locale() {} ; void _ZSt9has_facetISt8messagesIwEEbRKSt6locale() {} ; void _ZSt9has_facetISt8numpunctIcEEbRKSt6locale() {} ; void _ZSt9has_facetISt8numpunctIwEEbRKSt6locale() {} ; void _ZSt9has_facetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale() {} ; void _ZSt9has_facetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale() {} ; void _ZSt9has_facetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale() {} ; void _ZSt9has_facetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale() {} ; void _ZSt9has_facetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale() {} ; void _ZSt9has_facetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale() {} ; void _ZSt9has_facetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale() {} ; void _ZSt9has_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale() {} ; void _ZSt9terminatev() {} ; void _ZSt9use_facetISt10moneypunctIcLb0EEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt10moneypunctIcLb1EEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt10moneypunctIwLb0EEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt10moneypunctIwLb1EEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt11__timepunctIcEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt11__timepunctIwEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt5ctypeIwEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt7codecvtIcc11__mbstate_tEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt7codecvtIwc11__mbstate_tEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt7collateIcEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt7collateIwEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt8messagesIcEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt8messagesIwEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt8numpunctIcEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt8numpunctIwEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale() {} ; void _ZSt9use_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale() {} ; void _ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKa() {} ; void _ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc() {} ; void _ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKh() {} ; void _ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_a() {} ; void _ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c() {} ; void _ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_h() {} ; void _ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St12_Setiosflags() {} ; void _ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St13_Setprecision() {} ; void _ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St14_Resetiosflags() {} ; void _ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St5_Setw() {} ; void _ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St8_Setbase() {} ; void _ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St8_SetfillIS3_E() {} ; void _ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E() {} ; void _ZStlsIdcSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E() {} ; void _ZStlsIdwSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E() {} ; void _ZStlsIecSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E() {} ; void _ZStlsIewSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E() {} ; void _ZStlsIfcSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E() {} ; void _ZStlsIfwSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E() {} ; void _ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKS3_() {} ; void _ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKc() {} ; void _ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_S3_() {} ; void _ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St12_Setiosflags() {} ; void _ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St13_Setprecision() {} ; void _ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St14_Resetiosflags() {} ; void _ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St5_Setw() {} ; void _ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St8_Setbase() {} ; void _ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St8_SetfillIS3_E() {} ; void _ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_c() {} ; void _ZStlsIwSt11char_traitsIwESaIwEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E() {} ; void _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_() {} ; void _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_S8_() {} ; void _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ES3_RKS6_() {} ; void _ZStplIwSt11char_traitsIwESaIwEESbIT_T0_T1_EPKS3_RKS6_() {} ; void _ZStplIwSt11char_traitsIwESaIwEESbIT_T0_T1_ERKS6_S8_() {} ; void _ZStplIwSt11char_traitsIwESaIwEESbIT_T0_T1_ES3_RKS6_() {} ; void _ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Pa() {} ; void _ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Ph() {} ; void _ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Ra() {} ; void _ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Rh() {} ; void _ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_PS3_() {} ; void _ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_RS3_() {} ; void _ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St12_Setiosflags() {} ; void _ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St13_Setprecision() {} ; void _ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St14_Resetiosflags() {} ; void _ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St5_Setw() {} ; void _ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St8_Setbase() {} ; void _ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St8_SetfillIS3_E() {} ; void _ZStrsIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E() {} ; void _ZStrsIdcSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E() {} ; void _ZStrsIdwSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E() {} ; void _ZStrsIecSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E() {} ; void _ZStrsIewSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E() {} ; void _ZStrsIfcSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E() {} ; void _ZStrsIfwSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E() {} ; void _ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_PS3_() {} ; void _ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_RS3_() {} ; void _ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St12_Setiosflags() {} ; void _ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St13_Setprecision() {} ; void _ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St14_Resetiosflags() {} ; void _ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St5_Setw() {} ; void _ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St8_Setbase() {} ; void _ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St8_SetfillIS3_E() {} ; void _ZStrsIwSt11char_traitsIwESaIwEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E() {} ; void _ZThn16_NSdD0Ev() {} ; void _ZThn16_NSdD1Ev() {} ; void _ZThn16_NSt13basic_fstreamIcSt11char_traitsIcEED0Ev() {} ; void _ZThn16_NSt13basic_fstreamIcSt11char_traitsIcEED1Ev() {} ; void _ZThn16_NSt13basic_fstreamIwSt11char_traitsIwEED0Ev() {} ; void _ZThn16_NSt13basic_fstreamIwSt11char_traitsIwEED1Ev() {} ; void _ZThn16_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev() {} ; void _ZThn16_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev() {} ; void _ZThn16_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev() {} ; void _ZThn16_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev() {} ; void _ZThn16_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev() {} ; void _ZThn16_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev() {} ; void _ZTv0_n24_NSdD0Ev() {} ; void _ZTv0_n24_NSdD1Ev() {} ; void _ZTv0_n24_NSiD0Ev() {} ; void _ZTv0_n24_NSiD1Ev() {} ; void _ZTv0_n24_NSoD0Ev() {} ; void _ZTv0_n24_NSoD1Ev() {} ; void _ZTv0_n24_NSt13basic_fstreamIcSt11char_traitsIcEED0Ev() {} ; void _ZTv0_n24_NSt13basic_fstreamIcSt11char_traitsIcEED1Ev() {} ; void _ZTv0_n24_NSt13basic_fstreamIwSt11char_traitsIwEED0Ev() {} ; void _ZTv0_n24_NSt13basic_fstreamIwSt11char_traitsIwEED1Ev() {} ; void _ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev() {} ; void _ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev() {} ; void _ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev() {} ; void _ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev() {} ; void _ZTv0_n24_NSt14basic_ifstreamIcSt11char_traitsIcEED0Ev() {} ; void _ZTv0_n24_NSt14basic_ifstreamIcSt11char_traitsIcEED1Ev() {} ; void _ZTv0_n24_NSt14basic_ifstreamIwSt11char_traitsIwEED0Ev() {} ; void _ZTv0_n24_NSt14basic_ifstreamIwSt11char_traitsIwEED1Ev() {} ; void _ZTv0_n24_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev() {} ; void _ZTv0_n24_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev() {} ; void _ZTv0_n24_NSt14basic_ofstreamIcSt11char_traitsIcEED0Ev() {} ; void _ZTv0_n24_NSt14basic_ofstreamIcSt11char_traitsIcEED1Ev() {} ; void _ZTv0_n24_NSt14basic_ofstreamIwSt11char_traitsIwEED0Ev() {} ; void _ZTv0_n24_NSt14basic_ofstreamIwSt11char_traitsIwEED1Ev() {} ; void _ZTv0_n24_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev() {} ; void _ZTv0_n24_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev() {} ; void _ZTv0_n24_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev() {} ; void _ZTv0_n24_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev() {} ; void _ZTv0_n24_NSt19basic_istringstreamIcSt11char_traitsIcESaIcEED0Ev() {} ; void _ZTv0_n24_NSt19basic_istringstreamIcSt11char_traitsIcESaIcEED1Ev() {} ; void _ZTv0_n24_NSt19basic_istringstreamIwSt11char_traitsIwESaIwEED0Ev() {} ; void _ZTv0_n24_NSt19basic_istringstreamIwSt11char_traitsIwESaIwEED1Ev() {} ; void _ZTv0_n24_NSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED0Ev() {} ; void _ZTv0_n24_NSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED1Ev() {} ; void _ZTv0_n24_NSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED0Ev() {} ; void _ZTv0_n24_NSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED1Ev() {} ; void _ZdaPv() {} ; void _ZdaPvRKSt9nothrow_t() {} ; void _ZdlPv() {} ; void _ZdlPvRKSt9nothrow_t() {} ; void _Znam() {} ; void _ZnamRKSt9nothrow_t() {} ; void _Znwm() {} ; void _ZnwmRKSt9nothrow_t() {} ; void __cxa_allocate_exception() {} ; void __cxa_bad_cast() {} ; void __cxa_bad_typeid() {} ; void __cxa_begin_catch() {} ; void __cxa_call_unexpected() {} ; void __cxa_current_exception_type() {} ; void __cxa_demangle() {} ; void __cxa_end_catch() {} ; void __cxa_free_exception() {} ; void __cxa_get_globals() {} ; void __cxa_get_globals_fast() {} ; void __cxa_guard_abort() {} ; void __cxa_guard_acquire() {} ; void __cxa_guard_release() {} ; void __cxa_pure_virtual() {} ; void __cxa_rethrow() {} ; void __cxa_throw() {} ; void __cxa_vec_cctor() {} ; void __cxa_vec_cleanup() {} ; void __cxa_vec_ctor() {} ; void __cxa_vec_delete() {} ; void __cxa_vec_delete2() {} ; void __cxa_vec_delete3() {} ; void __cxa_vec_dtor() {} ; void __cxa_vec_new() {} ; void __cxa_vec_new2() {} ; void __cxa_vec_new3() {} ; void __dynamic_cast() {} ; void __gxx_personality_v0() {} ; __asm__(".globl _ZGVNSt10moneypunctIcLb0EE2idE; .pushsection .data; .type _ZGVNSt10moneypunctIcLb0EE2idE,@object; .size _ZGVNSt10moneypunctIcLb0EE2idE, 8; _ZGVNSt10moneypunctIcLb0EE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt10moneypunctIcLb1EE2idE; .pushsection .data; .type _ZGVNSt10moneypunctIcLb1EE2idE,@object; .size _ZGVNSt10moneypunctIcLb1EE2idE, 8; _ZGVNSt10moneypunctIcLb1EE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt10moneypunctIwLb0EE2idE; .pushsection .data; .type _ZGVNSt10moneypunctIwLb0EE2idE,@object; .size _ZGVNSt10moneypunctIwLb0EE2idE, 8; _ZGVNSt10moneypunctIwLb0EE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt10moneypunctIwLb1EE2idE; .pushsection .data; .type _ZGVNSt10moneypunctIwLb1EE2idE,@object; .size _ZGVNSt10moneypunctIwLb1EE2idE, 8; _ZGVNSt10moneypunctIwLb1EE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt11__timepunctIcE2idE; .pushsection .data; .type _ZGVNSt11__timepunctIcE2idE,@object; .size _ZGVNSt11__timepunctIcE2idE, 8; _ZGVNSt11__timepunctIcE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt11__timepunctIwE2idE; .pushsection .data; .type _ZGVNSt11__timepunctIwE2idE,@object; .size _ZGVNSt11__timepunctIwE2idE, 8; _ZGVNSt11__timepunctIwE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt7collateIcE2idE; .pushsection .data; .type _ZGVNSt7collateIcE2idE,@object; .size _ZGVNSt7collateIcE2idE, 8; _ZGVNSt7collateIcE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt7collateIwE2idE; .pushsection .data; .type _ZGVNSt7collateIwE2idE,@object; .size _ZGVNSt7collateIwE2idE, 8; _ZGVNSt7collateIwE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt8messagesIcE2idE; .pushsection .data; .type _ZGVNSt8messagesIcE2idE,@object; .size _ZGVNSt8messagesIcE2idE, 8; _ZGVNSt8messagesIcE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt8messagesIwE2idE; .pushsection .data; .type _ZGVNSt8messagesIwE2idE,@object; .size _ZGVNSt8messagesIwE2idE, 8; _ZGVNSt8messagesIwE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt8numpunctIcE2idE; .pushsection .data; .type _ZGVNSt8numpunctIcE2idE,@object; .size _ZGVNSt8numpunctIcE2idE, 8; _ZGVNSt8numpunctIcE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt8numpunctIwE2idE; .pushsection .data; .type _ZGVNSt8numpunctIwE2idE,@object; .size _ZGVNSt8numpunctIwE2idE, 8; _ZGVNSt8numpunctIwE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZGVNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZGVNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZGVNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeE; .pushsection .data; .type _ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeE,@object; .size _ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeE, 8; _ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeE: .long 0; .popsection"); __asm__(".globl _ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalE; .pushsection .data; .type _ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalE,@object; .size _ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalE, 4; _ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalE: .long 0; .popsection"); __asm__(".globl _ZNSbIwSt11char_traitsIwESaIwEE4_Rep20_S_empty_rep_storageE; .pushsection .data; .type _ZNSbIwSt11char_traitsIwESaIwEE4_Rep20_S_empty_rep_storageE,@object; .size _ZNSbIwSt11char_traitsIwESaIwEE4_Rep20_S_empty_rep_storageE, 32; _ZNSbIwSt11char_traitsIwESaIwEE4_Rep20_S_empty_rep_storageE: .long 0; .popsection"); __asm__(".globl _ZNSbIwSt11char_traitsIwESaIwEE4nposE; .pushsection .data; .type _ZNSbIwSt11char_traitsIwESaIwEE4nposE,@object; .size _ZNSbIwSt11char_traitsIwESaIwEE4nposE, 8; _ZNSbIwSt11char_traitsIwESaIwEE4nposE: .long 0; .popsection"); __asm__(".globl _ZNSs4_Rep11_S_max_sizeE; .pushsection .data; .type _ZNSs4_Rep11_S_max_sizeE,@object; .size _ZNSs4_Rep11_S_max_sizeE, 8; _ZNSs4_Rep11_S_max_sizeE: .long 0; .popsection"); __asm__(".globl _ZNSs4_Rep11_S_terminalE; .pushsection .data; .type _ZNSs4_Rep11_S_terminalE,@object; .size _ZNSs4_Rep11_S_terminalE, 1; _ZNSs4_Rep11_S_terminalE: .long 0; .popsection"); __asm__(".globl _ZNSs4_Rep20_S_empty_rep_storageE; .pushsection .data; .type _ZNSs4_Rep20_S_empty_rep_storageE,@object; .size _ZNSs4_Rep20_S_empty_rep_storageE, 32; _ZNSs4_Rep20_S_empty_rep_storageE: .long 0; .popsection"); __asm__(".globl _ZNSs4nposE; .pushsection .data; .type _ZNSs4nposE,@object; .size _ZNSs4nposE, 8; _ZNSs4nposE: .long 0; .popsection"); __asm__(".globl _ZNSt10__num_base11_S_atoms_inE; .pushsection .data; .type _ZNSt10__num_base11_S_atoms_inE,@object; .size _ZNSt10__num_base11_S_atoms_inE, 8; _ZNSt10__num_base11_S_atoms_inE: .long 0; .popsection"); __asm__(".globl _ZNSt10__num_base12_S_atoms_outE; .pushsection .data; .type _ZNSt10__num_base12_S_atoms_outE,@object; .size _ZNSt10__num_base12_S_atoms_outE, 8; _ZNSt10__num_base12_S_atoms_outE: .long 0; .popsection"); __asm__(".globl _ZNSt10ctype_base5alnumE; .pushsection .data; .type _ZNSt10ctype_base5alnumE,@object; .size _ZNSt10ctype_base5alnumE, 2; _ZNSt10ctype_base5alnumE: .long 0; .popsection"); __asm__(".globl _ZNSt10ctype_base5alphaE; .pushsection .data; .type _ZNSt10ctype_base5alphaE,@object; .size _ZNSt10ctype_base5alphaE, 2; _ZNSt10ctype_base5alphaE: .long 0; .popsection"); __asm__(".globl _ZNSt10ctype_base5cntrlE; .pushsection .data; .type _ZNSt10ctype_base5cntrlE,@object; .size _ZNSt10ctype_base5cntrlE, 2; _ZNSt10ctype_base5cntrlE: .long 0; .popsection"); __asm__(".globl _ZNSt10ctype_base5digitE; .pushsection .data; .type _ZNSt10ctype_base5digitE,@object; .size _ZNSt10ctype_base5digitE, 2; _ZNSt10ctype_base5digitE: .long 0; .popsection"); __asm__(".globl _ZNSt10ctype_base5graphE; .pushsection .data; .type _ZNSt10ctype_base5graphE,@object; .size _ZNSt10ctype_base5graphE, 2; _ZNSt10ctype_base5graphE: .long 0; .popsection"); __asm__(".globl _ZNSt10ctype_base5lowerE; .pushsection .data; .type _ZNSt10ctype_base5lowerE,@object; .size _ZNSt10ctype_base5lowerE, 2; _ZNSt10ctype_base5lowerE: .long 0; .popsection"); __asm__(".globl _ZNSt10ctype_base5printE; .pushsection .data; .type _ZNSt10ctype_base5printE,@object; .size _ZNSt10ctype_base5printE, 2; _ZNSt10ctype_base5printE: .long 0; .popsection"); __asm__(".globl _ZNSt10ctype_base5punctE; .pushsection .data; .type _ZNSt10ctype_base5punctE,@object; .size _ZNSt10ctype_base5punctE, 2; _ZNSt10ctype_base5punctE: .long 0; .popsection"); __asm__(".globl _ZNSt10ctype_base5spaceE; .pushsection .data; .type _ZNSt10ctype_base5spaceE,@object; .size _ZNSt10ctype_base5spaceE, 2; _ZNSt10ctype_base5spaceE: .long 0; .popsection"); __asm__(".globl _ZNSt10ctype_base5upperE; .pushsection .data; .type _ZNSt10ctype_base5upperE,@object; .size _ZNSt10ctype_base5upperE, 2; _ZNSt10ctype_base5upperE: .long 0; .popsection"); __asm__(".globl _ZNSt10ctype_base6xdigitE; .pushsection .data; .type _ZNSt10ctype_base6xdigitE,@object; .size _ZNSt10ctype_base6xdigitE, 2; _ZNSt10ctype_base6xdigitE: .long 0; .popsection"); __asm__(".globl _ZNSt10money_base18_S_default_patternE; .pushsection .data; .type _ZNSt10money_base18_S_default_patternE,@object; .size _ZNSt10money_base18_S_default_patternE, 4; _ZNSt10money_base18_S_default_patternE: .long 0; .popsection"); __asm__(".globl _ZNSt10money_base8_S_atomsE; .pushsection .data; .type _ZNSt10money_base8_S_atomsE,@object; .size _ZNSt10money_base8_S_atomsE, 8; _ZNSt10money_base8_S_atomsE: .long 0; .popsection"); __asm__(".globl _ZNSt10moneypunctIcLb0EE2idE; .pushsection .data; .type _ZNSt10moneypunctIcLb0EE2idE,@object; .size _ZNSt10moneypunctIcLb0EE2idE, 8; _ZNSt10moneypunctIcLb0EE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt10moneypunctIcLb0EE4intlE; .pushsection .data; .type _ZNSt10moneypunctIcLb0EE4intlE,@object; .size _ZNSt10moneypunctIcLb0EE4intlE, 1; _ZNSt10moneypunctIcLb0EE4intlE: .long 0; .popsection"); __asm__(".globl _ZNSt10moneypunctIcLb1EE2idE; .pushsection .data; .type _ZNSt10moneypunctIcLb1EE2idE,@object; .size _ZNSt10moneypunctIcLb1EE2idE, 8; _ZNSt10moneypunctIcLb1EE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt10moneypunctIcLb1EE4intlE; .pushsection .data; .type _ZNSt10moneypunctIcLb1EE4intlE,@object; .size _ZNSt10moneypunctIcLb1EE4intlE, 1; _ZNSt10moneypunctIcLb1EE4intlE: .long 0; .popsection"); __asm__(".globl _ZNSt10moneypunctIwLb0EE2idE; .pushsection .data; .type _ZNSt10moneypunctIwLb0EE2idE,@object; .size _ZNSt10moneypunctIwLb0EE2idE, 8; _ZNSt10moneypunctIwLb0EE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt10moneypunctIwLb0EE4intlE; .pushsection .data; .type _ZNSt10moneypunctIwLb0EE4intlE,@object; .size _ZNSt10moneypunctIwLb0EE4intlE, 1; _ZNSt10moneypunctIwLb0EE4intlE: .long 0; .popsection"); __asm__(".globl _ZNSt10moneypunctIwLb1EE2idE; .pushsection .data; .type _ZNSt10moneypunctIwLb1EE2idE,@object; .size _ZNSt10moneypunctIwLb1EE2idE, 8; _ZNSt10moneypunctIwLb1EE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt10moneypunctIwLb1EE4intlE; .pushsection .data; .type _ZNSt10moneypunctIwLb1EE4intlE,@object; .size _ZNSt10moneypunctIwLb1EE4intlE, 1; _ZNSt10moneypunctIwLb1EE4intlE: .long 0; .popsection"); __asm__(".globl _ZNSt11__timepunctIcE2idE; .pushsection .data; .type _ZNSt11__timepunctIcE2idE,@object; .size _ZNSt11__timepunctIcE2idE, 8; _ZNSt11__timepunctIcE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt11__timepunctIwE2idE; .pushsection .data; .type _ZNSt11__timepunctIwE2idE,@object; .size _ZNSt11__timepunctIwE2idE, 8; _ZNSt11__timepunctIwE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIaE10has_denormE,@object; .size _ZNSt14numeric_limitsIaE10has_denormE, 4; _ZNSt14numeric_limitsIaE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIaE10is_boundedE,@object; .size _ZNSt14numeric_limitsIaE10is_boundedE, 1; _ZNSt14numeric_limitsIaE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIaE10is_integerE,@object; .size _ZNSt14numeric_limitsIaE10is_integerE, 1; _ZNSt14numeric_limitsIaE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIaE11round_styleE,@object; .size _ZNSt14numeric_limitsIaE11round_styleE, 4; _ZNSt14numeric_limitsIaE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIaE12has_infinityE,@object; .size _ZNSt14numeric_limitsIaE12has_infinityE, 1; _ZNSt14numeric_limitsIaE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIaE12max_exponentE,@object; .size _ZNSt14numeric_limitsIaE12max_exponentE, 4; _ZNSt14numeric_limitsIaE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIaE12min_exponentE,@object; .size _ZNSt14numeric_limitsIaE12min_exponentE, 4; _ZNSt14numeric_limitsIaE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIaE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIaE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIaE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIaE14is_specializedE,@object; .size _ZNSt14numeric_limitsIaE14is_specializedE, 1; _ZNSt14numeric_limitsIaE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIaE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIaE14max_exponent10E, 4; _ZNSt14numeric_limitsIaE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIaE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIaE14min_exponent10E, 4; _ZNSt14numeric_limitsIaE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIaE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIaE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIaE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIaE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIaE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIaE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIaE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIaE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIaE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIaE5radixE,@object; .size _ZNSt14numeric_limitsIaE5radixE, 4; _ZNSt14numeric_limitsIaE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIaE5trapsE,@object; .size _ZNSt14numeric_limitsIaE5trapsE, 1; _ZNSt14numeric_limitsIaE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIaE6digitsE,@object; .size _ZNSt14numeric_limitsIaE6digitsE, 4; _ZNSt14numeric_limitsIaE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIaE8digits10E,@object; .size _ZNSt14numeric_limitsIaE8digits10E, 4; _ZNSt14numeric_limitsIaE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIaE8is_exactE,@object; .size _ZNSt14numeric_limitsIaE8is_exactE, 1; _ZNSt14numeric_limitsIaE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIaE9is_iec559E,@object; .size _ZNSt14numeric_limitsIaE9is_iec559E, 1; _ZNSt14numeric_limitsIaE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIaE9is_moduloE,@object; .size _ZNSt14numeric_limitsIaE9is_moduloE, 1; _ZNSt14numeric_limitsIaE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIaE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIaE9is_signedE,@object; .size _ZNSt14numeric_limitsIaE9is_signedE, 1; _ZNSt14numeric_limitsIaE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIbE10has_denormE,@object; .size _ZNSt14numeric_limitsIbE10has_denormE, 4; _ZNSt14numeric_limitsIbE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIbE10is_boundedE,@object; .size _ZNSt14numeric_limitsIbE10is_boundedE, 1; _ZNSt14numeric_limitsIbE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIbE10is_integerE,@object; .size _ZNSt14numeric_limitsIbE10is_integerE, 1; _ZNSt14numeric_limitsIbE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIbE11round_styleE,@object; .size _ZNSt14numeric_limitsIbE11round_styleE, 4; _ZNSt14numeric_limitsIbE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIbE12has_infinityE,@object; .size _ZNSt14numeric_limitsIbE12has_infinityE, 1; _ZNSt14numeric_limitsIbE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIbE12max_exponentE,@object; .size _ZNSt14numeric_limitsIbE12max_exponentE, 4; _ZNSt14numeric_limitsIbE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIbE12min_exponentE,@object; .size _ZNSt14numeric_limitsIbE12min_exponentE, 4; _ZNSt14numeric_limitsIbE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIbE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIbE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIbE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIbE14is_specializedE,@object; .size _ZNSt14numeric_limitsIbE14is_specializedE, 1; _ZNSt14numeric_limitsIbE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIbE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIbE14max_exponent10E, 4; _ZNSt14numeric_limitsIbE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIbE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIbE14min_exponent10E, 4; _ZNSt14numeric_limitsIbE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIbE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIbE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIbE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIbE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIbE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIbE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIbE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIbE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIbE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIbE5radixE,@object; .size _ZNSt14numeric_limitsIbE5radixE, 4; _ZNSt14numeric_limitsIbE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIbE5trapsE,@object; .size _ZNSt14numeric_limitsIbE5trapsE, 1; _ZNSt14numeric_limitsIbE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIbE6digitsE,@object; .size _ZNSt14numeric_limitsIbE6digitsE, 4; _ZNSt14numeric_limitsIbE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIbE8digits10E,@object; .size _ZNSt14numeric_limitsIbE8digits10E, 4; _ZNSt14numeric_limitsIbE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIbE8is_exactE,@object; .size _ZNSt14numeric_limitsIbE8is_exactE, 1; _ZNSt14numeric_limitsIbE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIbE9is_iec559E,@object; .size _ZNSt14numeric_limitsIbE9is_iec559E, 1; _ZNSt14numeric_limitsIbE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIbE9is_moduloE,@object; .size _ZNSt14numeric_limitsIbE9is_moduloE, 1; _ZNSt14numeric_limitsIbE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIbE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIbE9is_signedE,@object; .size _ZNSt14numeric_limitsIbE9is_signedE, 1; _ZNSt14numeric_limitsIbE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIcE10has_denormE,@object; .size _ZNSt14numeric_limitsIcE10has_denormE, 4; _ZNSt14numeric_limitsIcE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIcE10is_boundedE,@object; .size _ZNSt14numeric_limitsIcE10is_boundedE, 1; _ZNSt14numeric_limitsIcE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIcE10is_integerE,@object; .size _ZNSt14numeric_limitsIcE10is_integerE, 1; _ZNSt14numeric_limitsIcE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIcE11round_styleE,@object; .size _ZNSt14numeric_limitsIcE11round_styleE, 4; _ZNSt14numeric_limitsIcE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIcE12has_infinityE,@object; .size _ZNSt14numeric_limitsIcE12has_infinityE, 1; _ZNSt14numeric_limitsIcE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIcE12max_exponentE,@object; .size _ZNSt14numeric_limitsIcE12max_exponentE, 4; _ZNSt14numeric_limitsIcE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIcE12min_exponentE,@object; .size _ZNSt14numeric_limitsIcE12min_exponentE, 4; _ZNSt14numeric_limitsIcE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIcE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIcE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIcE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIcE14is_specializedE,@object; .size _ZNSt14numeric_limitsIcE14is_specializedE, 1; _ZNSt14numeric_limitsIcE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIcE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIcE14max_exponent10E, 4; _ZNSt14numeric_limitsIcE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIcE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIcE14min_exponent10E, 4; _ZNSt14numeric_limitsIcE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIcE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIcE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIcE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIcE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIcE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIcE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIcE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIcE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIcE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIcE5radixE,@object; .size _ZNSt14numeric_limitsIcE5radixE, 4; _ZNSt14numeric_limitsIcE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIcE5trapsE,@object; .size _ZNSt14numeric_limitsIcE5trapsE, 1; _ZNSt14numeric_limitsIcE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIcE6digitsE,@object; .size _ZNSt14numeric_limitsIcE6digitsE, 4; _ZNSt14numeric_limitsIcE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIcE8digits10E,@object; .size _ZNSt14numeric_limitsIcE8digits10E, 4; _ZNSt14numeric_limitsIcE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIcE8is_exactE,@object; .size _ZNSt14numeric_limitsIcE8is_exactE, 1; _ZNSt14numeric_limitsIcE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIcE9is_iec559E,@object; .size _ZNSt14numeric_limitsIcE9is_iec559E, 1; _ZNSt14numeric_limitsIcE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIcE9is_moduloE,@object; .size _ZNSt14numeric_limitsIcE9is_moduloE, 1; _ZNSt14numeric_limitsIcE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIcE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIcE9is_signedE,@object; .size _ZNSt14numeric_limitsIcE9is_signedE, 1; _ZNSt14numeric_limitsIcE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIdE10has_denormE,@object; .size _ZNSt14numeric_limitsIdE10has_denormE, 4; _ZNSt14numeric_limitsIdE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIdE10is_boundedE,@object; .size _ZNSt14numeric_limitsIdE10is_boundedE, 1; _ZNSt14numeric_limitsIdE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIdE10is_integerE,@object; .size _ZNSt14numeric_limitsIdE10is_integerE, 1; _ZNSt14numeric_limitsIdE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIdE11round_styleE,@object; .size _ZNSt14numeric_limitsIdE11round_styleE, 4; _ZNSt14numeric_limitsIdE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIdE12has_infinityE,@object; .size _ZNSt14numeric_limitsIdE12has_infinityE, 1; _ZNSt14numeric_limitsIdE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIdE12max_exponentE,@object; .size _ZNSt14numeric_limitsIdE12max_exponentE, 4; _ZNSt14numeric_limitsIdE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIdE12min_exponentE,@object; .size _ZNSt14numeric_limitsIdE12min_exponentE, 4; _ZNSt14numeric_limitsIdE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIdE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIdE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIdE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIdE14is_specializedE,@object; .size _ZNSt14numeric_limitsIdE14is_specializedE, 1; _ZNSt14numeric_limitsIdE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIdE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIdE14max_exponent10E, 4; _ZNSt14numeric_limitsIdE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIdE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIdE14min_exponent10E, 4; _ZNSt14numeric_limitsIdE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIdE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIdE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIdE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIdE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIdE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIdE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIdE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIdE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIdE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIdE5radixE,@object; .size _ZNSt14numeric_limitsIdE5radixE, 4; _ZNSt14numeric_limitsIdE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIdE5trapsE,@object; .size _ZNSt14numeric_limitsIdE5trapsE, 1; _ZNSt14numeric_limitsIdE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIdE6digitsE,@object; .size _ZNSt14numeric_limitsIdE6digitsE, 4; _ZNSt14numeric_limitsIdE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIdE8digits10E,@object; .size _ZNSt14numeric_limitsIdE8digits10E, 4; _ZNSt14numeric_limitsIdE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIdE8is_exactE,@object; .size _ZNSt14numeric_limitsIdE8is_exactE, 1; _ZNSt14numeric_limitsIdE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIdE9is_iec559E,@object; .size _ZNSt14numeric_limitsIdE9is_iec559E, 1; _ZNSt14numeric_limitsIdE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIdE9is_moduloE,@object; .size _ZNSt14numeric_limitsIdE9is_moduloE, 1; _ZNSt14numeric_limitsIdE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIdE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIdE9is_signedE,@object; .size _ZNSt14numeric_limitsIdE9is_signedE, 1; _ZNSt14numeric_limitsIdE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIeE10has_denormE,@object; .size _ZNSt14numeric_limitsIeE10has_denormE, 4; _ZNSt14numeric_limitsIeE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIeE10is_boundedE,@object; .size _ZNSt14numeric_limitsIeE10is_boundedE, 1; _ZNSt14numeric_limitsIeE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIeE10is_integerE,@object; .size _ZNSt14numeric_limitsIeE10is_integerE, 1; _ZNSt14numeric_limitsIeE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIeE11round_styleE,@object; .size _ZNSt14numeric_limitsIeE11round_styleE, 4; _ZNSt14numeric_limitsIeE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIeE12has_infinityE,@object; .size _ZNSt14numeric_limitsIeE12has_infinityE, 1; _ZNSt14numeric_limitsIeE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIeE12max_exponentE,@object; .size _ZNSt14numeric_limitsIeE12max_exponentE, 4; _ZNSt14numeric_limitsIeE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIeE12min_exponentE,@object; .size _ZNSt14numeric_limitsIeE12min_exponentE, 4; _ZNSt14numeric_limitsIeE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIeE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIeE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIeE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIeE14is_specializedE,@object; .size _ZNSt14numeric_limitsIeE14is_specializedE, 1; _ZNSt14numeric_limitsIeE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIeE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIeE14max_exponent10E, 4; _ZNSt14numeric_limitsIeE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIeE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIeE14min_exponent10E, 4; _ZNSt14numeric_limitsIeE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIeE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIeE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIeE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIeE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIeE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIeE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIeE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIeE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIeE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIeE5radixE,@object; .size _ZNSt14numeric_limitsIeE5radixE, 4; _ZNSt14numeric_limitsIeE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIeE5trapsE,@object; .size _ZNSt14numeric_limitsIeE5trapsE, 1; _ZNSt14numeric_limitsIeE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIeE6digitsE,@object; .size _ZNSt14numeric_limitsIeE6digitsE, 4; _ZNSt14numeric_limitsIeE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIeE8digits10E,@object; .size _ZNSt14numeric_limitsIeE8digits10E, 4; _ZNSt14numeric_limitsIeE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIeE8is_exactE,@object; .size _ZNSt14numeric_limitsIeE8is_exactE, 1; _ZNSt14numeric_limitsIeE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIeE9is_iec559E,@object; .size _ZNSt14numeric_limitsIeE9is_iec559E, 1; _ZNSt14numeric_limitsIeE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIeE9is_moduloE,@object; .size _ZNSt14numeric_limitsIeE9is_moduloE, 1; _ZNSt14numeric_limitsIeE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIeE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIeE9is_signedE,@object; .size _ZNSt14numeric_limitsIeE9is_signedE, 1; _ZNSt14numeric_limitsIeE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIfE10has_denormE,@object; .size _ZNSt14numeric_limitsIfE10has_denormE, 4; _ZNSt14numeric_limitsIfE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIfE10is_boundedE,@object; .size _ZNSt14numeric_limitsIfE10is_boundedE, 1; _ZNSt14numeric_limitsIfE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIfE10is_integerE,@object; .size _ZNSt14numeric_limitsIfE10is_integerE, 1; _ZNSt14numeric_limitsIfE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIfE11round_styleE,@object; .size _ZNSt14numeric_limitsIfE11round_styleE, 4; _ZNSt14numeric_limitsIfE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIfE12has_infinityE,@object; .size _ZNSt14numeric_limitsIfE12has_infinityE, 1; _ZNSt14numeric_limitsIfE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIfE12max_exponentE,@object; .size _ZNSt14numeric_limitsIfE12max_exponentE, 4; _ZNSt14numeric_limitsIfE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIfE12min_exponentE,@object; .size _ZNSt14numeric_limitsIfE12min_exponentE, 4; _ZNSt14numeric_limitsIfE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIfE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIfE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIfE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIfE14is_specializedE,@object; .size _ZNSt14numeric_limitsIfE14is_specializedE, 1; _ZNSt14numeric_limitsIfE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIfE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIfE14max_exponent10E, 4; _ZNSt14numeric_limitsIfE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIfE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIfE14min_exponent10E, 4; _ZNSt14numeric_limitsIfE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIfE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIfE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIfE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIfE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIfE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIfE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIfE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIfE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIfE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIfE5radixE,@object; .size _ZNSt14numeric_limitsIfE5radixE, 4; _ZNSt14numeric_limitsIfE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIfE5trapsE,@object; .size _ZNSt14numeric_limitsIfE5trapsE, 1; _ZNSt14numeric_limitsIfE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIfE6digitsE,@object; .size _ZNSt14numeric_limitsIfE6digitsE, 4; _ZNSt14numeric_limitsIfE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIfE8digits10E,@object; .size _ZNSt14numeric_limitsIfE8digits10E, 4; _ZNSt14numeric_limitsIfE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIfE8is_exactE,@object; .size _ZNSt14numeric_limitsIfE8is_exactE, 1; _ZNSt14numeric_limitsIfE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIfE9is_iec559E,@object; .size _ZNSt14numeric_limitsIfE9is_iec559E, 1; _ZNSt14numeric_limitsIfE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIfE9is_moduloE,@object; .size _ZNSt14numeric_limitsIfE9is_moduloE, 1; _ZNSt14numeric_limitsIfE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIfE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIfE9is_signedE,@object; .size _ZNSt14numeric_limitsIfE9is_signedE, 1; _ZNSt14numeric_limitsIfE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIhE10has_denormE,@object; .size _ZNSt14numeric_limitsIhE10has_denormE, 4; _ZNSt14numeric_limitsIhE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIhE10is_boundedE,@object; .size _ZNSt14numeric_limitsIhE10is_boundedE, 1; _ZNSt14numeric_limitsIhE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIhE10is_integerE,@object; .size _ZNSt14numeric_limitsIhE10is_integerE, 1; _ZNSt14numeric_limitsIhE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIhE11round_styleE,@object; .size _ZNSt14numeric_limitsIhE11round_styleE, 4; _ZNSt14numeric_limitsIhE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIhE12has_infinityE,@object; .size _ZNSt14numeric_limitsIhE12has_infinityE, 1; _ZNSt14numeric_limitsIhE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIhE12max_exponentE,@object; .size _ZNSt14numeric_limitsIhE12max_exponentE, 4; _ZNSt14numeric_limitsIhE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIhE12min_exponentE,@object; .size _ZNSt14numeric_limitsIhE12min_exponentE, 4; _ZNSt14numeric_limitsIhE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIhE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIhE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIhE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIhE14is_specializedE,@object; .size _ZNSt14numeric_limitsIhE14is_specializedE, 1; _ZNSt14numeric_limitsIhE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIhE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIhE14max_exponent10E, 4; _ZNSt14numeric_limitsIhE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIhE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIhE14min_exponent10E, 4; _ZNSt14numeric_limitsIhE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIhE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIhE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIhE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIhE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIhE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIhE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIhE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIhE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIhE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIhE5radixE,@object; .size _ZNSt14numeric_limitsIhE5radixE, 4; _ZNSt14numeric_limitsIhE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIhE5trapsE,@object; .size _ZNSt14numeric_limitsIhE5trapsE, 1; _ZNSt14numeric_limitsIhE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIhE6digitsE,@object; .size _ZNSt14numeric_limitsIhE6digitsE, 4; _ZNSt14numeric_limitsIhE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIhE8digits10E,@object; .size _ZNSt14numeric_limitsIhE8digits10E, 4; _ZNSt14numeric_limitsIhE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIhE8is_exactE,@object; .size _ZNSt14numeric_limitsIhE8is_exactE, 1; _ZNSt14numeric_limitsIhE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIhE9is_iec559E,@object; .size _ZNSt14numeric_limitsIhE9is_iec559E, 1; _ZNSt14numeric_limitsIhE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIhE9is_moduloE,@object; .size _ZNSt14numeric_limitsIhE9is_moduloE, 1; _ZNSt14numeric_limitsIhE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIhE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIhE9is_signedE,@object; .size _ZNSt14numeric_limitsIhE9is_signedE, 1; _ZNSt14numeric_limitsIhE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIiE10has_denormE,@object; .size _ZNSt14numeric_limitsIiE10has_denormE, 4; _ZNSt14numeric_limitsIiE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIiE10is_boundedE,@object; .size _ZNSt14numeric_limitsIiE10is_boundedE, 1; _ZNSt14numeric_limitsIiE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIiE10is_integerE,@object; .size _ZNSt14numeric_limitsIiE10is_integerE, 1; _ZNSt14numeric_limitsIiE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIiE11round_styleE,@object; .size _ZNSt14numeric_limitsIiE11round_styleE, 4; _ZNSt14numeric_limitsIiE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIiE12has_infinityE,@object; .size _ZNSt14numeric_limitsIiE12has_infinityE, 1; _ZNSt14numeric_limitsIiE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIiE12max_exponentE,@object; .size _ZNSt14numeric_limitsIiE12max_exponentE, 4; _ZNSt14numeric_limitsIiE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIiE12min_exponentE,@object; .size _ZNSt14numeric_limitsIiE12min_exponentE, 4; _ZNSt14numeric_limitsIiE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIiE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIiE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIiE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIiE14is_specializedE,@object; .size _ZNSt14numeric_limitsIiE14is_specializedE, 1; _ZNSt14numeric_limitsIiE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIiE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIiE14max_exponent10E, 4; _ZNSt14numeric_limitsIiE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIiE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIiE14min_exponent10E, 4; _ZNSt14numeric_limitsIiE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIiE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIiE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIiE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIiE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIiE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIiE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIiE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIiE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIiE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIiE5radixE,@object; .size _ZNSt14numeric_limitsIiE5radixE, 4; _ZNSt14numeric_limitsIiE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIiE5trapsE,@object; .size _ZNSt14numeric_limitsIiE5trapsE, 1; _ZNSt14numeric_limitsIiE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIiE6digitsE,@object; .size _ZNSt14numeric_limitsIiE6digitsE, 4; _ZNSt14numeric_limitsIiE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIiE8digits10E,@object; .size _ZNSt14numeric_limitsIiE8digits10E, 4; _ZNSt14numeric_limitsIiE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIiE8is_exactE,@object; .size _ZNSt14numeric_limitsIiE8is_exactE, 1; _ZNSt14numeric_limitsIiE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIiE9is_iec559E,@object; .size _ZNSt14numeric_limitsIiE9is_iec559E, 1; _ZNSt14numeric_limitsIiE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIiE9is_moduloE,@object; .size _ZNSt14numeric_limitsIiE9is_moduloE, 1; _ZNSt14numeric_limitsIiE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIiE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIiE9is_signedE,@object; .size _ZNSt14numeric_limitsIiE9is_signedE, 1; _ZNSt14numeric_limitsIiE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIjE10has_denormE,@object; .size _ZNSt14numeric_limitsIjE10has_denormE, 4; _ZNSt14numeric_limitsIjE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIjE10is_boundedE,@object; .size _ZNSt14numeric_limitsIjE10is_boundedE, 1; _ZNSt14numeric_limitsIjE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIjE10is_integerE,@object; .size _ZNSt14numeric_limitsIjE10is_integerE, 1; _ZNSt14numeric_limitsIjE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIjE11round_styleE,@object; .size _ZNSt14numeric_limitsIjE11round_styleE, 4; _ZNSt14numeric_limitsIjE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIjE12has_infinityE,@object; .size _ZNSt14numeric_limitsIjE12has_infinityE, 1; _ZNSt14numeric_limitsIjE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIjE12max_exponentE,@object; .size _ZNSt14numeric_limitsIjE12max_exponentE, 4; _ZNSt14numeric_limitsIjE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIjE12min_exponentE,@object; .size _ZNSt14numeric_limitsIjE12min_exponentE, 4; _ZNSt14numeric_limitsIjE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIjE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIjE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIjE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIjE14is_specializedE,@object; .size _ZNSt14numeric_limitsIjE14is_specializedE, 1; _ZNSt14numeric_limitsIjE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIjE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIjE14max_exponent10E, 4; _ZNSt14numeric_limitsIjE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIjE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIjE14min_exponent10E, 4; _ZNSt14numeric_limitsIjE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIjE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIjE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIjE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIjE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIjE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIjE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIjE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIjE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIjE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIjE5radixE,@object; .size _ZNSt14numeric_limitsIjE5radixE, 4; _ZNSt14numeric_limitsIjE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIjE5trapsE,@object; .size _ZNSt14numeric_limitsIjE5trapsE, 1; _ZNSt14numeric_limitsIjE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIjE6digitsE,@object; .size _ZNSt14numeric_limitsIjE6digitsE, 4; _ZNSt14numeric_limitsIjE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIjE8digits10E,@object; .size _ZNSt14numeric_limitsIjE8digits10E, 4; _ZNSt14numeric_limitsIjE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIjE8is_exactE,@object; .size _ZNSt14numeric_limitsIjE8is_exactE, 1; _ZNSt14numeric_limitsIjE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIjE9is_iec559E,@object; .size _ZNSt14numeric_limitsIjE9is_iec559E, 1; _ZNSt14numeric_limitsIjE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIjE9is_moduloE,@object; .size _ZNSt14numeric_limitsIjE9is_moduloE, 1; _ZNSt14numeric_limitsIjE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIjE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIjE9is_signedE,@object; .size _ZNSt14numeric_limitsIjE9is_signedE, 1; _ZNSt14numeric_limitsIjE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIlE10has_denormE,@object; .size _ZNSt14numeric_limitsIlE10has_denormE, 4; _ZNSt14numeric_limitsIlE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIlE10is_boundedE,@object; .size _ZNSt14numeric_limitsIlE10is_boundedE, 1; _ZNSt14numeric_limitsIlE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIlE10is_integerE,@object; .size _ZNSt14numeric_limitsIlE10is_integerE, 1; _ZNSt14numeric_limitsIlE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIlE11round_styleE,@object; .size _ZNSt14numeric_limitsIlE11round_styleE, 4; _ZNSt14numeric_limitsIlE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIlE12has_infinityE,@object; .size _ZNSt14numeric_limitsIlE12has_infinityE, 1; _ZNSt14numeric_limitsIlE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIlE12max_exponentE,@object; .size _ZNSt14numeric_limitsIlE12max_exponentE, 4; _ZNSt14numeric_limitsIlE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIlE12min_exponentE,@object; .size _ZNSt14numeric_limitsIlE12min_exponentE, 4; _ZNSt14numeric_limitsIlE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIlE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIlE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIlE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIlE14is_specializedE,@object; .size _ZNSt14numeric_limitsIlE14is_specializedE, 1; _ZNSt14numeric_limitsIlE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIlE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIlE14max_exponent10E, 4; _ZNSt14numeric_limitsIlE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIlE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIlE14min_exponent10E, 4; _ZNSt14numeric_limitsIlE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIlE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIlE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIlE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIlE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIlE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIlE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIlE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIlE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIlE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIlE5radixE,@object; .size _ZNSt14numeric_limitsIlE5radixE, 4; _ZNSt14numeric_limitsIlE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIlE5trapsE,@object; .size _ZNSt14numeric_limitsIlE5trapsE, 1; _ZNSt14numeric_limitsIlE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIlE6digitsE,@object; .size _ZNSt14numeric_limitsIlE6digitsE, 4; _ZNSt14numeric_limitsIlE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIlE8digits10E,@object; .size _ZNSt14numeric_limitsIlE8digits10E, 4; _ZNSt14numeric_limitsIlE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIlE8is_exactE,@object; .size _ZNSt14numeric_limitsIlE8is_exactE, 1; _ZNSt14numeric_limitsIlE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIlE9is_iec559E,@object; .size _ZNSt14numeric_limitsIlE9is_iec559E, 1; _ZNSt14numeric_limitsIlE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIlE9is_moduloE,@object; .size _ZNSt14numeric_limitsIlE9is_moduloE, 1; _ZNSt14numeric_limitsIlE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIlE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIlE9is_signedE,@object; .size _ZNSt14numeric_limitsIlE9is_signedE, 1; _ZNSt14numeric_limitsIlE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsImE10has_denormE,@object; .size _ZNSt14numeric_limitsImE10has_denormE, 4; _ZNSt14numeric_limitsImE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsImE10is_boundedE,@object; .size _ZNSt14numeric_limitsImE10is_boundedE, 1; _ZNSt14numeric_limitsImE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsImE10is_integerE,@object; .size _ZNSt14numeric_limitsImE10is_integerE, 1; _ZNSt14numeric_limitsImE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsImE11round_styleE,@object; .size _ZNSt14numeric_limitsImE11round_styleE, 4; _ZNSt14numeric_limitsImE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsImE12has_infinityE,@object; .size _ZNSt14numeric_limitsImE12has_infinityE, 1; _ZNSt14numeric_limitsImE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsImE12max_exponentE,@object; .size _ZNSt14numeric_limitsImE12max_exponentE, 4; _ZNSt14numeric_limitsImE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsImE12min_exponentE,@object; .size _ZNSt14numeric_limitsImE12min_exponentE, 4; _ZNSt14numeric_limitsImE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsImE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsImE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsImE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsImE14is_specializedE,@object; .size _ZNSt14numeric_limitsImE14is_specializedE, 1; _ZNSt14numeric_limitsImE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsImE14max_exponent10E,@object; .size _ZNSt14numeric_limitsImE14max_exponent10E, 4; _ZNSt14numeric_limitsImE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsImE14min_exponent10E,@object; .size _ZNSt14numeric_limitsImE14min_exponent10E, 4; _ZNSt14numeric_limitsImE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsImE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsImE15has_denorm_lossE, 1; _ZNSt14numeric_limitsImE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsImE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsImE15tinyness_beforeE, 1; _ZNSt14numeric_limitsImE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsImE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsImE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsImE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsImE5radixE,@object; .size _ZNSt14numeric_limitsImE5radixE, 4; _ZNSt14numeric_limitsImE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsImE5trapsE,@object; .size _ZNSt14numeric_limitsImE5trapsE, 1; _ZNSt14numeric_limitsImE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsImE6digitsE,@object; .size _ZNSt14numeric_limitsImE6digitsE, 4; _ZNSt14numeric_limitsImE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsImE8digits10E,@object; .size _ZNSt14numeric_limitsImE8digits10E, 4; _ZNSt14numeric_limitsImE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsImE8is_exactE,@object; .size _ZNSt14numeric_limitsImE8is_exactE, 1; _ZNSt14numeric_limitsImE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsImE9is_iec559E,@object; .size _ZNSt14numeric_limitsImE9is_iec559E, 1; _ZNSt14numeric_limitsImE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsImE9is_moduloE,@object; .size _ZNSt14numeric_limitsImE9is_moduloE, 1; _ZNSt14numeric_limitsImE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsImE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsImE9is_signedE,@object; .size _ZNSt14numeric_limitsImE9is_signedE, 1; _ZNSt14numeric_limitsImE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIsE10has_denormE,@object; .size _ZNSt14numeric_limitsIsE10has_denormE, 4; _ZNSt14numeric_limitsIsE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIsE10is_boundedE,@object; .size _ZNSt14numeric_limitsIsE10is_boundedE, 1; _ZNSt14numeric_limitsIsE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIsE10is_integerE,@object; .size _ZNSt14numeric_limitsIsE10is_integerE, 1; _ZNSt14numeric_limitsIsE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIsE11round_styleE,@object; .size _ZNSt14numeric_limitsIsE11round_styleE, 4; _ZNSt14numeric_limitsIsE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIsE12has_infinityE,@object; .size _ZNSt14numeric_limitsIsE12has_infinityE, 1; _ZNSt14numeric_limitsIsE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIsE12max_exponentE,@object; .size _ZNSt14numeric_limitsIsE12max_exponentE, 4; _ZNSt14numeric_limitsIsE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIsE12min_exponentE,@object; .size _ZNSt14numeric_limitsIsE12min_exponentE, 4; _ZNSt14numeric_limitsIsE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIsE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIsE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIsE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIsE14is_specializedE,@object; .size _ZNSt14numeric_limitsIsE14is_specializedE, 1; _ZNSt14numeric_limitsIsE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIsE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIsE14max_exponent10E, 4; _ZNSt14numeric_limitsIsE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIsE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIsE14min_exponent10E, 4; _ZNSt14numeric_limitsIsE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIsE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIsE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIsE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIsE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIsE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIsE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIsE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIsE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIsE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIsE5radixE,@object; .size _ZNSt14numeric_limitsIsE5radixE, 4; _ZNSt14numeric_limitsIsE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIsE5trapsE,@object; .size _ZNSt14numeric_limitsIsE5trapsE, 1; _ZNSt14numeric_limitsIsE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIsE6digitsE,@object; .size _ZNSt14numeric_limitsIsE6digitsE, 4; _ZNSt14numeric_limitsIsE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIsE8digits10E,@object; .size _ZNSt14numeric_limitsIsE8digits10E, 4; _ZNSt14numeric_limitsIsE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIsE8is_exactE,@object; .size _ZNSt14numeric_limitsIsE8is_exactE, 1; _ZNSt14numeric_limitsIsE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIsE9is_iec559E,@object; .size _ZNSt14numeric_limitsIsE9is_iec559E, 1; _ZNSt14numeric_limitsIsE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIsE9is_moduloE,@object; .size _ZNSt14numeric_limitsIsE9is_moduloE, 1; _ZNSt14numeric_limitsIsE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIsE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIsE9is_signedE,@object; .size _ZNSt14numeric_limitsIsE9is_signedE, 1; _ZNSt14numeric_limitsIsE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsItE10has_denormE,@object; .size _ZNSt14numeric_limitsItE10has_denormE, 4; _ZNSt14numeric_limitsItE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsItE10is_boundedE,@object; .size _ZNSt14numeric_limitsItE10is_boundedE, 1; _ZNSt14numeric_limitsItE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsItE10is_integerE,@object; .size _ZNSt14numeric_limitsItE10is_integerE, 1; _ZNSt14numeric_limitsItE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsItE11round_styleE,@object; .size _ZNSt14numeric_limitsItE11round_styleE, 4; _ZNSt14numeric_limitsItE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsItE12has_infinityE,@object; .size _ZNSt14numeric_limitsItE12has_infinityE, 1; _ZNSt14numeric_limitsItE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsItE12max_exponentE,@object; .size _ZNSt14numeric_limitsItE12max_exponentE, 4; _ZNSt14numeric_limitsItE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsItE12min_exponentE,@object; .size _ZNSt14numeric_limitsItE12min_exponentE, 4; _ZNSt14numeric_limitsItE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsItE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsItE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsItE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsItE14is_specializedE,@object; .size _ZNSt14numeric_limitsItE14is_specializedE, 1; _ZNSt14numeric_limitsItE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsItE14max_exponent10E,@object; .size _ZNSt14numeric_limitsItE14max_exponent10E, 4; _ZNSt14numeric_limitsItE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsItE14min_exponent10E,@object; .size _ZNSt14numeric_limitsItE14min_exponent10E, 4; _ZNSt14numeric_limitsItE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsItE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsItE15has_denorm_lossE, 1; _ZNSt14numeric_limitsItE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsItE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsItE15tinyness_beforeE, 1; _ZNSt14numeric_limitsItE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsItE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsItE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsItE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsItE5radixE,@object; .size _ZNSt14numeric_limitsItE5radixE, 4; _ZNSt14numeric_limitsItE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsItE5trapsE,@object; .size _ZNSt14numeric_limitsItE5trapsE, 1; _ZNSt14numeric_limitsItE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsItE6digitsE,@object; .size _ZNSt14numeric_limitsItE6digitsE, 4; _ZNSt14numeric_limitsItE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsItE8digits10E,@object; .size _ZNSt14numeric_limitsItE8digits10E, 4; _ZNSt14numeric_limitsItE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsItE8is_exactE,@object; .size _ZNSt14numeric_limitsItE8is_exactE, 1; _ZNSt14numeric_limitsItE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsItE9is_iec559E,@object; .size _ZNSt14numeric_limitsItE9is_iec559E, 1; _ZNSt14numeric_limitsItE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsItE9is_moduloE,@object; .size _ZNSt14numeric_limitsItE9is_moduloE, 1; _ZNSt14numeric_limitsItE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsItE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsItE9is_signedE,@object; .size _ZNSt14numeric_limitsItE9is_signedE, 1; _ZNSt14numeric_limitsItE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIwE10has_denormE,@object; .size _ZNSt14numeric_limitsIwE10has_denormE, 4; _ZNSt14numeric_limitsIwE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIwE10is_boundedE,@object; .size _ZNSt14numeric_limitsIwE10is_boundedE, 1; _ZNSt14numeric_limitsIwE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIwE10is_integerE,@object; .size _ZNSt14numeric_limitsIwE10is_integerE, 1; _ZNSt14numeric_limitsIwE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIwE11round_styleE,@object; .size _ZNSt14numeric_limitsIwE11round_styleE, 4; _ZNSt14numeric_limitsIwE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIwE12has_infinityE,@object; .size _ZNSt14numeric_limitsIwE12has_infinityE, 1; _ZNSt14numeric_limitsIwE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIwE12max_exponentE,@object; .size _ZNSt14numeric_limitsIwE12max_exponentE, 4; _ZNSt14numeric_limitsIwE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIwE12min_exponentE,@object; .size _ZNSt14numeric_limitsIwE12min_exponentE, 4; _ZNSt14numeric_limitsIwE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIwE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIwE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIwE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIwE14is_specializedE,@object; .size _ZNSt14numeric_limitsIwE14is_specializedE, 1; _ZNSt14numeric_limitsIwE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIwE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIwE14max_exponent10E, 4; _ZNSt14numeric_limitsIwE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIwE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIwE14min_exponent10E, 4; _ZNSt14numeric_limitsIwE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIwE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIwE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIwE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIwE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIwE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIwE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIwE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIwE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIwE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIwE5radixE,@object; .size _ZNSt14numeric_limitsIwE5radixE, 4; _ZNSt14numeric_limitsIwE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIwE5trapsE,@object; .size _ZNSt14numeric_limitsIwE5trapsE, 1; _ZNSt14numeric_limitsIwE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIwE6digitsE,@object; .size _ZNSt14numeric_limitsIwE6digitsE, 4; _ZNSt14numeric_limitsIwE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIwE8digits10E,@object; .size _ZNSt14numeric_limitsIwE8digits10E, 4; _ZNSt14numeric_limitsIwE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIwE8is_exactE,@object; .size _ZNSt14numeric_limitsIwE8is_exactE, 1; _ZNSt14numeric_limitsIwE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIwE9is_iec559E,@object; .size _ZNSt14numeric_limitsIwE9is_iec559E, 1; _ZNSt14numeric_limitsIwE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIwE9is_moduloE,@object; .size _ZNSt14numeric_limitsIwE9is_moduloE, 1; _ZNSt14numeric_limitsIwE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIwE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIwE9is_signedE,@object; .size _ZNSt14numeric_limitsIwE9is_signedE, 1; _ZNSt14numeric_limitsIwE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIxE10has_denormE,@object; .size _ZNSt14numeric_limitsIxE10has_denormE, 4; _ZNSt14numeric_limitsIxE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIxE10is_boundedE,@object; .size _ZNSt14numeric_limitsIxE10is_boundedE, 1; _ZNSt14numeric_limitsIxE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIxE10is_integerE,@object; .size _ZNSt14numeric_limitsIxE10is_integerE, 1; _ZNSt14numeric_limitsIxE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIxE11round_styleE,@object; .size _ZNSt14numeric_limitsIxE11round_styleE, 4; _ZNSt14numeric_limitsIxE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIxE12has_infinityE,@object; .size _ZNSt14numeric_limitsIxE12has_infinityE, 1; _ZNSt14numeric_limitsIxE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIxE12max_exponentE,@object; .size _ZNSt14numeric_limitsIxE12max_exponentE, 4; _ZNSt14numeric_limitsIxE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIxE12min_exponentE,@object; .size _ZNSt14numeric_limitsIxE12min_exponentE, 4; _ZNSt14numeric_limitsIxE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIxE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIxE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIxE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIxE14is_specializedE,@object; .size _ZNSt14numeric_limitsIxE14is_specializedE, 1; _ZNSt14numeric_limitsIxE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIxE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIxE14max_exponent10E, 4; _ZNSt14numeric_limitsIxE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIxE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIxE14min_exponent10E, 4; _ZNSt14numeric_limitsIxE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIxE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIxE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIxE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIxE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIxE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIxE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIxE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIxE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIxE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIxE5radixE,@object; .size _ZNSt14numeric_limitsIxE5radixE, 4; _ZNSt14numeric_limitsIxE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIxE5trapsE,@object; .size _ZNSt14numeric_limitsIxE5trapsE, 1; _ZNSt14numeric_limitsIxE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIxE6digitsE,@object; .size _ZNSt14numeric_limitsIxE6digitsE, 4; _ZNSt14numeric_limitsIxE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIxE8digits10E,@object; .size _ZNSt14numeric_limitsIxE8digits10E, 4; _ZNSt14numeric_limitsIxE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIxE8is_exactE,@object; .size _ZNSt14numeric_limitsIxE8is_exactE, 1; _ZNSt14numeric_limitsIxE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIxE9is_iec559E,@object; .size _ZNSt14numeric_limitsIxE9is_iec559E, 1; _ZNSt14numeric_limitsIxE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIxE9is_moduloE,@object; .size _ZNSt14numeric_limitsIxE9is_moduloE, 1; _ZNSt14numeric_limitsIxE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIxE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIxE9is_signedE,@object; .size _ZNSt14numeric_limitsIxE9is_signedE, 1; _ZNSt14numeric_limitsIxE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE10has_denormE; .pushsection .data; .type _ZNSt14numeric_limitsIyE10has_denormE,@object; .size _ZNSt14numeric_limitsIyE10has_denormE, 4; _ZNSt14numeric_limitsIyE10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE10is_boundedE; .pushsection .data; .type _ZNSt14numeric_limitsIyE10is_boundedE,@object; .size _ZNSt14numeric_limitsIyE10is_boundedE, 1; _ZNSt14numeric_limitsIyE10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE10is_integerE; .pushsection .data; .type _ZNSt14numeric_limitsIyE10is_integerE,@object; .size _ZNSt14numeric_limitsIyE10is_integerE, 1; _ZNSt14numeric_limitsIyE10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE11round_styleE; .pushsection .data; .type _ZNSt14numeric_limitsIyE11round_styleE,@object; .size _ZNSt14numeric_limitsIyE11round_styleE, 4; _ZNSt14numeric_limitsIyE11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE12has_infinityE; .pushsection .data; .type _ZNSt14numeric_limitsIyE12has_infinityE,@object; .size _ZNSt14numeric_limitsIyE12has_infinityE, 1; _ZNSt14numeric_limitsIyE12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE12max_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIyE12max_exponentE,@object; .size _ZNSt14numeric_limitsIyE12max_exponentE, 4; _ZNSt14numeric_limitsIyE12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE12min_exponentE; .pushsection .data; .type _ZNSt14numeric_limitsIyE12min_exponentE,@object; .size _ZNSt14numeric_limitsIyE12min_exponentE, 4; _ZNSt14numeric_limitsIyE12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE13has_quiet_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIyE13has_quiet_NaNE,@object; .size _ZNSt14numeric_limitsIyE13has_quiet_NaNE, 1; _ZNSt14numeric_limitsIyE13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE14is_specializedE; .pushsection .data; .type _ZNSt14numeric_limitsIyE14is_specializedE,@object; .size _ZNSt14numeric_limitsIyE14is_specializedE, 1; _ZNSt14numeric_limitsIyE14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE14max_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIyE14max_exponent10E,@object; .size _ZNSt14numeric_limitsIyE14max_exponent10E, 4; _ZNSt14numeric_limitsIyE14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE14min_exponent10E; .pushsection .data; .type _ZNSt14numeric_limitsIyE14min_exponent10E,@object; .size _ZNSt14numeric_limitsIyE14min_exponent10E, 4; _ZNSt14numeric_limitsIyE14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE15has_denorm_lossE; .pushsection .data; .type _ZNSt14numeric_limitsIyE15has_denorm_lossE,@object; .size _ZNSt14numeric_limitsIyE15has_denorm_lossE, 1; _ZNSt14numeric_limitsIyE15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE15tinyness_beforeE; .pushsection .data; .type _ZNSt14numeric_limitsIyE15tinyness_beforeE,@object; .size _ZNSt14numeric_limitsIyE15tinyness_beforeE, 1; _ZNSt14numeric_limitsIyE15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE17has_signaling_NaNE; .pushsection .data; .type _ZNSt14numeric_limitsIyE17has_signaling_NaNE,@object; .size _ZNSt14numeric_limitsIyE17has_signaling_NaNE, 1; _ZNSt14numeric_limitsIyE17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE5radixE; .pushsection .data; .type _ZNSt14numeric_limitsIyE5radixE,@object; .size _ZNSt14numeric_limitsIyE5radixE, 4; _ZNSt14numeric_limitsIyE5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE5trapsE; .pushsection .data; .type _ZNSt14numeric_limitsIyE5trapsE,@object; .size _ZNSt14numeric_limitsIyE5trapsE, 1; _ZNSt14numeric_limitsIyE5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE6digitsE; .pushsection .data; .type _ZNSt14numeric_limitsIyE6digitsE,@object; .size _ZNSt14numeric_limitsIyE6digitsE, 4; _ZNSt14numeric_limitsIyE6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE8digits10E; .pushsection .data; .type _ZNSt14numeric_limitsIyE8digits10E,@object; .size _ZNSt14numeric_limitsIyE8digits10E, 4; _ZNSt14numeric_limitsIyE8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE8is_exactE; .pushsection .data; .type _ZNSt14numeric_limitsIyE8is_exactE,@object; .size _ZNSt14numeric_limitsIyE8is_exactE, 1; _ZNSt14numeric_limitsIyE8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE9is_iec559E; .pushsection .data; .type _ZNSt14numeric_limitsIyE9is_iec559E,@object; .size _ZNSt14numeric_limitsIyE9is_iec559E, 1; _ZNSt14numeric_limitsIyE9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE9is_moduloE; .pushsection .data; .type _ZNSt14numeric_limitsIyE9is_moduloE,@object; .size _ZNSt14numeric_limitsIyE9is_moduloE, 1; _ZNSt14numeric_limitsIyE9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt14numeric_limitsIyE9is_signedE; .pushsection .data; .type _ZNSt14numeric_limitsIyE9is_signedE,@object; .size _ZNSt14numeric_limitsIyE9is_signedE, 1; _ZNSt14numeric_limitsIyE9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt17__timepunct_cacheIcE12_S_timezonesE; .pushsection .data; .type _ZNSt17__timepunct_cacheIcE12_S_timezonesE,@object; .size _ZNSt17__timepunct_cacheIcE12_S_timezonesE, 112; _ZNSt17__timepunct_cacheIcE12_S_timezonesE: .long 0; .popsection"); __asm__(".globl _ZNSt17__timepunct_cacheIwE12_S_timezonesE; .pushsection .data; .type _ZNSt17__timepunct_cacheIwE12_S_timezonesE,@object; .size _ZNSt17__timepunct_cacheIwE12_S_timezonesE, 112; _ZNSt17__timepunct_cacheIwE12_S_timezonesE: .long 0; .popsection"); __asm__(".globl _ZNSt17moneypunct_bynameIcLb0EE4intlE; .pushsection .data; .type _ZNSt17moneypunct_bynameIcLb0EE4intlE,@object; .size _ZNSt17moneypunct_bynameIcLb0EE4intlE, 1; _ZNSt17moneypunct_bynameIcLb0EE4intlE: .long 0; .popsection"); __asm__(".globl _ZNSt17moneypunct_bynameIcLb1EE4intlE; .pushsection .data; .type _ZNSt17moneypunct_bynameIcLb1EE4intlE,@object; .size _ZNSt17moneypunct_bynameIcLb1EE4intlE, 1; _ZNSt17moneypunct_bynameIcLb1EE4intlE: .long 0; .popsection"); __asm__(".globl _ZNSt17moneypunct_bynameIwLb0EE4intlE; .pushsection .data; .type _ZNSt17moneypunct_bynameIwLb0EE4intlE,@object; .size _ZNSt17moneypunct_bynameIwLb0EE4intlE, 1; _ZNSt17moneypunct_bynameIwLb0EE4intlE: .long 0; .popsection"); __asm__(".globl _ZNSt17moneypunct_bynameIwLb1EE4intlE; .pushsection .data; .type _ZNSt17moneypunct_bynameIwLb1EE4intlE,@object; .size _ZNSt17moneypunct_bynameIwLb1EE4intlE, 1; _ZNSt17moneypunct_bynameIwLb1EE4intlE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base10has_denormE; .pushsection .data; .type _ZNSt21__numeric_limits_base10has_denormE,@object; .size _ZNSt21__numeric_limits_base10has_denormE, 4; _ZNSt21__numeric_limits_base10has_denormE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base10is_boundedE; .pushsection .data; .type _ZNSt21__numeric_limits_base10is_boundedE,@object; .size _ZNSt21__numeric_limits_base10is_boundedE, 1; _ZNSt21__numeric_limits_base10is_boundedE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base10is_integerE; .pushsection .data; .type _ZNSt21__numeric_limits_base10is_integerE,@object; .size _ZNSt21__numeric_limits_base10is_integerE, 1; _ZNSt21__numeric_limits_base10is_integerE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base11round_styleE; .pushsection .data; .type _ZNSt21__numeric_limits_base11round_styleE,@object; .size _ZNSt21__numeric_limits_base11round_styleE, 4; _ZNSt21__numeric_limits_base11round_styleE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base12has_infinityE; .pushsection .data; .type _ZNSt21__numeric_limits_base12has_infinityE,@object; .size _ZNSt21__numeric_limits_base12has_infinityE, 1; _ZNSt21__numeric_limits_base12has_infinityE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base12max_exponentE; .pushsection .data; .type _ZNSt21__numeric_limits_base12max_exponentE,@object; .size _ZNSt21__numeric_limits_base12max_exponentE, 4; _ZNSt21__numeric_limits_base12max_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base12min_exponentE; .pushsection .data; .type _ZNSt21__numeric_limits_base12min_exponentE,@object; .size _ZNSt21__numeric_limits_base12min_exponentE, 4; _ZNSt21__numeric_limits_base12min_exponentE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base13has_quiet_NaNE; .pushsection .data; .type _ZNSt21__numeric_limits_base13has_quiet_NaNE,@object; .size _ZNSt21__numeric_limits_base13has_quiet_NaNE, 1; _ZNSt21__numeric_limits_base13has_quiet_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base14is_specializedE; .pushsection .data; .type _ZNSt21__numeric_limits_base14is_specializedE,@object; .size _ZNSt21__numeric_limits_base14is_specializedE, 1; _ZNSt21__numeric_limits_base14is_specializedE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base14max_exponent10E; .pushsection .data; .type _ZNSt21__numeric_limits_base14max_exponent10E,@object; .size _ZNSt21__numeric_limits_base14max_exponent10E, 4; _ZNSt21__numeric_limits_base14max_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base14min_exponent10E; .pushsection .data; .type _ZNSt21__numeric_limits_base14min_exponent10E,@object; .size _ZNSt21__numeric_limits_base14min_exponent10E, 4; _ZNSt21__numeric_limits_base14min_exponent10E: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base15has_denorm_lossE; .pushsection .data; .type _ZNSt21__numeric_limits_base15has_denorm_lossE,@object; .size _ZNSt21__numeric_limits_base15has_denorm_lossE, 1; _ZNSt21__numeric_limits_base15has_denorm_lossE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base15tinyness_beforeE; .pushsection .data; .type _ZNSt21__numeric_limits_base15tinyness_beforeE,@object; .size _ZNSt21__numeric_limits_base15tinyness_beforeE, 1; _ZNSt21__numeric_limits_base15tinyness_beforeE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base17has_signaling_NaNE; .pushsection .data; .type _ZNSt21__numeric_limits_base17has_signaling_NaNE,@object; .size _ZNSt21__numeric_limits_base17has_signaling_NaNE, 1; _ZNSt21__numeric_limits_base17has_signaling_NaNE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base5radixE; .pushsection .data; .type _ZNSt21__numeric_limits_base5radixE,@object; .size _ZNSt21__numeric_limits_base5radixE, 4; _ZNSt21__numeric_limits_base5radixE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base5trapsE; .pushsection .data; .type _ZNSt21__numeric_limits_base5trapsE,@object; .size _ZNSt21__numeric_limits_base5trapsE, 1; _ZNSt21__numeric_limits_base5trapsE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base6digitsE; .pushsection .data; .type _ZNSt21__numeric_limits_base6digitsE,@object; .size _ZNSt21__numeric_limits_base6digitsE, 4; _ZNSt21__numeric_limits_base6digitsE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base8digits10E; .pushsection .data; .type _ZNSt21__numeric_limits_base8digits10E,@object; .size _ZNSt21__numeric_limits_base8digits10E, 4; _ZNSt21__numeric_limits_base8digits10E: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base8is_exactE; .pushsection .data; .type _ZNSt21__numeric_limits_base8is_exactE,@object; .size _ZNSt21__numeric_limits_base8is_exactE, 1; _ZNSt21__numeric_limits_base8is_exactE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base9is_iec559E; .pushsection .data; .type _ZNSt21__numeric_limits_base9is_iec559E,@object; .size _ZNSt21__numeric_limits_base9is_iec559E, 1; _ZNSt21__numeric_limits_base9is_iec559E: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base9is_moduloE; .pushsection .data; .type _ZNSt21__numeric_limits_base9is_moduloE,@object; .size _ZNSt21__numeric_limits_base9is_moduloE, 1; _ZNSt21__numeric_limits_base9is_moduloE: .long 0; .popsection"); __asm__(".globl _ZNSt21__numeric_limits_base9is_signedE; .pushsection .data; .type _ZNSt21__numeric_limits_base9is_signedE,@object; .size _ZNSt21__numeric_limits_base9is_signedE, 1; _ZNSt21__numeric_limits_base9is_signedE: .long 0; .popsection"); __asm__(".globl _ZNSt5ctypeIcE10table_sizeE; .pushsection .data; .type _ZNSt5ctypeIcE10table_sizeE,@object; .size _ZNSt5ctypeIcE10table_sizeE, 8; _ZNSt5ctypeIcE10table_sizeE: .long 0; .popsection"); __asm__(".globl _ZNSt5ctypeIcE2idE; .pushsection .data; .type _ZNSt5ctypeIcE2idE,@object; .size _ZNSt5ctypeIcE2idE, 8; _ZNSt5ctypeIcE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt5ctypeIwE2idE; .pushsection .data; .type _ZNSt5ctypeIwE2idE,@object; .size _ZNSt5ctypeIwE2idE, 8; _ZNSt5ctypeIwE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt6locale3allE; .pushsection .data; .type _ZNSt6locale3allE,@object; .size _ZNSt6locale3allE, 4; _ZNSt6locale3allE: .long 0; .popsection"); __asm__(".globl _ZNSt6locale4noneE; .pushsection .data; .type _ZNSt6locale4noneE,@object; .size _ZNSt6locale4noneE, 4; _ZNSt6locale4noneE: .long 0; .popsection"); __asm__(".globl _ZNSt6locale4timeE; .pushsection .data; .type _ZNSt6locale4timeE,@object; .size _ZNSt6locale4timeE, 4; _ZNSt6locale4timeE: .long 0; .popsection"); __asm__(".globl _ZNSt6locale5ctypeE; .pushsection .data; .type _ZNSt6locale5ctypeE,@object; .size _ZNSt6locale5ctypeE, 4; _ZNSt6locale5ctypeE: .long 0; .popsection"); __asm__(".globl _ZNSt6locale7collateE; .pushsection .data; .type _ZNSt6locale7collateE,@object; .size _ZNSt6locale7collateE, 4; _ZNSt6locale7collateE: .long 0; .popsection"); __asm__(".globl _ZNSt6locale7numericE; .pushsection .data; .type _ZNSt6locale7numericE,@object; .size _ZNSt6locale7numericE, 4; _ZNSt6locale7numericE: .long 0; .popsection"); __asm__(".globl _ZNSt6locale8messagesE; .pushsection .data; .type _ZNSt6locale8messagesE,@object; .size _ZNSt6locale8messagesE, 4; _ZNSt6locale8messagesE: .long 0; .popsection"); __asm__(".globl _ZNSt6locale8monetaryE; .pushsection .data; .type _ZNSt6locale8monetaryE,@object; .size _ZNSt6locale8monetaryE, 4; _ZNSt6locale8monetaryE: .long 0; .popsection"); __asm__(".globl _ZNSt7codecvtIcc11__mbstate_tE2idE; .pushsection .data; .type _ZNSt7codecvtIcc11__mbstate_tE2idE,@object; .size _ZNSt7codecvtIcc11__mbstate_tE2idE, 8; _ZNSt7codecvtIcc11__mbstate_tE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt7codecvtIwc11__mbstate_tE2idE; .pushsection .data; .type _ZNSt7codecvtIwc11__mbstate_tE2idE,@object; .size _ZNSt7codecvtIwc11__mbstate_tE2idE, 8; _ZNSt7codecvtIwc11__mbstate_tE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt7collateIcE2idE; .pushsection .data; .type _ZNSt7collateIcE2idE,@object; .size _ZNSt7collateIcE2idE, 8; _ZNSt7collateIcE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt7collateIwE2idE; .pushsection .data; .type _ZNSt7collateIwE2idE,@object; .size _ZNSt7collateIwE2idE, 8; _ZNSt7collateIwE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base10floatfieldE; .pushsection .data; .type _ZNSt8ios_base10floatfieldE,@object; .size _ZNSt8ios_base10floatfieldE, 4; _ZNSt8ios_base10floatfieldE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base10scientificE; .pushsection .data; .type _ZNSt8ios_base10scientificE,@object; .size _ZNSt8ios_base10scientificE, 4; _ZNSt8ios_base10scientificE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base11adjustfieldE; .pushsection .data; .type _ZNSt8ios_base11adjustfieldE,@object; .size _ZNSt8ios_base11adjustfieldE, 4; _ZNSt8ios_base11adjustfieldE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base2inE; .pushsection .data; .type _ZNSt8ios_base2inE,@object; .size _ZNSt8ios_base2inE, 4; _ZNSt8ios_base2inE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base3appE; .pushsection .data; .type _ZNSt8ios_base3appE,@object; .size _ZNSt8ios_base3appE, 4; _ZNSt8ios_base3appE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base3ateE; .pushsection .data; .type _ZNSt8ios_base3ateE,@object; .size _ZNSt8ios_base3ateE, 4; _ZNSt8ios_base3ateE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base3begE; .pushsection .data; .type _ZNSt8ios_base3begE,@object; .size _ZNSt8ios_base3begE, 4; _ZNSt8ios_base3begE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base3curE; .pushsection .data; .type _ZNSt8ios_base3curE,@object; .size _ZNSt8ios_base3curE, 4; _ZNSt8ios_base3curE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base3decE; .pushsection .data; .type _ZNSt8ios_base3decE,@object; .size _ZNSt8ios_base3decE, 4; _ZNSt8ios_base3decE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base3endE; .pushsection .data; .type _ZNSt8ios_base3endE,@object; .size _ZNSt8ios_base3endE, 4; _ZNSt8ios_base3endE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base3hexE; .pushsection .data; .type _ZNSt8ios_base3hexE,@object; .size _ZNSt8ios_base3hexE, 4; _ZNSt8ios_base3hexE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base3octE; .pushsection .data; .type _ZNSt8ios_base3octE,@object; .size _ZNSt8ios_base3octE, 4; _ZNSt8ios_base3octE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base3outE; .pushsection .data; .type _ZNSt8ios_base3outE,@object; .size _ZNSt8ios_base3outE, 4; _ZNSt8ios_base3outE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base4leftE; .pushsection .data; .type _ZNSt8ios_base4leftE,@object; .size _ZNSt8ios_base4leftE, 4; _ZNSt8ios_base4leftE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base5fixedE; .pushsection .data; .type _ZNSt8ios_base5fixedE,@object; .size _ZNSt8ios_base5fixedE, 4; _ZNSt8ios_base5fixedE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base5rightE; .pushsection .data; .type _ZNSt8ios_base5rightE,@object; .size _ZNSt8ios_base5rightE, 4; _ZNSt8ios_base5rightE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base5truncE; .pushsection .data; .type _ZNSt8ios_base5truncE,@object; .size _ZNSt8ios_base5truncE, 4; _ZNSt8ios_base5truncE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base6badbitE; .pushsection .data; .type _ZNSt8ios_base6badbitE,@object; .size _ZNSt8ios_base6badbitE, 4; _ZNSt8ios_base6badbitE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base6binaryE; .pushsection .data; .type _ZNSt8ios_base6binaryE,@object; .size _ZNSt8ios_base6binaryE, 4; _ZNSt8ios_base6binaryE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base6eofbitE; .pushsection .data; .type _ZNSt8ios_base6eofbitE,@object; .size _ZNSt8ios_base6eofbitE, 4; _ZNSt8ios_base6eofbitE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base6skipwsE; .pushsection .data; .type _ZNSt8ios_base6skipwsE,@object; .size _ZNSt8ios_base6skipwsE, 4; _ZNSt8ios_base6skipwsE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base7failbitE; .pushsection .data; .type _ZNSt8ios_base7failbitE,@object; .size _ZNSt8ios_base7failbitE, 4; _ZNSt8ios_base7failbitE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base7goodbitE; .pushsection .data; .type _ZNSt8ios_base7goodbitE,@object; .size _ZNSt8ios_base7goodbitE, 4; _ZNSt8ios_base7goodbitE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base7showposE; .pushsection .data; .type _ZNSt8ios_base7showposE,@object; .size _ZNSt8ios_base7showposE, 4; _ZNSt8ios_base7showposE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base7unitbufE; .pushsection .data; .type _ZNSt8ios_base7unitbufE,@object; .size _ZNSt8ios_base7unitbufE, 4; _ZNSt8ios_base7unitbufE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base8internalE; .pushsection .data; .type _ZNSt8ios_base8internalE,@object; .size _ZNSt8ios_base8internalE, 4; _ZNSt8ios_base8internalE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base8showbaseE; .pushsection .data; .type _ZNSt8ios_base8showbaseE,@object; .size _ZNSt8ios_base8showbaseE, 4; _ZNSt8ios_base8showbaseE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base9basefieldE; .pushsection .data; .type _ZNSt8ios_base9basefieldE,@object; .size _ZNSt8ios_base9basefieldE, 4; _ZNSt8ios_base9basefieldE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base9boolalphaE; .pushsection .data; .type _ZNSt8ios_base9boolalphaE,@object; .size _ZNSt8ios_base9boolalphaE, 4; _ZNSt8ios_base9boolalphaE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base9showpointE; .pushsection .data; .type _ZNSt8ios_base9showpointE,@object; .size _ZNSt8ios_base9showpointE, 4; _ZNSt8ios_base9showpointE: .long 0; .popsection"); __asm__(".globl _ZNSt8ios_base9uppercaseE; .pushsection .data; .type _ZNSt8ios_base9uppercaseE,@object; .size _ZNSt8ios_base9uppercaseE, 4; _ZNSt8ios_base9uppercaseE: .long 0; .popsection"); __asm__(".globl _ZNSt8messagesIcE2idE; .pushsection .data; .type _ZNSt8messagesIcE2idE,@object; .size _ZNSt8messagesIcE2idE, 8; _ZNSt8messagesIcE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt8messagesIwE2idE; .pushsection .data; .type _ZNSt8messagesIwE2idE,@object; .size _ZNSt8messagesIwE2idE, 8; _ZNSt8messagesIwE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt8numpunctIcE2idE; .pushsection .data; .type _ZNSt8numpunctIcE2idE,@object; .size _ZNSt8numpunctIcE2idE, 8; _ZNSt8numpunctIcE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt8numpunctIwE2idE; .pushsection .data; .type _ZNSt8numpunctIwE2idE,@object; .size _ZNSt8numpunctIwE2idE, 8; _ZNSt8numpunctIwE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE; .pushsection .data; .type _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE,@object; .size _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE, 8; _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE: .long 0; .popsection"); __asm__(".globl _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE; .pushsection .data; .type _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE,@object; .size _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE, 8; _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE: .long 0; .popsection"); __asm__(".globl _ZSt3cin; .pushsection .data; .type _ZSt3cin,@object; .size _ZSt3cin, 280; _ZSt3cin: .long 0; .popsection"); __asm__(".globl _ZSt4cerr; .pushsection .data; .type _ZSt4cerr,@object; .size _ZSt4cerr, 272; _ZSt4cerr: .long 0; .popsection"); __asm__(".globl _ZSt4clog; .pushsection .data; .type _ZSt4clog,@object; .size _ZSt4clog, 272; _ZSt4clog: .long 0; .popsection"); __asm__(".globl _ZSt4cout; .pushsection .data; .type _ZSt4cout,@object; .size _ZSt4cout, 272; _ZSt4cout: .long 0; .popsection"); __asm__(".globl _ZSt4wcin; .pushsection .data; .type _ZSt4wcin,@object; .size _ZSt4wcin, 280; _ZSt4wcin: .long 0; .popsection"); __asm__(".globl _ZSt5wcerr; .pushsection .data; .type _ZSt5wcerr,@object; .size _ZSt5wcerr, 272; _ZSt5wcerr: .long 0; .popsection"); __asm__(".globl _ZSt5wclog; .pushsection .data; .type _ZSt5wclog,@object; .size _ZSt5wclog, 272; _ZSt5wclog: .long 0; .popsection"); __asm__(".globl _ZSt5wcout; .pushsection .data; .type _ZSt5wcout,@object; .size _ZSt5wcout, 272; _ZSt5wcout: .long 0; .popsection"); __asm__(".globl _ZSt7nothrow; .pushsection .data; .type _ZSt7nothrow,@object; .size _ZSt7nothrow, 1; _ZSt7nothrow: .long 0; .popsection"); __asm__(".globl _ZTIN10__cxxabiv116__enum_type_infoE; .pushsection .data; .type _ZTIN10__cxxabiv116__enum_type_infoE,@object; .size _ZTIN10__cxxabiv116__enum_type_infoE, 24; _ZTIN10__cxxabiv116__enum_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTIN10__cxxabiv117__array_type_infoE; .pushsection .data; .type _ZTIN10__cxxabiv117__array_type_infoE,@object; .size _ZTIN10__cxxabiv117__array_type_infoE, 24; _ZTIN10__cxxabiv117__array_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTIN10__cxxabiv117__class_type_infoE; .pushsection .data; .type _ZTIN10__cxxabiv117__class_type_infoE,@object; .size _ZTIN10__cxxabiv117__class_type_infoE, 24; _ZTIN10__cxxabiv117__class_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTIN10__cxxabiv117__pbase_type_infoE; .pushsection .data; .type _ZTIN10__cxxabiv117__pbase_type_infoE,@object; .size _ZTIN10__cxxabiv117__pbase_type_infoE, 24; _ZTIN10__cxxabiv117__pbase_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTIN10__cxxabiv119__pointer_type_infoE; .pushsection .data; .type _ZTIN10__cxxabiv119__pointer_type_infoE,@object; .size _ZTIN10__cxxabiv119__pointer_type_infoE, 24; _ZTIN10__cxxabiv119__pointer_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTIN10__cxxabiv120__function_type_infoE; .pushsection .data; .type _ZTIN10__cxxabiv120__function_type_infoE,@object; .size _ZTIN10__cxxabiv120__function_type_infoE, 24; _ZTIN10__cxxabiv120__function_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTIN10__cxxabiv120__si_class_type_infoE; .pushsection .data; .type _ZTIN10__cxxabiv120__si_class_type_infoE,@object; .size _ZTIN10__cxxabiv120__si_class_type_infoE, 24; _ZTIN10__cxxabiv120__si_class_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTIN10__cxxabiv121__vmi_class_type_infoE; .pushsection .data; .type _ZTIN10__cxxabiv121__vmi_class_type_infoE,@object; .size _ZTIN10__cxxabiv121__vmi_class_type_infoE, 24; _ZTIN10__cxxabiv121__vmi_class_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTIN10__cxxabiv123__fundamental_type_infoE; .pushsection .data; .type _ZTIN10__cxxabiv123__fundamental_type_infoE,@object; .size _ZTIN10__cxxabiv123__fundamental_type_infoE, 24; _ZTIN10__cxxabiv123__fundamental_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTIN10__cxxabiv129__pointer_to_member_type_infoE; .pushsection .data; .type _ZTIN10__cxxabiv129__pointer_to_member_type_infoE,@object; .size _ZTIN10__cxxabiv129__pointer_to_member_type_infoE, 24; _ZTIN10__cxxabiv129__pointer_to_member_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTIN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTIN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE,@object; .size _ZTIN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE, 24; _ZTIN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTIN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTIN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE,@object; .size _ZTIN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE, 24; _ZTIN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTIN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTIN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE,@object; .size _ZTIN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE, 24; _ZTIN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTIN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTIN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE,@object; .size _ZTIN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE, 24; _ZTIN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTINSt6locale5facetE; .pushsection .data; .type _ZTINSt6locale5facetE,@object; .size _ZTINSt6locale5facetE, 16; _ZTINSt6locale5facetE: .long 0; .popsection"); __asm__(".globl _ZTINSt8ios_base7failureE; .pushsection .data; .type _ZTINSt8ios_base7failureE,@object; .size _ZTINSt8ios_base7failureE, 24; _ZTINSt8ios_base7failureE: .long 0; .popsection"); __asm__(".globl _ZTIPKa; .pushsection .data; .type _ZTIPKa,@object; .size _ZTIPKa, 32; _ZTIPKa: .long 0; .popsection"); __asm__(".globl _ZTIPKb; .pushsection .data; .type _ZTIPKb,@object; .size _ZTIPKb, 32; _ZTIPKb: .long 0; .popsection"); __asm__(".globl _ZTIPKc; .pushsection .data; .type _ZTIPKc,@object; .size _ZTIPKc, 32; _ZTIPKc: .long 0; .popsection"); __asm__(".globl _ZTIPKd; .pushsection .data; .type _ZTIPKd,@object; .size _ZTIPKd, 32; _ZTIPKd: .long 0; .popsection"); __asm__(".globl _ZTIPKe; .pushsection .data; .type _ZTIPKe,@object; .size _ZTIPKe, 32; _ZTIPKe: .long 0; .popsection"); __asm__(".globl _ZTIPKf; .pushsection .data; .type _ZTIPKf,@object; .size _ZTIPKf, 32; _ZTIPKf: .long 0; .popsection"); __asm__(".globl _ZTIPKh; .pushsection .data; .type _ZTIPKh,@object; .size _ZTIPKh, 32; _ZTIPKh: .long 0; .popsection"); __asm__(".globl _ZTIPKi; .pushsection .data; .type _ZTIPKi,@object; .size _ZTIPKi, 32; _ZTIPKi: .long 0; .popsection"); __asm__(".globl _ZTIPKj; .pushsection .data; .type _ZTIPKj,@object; .size _ZTIPKj, 32; _ZTIPKj: .long 0; .popsection"); __asm__(".globl _ZTIPKl; .pushsection .data; .type _ZTIPKl,@object; .size _ZTIPKl, 32; _ZTIPKl: .long 0; .popsection"); __asm__(".globl _ZTIPKm; .pushsection .data; .type _ZTIPKm,@object; .size _ZTIPKm, 32; _ZTIPKm: .long 0; .popsection"); __asm__(".globl _ZTIPKs; .pushsection .data; .type _ZTIPKs,@object; .size _ZTIPKs, 32; _ZTIPKs: .long 0; .popsection"); __asm__(".globl _ZTIPKt; .pushsection .data; .type _ZTIPKt,@object; .size _ZTIPKt, 32; _ZTIPKt: .long 0; .popsection"); __asm__(".globl _ZTIPKv; .pushsection .data; .type _ZTIPKv,@object; .size _ZTIPKv, 32; _ZTIPKv: .long 0; .popsection"); __asm__(".globl _ZTIPKw; .pushsection .data; .type _ZTIPKw,@object; .size _ZTIPKw, 32; _ZTIPKw: .long 0; .popsection"); __asm__(".globl _ZTIPKx; .pushsection .data; .type _ZTIPKx,@object; .size _ZTIPKx, 32; _ZTIPKx: .long 0; .popsection"); __asm__(".globl _ZTIPKy; .pushsection .data; .type _ZTIPKy,@object; .size _ZTIPKy, 32; _ZTIPKy: .long 0; .popsection"); __asm__(".globl _ZTIPa; .pushsection .data; .type _ZTIPa,@object; .size _ZTIPa, 32; _ZTIPa: .long 0; .popsection"); __asm__(".globl _ZTIPb; .pushsection .data; .type _ZTIPb,@object; .size _ZTIPb, 32; _ZTIPb: .long 0; .popsection"); __asm__(".globl _ZTIPc; .pushsection .data; .type _ZTIPc,@object; .size _ZTIPc, 32; _ZTIPc: .long 0; .popsection"); __asm__(".globl _ZTIPd; .pushsection .data; .type _ZTIPd,@object; .size _ZTIPd, 32; _ZTIPd: .long 0; .popsection"); __asm__(".globl _ZTIPe; .pushsection .data; .type _ZTIPe,@object; .size _ZTIPe, 32; _ZTIPe: .long 0; .popsection"); __asm__(".globl _ZTIPf; .pushsection .data; .type _ZTIPf,@object; .size _ZTIPf, 32; _ZTIPf: .long 0; .popsection"); __asm__(".globl _ZTIPh; .pushsection .data; .type _ZTIPh,@object; .size _ZTIPh, 32; _ZTIPh: .long 0; .popsection"); __asm__(".globl _ZTIPi; .pushsection .data; .type _ZTIPi,@object; .size _ZTIPi, 32; _ZTIPi: .long 0; .popsection"); __asm__(".globl _ZTIPj; .pushsection .data; .type _ZTIPj,@object; .size _ZTIPj, 32; _ZTIPj: .long 0; .popsection"); __asm__(".globl _ZTIPl; .pushsection .data; .type _ZTIPl,@object; .size _ZTIPl, 32; _ZTIPl: .long 0; .popsection"); __asm__(".globl _ZTIPm; .pushsection .data; .type _ZTIPm,@object; .size _ZTIPm, 32; _ZTIPm: .long 0; .popsection"); __asm__(".globl _ZTIPs; .pushsection .data; .type _ZTIPs,@object; .size _ZTIPs, 32; _ZTIPs: .long 0; .popsection"); __asm__(".globl _ZTIPt; .pushsection .data; .type _ZTIPt,@object; .size _ZTIPt, 32; _ZTIPt: .long 0; .popsection"); __asm__(".globl _ZTIPv; .pushsection .data; .type _ZTIPv,@object; .size _ZTIPv, 32; _ZTIPv: .long 0; .popsection"); __asm__(".globl _ZTIPw; .pushsection .data; .type _ZTIPw,@object; .size _ZTIPw, 32; _ZTIPw: .long 0; .popsection"); __asm__(".globl _ZTIPx; .pushsection .data; .type _ZTIPx,@object; .size _ZTIPx, 32; _ZTIPx: .long 0; .popsection"); __asm__(".globl _ZTIPy; .pushsection .data; .type _ZTIPy,@object; .size _ZTIPy, 32; _ZTIPy: .long 0; .popsection"); __asm__(".globl _ZTISd; .pushsection .data; .type _ZTISd,@object; .size _ZTISd, 56; _ZTISd: .long 0; .popsection"); __asm__(".globl _ZTISi; .pushsection .data; .type _ZTISi,@object; .size _ZTISi, 40; _ZTISi: .long 0; .popsection"); __asm__(".globl _ZTISo; .pushsection .data; .type _ZTISo,@object; .size _ZTISo, 40; _ZTISo: .long 0; .popsection"); __asm__(".globl _ZTISt10bad_typeid; .pushsection .data; .type _ZTISt10bad_typeid,@object; .size _ZTISt10bad_typeid, 24; _ZTISt10bad_typeid: .long 0; .popsection"); __asm__(".globl _ZTISt10ctype_base; .pushsection .data; .type _ZTISt10ctype_base,@object; .size _ZTISt10ctype_base, 16; _ZTISt10ctype_base: .long 0; .popsection"); __asm__(".globl _ZTISt10money_base; .pushsection .data; .type _ZTISt10money_base,@object; .size _ZTISt10money_base, 16; _ZTISt10money_base: .long 0; .popsection"); __asm__(".globl _ZTISt10moneypunctIcLb0EE; .pushsection .data; .type _ZTISt10moneypunctIcLb0EE,@object; .size _ZTISt10moneypunctIcLb0EE, 56; _ZTISt10moneypunctIcLb0EE: .long 0; .popsection"); __asm__(".globl _ZTISt10moneypunctIcLb1EE; .pushsection .data; .type _ZTISt10moneypunctIcLb1EE,@object; .size _ZTISt10moneypunctIcLb1EE, 56; _ZTISt10moneypunctIcLb1EE: .long 0; .popsection"); __asm__(".globl _ZTISt10moneypunctIwLb0EE; .pushsection .data; .type _ZTISt10moneypunctIwLb0EE,@object; .size _ZTISt10moneypunctIwLb0EE, 56; _ZTISt10moneypunctIwLb0EE: .long 0; .popsection"); __asm__(".globl _ZTISt10moneypunctIwLb1EE; .pushsection .data; .type _ZTISt10moneypunctIwLb1EE,@object; .size _ZTISt10moneypunctIwLb1EE, 56; _ZTISt10moneypunctIwLb1EE: .long 0; .popsection"); __asm__(".globl _ZTISt11__timepunctIcE; .pushsection .data; .type _ZTISt11__timepunctIcE,@object; .size _ZTISt11__timepunctIcE, 24; _ZTISt11__timepunctIcE: .long 0; .popsection"); __asm__(".globl _ZTISt11__timepunctIwE; .pushsection .data; .type _ZTISt11__timepunctIwE,@object; .size _ZTISt11__timepunctIwE, 24; _ZTISt11__timepunctIwE: .long 0; .popsection"); __asm__(".globl _ZTISt11logic_error; .pushsection .data; .type _ZTISt11logic_error,@object; .size _ZTISt11logic_error, 24; _ZTISt11logic_error: .long 0; .popsection"); __asm__(".globl _ZTISt11range_error; .pushsection .data; .type _ZTISt11range_error,@object; .size _ZTISt11range_error, 24; _ZTISt11range_error: .long 0; .popsection"); __asm__(".globl _ZTISt12codecvt_base; .pushsection .data; .type _ZTISt12codecvt_base,@object; .size _ZTISt12codecvt_base, 16; _ZTISt12codecvt_base: .long 0; .popsection"); __asm__(".globl _ZTISt12ctype_bynameIcE; .pushsection .data; .type _ZTISt12ctype_bynameIcE,@object; .size _ZTISt12ctype_bynameIcE, 24; _ZTISt12ctype_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTISt12ctype_bynameIwE; .pushsection .data; .type _ZTISt12ctype_bynameIwE,@object; .size _ZTISt12ctype_bynameIwE, 24; _ZTISt12ctype_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTISt12domain_error; .pushsection .data; .type _ZTISt12domain_error,@object; .size _ZTISt12domain_error, 24; _ZTISt12domain_error: .long 0; .popsection"); __asm__(".globl _ZTISt12length_error; .pushsection .data; .type _ZTISt12length_error,@object; .size _ZTISt12length_error, 24; _ZTISt12length_error: .long 0; .popsection"); __asm__(".globl _ZTISt12out_of_range; .pushsection .data; .type _ZTISt12out_of_range,@object; .size _ZTISt12out_of_range, 24; _ZTISt12out_of_range: .long 0; .popsection"); __asm__(".globl _ZTISt13bad_exception; .pushsection .data; .type _ZTISt13bad_exception,@object; .size _ZTISt13bad_exception, 24; _ZTISt13bad_exception: .long 0; .popsection"); __asm__(".globl _ZTISt13basic_filebufIcSt11char_traitsIcEE; .pushsection .data; .type _ZTISt13basic_filebufIcSt11char_traitsIcEE,@object; .size _ZTISt13basic_filebufIcSt11char_traitsIcEE, 24; _ZTISt13basic_filebufIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTISt13basic_filebufIwSt11char_traitsIwEE; .pushsection .data; .type _ZTISt13basic_filebufIwSt11char_traitsIwEE,@object; .size _ZTISt13basic_filebufIwSt11char_traitsIwEE, 24; _ZTISt13basic_filebufIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt13basic_fstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTISt13basic_fstreamIcSt11char_traitsIcEE,@object; .size _ZTISt13basic_fstreamIcSt11char_traitsIcEE, 24; _ZTISt13basic_fstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTISt13basic_fstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTISt13basic_fstreamIwSt11char_traitsIwEE,@object; .size _ZTISt13basic_fstreamIwSt11char_traitsIwEE, 24; _ZTISt13basic_fstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt13basic_istreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTISt13basic_istreamIwSt11char_traitsIwEE,@object; .size _ZTISt13basic_istreamIwSt11char_traitsIwEE, 40; _ZTISt13basic_istreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt13basic_ostreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTISt13basic_ostreamIwSt11char_traitsIwEE,@object; .size _ZTISt13basic_ostreamIwSt11char_traitsIwEE, 40; _ZTISt13basic_ostreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt13messages_base; .pushsection .data; .type _ZTISt13messages_base,@object; .size _ZTISt13messages_base, 16; _ZTISt13messages_base: .long 0; .popsection"); __asm__(".globl _ZTISt13runtime_error; .pushsection .data; .type _ZTISt13runtime_error,@object; .size _ZTISt13runtime_error, 24; _ZTISt13runtime_error: .long 0; .popsection"); __asm__(".globl _ZTISt14basic_ifstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTISt14basic_ifstreamIcSt11char_traitsIcEE,@object; .size _ZTISt14basic_ifstreamIcSt11char_traitsIcEE, 24; _ZTISt14basic_ifstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTISt14basic_ifstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTISt14basic_ifstreamIwSt11char_traitsIwEE,@object; .size _ZTISt14basic_ifstreamIwSt11char_traitsIwEE, 24; _ZTISt14basic_ifstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt14basic_iostreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTISt14basic_iostreamIwSt11char_traitsIwEE,@object; .size _ZTISt14basic_iostreamIwSt11char_traitsIwEE, 56; _ZTISt14basic_iostreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt14basic_ofstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTISt14basic_ofstreamIcSt11char_traitsIcEE,@object; .size _ZTISt14basic_ofstreamIcSt11char_traitsIcEE, 24; _ZTISt14basic_ofstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTISt14basic_ofstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTISt14basic_ofstreamIwSt11char_traitsIwEE,@object; .size _ZTISt14basic_ofstreamIwSt11char_traitsIwEE, 24; _ZTISt14basic_ofstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt14codecvt_bynameIcc11__mbstate_tE; .pushsection .data; .type _ZTISt14codecvt_bynameIcc11__mbstate_tE,@object; .size _ZTISt14codecvt_bynameIcc11__mbstate_tE, 24; _ZTISt14codecvt_bynameIcc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTISt14codecvt_bynameIwc11__mbstate_tE; .pushsection .data; .type _ZTISt14codecvt_bynameIwc11__mbstate_tE,@object; .size _ZTISt14codecvt_bynameIwc11__mbstate_tE, 24; _ZTISt14codecvt_bynameIwc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTISt14collate_bynameIcE; .pushsection .data; .type _ZTISt14collate_bynameIcE,@object; .size _ZTISt14collate_bynameIcE, 24; _ZTISt14collate_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTISt14collate_bynameIwE; .pushsection .data; .type _ZTISt14collate_bynameIwE,@object; .size _ZTISt14collate_bynameIwE, 24; _ZTISt14collate_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTISt14overflow_error; .pushsection .data; .type _ZTISt14overflow_error,@object; .size _ZTISt14overflow_error, 24; _ZTISt14overflow_error: .long 0; .popsection"); __asm__(".globl _ZTISt15basic_streambufIcSt11char_traitsIcEE; .pushsection .data; .type _ZTISt15basic_streambufIcSt11char_traitsIcEE,@object; .size _ZTISt15basic_streambufIcSt11char_traitsIcEE, 16; _ZTISt15basic_streambufIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTISt15basic_streambufIwSt11char_traitsIwEE; .pushsection .data; .type _ZTISt15basic_streambufIwSt11char_traitsIwEE,@object; .size _ZTISt15basic_streambufIwSt11char_traitsIwEE, 16; _ZTISt15basic_streambufIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt15basic_stringbufIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTISt15basic_stringbufIcSt11char_traitsIcESaIcEE,@object; .size _ZTISt15basic_stringbufIcSt11char_traitsIcESaIcEE, 24; _ZTISt15basic_stringbufIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTISt15basic_stringbufIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTISt15basic_stringbufIwSt11char_traitsIwESaIwEE,@object; .size _ZTISt15basic_stringbufIwSt11char_traitsIwESaIwEE, 24; _ZTISt15basic_stringbufIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt15messages_bynameIcE; .pushsection .data; .type _ZTISt15messages_bynameIcE,@object; .size _ZTISt15messages_bynameIcE, 24; _ZTISt15messages_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTISt15messages_bynameIwE; .pushsection .data; .type _ZTISt15messages_bynameIwE,@object; .size _ZTISt15messages_bynameIwE, 24; _ZTISt15messages_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTISt15numpunct_bynameIcE; .pushsection .data; .type _ZTISt15numpunct_bynameIcE,@object; .size _ZTISt15numpunct_bynameIcE, 24; _ZTISt15numpunct_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTISt15numpunct_bynameIwE; .pushsection .data; .type _ZTISt15numpunct_bynameIwE,@object; .size _ZTISt15numpunct_bynameIwE, 24; _ZTISt15numpunct_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTISt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTISt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTISt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 24; _ZTISt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTISt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTISt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTISt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 24; _ZTISt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTISt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTISt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTISt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 24; _ZTISt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTISt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTISt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTISt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 24; _ZTISt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTISt15underflow_error; .pushsection .data; .type _ZTISt15underflow_error,@object; .size _ZTISt15underflow_error, 24; _ZTISt15underflow_error: .long 0; .popsection"); __asm__(".globl _ZTISt16invalid_argument; .pushsection .data; .type _ZTISt16invalid_argument,@object; .size _ZTISt16invalid_argument, 24; _ZTISt16invalid_argument: .long 0; .popsection"); __asm__(".globl _ZTISt17moneypunct_bynameIcLb0EE; .pushsection .data; .type _ZTISt17moneypunct_bynameIcLb0EE,@object; .size _ZTISt17moneypunct_bynameIcLb0EE, 24; _ZTISt17moneypunct_bynameIcLb0EE: .long 0; .popsection"); __asm__(".globl _ZTISt17moneypunct_bynameIcLb1EE; .pushsection .data; .type _ZTISt17moneypunct_bynameIcLb1EE,@object; .size _ZTISt17moneypunct_bynameIcLb1EE, 24; _ZTISt17moneypunct_bynameIcLb1EE: .long 0; .popsection"); __asm__(".globl _ZTISt17moneypunct_bynameIwLb0EE; .pushsection .data; .type _ZTISt17moneypunct_bynameIwLb0EE,@object; .size _ZTISt17moneypunct_bynameIwLb0EE, 24; _ZTISt17moneypunct_bynameIwLb0EE: .long 0; .popsection"); __asm__(".globl _ZTISt17moneypunct_bynameIwLb1EE; .pushsection .data; .type _ZTISt17moneypunct_bynameIwLb1EE,@object; .size _ZTISt17moneypunct_bynameIwLb1EE, 24; _ZTISt17moneypunct_bynameIwLb1EE: .long 0; .popsection"); __asm__(".globl _ZTISt18basic_stringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTISt18basic_stringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTISt18basic_stringstreamIcSt11char_traitsIcESaIcEE, 24; _ZTISt18basic_stringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTISt18basic_stringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTISt18basic_stringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTISt18basic_stringstreamIwSt11char_traitsIwESaIwEE, 24; _ZTISt18basic_stringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt19basic_istringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTISt19basic_istringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTISt19basic_istringstreamIcSt11char_traitsIcESaIcEE, 24; _ZTISt19basic_istringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTISt19basic_istringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTISt19basic_istringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTISt19basic_istringstreamIwSt11char_traitsIwESaIwEE, 24; _ZTISt19basic_istringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt19basic_ostringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTISt19basic_ostringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTISt19basic_ostringstreamIcSt11char_traitsIcESaIcEE, 24; _ZTISt19basic_ostringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTISt19basic_ostringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTISt19basic_ostringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTISt19basic_ostringstreamIwSt11char_traitsIwESaIwEE, 24; _ZTISt19basic_ostringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt21__ctype_abstract_baseIcE; .pushsection .data; .type _ZTISt21__ctype_abstract_baseIcE,@object; .size _ZTISt21__ctype_abstract_baseIcE, 56; _ZTISt21__ctype_abstract_baseIcE: .long 0; .popsection"); __asm__(".globl _ZTISt21__ctype_abstract_baseIwE; .pushsection .data; .type _ZTISt21__ctype_abstract_baseIwE,@object; .size _ZTISt21__ctype_abstract_baseIwE, 56; _ZTISt21__ctype_abstract_baseIwE: .long 0; .popsection"); __asm__(".globl _ZTISt23__codecvt_abstract_baseIcc11__mbstate_tE; .pushsection .data; .type _ZTISt23__codecvt_abstract_baseIcc11__mbstate_tE,@object; .size _ZTISt23__codecvt_abstract_baseIcc11__mbstate_tE, 56; _ZTISt23__codecvt_abstract_baseIcc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTISt23__codecvt_abstract_baseIwc11__mbstate_tE; .pushsection .data; .type _ZTISt23__codecvt_abstract_baseIwc11__mbstate_tE,@object; .size _ZTISt23__codecvt_abstract_baseIwc11__mbstate_tE, 56; _ZTISt23__codecvt_abstract_baseIwc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTISt5ctypeIcE; .pushsection .data; .type _ZTISt5ctypeIcE,@object; .size _ZTISt5ctypeIcE, 56; _ZTISt5ctypeIcE: .long 0; .popsection"); __asm__(".globl _ZTISt5ctypeIwE; .pushsection .data; .type _ZTISt5ctypeIwE,@object; .size _ZTISt5ctypeIwE, 24; _ZTISt5ctypeIwE: .long 0; .popsection"); __asm__(".globl _ZTISt7codecvtIcc11__mbstate_tE; .pushsection .data; .type _ZTISt7codecvtIcc11__mbstate_tE,@object; .size _ZTISt7codecvtIcc11__mbstate_tE, 24; _ZTISt7codecvtIcc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTISt7codecvtIwc11__mbstate_tE; .pushsection .data; .type _ZTISt7codecvtIwc11__mbstate_tE,@object; .size _ZTISt7codecvtIwc11__mbstate_tE, 24; _ZTISt7codecvtIwc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTISt7collateIcE; .pushsection .data; .type _ZTISt7collateIcE,@object; .size _ZTISt7collateIcE, 24; _ZTISt7collateIcE: .long 0; .popsection"); __asm__(".globl _ZTISt7collateIwE; .pushsection .data; .type _ZTISt7collateIwE,@object; .size _ZTISt7collateIwE, 24; _ZTISt7collateIwE: .long 0; .popsection"); __asm__(".globl _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 24; _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 24; _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 24; _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 24; _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTISt8bad_cast; .pushsection .data; .type _ZTISt8bad_cast,@object; .size _ZTISt8bad_cast, 24; _ZTISt8bad_cast: .long 0; .popsection"); __asm__(".globl _ZTISt8ios_base; .pushsection .data; .type _ZTISt8ios_base,@object; .size _ZTISt8ios_base, 16; _ZTISt8ios_base: .long 0; .popsection"); __asm__(".globl _ZTISt8messagesIcE; .pushsection .data; .type _ZTISt8messagesIcE,@object; .size _ZTISt8messagesIcE, 56; _ZTISt8messagesIcE: .long 0; .popsection"); __asm__(".globl _ZTISt8messagesIwE; .pushsection .data; .type _ZTISt8messagesIwE,@object; .size _ZTISt8messagesIwE, 56; _ZTISt8messagesIwE: .long 0; .popsection"); __asm__(".globl _ZTISt8numpunctIcE; .pushsection .data; .type _ZTISt8numpunctIcE,@object; .size _ZTISt8numpunctIcE, 24; _ZTISt8numpunctIcE: .long 0; .popsection"); __asm__(".globl _ZTISt8numpunctIwE; .pushsection .data; .type _ZTISt8numpunctIwE,@object; .size _ZTISt8numpunctIwE, 24; _ZTISt8numpunctIwE: .long 0; .popsection"); __asm__(".globl _ZTISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 56; _ZTISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 56; _ZTISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 24; _ZTISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 24; _ZTISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTISt9bad_alloc; .pushsection .data; .type _ZTISt9bad_alloc,@object; .size _ZTISt9bad_alloc, 24; _ZTISt9bad_alloc: .long 0; .popsection"); __asm__(".globl _ZTISt9basic_iosIcSt11char_traitsIcEE; .pushsection .data; .type _ZTISt9basic_iosIcSt11char_traitsIcEE,@object; .size _ZTISt9basic_iosIcSt11char_traitsIcEE, 24; _ZTISt9basic_iosIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTISt9basic_iosIwSt11char_traitsIwEE; .pushsection .data; .type _ZTISt9basic_iosIwSt11char_traitsIwEE,@object; .size _ZTISt9basic_iosIwSt11char_traitsIwEE, 24; _ZTISt9basic_iosIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTISt9exception; .pushsection .data; .type _ZTISt9exception,@object; .size _ZTISt9exception, 16; _ZTISt9exception: .long 0; .popsection"); __asm__(".globl _ZTISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 24; _ZTISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 24; _ZTISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 24; _ZTISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 24; _ZTISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTISt9time_base; .pushsection .data; .type _ZTISt9time_base,@object; .size _ZTISt9time_base, 16; _ZTISt9time_base: .long 0; .popsection"); __asm__(".globl _ZTISt9type_info; .pushsection .data; .type _ZTISt9type_info,@object; .size _ZTISt9type_info, 16; _ZTISt9type_info: .long 0; .popsection"); __asm__(".globl _ZTIa; .pushsection .data; .type _ZTIa,@object; .size _ZTIa, 16; _ZTIa: .long 0; .popsection"); __asm__(".globl _ZTIb; .pushsection .data; .type _ZTIb,@object; .size _ZTIb, 16; _ZTIb: .long 0; .popsection"); __asm__(".globl _ZTIc; .pushsection .data; .type _ZTIc,@object; .size _ZTIc, 16; _ZTIc: .long 0; .popsection"); __asm__(".globl _ZTId; .pushsection .data; .type _ZTId,@object; .size _ZTId, 16; _ZTId: .long 0; .popsection"); __asm__(".globl _ZTIe; .pushsection .data; .type _ZTIe,@object; .size _ZTIe, 16; _ZTIe: .long 0; .popsection"); __asm__(".globl _ZTIf; .pushsection .data; .type _ZTIf,@object; .size _ZTIf, 16; _ZTIf: .long 0; .popsection"); __asm__(".globl _ZTIh; .pushsection .data; .type _ZTIh,@object; .size _ZTIh, 16; _ZTIh: .long 0; .popsection"); __asm__(".globl _ZTIi; .pushsection .data; .type _ZTIi,@object; .size _ZTIi, 16; _ZTIi: .long 0; .popsection"); __asm__(".globl _ZTIj; .pushsection .data; .type _ZTIj,@object; .size _ZTIj, 16; _ZTIj: .long 0; .popsection"); __asm__(".globl _ZTIl; .pushsection .data; .type _ZTIl,@object; .size _ZTIl, 16; _ZTIl: .long 0; .popsection"); __asm__(".globl _ZTIm; .pushsection .data; .type _ZTIm,@object; .size _ZTIm, 16; _ZTIm: .long 0; .popsection"); __asm__(".globl _ZTIs; .pushsection .data; .type _ZTIs,@object; .size _ZTIs, 16; _ZTIs: .long 0; .popsection"); __asm__(".globl _ZTIt; .pushsection .data; .type _ZTIt,@object; .size _ZTIt, 16; _ZTIt: .long 0; .popsection"); __asm__(".globl _ZTIv; .pushsection .data; .type _ZTIv,@object; .size _ZTIv, 16; _ZTIv: .long 0; .popsection"); __asm__(".globl _ZTIw; .pushsection .data; .type _ZTIw,@object; .size _ZTIw, 16; _ZTIw: .long 0; .popsection"); __asm__(".globl _ZTIx; .pushsection .data; .type _ZTIx,@object; .size _ZTIx, 16; _ZTIx: .long 0; .popsection"); __asm__(".globl _ZTIy; .pushsection .data; .type _ZTIy,@object; .size _ZTIy, 16; _ZTIy: .long 0; .popsection"); __asm__(".globl _ZTSN10__cxxabiv116__enum_type_infoE; .pushsection .data; .type _ZTSN10__cxxabiv116__enum_type_infoE,@object; .size _ZTSN10__cxxabiv116__enum_type_infoE, 33; _ZTSN10__cxxabiv116__enum_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTSN10__cxxabiv117__array_type_infoE; .pushsection .data; .type _ZTSN10__cxxabiv117__array_type_infoE,@object; .size _ZTSN10__cxxabiv117__array_type_infoE, 34; _ZTSN10__cxxabiv117__array_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTSN10__cxxabiv117__class_type_infoE; .pushsection .data; .type _ZTSN10__cxxabiv117__class_type_infoE,@object; .size _ZTSN10__cxxabiv117__class_type_infoE, 34; _ZTSN10__cxxabiv117__class_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTSN10__cxxabiv117__pbase_type_infoE; .pushsection .data; .type _ZTSN10__cxxabiv117__pbase_type_infoE,@object; .size _ZTSN10__cxxabiv117__pbase_type_infoE, 34; _ZTSN10__cxxabiv117__pbase_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTSN10__cxxabiv119__pointer_type_infoE; .pushsection .data; .type _ZTSN10__cxxabiv119__pointer_type_infoE,@object; .size _ZTSN10__cxxabiv119__pointer_type_infoE, 36; _ZTSN10__cxxabiv119__pointer_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTSN10__cxxabiv120__function_type_infoE; .pushsection .data; .type _ZTSN10__cxxabiv120__function_type_infoE,@object; .size _ZTSN10__cxxabiv120__function_type_infoE, 37; _ZTSN10__cxxabiv120__function_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTSN10__cxxabiv120__si_class_type_infoE; .pushsection .data; .type _ZTSN10__cxxabiv120__si_class_type_infoE,@object; .size _ZTSN10__cxxabiv120__si_class_type_infoE, 37; _ZTSN10__cxxabiv120__si_class_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTSN10__cxxabiv121__vmi_class_type_infoE; .pushsection .data; .type _ZTSN10__cxxabiv121__vmi_class_type_infoE,@object; .size _ZTSN10__cxxabiv121__vmi_class_type_infoE, 38; _ZTSN10__cxxabiv121__vmi_class_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTSN10__cxxabiv123__fundamental_type_infoE; .pushsection .data; .type _ZTSN10__cxxabiv123__fundamental_type_infoE,@object; .size _ZTSN10__cxxabiv123__fundamental_type_infoE, 40; _ZTSN10__cxxabiv123__fundamental_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTSN10__cxxabiv129__pointer_to_member_type_infoE; .pushsection .data; .type _ZTSN10__cxxabiv129__pointer_to_member_type_infoE,@object; .size _ZTSN10__cxxabiv129__pointer_to_member_type_infoE, 46; _ZTSN10__cxxabiv129__pointer_to_member_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTSN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTSN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE,@object; .size _ZTSN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE, 49; _ZTSN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTSN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTSN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE,@object; .size _ZTSN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE, 49; _ZTSN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTSN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTSN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE,@object; .size _ZTSN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE, 54; _ZTSN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTSN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTSN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE,@object; .size _ZTSN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE, 54; _ZTSN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTSNSt6locale5facetE; .pushsection .data; .type _ZTSNSt6locale5facetE,@object; .size _ZTSNSt6locale5facetE, 18; _ZTSNSt6locale5facetE: .long 0; .popsection"); __asm__(".globl _ZTSNSt8ios_base7failureE; .pushsection .data; .type _ZTSNSt8ios_base7failureE,@object; .size _ZTSNSt8ios_base7failureE, 22; _ZTSNSt8ios_base7failureE: .long 0; .popsection"); __asm__(".globl _ZTSPKa; .pushsection .data; .type _ZTSPKa,@object; .size _ZTSPKa, 4; _ZTSPKa: .long 0; .popsection"); __asm__(".globl _ZTSPKb; .pushsection .data; .type _ZTSPKb,@object; .size _ZTSPKb, 4; _ZTSPKb: .long 0; .popsection"); __asm__(".globl _ZTSPKc; .pushsection .data; .type _ZTSPKc,@object; .size _ZTSPKc, 4; _ZTSPKc: .long 0; .popsection"); __asm__(".globl _ZTSPKd; .pushsection .data; .type _ZTSPKd,@object; .size _ZTSPKd, 4; _ZTSPKd: .long 0; .popsection"); __asm__(".globl _ZTSPKe; .pushsection .data; .type _ZTSPKe,@object; .size _ZTSPKe, 4; _ZTSPKe: .long 0; .popsection"); __asm__(".globl _ZTSPKf; .pushsection .data; .type _ZTSPKf,@object; .size _ZTSPKf, 4; _ZTSPKf: .long 0; .popsection"); __asm__(".globl _ZTSPKh; .pushsection .data; .type _ZTSPKh,@object; .size _ZTSPKh, 4; _ZTSPKh: .long 0; .popsection"); __asm__(".globl _ZTSPKi; .pushsection .data; .type _ZTSPKi,@object; .size _ZTSPKi, 4; _ZTSPKi: .long 0; .popsection"); __asm__(".globl _ZTSPKj; .pushsection .data; .type _ZTSPKj,@object; .size _ZTSPKj, 4; _ZTSPKj: .long 0; .popsection"); __asm__(".globl _ZTSPKl; .pushsection .data; .type _ZTSPKl,@object; .size _ZTSPKl, 4; _ZTSPKl: .long 0; .popsection"); __asm__(".globl _ZTSPKm; .pushsection .data; .type _ZTSPKm,@object; .size _ZTSPKm, 4; _ZTSPKm: .long 0; .popsection"); __asm__(".globl _ZTSPKs; .pushsection .data; .type _ZTSPKs,@object; .size _ZTSPKs, 4; _ZTSPKs: .long 0; .popsection"); __asm__(".globl _ZTSPKt; .pushsection .data; .type _ZTSPKt,@object; .size _ZTSPKt, 4; _ZTSPKt: .long 0; .popsection"); __asm__(".globl _ZTSPKv; .pushsection .data; .type _ZTSPKv,@object; .size _ZTSPKv, 4; _ZTSPKv: .long 0; .popsection"); __asm__(".globl _ZTSPKw; .pushsection .data; .type _ZTSPKw,@object; .size _ZTSPKw, 4; _ZTSPKw: .long 0; .popsection"); __asm__(".globl _ZTSPKx; .pushsection .data; .type _ZTSPKx,@object; .size _ZTSPKx, 4; _ZTSPKx: .long 0; .popsection"); __asm__(".globl _ZTSPKy; .pushsection .data; .type _ZTSPKy,@object; .size _ZTSPKy, 4; _ZTSPKy: .long 0; .popsection"); __asm__(".globl _ZTSPa; .pushsection .data; .type _ZTSPa,@object; .size _ZTSPa, 3; _ZTSPa: .long 0; .popsection"); __asm__(".globl _ZTSPb; .pushsection .data; .type _ZTSPb,@object; .size _ZTSPb, 3; _ZTSPb: .long 0; .popsection"); __asm__(".globl _ZTSPc; .pushsection .data; .type _ZTSPc,@object; .size _ZTSPc, 3; _ZTSPc: .long 0; .popsection"); __asm__(".globl _ZTSPd; .pushsection .data; .type _ZTSPd,@object; .size _ZTSPd, 3; _ZTSPd: .long 0; .popsection"); __asm__(".globl _ZTSPe; .pushsection .data; .type _ZTSPe,@object; .size _ZTSPe, 3; _ZTSPe: .long 0; .popsection"); __asm__(".globl _ZTSPf; .pushsection .data; .type _ZTSPf,@object; .size _ZTSPf, 3; _ZTSPf: .long 0; .popsection"); __asm__(".globl _ZTSPh; .pushsection .data; .type _ZTSPh,@object; .size _ZTSPh, 3; _ZTSPh: .long 0; .popsection"); __asm__(".globl _ZTSPi; .pushsection .data; .type _ZTSPi,@object; .size _ZTSPi, 3; _ZTSPi: .long 0; .popsection"); __asm__(".globl _ZTSPj; .pushsection .data; .type _ZTSPj,@object; .size _ZTSPj, 3; _ZTSPj: .long 0; .popsection"); __asm__(".globl _ZTSPl; .pushsection .data; .type _ZTSPl,@object; .size _ZTSPl, 3; _ZTSPl: .long 0; .popsection"); __asm__(".globl _ZTSPm; .pushsection .data; .type _ZTSPm,@object; .size _ZTSPm, 3; _ZTSPm: .long 0; .popsection"); __asm__(".globl _ZTSPs; .pushsection .data; .type _ZTSPs,@object; .size _ZTSPs, 3; _ZTSPs: .long 0; .popsection"); __asm__(".globl _ZTSPt; .pushsection .data; .type _ZTSPt,@object; .size _ZTSPt, 3; _ZTSPt: .long 0; .popsection"); __asm__(".globl _ZTSPv; .pushsection .data; .type _ZTSPv,@object; .size _ZTSPv, 3; _ZTSPv: .long 0; .popsection"); __asm__(".globl _ZTSPw; .pushsection .data; .type _ZTSPw,@object; .size _ZTSPw, 3; _ZTSPw: .long 0; .popsection"); __asm__(".globl _ZTSPx; .pushsection .data; .type _ZTSPx,@object; .size _ZTSPx, 3; _ZTSPx: .long 0; .popsection"); __asm__(".globl _ZTSPy; .pushsection .data; .type _ZTSPy,@object; .size _ZTSPy, 3; _ZTSPy: .long 0; .popsection"); __asm__(".globl _ZTSSd; .pushsection .data; .type _ZTSSd,@object; .size _ZTSSd, 3; _ZTSSd: .long 0; .popsection"); __asm__(".globl _ZTSSi; .pushsection .data; .type _ZTSSi,@object; .size _ZTSSi, 3; _ZTSSi: .long 0; .popsection"); __asm__(".globl _ZTSSo; .pushsection .data; .type _ZTSSo,@object; .size _ZTSSo, 3; _ZTSSo: .long 0; .popsection"); __asm__(".globl _ZTSSt10bad_typeid; .pushsection .data; .type _ZTSSt10bad_typeid,@object; .size _ZTSSt10bad_typeid, 15; _ZTSSt10bad_typeid: .long 0; .popsection"); __asm__(".globl _ZTSSt10ctype_base; .pushsection .data; .type _ZTSSt10ctype_base,@object; .size _ZTSSt10ctype_base, 15; _ZTSSt10ctype_base: .long 0; .popsection"); __asm__(".globl _ZTSSt10money_base; .pushsection .data; .type _ZTSSt10money_base,@object; .size _ZTSSt10money_base, 15; _ZTSSt10money_base: .long 0; .popsection"); __asm__(".globl _ZTSSt10moneypunctIcLb0EE; .pushsection .data; .type _ZTSSt10moneypunctIcLb0EE,@object; .size _ZTSSt10moneypunctIcLb0EE, 22; _ZTSSt10moneypunctIcLb0EE: .long 0; .popsection"); __asm__(".globl _ZTSSt10moneypunctIcLb1EE; .pushsection .data; .type _ZTSSt10moneypunctIcLb1EE,@object; .size _ZTSSt10moneypunctIcLb1EE, 22; _ZTSSt10moneypunctIcLb1EE: .long 0; .popsection"); __asm__(".globl _ZTSSt10moneypunctIwLb0EE; .pushsection .data; .type _ZTSSt10moneypunctIwLb0EE,@object; .size _ZTSSt10moneypunctIwLb0EE, 22; _ZTSSt10moneypunctIwLb0EE: .long 0; .popsection"); __asm__(".globl _ZTSSt10moneypunctIwLb1EE; .pushsection .data; .type _ZTSSt10moneypunctIwLb1EE,@object; .size _ZTSSt10moneypunctIwLb1EE, 22; _ZTSSt10moneypunctIwLb1EE: .long 0; .popsection"); __asm__(".globl _ZTSSt11__timepunctIcE; .pushsection .data; .type _ZTSSt11__timepunctIcE,@object; .size _ZTSSt11__timepunctIcE, 19; _ZTSSt11__timepunctIcE: .long 0; .popsection"); __asm__(".globl _ZTSSt11__timepunctIwE; .pushsection .data; .type _ZTSSt11__timepunctIwE,@object; .size _ZTSSt11__timepunctIwE, 19; _ZTSSt11__timepunctIwE: .long 0; .popsection"); __asm__(".globl _ZTSSt11logic_error; .pushsection .data; .type _ZTSSt11logic_error,@object; .size _ZTSSt11logic_error, 16; _ZTSSt11logic_error: .long 0; .popsection"); __asm__(".globl _ZTSSt11range_error; .pushsection .data; .type _ZTSSt11range_error,@object; .size _ZTSSt11range_error, 16; _ZTSSt11range_error: .long 0; .popsection"); __asm__(".globl _ZTSSt12codecvt_base; .pushsection .data; .type _ZTSSt12codecvt_base,@object; .size _ZTSSt12codecvt_base, 17; _ZTSSt12codecvt_base: .long 0; .popsection"); __asm__(".globl _ZTSSt12ctype_bynameIcE; .pushsection .data; .type _ZTSSt12ctype_bynameIcE,@object; .size _ZTSSt12ctype_bynameIcE, 20; _ZTSSt12ctype_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTSSt12ctype_bynameIwE; .pushsection .data; .type _ZTSSt12ctype_bynameIwE,@object; .size _ZTSSt12ctype_bynameIwE, 20; _ZTSSt12ctype_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTSSt12domain_error; .pushsection .data; .type _ZTSSt12domain_error,@object; .size _ZTSSt12domain_error, 17; _ZTSSt12domain_error: .long 0; .popsection"); __asm__(".globl _ZTSSt12length_error; .pushsection .data; .type _ZTSSt12length_error,@object; .size _ZTSSt12length_error, 17; _ZTSSt12length_error: .long 0; .popsection"); __asm__(".globl _ZTSSt12out_of_range; .pushsection .data; .type _ZTSSt12out_of_range,@object; .size _ZTSSt12out_of_range, 17; _ZTSSt12out_of_range: .long 0; .popsection"); __asm__(".globl _ZTSSt13bad_exception; .pushsection .data; .type _ZTSSt13bad_exception,@object; .size _ZTSSt13bad_exception, 18; _ZTSSt13bad_exception: .long 0; .popsection"); __asm__(".globl _ZTSSt13basic_filebufIcSt11char_traitsIcEE; .pushsection .data; .type _ZTSSt13basic_filebufIcSt11char_traitsIcEE,@object; .size _ZTSSt13basic_filebufIcSt11char_traitsIcEE, 39; _ZTSSt13basic_filebufIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTSSt13basic_filebufIwSt11char_traitsIwEE; .pushsection .data; .type _ZTSSt13basic_filebufIwSt11char_traitsIwEE,@object; .size _ZTSSt13basic_filebufIwSt11char_traitsIwEE, 39; _ZTSSt13basic_filebufIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt13basic_fstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTSSt13basic_fstreamIcSt11char_traitsIcEE,@object; .size _ZTSSt13basic_fstreamIcSt11char_traitsIcEE, 39; _ZTSSt13basic_fstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTSSt13basic_fstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTSSt13basic_fstreamIwSt11char_traitsIwEE,@object; .size _ZTSSt13basic_fstreamIwSt11char_traitsIwEE, 39; _ZTSSt13basic_fstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt13basic_istreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTSSt13basic_istreamIwSt11char_traitsIwEE,@object; .size _ZTSSt13basic_istreamIwSt11char_traitsIwEE, 39; _ZTSSt13basic_istreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt13basic_ostreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTSSt13basic_ostreamIwSt11char_traitsIwEE,@object; .size _ZTSSt13basic_ostreamIwSt11char_traitsIwEE, 39; _ZTSSt13basic_ostreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt13messages_base; .pushsection .data; .type _ZTSSt13messages_base,@object; .size _ZTSSt13messages_base, 18; _ZTSSt13messages_base: .long 0; .popsection"); __asm__(".globl _ZTSSt13runtime_error; .pushsection .data; .type _ZTSSt13runtime_error,@object; .size _ZTSSt13runtime_error, 18; _ZTSSt13runtime_error: .long 0; .popsection"); __asm__(".globl _ZTSSt14basic_ifstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTSSt14basic_ifstreamIcSt11char_traitsIcEE,@object; .size _ZTSSt14basic_ifstreamIcSt11char_traitsIcEE, 40; _ZTSSt14basic_ifstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTSSt14basic_ifstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTSSt14basic_ifstreamIwSt11char_traitsIwEE,@object; .size _ZTSSt14basic_ifstreamIwSt11char_traitsIwEE, 40; _ZTSSt14basic_ifstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt14basic_iostreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTSSt14basic_iostreamIwSt11char_traitsIwEE,@object; .size _ZTSSt14basic_iostreamIwSt11char_traitsIwEE, 40; _ZTSSt14basic_iostreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt14basic_ofstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTSSt14basic_ofstreamIcSt11char_traitsIcEE,@object; .size _ZTSSt14basic_ofstreamIcSt11char_traitsIcEE, 40; _ZTSSt14basic_ofstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTSSt14basic_ofstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTSSt14basic_ofstreamIwSt11char_traitsIwEE,@object; .size _ZTSSt14basic_ofstreamIwSt11char_traitsIwEE, 40; _ZTSSt14basic_ofstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt14codecvt_bynameIcc11__mbstate_tE; .pushsection .data; .type _ZTSSt14codecvt_bynameIcc11__mbstate_tE,@object; .size _ZTSSt14codecvt_bynameIcc11__mbstate_tE, 36; _ZTSSt14codecvt_bynameIcc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTSSt14codecvt_bynameIwc11__mbstate_tE; .pushsection .data; .type _ZTSSt14codecvt_bynameIwc11__mbstate_tE,@object; .size _ZTSSt14codecvt_bynameIwc11__mbstate_tE, 36; _ZTSSt14codecvt_bynameIwc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTSSt14collate_bynameIcE; .pushsection .data; .type _ZTSSt14collate_bynameIcE,@object; .size _ZTSSt14collate_bynameIcE, 22; _ZTSSt14collate_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTSSt14collate_bynameIwE; .pushsection .data; .type _ZTSSt14collate_bynameIwE,@object; .size _ZTSSt14collate_bynameIwE, 22; _ZTSSt14collate_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTSSt14overflow_error; .pushsection .data; .type _ZTSSt14overflow_error,@object; .size _ZTSSt14overflow_error, 19; _ZTSSt14overflow_error: .long 0; .popsection"); __asm__(".globl _ZTSSt15basic_streambufIcSt11char_traitsIcEE; .pushsection .data; .type _ZTSSt15basic_streambufIcSt11char_traitsIcEE,@object; .size _ZTSSt15basic_streambufIcSt11char_traitsIcEE, 41; _ZTSSt15basic_streambufIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTSSt15basic_streambufIwSt11char_traitsIwEE; .pushsection .data; .type _ZTSSt15basic_streambufIwSt11char_traitsIwEE,@object; .size _ZTSSt15basic_streambufIwSt11char_traitsIwEE, 41; _ZTSSt15basic_streambufIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt15basic_stringbufIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTSSt15basic_stringbufIcSt11char_traitsIcESaIcEE,@object; .size _ZTSSt15basic_stringbufIcSt11char_traitsIcESaIcEE, 46; _ZTSSt15basic_stringbufIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTSSt15basic_stringbufIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTSSt15basic_stringbufIwSt11char_traitsIwESaIwEE,@object; .size _ZTSSt15basic_stringbufIwSt11char_traitsIwESaIwEE, 46; _ZTSSt15basic_stringbufIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt15messages_bynameIcE; .pushsection .data; .type _ZTSSt15messages_bynameIcE,@object; .size _ZTSSt15messages_bynameIcE, 23; _ZTSSt15messages_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTSSt15messages_bynameIwE; .pushsection .data; .type _ZTSSt15messages_bynameIwE,@object; .size _ZTSSt15messages_bynameIwE, 23; _ZTSSt15messages_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTSSt15numpunct_bynameIcE; .pushsection .data; .type _ZTSSt15numpunct_bynameIcE,@object; .size _ZTSSt15numpunct_bynameIcE, 23; _ZTSSt15numpunct_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTSSt15numpunct_bynameIwE; .pushsection .data; .type _ZTSSt15numpunct_bynameIwE,@object; .size _ZTSSt15numpunct_bynameIwE, 23; _ZTSSt15numpunct_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTSSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTSSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTSSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 67; _ZTSSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTSSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTSSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 67; _ZTSSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTSSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTSSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 67; _ZTSSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTSSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTSSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 67; _ZTSSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt15underflow_error; .pushsection .data; .type _ZTSSt15underflow_error,@object; .size _ZTSSt15underflow_error, 20; _ZTSSt15underflow_error: .long 0; .popsection"); __asm__(".globl _ZTSSt16invalid_argument; .pushsection .data; .type _ZTSSt16invalid_argument,@object; .size _ZTSSt16invalid_argument, 21; _ZTSSt16invalid_argument: .long 0; .popsection"); __asm__(".globl _ZTSSt17moneypunct_bynameIcLb0EE; .pushsection .data; .type _ZTSSt17moneypunct_bynameIcLb0EE,@object; .size _ZTSSt17moneypunct_bynameIcLb0EE, 29; _ZTSSt17moneypunct_bynameIcLb0EE: .long 0; .popsection"); __asm__(".globl _ZTSSt17moneypunct_bynameIcLb1EE; .pushsection .data; .type _ZTSSt17moneypunct_bynameIcLb1EE,@object; .size _ZTSSt17moneypunct_bynameIcLb1EE, 29; _ZTSSt17moneypunct_bynameIcLb1EE: .long 0; .popsection"); __asm__(".globl _ZTSSt17moneypunct_bynameIwLb0EE; .pushsection .data; .type _ZTSSt17moneypunct_bynameIwLb0EE,@object; .size _ZTSSt17moneypunct_bynameIwLb0EE, 29; _ZTSSt17moneypunct_bynameIwLb0EE: .long 0; .popsection"); __asm__(".globl _ZTSSt17moneypunct_bynameIwLb1EE; .pushsection .data; .type _ZTSSt17moneypunct_bynameIwLb1EE,@object; .size _ZTSSt17moneypunct_bynameIwLb1EE, 29; _ZTSSt17moneypunct_bynameIwLb1EE: .long 0; .popsection"); __asm__(".globl _ZTSSt18basic_stringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTSSt18basic_stringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTSSt18basic_stringstreamIcSt11char_traitsIcESaIcEE, 49; _ZTSSt18basic_stringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTSSt18basic_stringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTSSt18basic_stringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTSSt18basic_stringstreamIwSt11char_traitsIwESaIwEE, 49; _ZTSSt18basic_stringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt19basic_istringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTSSt19basic_istringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTSSt19basic_istringstreamIcSt11char_traitsIcESaIcEE, 50; _ZTSSt19basic_istringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTSSt19basic_istringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTSSt19basic_istringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTSSt19basic_istringstreamIwSt11char_traitsIwESaIwEE, 50; _ZTSSt19basic_istringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTSSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTSSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE, 50; _ZTSSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTSSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTSSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTSSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE, 50; _ZTSSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt21__ctype_abstract_baseIcE; .pushsection .data; .type _ZTSSt21__ctype_abstract_baseIcE,@object; .size _ZTSSt21__ctype_abstract_baseIcE, 29; _ZTSSt21__ctype_abstract_baseIcE: .long 0; .popsection"); __asm__(".globl _ZTSSt21__ctype_abstract_baseIwE; .pushsection .data; .type _ZTSSt21__ctype_abstract_baseIwE,@object; .size _ZTSSt21__ctype_abstract_baseIwE, 29; _ZTSSt21__ctype_abstract_baseIwE: .long 0; .popsection"); __asm__(".globl _ZTSSt23__codecvt_abstract_baseIcc11__mbstate_tE; .pushsection .data; .type _ZTSSt23__codecvt_abstract_baseIcc11__mbstate_tE,@object; .size _ZTSSt23__codecvt_abstract_baseIcc11__mbstate_tE, 45; _ZTSSt23__codecvt_abstract_baseIcc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTSSt23__codecvt_abstract_baseIwc11__mbstate_tE; .pushsection .data; .type _ZTSSt23__codecvt_abstract_baseIwc11__mbstate_tE,@object; .size _ZTSSt23__codecvt_abstract_baseIwc11__mbstate_tE, 45; _ZTSSt23__codecvt_abstract_baseIwc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTSSt5ctypeIcE; .pushsection .data; .type _ZTSSt5ctypeIcE,@object; .size _ZTSSt5ctypeIcE, 12; _ZTSSt5ctypeIcE: .long 0; .popsection"); __asm__(".globl _ZTSSt5ctypeIwE; .pushsection .data; .type _ZTSSt5ctypeIwE,@object; .size _ZTSSt5ctypeIwE, 12; _ZTSSt5ctypeIwE: .long 0; .popsection"); __asm__(".globl _ZTSSt7codecvtIcc11__mbstate_tE; .pushsection .data; .type _ZTSSt7codecvtIcc11__mbstate_tE,@object; .size _ZTSSt7codecvtIcc11__mbstate_tE, 28; _ZTSSt7codecvtIcc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTSSt7codecvtIwc11__mbstate_tE; .pushsection .data; .type _ZTSSt7codecvtIwc11__mbstate_tE,@object; .size _ZTSSt7codecvtIwc11__mbstate_tE, 28; _ZTSSt7codecvtIwc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTSSt7collateIcE; .pushsection .data; .type _ZTSSt7collateIcE,@object; .size _ZTSSt7collateIcE, 14; _ZTSSt7collateIcE: .long 0; .popsection"); __asm__(".globl _ZTSSt7collateIwE; .pushsection .data; .type _ZTSSt7collateIwE,@object; .size _ZTSSt7collateIwE, 14; _ZTSSt7collateIwE: .long 0; .popsection"); __asm__(".globl _ZTSSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTSSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTSSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 58; _ZTSSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTSSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTSSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 58; _ZTSSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTSSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTSSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 58; _ZTSSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTSSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTSSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 58; _ZTSSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt8bad_cast; .pushsection .data; .type _ZTSSt8bad_cast,@object; .size _ZTSSt8bad_cast, 12; _ZTSSt8bad_cast: .long 0; .popsection"); __asm__(".globl _ZTSSt8ios_base; .pushsection .data; .type _ZTSSt8ios_base,@object; .size _ZTSSt8ios_base, 12; _ZTSSt8ios_base: .long 0; .popsection"); __asm__(".globl _ZTSSt8messagesIcE; .pushsection .data; .type _ZTSSt8messagesIcE,@object; .size _ZTSSt8messagesIcE, 15; _ZTSSt8messagesIcE: .long 0; .popsection"); __asm__(".globl _ZTSSt8messagesIwE; .pushsection .data; .type _ZTSSt8messagesIwE,@object; .size _ZTSSt8messagesIwE, 15; _ZTSSt8messagesIwE: .long 0; .popsection"); __asm__(".globl _ZTSSt8numpunctIcE; .pushsection .data; .type _ZTSSt8numpunctIcE,@object; .size _ZTSSt8numpunctIcE, 15; _ZTSSt8numpunctIcE: .long 0; .popsection"); __asm__(".globl _ZTSSt8numpunctIwE; .pushsection .data; .type _ZTSSt8numpunctIwE,@object; .size _ZTSSt8numpunctIwE, 15; _ZTSSt8numpunctIwE: .long 0; .popsection"); __asm__(".globl _ZTSSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTSSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTSSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 59; _ZTSSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTSSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTSSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 59; _ZTSSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTSSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTSSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 59; _ZTSSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTSSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTSSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 59; _ZTSSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt9bad_alloc; .pushsection .data; .type _ZTSSt9bad_alloc,@object; .size _ZTSSt9bad_alloc, 13; _ZTSSt9bad_alloc: .long 0; .popsection"); __asm__(".globl _ZTSSt9basic_iosIcSt11char_traitsIcEE; .pushsection .data; .type _ZTSSt9basic_iosIcSt11char_traitsIcEE,@object; .size _ZTSSt9basic_iosIcSt11char_traitsIcEE, 34; _ZTSSt9basic_iosIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTSSt9basic_iosIwSt11char_traitsIwEE; .pushsection .data; .type _ZTSSt9basic_iosIwSt11char_traitsIwEE,@object; .size _ZTSSt9basic_iosIwSt11char_traitsIwEE, 34; _ZTSSt9basic_iosIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTSSt9exception; .pushsection .data; .type _ZTSSt9exception,@object; .size _ZTSSt9exception, 13; _ZTSSt9exception: .long 0; .popsection"); __asm__(".globl _ZTSSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTSSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTSSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 60; _ZTSSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTSSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTSSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 60; _ZTSSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTSSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTSSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 60; _ZTSSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTSSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTSSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 60; _ZTSSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTSSt9time_base; .pushsection .data; .type _ZTSSt9time_base,@object; .size _ZTSSt9time_base, 13; _ZTSSt9time_base: .long 0; .popsection"); __asm__(".globl _ZTSSt9type_info; .pushsection .data; .type _ZTSSt9type_info,@object; .size _ZTSSt9type_info, 13; _ZTSSt9type_info: .long 0; .popsection"); __asm__(".globl _ZTSa; .pushsection .data; .type _ZTSa,@object; .size _ZTSa, 2; _ZTSa: .long 0; .popsection"); __asm__(".globl _ZTSb; .pushsection .data; .type _ZTSb,@object; .size _ZTSb, 2; _ZTSb: .long 0; .popsection"); __asm__(".globl _ZTSc; .pushsection .data; .type _ZTSc,@object; .size _ZTSc, 2; _ZTSc: .long 0; .popsection"); __asm__(".globl _ZTSd; .pushsection .data; .type _ZTSd,@object; .size _ZTSd, 2; _ZTSd: .long 0; .popsection"); __asm__(".globl _ZTSe; .pushsection .data; .type _ZTSe,@object; .size _ZTSe, 2; _ZTSe: .long 0; .popsection"); __asm__(".globl _ZTSf; .pushsection .data; .type _ZTSf,@object; .size _ZTSf, 2; _ZTSf: .long 0; .popsection"); __asm__(".globl _ZTSh; .pushsection .data; .type _ZTSh,@object; .size _ZTSh, 2; _ZTSh: .long 0; .popsection"); __asm__(".globl _ZTSi; .pushsection .data; .type _ZTSi,@object; .size _ZTSi, 2; _ZTSi: .long 0; .popsection"); __asm__(".globl _ZTSj; .pushsection .data; .type _ZTSj,@object; .size _ZTSj, 2; _ZTSj: .long 0; .popsection"); __asm__(".globl _ZTSl; .pushsection .data; .type _ZTSl,@object; .size _ZTSl, 2; _ZTSl: .long 0; .popsection"); __asm__(".globl _ZTSm; .pushsection .data; .type _ZTSm,@object; .size _ZTSm, 2; _ZTSm: .long 0; .popsection"); __asm__(".globl _ZTSs; .pushsection .data; .type _ZTSs,@object; .size _ZTSs, 2; _ZTSs: .long 0; .popsection"); __asm__(".globl _ZTSt; .pushsection .data; .type _ZTSt,@object; .size _ZTSt, 2; _ZTSt: .long 0; .popsection"); __asm__(".globl _ZTSv; .pushsection .data; .type _ZTSv,@object; .size _ZTSv, 2; _ZTSv: .long 0; .popsection"); __asm__(".globl _ZTSw; .pushsection .data; .type _ZTSw,@object; .size _ZTSw, 2; _ZTSw: .long 0; .popsection"); __asm__(".globl _ZTSx; .pushsection .data; .type _ZTSx,@object; .size _ZTSx, 2; _ZTSx: .long 0; .popsection"); __asm__(".globl _ZTSy; .pushsection .data; .type _ZTSy,@object; .size _ZTSy, 2; _ZTSy: .long 0; .popsection"); __asm__(".globl _ZTTSd; .pushsection .data; .type _ZTTSd,@object; .size _ZTTSd, 56; _ZTTSd: .long 0; .popsection"); __asm__(".globl _ZTTSi; .pushsection .data; .type _ZTTSi,@object; .size _ZTTSi, 16; _ZTTSi: .long 0; .popsection"); __asm__(".globl _ZTTSo; .pushsection .data; .type _ZTTSo,@object; .size _ZTTSo, 16; _ZTTSo: .long 0; .popsection"); __asm__(".globl _ZTTSt13basic_fstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTTSt13basic_fstreamIcSt11char_traitsIcEE,@object; .size _ZTTSt13basic_fstreamIcSt11char_traitsIcEE, 80; _ZTTSt13basic_fstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTTSt13basic_fstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTTSt13basic_fstreamIwSt11char_traitsIwEE,@object; .size _ZTTSt13basic_fstreamIwSt11char_traitsIwEE, 80; _ZTTSt13basic_fstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTTSt13basic_istreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTTSt13basic_istreamIwSt11char_traitsIwEE,@object; .size _ZTTSt13basic_istreamIwSt11char_traitsIwEE, 16; _ZTTSt13basic_istreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTTSt13basic_ostreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTTSt13basic_ostreamIwSt11char_traitsIwEE,@object; .size _ZTTSt13basic_ostreamIwSt11char_traitsIwEE, 16; _ZTTSt13basic_ostreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTTSt14basic_ifstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTTSt14basic_ifstreamIcSt11char_traitsIcEE,@object; .size _ZTTSt14basic_ifstreamIcSt11char_traitsIcEE, 32; _ZTTSt14basic_ifstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTTSt14basic_ifstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTTSt14basic_ifstreamIwSt11char_traitsIwEE,@object; .size _ZTTSt14basic_ifstreamIwSt11char_traitsIwEE, 32; _ZTTSt14basic_ifstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTTSt14basic_iostreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTTSt14basic_iostreamIwSt11char_traitsIwEE,@object; .size _ZTTSt14basic_iostreamIwSt11char_traitsIwEE, 56; _ZTTSt14basic_iostreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTTSt14basic_ofstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTTSt14basic_ofstreamIcSt11char_traitsIcEE,@object; .size _ZTTSt14basic_ofstreamIcSt11char_traitsIcEE, 32; _ZTTSt14basic_ofstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTTSt14basic_ofstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTTSt14basic_ofstreamIwSt11char_traitsIwEE,@object; .size _ZTTSt14basic_ofstreamIwSt11char_traitsIwEE, 32; _ZTTSt14basic_ofstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTTSt18basic_stringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTTSt18basic_stringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTTSt18basic_stringstreamIcSt11char_traitsIcESaIcEE, 80; _ZTTSt18basic_stringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTTSt18basic_stringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTTSt18basic_stringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTTSt18basic_stringstreamIwSt11char_traitsIwESaIwEE, 80; _ZTTSt18basic_stringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTTSt19basic_istringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTTSt19basic_istringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTTSt19basic_istringstreamIcSt11char_traitsIcESaIcEE, 32; _ZTTSt19basic_istringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTTSt19basic_istringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTTSt19basic_istringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTTSt19basic_istringstreamIwSt11char_traitsIwESaIwEE, 32; _ZTTSt19basic_istringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTTSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTTSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTTSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE, 32; _ZTTSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTTSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTTSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTTSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE, 32; _ZTTSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTVN10__cxxabiv116__enum_type_infoE; .pushsection .data; .type _ZTVN10__cxxabiv116__enum_type_infoE,@object; .size _ZTVN10__cxxabiv116__enum_type_infoE, 112; _ZTVN10__cxxabiv116__enum_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTVN10__cxxabiv117__array_type_infoE; .pushsection .data; .type _ZTVN10__cxxabiv117__array_type_infoE,@object; .size _ZTVN10__cxxabiv117__array_type_infoE, 112; _ZTVN10__cxxabiv117__array_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTVN10__cxxabiv117__class_type_infoE; .pushsection .data; .type _ZTVN10__cxxabiv117__class_type_infoE,@object; .size _ZTVN10__cxxabiv117__class_type_infoE, 160; _ZTVN10__cxxabiv117__class_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTVN10__cxxabiv117__pbase_type_infoE; .pushsection .data; .type _ZTVN10__cxxabiv117__pbase_type_infoE,@object; .size _ZTVN10__cxxabiv117__pbase_type_infoE, 128; _ZTVN10__cxxabiv117__pbase_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTVN10__cxxabiv119__pointer_type_infoE; .pushsection .data; .type _ZTVN10__cxxabiv119__pointer_type_infoE,@object; .size _ZTVN10__cxxabiv119__pointer_type_infoE, 128; _ZTVN10__cxxabiv119__pointer_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTVN10__cxxabiv120__function_type_infoE; .pushsection .data; .type _ZTVN10__cxxabiv120__function_type_infoE,@object; .size _ZTVN10__cxxabiv120__function_type_infoE, 112; _ZTVN10__cxxabiv120__function_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTVN10__cxxabiv120__si_class_type_infoE; .pushsection .data; .type _ZTVN10__cxxabiv120__si_class_type_infoE,@object; .size _ZTVN10__cxxabiv120__si_class_type_infoE, 160; _ZTVN10__cxxabiv120__si_class_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTVN10__cxxabiv121__vmi_class_type_infoE; .pushsection .data; .type _ZTVN10__cxxabiv121__vmi_class_type_infoE,@object; .size _ZTVN10__cxxabiv121__vmi_class_type_infoE, 160; _ZTVN10__cxxabiv121__vmi_class_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTVN10__cxxabiv123__fundamental_type_infoE; .pushsection .data; .type _ZTVN10__cxxabiv123__fundamental_type_infoE,@object; .size _ZTVN10__cxxabiv123__fundamental_type_infoE, 112; _ZTVN10__cxxabiv123__fundamental_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTVN10__cxxabiv129__pointer_to_member_type_infoE; .pushsection .data; .type _ZTVN10__cxxabiv129__pointer_to_member_type_infoE,@object; .size _ZTVN10__cxxabiv129__pointer_to_member_type_infoE, 128; _ZTVN10__cxxabiv129__pointer_to_member_type_infoE: .long 0; .popsection"); __asm__(".globl _ZTVN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTVN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE,@object; .size _ZTVN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE, 240; _ZTVN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTVN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTVN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE,@object; .size _ZTVN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE, 240; _ZTVN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTVNSt6locale5facetE; .pushsection .data; .type _ZTVNSt6locale5facetE,@object; .size _ZTVNSt6locale5facetE, 48; _ZTVNSt6locale5facetE: .long 0; .popsection"); __asm__(".globl _ZTVNSt8ios_base7failureE; .pushsection .data; .type _ZTVNSt8ios_base7failureE,@object; .size _ZTVNSt8ios_base7failureE, 64; _ZTVNSt8ios_base7failureE: .long 0; .popsection"); __asm__(".globl _ZTVSd; .pushsection .data; .type _ZTVSd,@object; .size _ZTVSd, 168; _ZTVSd: .long 0; .popsection"); __asm__(".globl _ZTVSi; .pushsection .data; .type _ZTVSi,@object; .size _ZTVSi, 112; _ZTVSi: .long 0; .popsection"); __asm__(".globl _ZTVSo; .pushsection .data; .type _ZTVSo,@object; .size _ZTVSo, 112; _ZTVSo: .long 0; .popsection"); __asm__(".globl _ZTVSt10bad_typeid; .pushsection .data; .type _ZTVSt10bad_typeid,@object; .size _ZTVSt10bad_typeid, 64; _ZTVSt10bad_typeid: .long 0; .popsection"); __asm__(".globl _ZTVSt10moneypunctIcLb0EE; .pushsection .data; .type _ZTVSt10moneypunctIcLb0EE,@object; .size _ZTVSt10moneypunctIcLb0EE, 192; _ZTVSt10moneypunctIcLb0EE: .long 0; .popsection"); __asm__(".globl _ZTVSt10moneypunctIcLb1EE; .pushsection .data; .type _ZTVSt10moneypunctIcLb1EE,@object; .size _ZTVSt10moneypunctIcLb1EE, 192; _ZTVSt10moneypunctIcLb1EE: .long 0; .popsection"); __asm__(".globl _ZTVSt10moneypunctIwLb0EE; .pushsection .data; .type _ZTVSt10moneypunctIwLb0EE,@object; .size _ZTVSt10moneypunctIwLb0EE, 192; _ZTVSt10moneypunctIwLb0EE: .long 0; .popsection"); __asm__(".globl _ZTVSt10moneypunctIwLb1EE; .pushsection .data; .type _ZTVSt10moneypunctIwLb1EE,@object; .size _ZTVSt10moneypunctIwLb1EE, 192; _ZTVSt10moneypunctIwLb1EE: .long 0; .popsection"); __asm__(".globl _ZTVSt11__timepunctIcE; .pushsection .data; .type _ZTVSt11__timepunctIcE,@object; .size _ZTVSt11__timepunctIcE, 48; _ZTVSt11__timepunctIcE: .long 0; .popsection"); __asm__(".globl _ZTVSt11__timepunctIwE; .pushsection .data; .type _ZTVSt11__timepunctIwE,@object; .size _ZTVSt11__timepunctIwE, 48; _ZTVSt11__timepunctIwE: .long 0; .popsection"); __asm__(".globl _ZTVSt11logic_error; .pushsection .data; .type _ZTVSt11logic_error,@object; .size _ZTVSt11logic_error, 64; _ZTVSt11logic_error: .long 0; .popsection"); __asm__(".globl _ZTVSt11range_error; .pushsection .data; .type _ZTVSt11range_error,@object; .size _ZTVSt11range_error, 64; _ZTVSt11range_error: .long 0; .popsection"); __asm__(".globl _ZTVSt12ctype_bynameIcE; .pushsection .data; .type _ZTVSt12ctype_bynameIcE,@object; .size _ZTVSt12ctype_bynameIcE, 176; _ZTVSt12ctype_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTVSt12ctype_bynameIwE; .pushsection .data; .type _ZTVSt12ctype_bynameIwE,@object; .size _ZTVSt12ctype_bynameIwE, 240; _ZTVSt12ctype_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTVSt12domain_error; .pushsection .data; .type _ZTVSt12domain_error,@object; .size _ZTVSt12domain_error, 64; _ZTVSt12domain_error: .long 0; .popsection"); __asm__(".globl _ZTVSt12length_error; .pushsection .data; .type _ZTVSt12length_error,@object; .size _ZTVSt12length_error, 64; _ZTVSt12length_error: .long 0; .popsection"); __asm__(".globl _ZTVSt12out_of_range; .pushsection .data; .type _ZTVSt12out_of_range,@object; .size _ZTVSt12out_of_range, 64; _ZTVSt12out_of_range: .long 0; .popsection"); __asm__(".globl _ZTVSt13bad_exception; .pushsection .data; .type _ZTVSt13bad_exception,@object; .size _ZTVSt13bad_exception, 64; _ZTVSt13bad_exception: .long 0; .popsection"); __asm__(".globl _ZTVSt13basic_filebufIcSt11char_traitsIcEE; .pushsection .data; .type _ZTVSt13basic_filebufIcSt11char_traitsIcEE,@object; .size _ZTVSt13basic_filebufIcSt11char_traitsIcEE, 240; _ZTVSt13basic_filebufIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTVSt13basic_filebufIwSt11char_traitsIwEE; .pushsection .data; .type _ZTVSt13basic_filebufIwSt11char_traitsIwEE,@object; .size _ZTVSt13basic_filebufIwSt11char_traitsIwEE, 240; _ZTVSt13basic_filebufIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt13basic_fstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTVSt13basic_fstreamIcSt11char_traitsIcEE,@object; .size _ZTVSt13basic_fstreamIcSt11char_traitsIcEE, 168; _ZTVSt13basic_fstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTVSt13basic_fstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTVSt13basic_fstreamIwSt11char_traitsIwEE,@object; .size _ZTVSt13basic_fstreamIwSt11char_traitsIwEE, 168; _ZTVSt13basic_fstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt13basic_istreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTVSt13basic_istreamIwSt11char_traitsIwEE,@object; .size _ZTVSt13basic_istreamIwSt11char_traitsIwEE, 112; _ZTVSt13basic_istreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt13basic_ostreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTVSt13basic_ostreamIwSt11char_traitsIwEE,@object; .size _ZTVSt13basic_ostreamIwSt11char_traitsIwEE, 112; _ZTVSt13basic_ostreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt13runtime_error; .pushsection .data; .type _ZTVSt13runtime_error,@object; .size _ZTVSt13runtime_error, 64; _ZTVSt13runtime_error: .long 0; .popsection"); __asm__(".globl _ZTVSt14basic_ifstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTVSt14basic_ifstreamIcSt11char_traitsIcEE,@object; .size _ZTVSt14basic_ifstreamIcSt11char_traitsIcEE, 112; _ZTVSt14basic_ifstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTVSt14basic_ifstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTVSt14basic_ifstreamIwSt11char_traitsIwEE,@object; .size _ZTVSt14basic_ifstreamIwSt11char_traitsIwEE, 112; _ZTVSt14basic_ifstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt14basic_iostreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTVSt14basic_iostreamIwSt11char_traitsIwEE,@object; .size _ZTVSt14basic_iostreamIwSt11char_traitsIwEE, 168; _ZTVSt14basic_iostreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt14basic_ofstreamIcSt11char_traitsIcEE; .pushsection .data; .type _ZTVSt14basic_ofstreamIcSt11char_traitsIcEE,@object; .size _ZTVSt14basic_ofstreamIcSt11char_traitsIcEE, 112; _ZTVSt14basic_ofstreamIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTVSt14basic_ofstreamIwSt11char_traitsIwEE; .pushsection .data; .type _ZTVSt14basic_ofstreamIwSt11char_traitsIwEE,@object; .size _ZTVSt14basic_ofstreamIwSt11char_traitsIwEE, 112; _ZTVSt14basic_ofstreamIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt14codecvt_bynameIcc11__mbstate_tE; .pushsection .data; .type _ZTVSt14codecvt_bynameIcc11__mbstate_tE,@object; .size _ZTVSt14codecvt_bynameIcc11__mbstate_tE, 160; _ZTVSt14codecvt_bynameIcc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTVSt14codecvt_bynameIwc11__mbstate_tE; .pushsection .data; .type _ZTVSt14codecvt_bynameIwc11__mbstate_tE,@object; .size _ZTVSt14codecvt_bynameIwc11__mbstate_tE, 160; _ZTVSt14codecvt_bynameIwc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTVSt14collate_bynameIcE; .pushsection .data; .type _ZTVSt14collate_bynameIcE,@object; .size _ZTVSt14collate_bynameIcE, 96; _ZTVSt14collate_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTVSt14collate_bynameIwE; .pushsection .data; .type _ZTVSt14collate_bynameIwE,@object; .size _ZTVSt14collate_bynameIwE, 96; _ZTVSt14collate_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTVSt14overflow_error; .pushsection .data; .type _ZTVSt14overflow_error,@object; .size _ZTVSt14overflow_error, 64; _ZTVSt14overflow_error: .long 0; .popsection"); __asm__(".globl _ZTVSt15basic_streambufIcSt11char_traitsIcEE; .pushsection .data; .type _ZTVSt15basic_streambufIcSt11char_traitsIcEE,@object; .size _ZTVSt15basic_streambufIcSt11char_traitsIcEE, 240; _ZTVSt15basic_streambufIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTVSt15basic_streambufIwSt11char_traitsIwEE; .pushsection .data; .type _ZTVSt15basic_streambufIwSt11char_traitsIwEE,@object; .size _ZTVSt15basic_streambufIwSt11char_traitsIwEE, 240; _ZTVSt15basic_streambufIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt15basic_stringbufIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTVSt15basic_stringbufIcSt11char_traitsIcESaIcEE,@object; .size _ZTVSt15basic_stringbufIcSt11char_traitsIcESaIcEE, 240; _ZTVSt15basic_stringbufIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTVSt15basic_stringbufIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTVSt15basic_stringbufIwSt11char_traitsIwESaIwEE,@object; .size _ZTVSt15basic_stringbufIwSt11char_traitsIwESaIwEE, 240; _ZTVSt15basic_stringbufIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt15messages_bynameIcE; .pushsection .data; .type _ZTVSt15messages_bynameIcE,@object; .size _ZTVSt15messages_bynameIcE, 96; _ZTVSt15messages_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTVSt15messages_bynameIwE; .pushsection .data; .type _ZTVSt15messages_bynameIwE,@object; .size _ZTVSt15messages_bynameIwE, 96; _ZTVSt15messages_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTVSt15numpunct_bynameIcE; .pushsection .data; .type _ZTVSt15numpunct_bynameIcE,@object; .size _ZTVSt15numpunct_bynameIcE, 128; _ZTVSt15numpunct_bynameIcE: .long 0; .popsection"); __asm__(".globl _ZTVSt15numpunct_bynameIwE; .pushsection .data; .type _ZTVSt15numpunct_bynameIwE,@object; .size _ZTVSt15numpunct_bynameIwE, 128; _ZTVSt15numpunct_bynameIwE: .long 0; .popsection"); __asm__(".globl _ZTVSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTVSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTVSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 144; _ZTVSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTVSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTVSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 144; _ZTVSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTVSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTVSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 64; _ZTVSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTVSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTVSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 64; _ZTVSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt15underflow_error; .pushsection .data; .type _ZTVSt15underflow_error,@object; .size _ZTVSt15underflow_error, 64; _ZTVSt15underflow_error: .long 0; .popsection"); __asm__(".globl _ZTVSt16invalid_argument; .pushsection .data; .type _ZTVSt16invalid_argument,@object; .size _ZTVSt16invalid_argument, 64; _ZTVSt16invalid_argument: .long 0; .popsection"); __asm__(".globl _ZTVSt17moneypunct_bynameIcLb0EE; .pushsection .data; .type _ZTVSt17moneypunct_bynameIcLb0EE,@object; .size _ZTVSt17moneypunct_bynameIcLb0EE, 192; _ZTVSt17moneypunct_bynameIcLb0EE: .long 0; .popsection"); __asm__(".globl _ZTVSt17moneypunct_bynameIcLb1EE; .pushsection .data; .type _ZTVSt17moneypunct_bynameIcLb1EE,@object; .size _ZTVSt17moneypunct_bynameIcLb1EE, 192; _ZTVSt17moneypunct_bynameIcLb1EE: .long 0; .popsection"); __asm__(".globl _ZTVSt17moneypunct_bynameIwLb0EE; .pushsection .data; .type _ZTVSt17moneypunct_bynameIwLb0EE,@object; .size _ZTVSt17moneypunct_bynameIwLb0EE, 192; _ZTVSt17moneypunct_bynameIwLb0EE: .long 0; .popsection"); __asm__(".globl _ZTVSt17moneypunct_bynameIwLb1EE; .pushsection .data; .type _ZTVSt17moneypunct_bynameIwLb1EE,@object; .size _ZTVSt17moneypunct_bynameIwLb1EE, 192; _ZTVSt17moneypunct_bynameIwLb1EE: .long 0; .popsection"); __asm__(".globl _ZTVSt18basic_stringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTVSt18basic_stringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTVSt18basic_stringstreamIcSt11char_traitsIcESaIcEE, 168; _ZTVSt18basic_stringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTVSt18basic_stringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTVSt18basic_stringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTVSt18basic_stringstreamIwSt11char_traitsIwESaIwEE, 168; _ZTVSt18basic_stringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt19basic_istringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTVSt19basic_istringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTVSt19basic_istringstreamIcSt11char_traitsIcESaIcEE, 112; _ZTVSt19basic_istringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTVSt19basic_istringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTVSt19basic_istringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTVSt19basic_istringstreamIwSt11char_traitsIwESaIwEE, 112; _ZTVSt19basic_istringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE; .pushsection .data; .type _ZTVSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE,@object; .size _ZTVSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE, 112; _ZTVSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE: .long 0; .popsection"); __asm__(".globl _ZTVSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE; .pushsection .data; .type _ZTVSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE,@object; .size _ZTVSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE, 112; _ZTVSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt21__ctype_abstract_baseIcE; .pushsection .data; .type _ZTVSt21__ctype_abstract_baseIcE,@object; .size _ZTVSt21__ctype_abstract_baseIcE, 240; _ZTVSt21__ctype_abstract_baseIcE: .long 0; .popsection"); __asm__(".globl _ZTVSt21__ctype_abstract_baseIwE; .pushsection .data; .type _ZTVSt21__ctype_abstract_baseIwE,@object; .size _ZTVSt21__ctype_abstract_baseIwE, 240; _ZTVSt21__ctype_abstract_baseIwE: .long 0; .popsection"); __asm__(".globl _ZTVSt23__codecvt_abstract_baseIcc11__mbstate_tE; .pushsection .data; .type _ZTVSt23__codecvt_abstract_baseIcc11__mbstate_tE,@object; .size _ZTVSt23__codecvt_abstract_baseIcc11__mbstate_tE, 160; _ZTVSt23__codecvt_abstract_baseIcc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTVSt23__codecvt_abstract_baseIwc11__mbstate_tE; .pushsection .data; .type _ZTVSt23__codecvt_abstract_baseIwc11__mbstate_tE,@object; .size _ZTVSt23__codecvt_abstract_baseIwc11__mbstate_tE, 160; _ZTVSt23__codecvt_abstract_baseIwc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTVSt5ctypeIcE; .pushsection .data; .type _ZTVSt5ctypeIcE,@object; .size _ZTVSt5ctypeIcE, 176; _ZTVSt5ctypeIcE: .long 0; .popsection"); __asm__(".globl _ZTVSt5ctypeIwE; .pushsection .data; .type _ZTVSt5ctypeIwE,@object; .size _ZTVSt5ctypeIwE, 240; _ZTVSt5ctypeIwE: .long 0; .popsection"); __asm__(".globl _ZTVSt7codecvtIcc11__mbstate_tE; .pushsection .data; .type _ZTVSt7codecvtIcc11__mbstate_tE,@object; .size _ZTVSt7codecvtIcc11__mbstate_tE, 160; _ZTVSt7codecvtIcc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTVSt7codecvtIwc11__mbstate_tE; .pushsection .data; .type _ZTVSt7codecvtIwc11__mbstate_tE,@object; .size _ZTVSt7codecvtIwc11__mbstate_tE, 160; _ZTVSt7codecvtIwc11__mbstate_tE: .long 0; .popsection"); __asm__(".globl _ZTVSt7collateIcE; .pushsection .data; .type _ZTVSt7collateIcE,@object; .size _ZTVSt7collateIcE, 96; _ZTVSt7collateIcE: .long 0; .popsection"); __asm__(".globl _ZTVSt7collateIwE; .pushsection .data; .type _ZTVSt7collateIwE,@object; .size _ZTVSt7collateIwE, 96; _ZTVSt7collateIwE: .long 0; .popsection"); __asm__(".globl _ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 224; _ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 224; _ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 176; _ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 176; _ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt8bad_cast; .pushsection .data; .type _ZTVSt8bad_cast,@object; .size _ZTVSt8bad_cast, 64; _ZTVSt8bad_cast: .long 0; .popsection"); __asm__(".globl _ZTVSt8ios_base; .pushsection .data; .type _ZTVSt8ios_base,@object; .size _ZTVSt8ios_base, 48; _ZTVSt8ios_base: .long 0; .popsection"); __asm__(".globl _ZTVSt8messagesIcE; .pushsection .data; .type _ZTVSt8messagesIcE,@object; .size _ZTVSt8messagesIcE, 96; _ZTVSt8messagesIcE: .long 0; .popsection"); __asm__(".globl _ZTVSt8messagesIwE; .pushsection .data; .type _ZTVSt8messagesIwE,@object; .size _ZTVSt8messagesIwE, 96; _ZTVSt8messagesIwE: .long 0; .popsection"); __asm__(".globl _ZTVSt8numpunctIcE; .pushsection .data; .type _ZTVSt8numpunctIcE,@object; .size _ZTVSt8numpunctIcE, 128; _ZTVSt8numpunctIcE: .long 0; .popsection"); __asm__(".globl _ZTVSt8numpunctIwE; .pushsection .data; .type _ZTVSt8numpunctIwE,@object; .size _ZTVSt8numpunctIwE, 128; _ZTVSt8numpunctIwE: .long 0; .popsection"); __asm__(".globl _ZTVSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTVSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTVSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 144; _ZTVSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTVSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTVSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 144; _ZTVSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTVSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTVSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 64; _ZTVSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTVSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTVSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 64; _ZTVSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt9bad_alloc; .pushsection .data; .type _ZTVSt9bad_alloc,@object; .size _ZTVSt9bad_alloc, 64; _ZTVSt9bad_alloc: .long 0; .popsection"); __asm__(".globl _ZTVSt9basic_iosIcSt11char_traitsIcEE; .pushsection .data; .type _ZTVSt9basic_iosIcSt11char_traitsIcEE,@object; .size _ZTVSt9basic_iosIcSt11char_traitsIcEE, 48; _ZTVSt9basic_iosIcSt11char_traitsIcEE: .long 0; .popsection"); __asm__(".globl _ZTVSt9basic_iosIwSt11char_traitsIwEE; .pushsection .data; .type _ZTVSt9basic_iosIwSt11char_traitsIwEE,@object; .size _ZTVSt9basic_iosIwSt11char_traitsIwEE, 48; _ZTVSt9basic_iosIwSt11char_traitsIwEE: .long 0; .popsection"); __asm__(".globl _ZTVSt9exception; .pushsection .data; .type _ZTVSt9exception,@object; .size _ZTVSt9exception, 64; _ZTVSt9exception: .long 0; .popsection"); __asm__(".globl _ZTVSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTVSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTVSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE, 80; _ZTVSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTVSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTVSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE, 80; _ZTVSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE; .pushsection .data; .type _ZTVSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE,@object; .size _ZTVSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE, 80; _ZTVSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE; .pushsection .data; .type _ZTVSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE,@object; .size _ZTVSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE, 80; _ZTVSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: .long 0; .popsection"); __asm__(".globl _ZTVSt9type_info; .pushsection .data; .type _ZTVSt9type_info,@object; .size _ZTVSt9type_info, 112; _ZTVSt9type_info: .long 0; .popsection");
the_stack_data/1013000.c
#include <stdio.h> double cumsum(int n, double arr[]) { /*Compute the cumulative sum of the provided array.*/ double acc = 0.0; for (int i = 0; i < n; i++) { acc += arr[i]; } return acc; }
the_stack_data/15763631.c
// Note that some Linux kernels will indicate an si_addr of 0 when this test // case executes, which may result in mis-classification #include <string.h> #include <stdlib.h> #include <sys/mman.h> typedef void(*voidfn)(void); int main(int argc, char *argv[]) { char *a = valloc(64); mprotect(a, 64, PROT_WRITE); voidfn bad_function = (voidfn)a; memset(a, 0xff, 64); bad_function(); return 0; }
the_stack_data/22899.c
#include <stdio.h> #include <string.h> #include <stdlib.h> #define SIZE 50 typedef struct { char nome[SIZE]; int idade; int nota; } Aluno; int main() { Aluno *turma; // Turma-aponta-aluno int qtdAlunos; printf("Digite a quantidade de Alunos: "); scanf("%d", &qtdAlunos); turma = (Aluno *) calloc(qtdAlunos, sizeof(Aluno)); if (turma == NULL) { printf("Failed to allocate memory"); exit(1); } for (int i = 0; i < qtdAlunos; i++) { printf("nome do %do aluno: ", i+1); scanf(" %49[^\n]", turma[i].nome); printf("nota do %do aluno: ", i+1); scanf("%d", &turma[i].nota); } for (int i = 0 ; i<qtdAlunos ; i++) { printf("%9d\n", i+1); printf("%s\n", turma[i].nome); printf("%d\n", turma[i].nota); } return 0; }
the_stack_data/37637848.c
/* * * Copyright (c) 2005-2021 Imperas Software Ltd., www.imperas.com * * The contents of this file are provided under the Software License * Agreement that you accepted before downloading this file. * * This source forms part of the Software and can be used for educational, * training, and demonstration purposes but cannot be used for derivative * works except in cases where the derivative works require OVP technology * to run. * * For open source models released under licenses that you can use for * derivative works, please visit www.OVPworld.org or www.imperas.com * for the location of the open source models. * */ #include <stdio.h> #include <stdlib.h> int main(int argc, char **argv) { printf("\nHello World\n"); return 0; }
the_stack_data/233347.c
/* * Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd. * * SPDX-License-Identifier: Apache-2.0 */ #ifdef CONFIG_ESP_USE_MBEDTLS #include <mbedtls/platform.h> #include <mbedtls/memory_buffer_alloc.h> #define CRYPTO_HEAP_SIZE 16384 static unsigned char memory_buf[CRYPTO_HEAP_SIZE]; /* * Initialize Mbed TLS to be able to use the local heap. */ void os_heap_init(void) { mbedtls_memory_buffer_alloc_init(memory_buf, sizeof(memory_buf)); } #else void os_heap_init(void) { } #endif
the_stack_data/156394015.c
// File: 7.3.c // Author: iBug #include <stdio.h> int isPrime(int n){ int i; for (i = 2; i*i <= n; i ++){ if (n % i == 0) return 0; } return n; } int main(){ int n; printf("Please give a number: "); scanf("%d", &n); if (isPrime(n)){ printf("%d is a prime number.\n", n); } else{ printf("%d is not a prime number.\n", n); } return 0; }
the_stack_data/55397.c
void p(); int BLAST_NONDET; int a, b, c; int x0, x1, x2, x3, x4, x5,x6, x7, x8, x9; int main() { a = 0; b = 0; c = 0; x0 = 0; x1 = 0; x2 = 0; x3 = 0; x4 = 0; x5 = 0; x6 = 0; x7 = 0; x8 = 0; x9 = 0; if (BLAST_NONDET) a = 1; else a = 2; if (BLAST_NONDET) b = 1; else b = 2; p(); _ABORT(c == 416 || a == 3 || b == 3); return 0; } void p() { if (BLAST_NONDET) c=c+1; else c=c+2; if (BLAST_NONDET) c=c+4; else c=c+8; if (BLAST_NONDET) c=c+16; else c=c+32; if (BLAST_NONDET) c=c+64; else c=c+128; if (BLAST_NONDET) c=c+256; else c=c+512; }
the_stack_data/987707.c
#include <stdio.h> int main() { double n1,n2,n3,n4, media, exame; n1 = n2= n3 = n4 = media = 0; scanf("%lf %lf %lf %lf", &n1, &n2, &n3, &n4); media = ((n1*2) + (n2*3) + (n3*4) + (n4))/10; if(media >= 5.0 && media < 6.0) { scanf("%lf", &exame); printf("Media: %0.1lf\n", media); printf("Aluno em exame.\n"); printf("Nota do exame: %0.1lf\n", exame); media = (media+exame)/2; if(media<5.0) { printf("Aluno reprovado.\n"); } else { printf("Aluno aprovado.\n"); } printf("Media final: %0.1lf\n", media); } else { if(media<5.0) { printf("Media: %0.1lf\n", media); printf("Aluno reprovado.\n"); } else { printf("Media: %0.1lf\n", media); printf("Aluno aprovado.\n"); } } }
the_stack_data/26699941.c
#include <stdio.h> #include <string.h> //add by gnh static char *str_cpy(char *dst, const char *src) { char *d = dst; while ((*dst++ = *src++) != '\0') ; return d; } static char *str_find_right(const char *str, const char *last, const char *substr, int sublen) { if (str > last || sublen <= 0) return NULL; sublen--; const char *sub = substr + sublen; const char *bsub = NULL , *blast = NULL; for (; *last && (last - str) >= sublen; last--) { if (last[-sublen] == sub[-sublen]) { for ( bsub = sub, blast = last; bsub > substr && *bsub == *blast; bsub--, blast--) /*space line*/; if (sub - bsub == sublen) return (char *)blast; } } return NULL; } char *str_del_all(char *str, const char *substr) { int sublen = strlen(substr); char *pos = NULL, *s = str; char *last = str + strlen(str) - 1; while ((pos = str_find_right(s, last, substr, sublen))) { str_cpy(pos, pos + sublen); last -= sublen; } return str; } int main(int argc, char **argv) { char buf[] = "hello </s>world </s> ni hao </s>"; printf("%s\n", str_del_all(buf, "</s>")); char buf2[] = "1212123456"; printf("%s\n", str_del_all(buf2, "12")); char buf3[] = "1a31231b3"; printf("%s\n", str_del_all(buf3, "1b3")); return 0; }
the_stack_data/849572.c
#include<stdio.h> void main() { int n, count = 0; printf("\nEnter the number: "); scanf("%d",&n); while(n!=0) { n/=10; ++count; } printf("\nThe no of digit is : %d", count); }
the_stack_data/176704461.c
#include<stdio.h> #include<stdlib.h> #include<stdbool.h> #include<math.h> #include<time.h> #define N 100 #define K 30 #define LAMBDA 1 #define MU 0.05 struct bikes_struct { float time; int queue; struct bikes_struct *prev; struct bikes_struct *next; }; struct bikes_struct *head = NULL; struct bikes_struct *tail = NULL; struct bikes_struct* create_list(float time, int queue) { struct bikes_struct *ptr = (struct bikes_struct*)malloc(sizeof(struct bikes_struct)); if(NULL == ptr) { printf("\n Node creation failed \n"); return NULL; } ptr->time = time; ptr->queue = queue; ptr->next = NULL; ptr->prev = NULL; head = tail = ptr; return ptr; } struct bikes_struct* add_to_list(float time, int queue) { struct bikes_struct *aux1; struct bikes_struct *aux2; if(NULL == head) { return (create_list(time, queue)); } struct bikes_struct *ptr = (struct bikes_struct*)malloc(sizeof(struct bikes_struct)); if(NULL == ptr) { printf("\n Node creation failed \n"); return NULL; } ptr->time = time; ptr->queue = queue; ptr->next = NULL; ptr->prev = NULL; aux1 = head; if(time > aux1->time) { head = ptr; ptr->next = aux1; aux1->prev = ptr; } else { aux2 = aux1->next; while(aux2 != NULL && time < aux2->time) { aux1 = aux2; aux2 = aux1->next; } aux1->next = ptr; ptr->next = aux2; ptr->prev = aux1; if(aux2 == NULL) tail = ptr; else aux2->prev = ptr; } return ptr; } int delete_end_list() { struct test_struct *del = tail; if(del==NULL) return -1; if(tail->prev != NULL) tail = tail->prev; else { tail = NULL; head = NULL; free(del); del = NULL; return 0; } tail->next = NULL; free(del); del = NULL; return 0; } void print_list(void) { struct bikes_struct *ptr = head; printf("\n -------Printing list Start------- \n"); while(ptr != NULL) { printf("\n [%d] [%f] \n",ptr->queue, ptr->time); ptr = ptr->next; } printf("\n -------Printing list End------- \n"); return; } int sum_list(void) { int sum = 0; struct bikes_struct *ptr = head; while(ptr != NULL) { sum++; ptr = ptr->next; } return sum; } float TimeStation(float lambda) { float u = (float)((long double)rand()/(RAND_MAX+1)); if(lambda > 0) return -1/lambda*log(1-u); return -1; } float TimeVirtualQueue(float mu) { float u = (float)((long double)rand()/(RAND_MAX+1)); if(mu > 0) return -1/mu*log(1-u); return -1; // return 1/mu; } int f_choice(int vec[], int n) { int i = randN(n), j = randN(n); if(vec[i]<vec[j]) return i; else return j; } int randN(int n) { return rand()%n; } int randN_free(int vec[], int n, int k) { int r = randN(n); while(vec[r] == k) { r = randN(n); } return r; } void set_int_vec(int vec[], int n) { int i; for(i=0;i<n;i++) { vec[i] = 0; } } void set_float_vec(float vec[], int n) { int i; for(i=0;i<n;i++) { vec[i] = 0; } } int sum_int_vec(int vec[], int n) { if(n==1) return vec[0]; return sum_int_vec(vec, n-1)+vec[n-1]; } void print_hist(int bs[], int n, int k) { int i, hist[k+1]; set_int_vec(hist, k+1); for(i=0;i<n;i++) { hist[bs[i]]++; } printf("\nHistogram:\n"); for(i=0;i<k+1;i++) { printf("hist[%2d] = %.2f\n", i, (float)hist[i]/n); } } int initialise_system(int n, int m, int k, float lambda, float mu, int bs[], float ts[]) { int i; if(m > n*k) { printf("WARNING: Number of bikes bigger than number of places\n"); } while(head != NULL) delete_end_list(); for(i=0;i<m;i++) add_to_list(TimeVirtualQueue(mu), randN(n)); set_int_vec(bs, n); for(i=0;i<n;i++) ts[i]=TimeStation(lambda); return 0; } float next_step(int n, int m, int k, float lambda, float mu, float curr_time, int bs[], float ts[]) { int i, ind = -1; float t_min; if(tail != NULL) t_min = tail->time; else t_min = ts[0]+0.1; for(i=0;i<N;i++) { if(ts[i] < t_min) { t_min = ts[i]; ind = i; } } if(ind == -1) { tail->queue = f_choice(bs, n); if(bs[tail->queue]<k) bs[tail->queue]++; else { add_to_list(TimeVirtualQueue(mu)+curr_time, f_choice(bs, n)); } delete_end_list(); } else { if(bs[ind]>0) { bs[ind]--; add_to_list(TimeVirtualQueue(mu)+curr_time, f_choice(bs, n)); } ts[ind] = curr_time + TimeStation(lambda); } return t_min; } void Nvq_yk(long int vq_yk[], int stations[], int n) { int i, sum[n]; struct bikes_struct *ptr = head; for(i=0;i<n;i++) { sum[i]=0; } while(ptr!=NULL) { sum[ptr->queue]++; ptr = ptr->next; } for(i=0;i<n;i++) { vq_yk[stations[i]] += sum[i]; } } int Ny_k (int vec[], int n , int k) { int i, sum=0; for(i=0;i<n;i++) { if(vec[i]==k) sum++; } return sum; } int run_detailed_system(int n, int m, int k, float lambda, float mu, int steps, int samples) { int i, j, bike_station[n]; float aux, curr_time=0, time_station[n], step_time; int hist_sample_yk[k+1][n+1]; long int hist_sample_vq_yk[k+1]; float avg_yk[k+1], dev_yk[k+1]; float avg_sbikes=0, dev_sbikes=0; printf("\nN = %d\nM = %d\nK = %d\nLambda = %.2f\nMu = %.2f\nSteps = %.0e\nSample = %.0e\n\n", n, m, k, lambda, mu, (double)steps, (double)samples); initialise_system(n, m, k, lambda, mu, bike_station, time_station); for(i=0;i<k+1;i++) for(j=0;j<n+1;j++) hist_sample_yk[i][j]=0; for(i=0;i<k+1;i++) hist_sample_vq_yk[i]=0; for(i=0;i<steps;i++) curr_time = next_step(n, m, k, lambda, mu, curr_time, bike_station, time_station); step_time = curr_time; printf("\nTime before sample: %.f\n", step_time); for(i=0;i<samples;i++) { curr_time = next_step(n, m, k, lambda, mu, curr_time, bike_station, time_station); for(j=0;j<k+1;j++) hist_sample_yk[j][Ny_k(bike_station, n, j)]++; Nvq_yk(hist_sample_vq_yk, bike_station, n); } for(i=0;i<k+1;i++) { avg_yk[i] = 0; for(j=1;j<n+1;j++) { avg_yk[i] += j*hist_sample_yk[i][j]; } avg_yk[i] = avg_yk[i]/samples/n; } for(i=0;i<k+1;i++) { dev_yk[i] = 0; for(j=0;j<n+1;j++) { dev_yk[i] += (float)hist_sample_yk[i][j]*(n*avg_yk[i]-j)*(n*avg_yk[i]-j); } dev_yk[i] = sqrt(dev_yk[i]/samples)/n; } for(i=1;i<k+1;i++) avg_sbikes += i*avg_yk[i]; printf("Time after sample: %.f\n", curr_time); printf("Average step time: %.2e\n", (double)(curr_time-step_time)/samples); printf("Average proportion of problematic stations: %.4f(%.4f)\n", avg_yk[0]+avg_yk[k], sqrt(dev_yk[0]*dev_yk[0]+dev_yk[k]*dev_yk[k])); printf("Average number of bikes per station: %.2f\n", avg_sbikes); printf("Average number of bikes per virtual queue: %.2f\n", (float)m/n-avg_sbikes); /* printf("\nHistogram of the Ny_k samples\n"); printf(" "); for(i=0;i<14;i++) printf(" %2d", i); for(i=0;i<k+1;i++) { printf("\n #Ny[%2d]", i); for(j=0;j<n&&j<14;j++) printf(" %.2f", (float)hist_sample_yk[i][j]/samples); } */ FILE* data = fopen("VelibDelayChoiceAfter.txt", "w"); fprintf(data, "STEPS %e\n",(double)steps+samples); fprintf(data, "N %d\n",n); fprintf(data, "M %d\n",m); fprintf(data, "C %d\n",k); fprintf(data, "Lambda %f\n",lambda); fprintf(data, "Mu %f\n",mu); fprintf(data, "\nHistogram of the Ny_k samples\n"); fprintf(data, " -"); for(i=0;i<n+1;i++) fprintf(data, " %d", i); for(i=0;i<k+1;i++) { fprintf(data, "\n %y[%d]", i); for(j=0;j<n+1;j++) fprintf(data, " %f", (float)hist_sample_yk[i][j]/samples); } fprintf(data, "\n\nAverage V_k\n"); for(i=0;i<k+1;i++) { fprintf(data, "%d %f\n", i, (float)hist_sample_vq_yk[i]/samples/n); } fprintf(data, "\n\nAverage y_k\n"); for(i=0;i<k+1;i++) { fprintf(data, "%d %f\n", i, (float)avg_yk[i]); } fclose(data); return 0; } int run_system(int n, int m, int k, float lambda, float mu, int steps, int samples) { int i, j, bike_station[n]; float aux, curr_time = 0, time_station[n], step_time; int hist_sample_yk[k+1][n+1]; double avg_yk[k+1], dev_yk[k+1]; float avg_sbikes=0; initialise_system(n, m, k, lambda, mu, bike_station, time_station); for(i=0;i<k+1;i++) for(j=0;j<n+1;j++) hist_sample_yk[i][j]=0; for(i=0;i<steps;i++) { curr_time = next_step(n, m, k, lambda, mu, curr_time, bike_station, time_station); } step_time = curr_time; for(i=0;i<samples;i++) { curr_time = next_step(n, m, k, lambda, mu, curr_time, bike_station, time_station); for(j=0;j<k+1;j++) hist_sample_yk [j][Ny_k(bike_station, n, j)]++; } for(i=0;i<k+1;i++) { avg_yk[i] = 0; for(j=1;j<n+1;j++) { avg_yk[i] += (double)j*hist_sample_yk[i][j]; } avg_yk[i] = avg_yk[i]/samples/n; } for(i=0;i<k+1;i++) { dev_yk[i] = 0; for(j=0;j<n+1;j++) { dev_yk[i] += (double)hist_sample_yk[i][j]*(n*avg_yk[i]-j)*(n*avg_yk[i]-j); } dev_yk[i] = sqrt(dev_yk[i]/samples)/n; } for(i=1;i<k+1;i++) avg_sbikes += i*avg_yk[i]; printf("%d %.1e %2.1f %.2f %.4f(%.4f) ", n, (double)steps+(double)samples, (float)lambda/mu, (float)m/n, avg_yk[0]+avg_yk[k], sqrt(dev_yk[0]*dev_yk[0]+dev_yk[k]*dev_yk[k])); printf("%.2f %.2f\n",avg_sbikes, (float)m/n-avg_sbikes); FILE* data = fopen("VelibDelayChoiceAfterNotDetailed.txt", "a"); fprintf(data, "%e %d %d %f %f %e %e ", (double)steps+(double)samples, n, k, (float)lambda/mu, (float)m/n, avg_yk[0]+avg_yk[k], sqrt(dev_yk[0]*dev_yk[0]+dev_yk[k]*dev_yk[k])); fprintf(data, "%f %f\n",avg_sbikes, (float)m/n-avg_sbikes); fclose(data); return 0; } int main(void) { int k; float mu, s; srand(time(NULL)); // run_detailed_system(N, M, K, LAMBDA, MU, STEPS, SAMPLES); // run_detailed_system(N, N*15, K, LAMBDA, MU, 1000*N, 1000000); //INT_MAX = 2147483647 FILE* data = fopen("VelibDelayChoiceAfterNotDetailed.txt", "w"); fprintf(data, "STEPS N K lambda/mu s y0+yK var(y0,yK) StationBikes StreetBikes\n"); fclose(data); for(s=0; s<51; s++) run_system(N, N*s, K, LAMBDA, MU, 500000, 1000000); getchar(); return 0; }
the_stack_data/92197.c
// This program tests the knowledge of the user by taking a small quiz where the person // gets to choose from three distinct and interesting topics and gets 5 questions without // any time limitations. // It is a really fun way of getting your knowledge tested and even acquiring knowledge! // This program was made by team 'meta_Coders'. // Team members are as follows ( in ascending order of their IDs ) :- // AKASH PARIDA ~~~ ID B420004 // PRABHU PREETAM DAS ~~~ ID B420036 // VANSH AGGARWAL ~~~ ID B420059 // Preprocessor directives #include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> // Function prototypes void scoreBoard(void); void startGame(void); void gameHelp(void); void swap(int *, int *); void randomize(int[]); void qSetEntertn(int[]); void qSetScnTech(int[]); void qSetCrntAfrs(int[]); void endGame(int); // Physically grouped variables definitions using 'struct' struct play { char name[20]; int score; } p; // lets the program access the various variables using the named pointer ('p' in this case) anywhere in the program // Function main begins program execution int main(void) { unsigned int action = 0; // variable declaration // Instructions and the MENU printf("%s", "\n\n\t\tACTION MENU\n"); printf("%s", "\t\t-----------\n"); printf("%s", ">> Press \'1\' to START the game.\n"); printf("%s", ">> Press \'2\' to see SCOREBOARD of the game.\n"); printf("%s", ">> Press \'3\' to see the game HELP.\n"); printf("%s", "\n\nI STRONGLY RECOMMEND TO GO FOR THE HELP OPTION FIRST SO THAT\n"); printf("%s", "YOU ARE THOROUGH WITH THE GAME RULES AND INSTRUCTIONS.\n"); printf("%s", "\nEnter your choice : "); // prompt scanf("%u", &action); // read the input from the user // Carry out the respective actions using the 'switch' selection statement switch (action) { case 1: startGame(); // respective function call break; case 2: scoreBoard(); // respective function call break; case 3: gameHelp(); // respective function call break; default: exit(1); // exit the program break; } // end switch } // end function main // User-defined functions definitions void startGame() { // Local declarations int choice; int sure; int arr[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; main: // topic choices printf("%s", "\n\nBelow are the topics to choose from.\n"); printf("%s", "# 1 ~~ Science and Technology\n"); printf("%s", "# 2 ~~ Entertainment, Movies and Cinema\n"); printf("%s", "# 3 ~~ Current Affairs\n"); printf("%s", "\nEnter the number corresponding to the topic you want the quiz on : "); // prompt scanf("%d", &choice); // read the input from the user if (0 < choice < 4) { printf("\nAre you sure?\nClick \'1\' to proceed, otherwise hit \'0\' : "); // prompt } // end if else { printf("Wrong choice! FILL AGAIN."); goto main; } // end else scanf("%d", &sure); // read the input from the user if (sure == 1) { printf("%s", "Now you have to write only your FIRST NAME FOLLOWED IMMEDIATELY BY THE FIRST LETTER OF YOUR SURNAME (WITHOUT ANY SPACES).\n"); printf("%s", "\n\nPlease, enter your name ( max 20 charaters ) : "); // prompt scanf("%s", p.name); // read the input from the user printf("\n............LOADING...........\n\n"); randomize(arr); // function call if (choice == 1) qSetScnTech(arr); // respective function call else if (choice == 2) qSetEntertn(arr); // respective function call else if (choice == 3) qSetCrntAfrs(arr); // respective function call } // end if else goto main; } // end function startGame void qSetEntertn(int arr[]) { // Local declarations int count = 0; int ans; for (int i = 0; i < 5; i++) { int r = arr[i]; printf("\n\n%d.) ", i + 1); switch (r) { case 1: printf("1.Finish this action movie title, \"Avengers: Age of _____\".\n\t1. Warriors\n\t2. Revolution\n\t3. Evolution\n\t4. Ultron"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 4) count++; // increment of the correct answers' count, if correct, by 1 else count += 0; // increment of the count by 0, if incorrect break; case 2: printf("Where was the band Can founded?\n\t1. cologne\n\t2. Berlin\n\t3. Munich\n\t4. Frankfurt"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 1) count++; else count += 0; break; case 3: printf("Which \"Friend\" asks the question \"How you doin'?\"\n\t1. Joey\n\t2. Chandler\n\t3. Monica\n\t4. Ross"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 1) count++; else count += 0; break; case 4: printf("For which movie did Leonardo Decaprio won the Oscar? \n\t1. Titanic\n\t2. The Revenent\n\t3. Blood Diamond\n\t4. The Aviator"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 2) count++; else count += 0; break; case 5: printf("Who sang lead vocals for Men At Work? \n\t1. Jerry Speiser\n\t2. Gerg Ham\n\t3. Colin Hay\n\t4. Ron Strykert"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 3) count++; else count += 0; break; case 6: printf("The director of 2013's \"Out Of The Furnace\" also directed which Oscar winning film? \n\t1. Hostiles\n\t2. Crazy Heart\n\t3. Black Mass\n\t4. Antlers"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 1) count++; else count += 0; break; case 7: printf("Which of the following hasn't played the role of spider man in movies? \n\t1. Tom Holland\n\t2. Dark Bell\n\t3. Neil Pattrick Harris\n\t4. Tom Welling"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 4) count++; else count += 0; break; case 8: printf("Which name is played most number of times by Amitabh Bachchan? \n\t1. Ravi\n\t2. Vijay\n\t3. Ajay\n\t4. Kishan"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 2) count++; else count += 0; break; case 9: printf("Where was Rajnikanth born? \n\t1. Tamilnadu\n\t2. Andhra Pradesh\n\t3. Kerla\n\t4. Karnataka"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 4) count++; else count += 0; break; case 10: printf("Who of the following was not a judge in Indian Idol session 1? \n\t1. Sonu Nigam\n\t2. Farha Khan\n\t3. Annu Mallik\n\t4. Vishal Dadlani"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 4) count++; else count += 0; break; } // end switch } // end for endGame(count); // function call } // end function qSetEntertn void qSetScnTech(int arr[]) { // Local declarations int count = 0; int ans; for (int i = 0; i < 5; i++) { int r = arr[i]; printf("\n%d.) ", i + 1); switch (r) { case 1: printf("Study of plants is called _____ \n\t1. Oncology\n\t2. Biology\n\t3. Pomology\n\t4. Botany"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 4) count++; else count += 0; break; case 2: printf("How many joints does an ant have in each leg? \n\t1. One\n\t2. Eight\n\t3. Three\n\t4. Four"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 3) count++; else count += 0; break; case 3: printf("What is the formula of sulphuric acid? \n\t1. H2SO3\n\t2. H2SO4\n\t3. H2SO2\n\t4. H2S2O6"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 2) count++; else count += 0; break; case 4: printf("If you throw a ball in the air, what curve does it trace out? \n\t1. Circle\n\t2. Parabola\n\t3. Elipse\n\t4. Hyperbola"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 2) count++; else count += 0; break; case 5: printf("What kind of Amino Acids are reqired specially for bodybuilding? \n\t1. Single Chain\n\t2. Branched Chain\n\t3. Aromatic\n\t4. Sulphur Containing"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 2) count++; else count += 0; break; case 6: printf("In which year did Neil Armstrong walk on the moon? \n\t1. 1959\n\t2. 1965\n\t3. 1967\n\t4. 1969"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 4) count++; else count += 0; break; case 7: printf("Heavy water contains what isotopic form of hydrogen? \n\t1. Protium\n\t2. Deuterium\n\t3. Tritium\n\t4. None of the above"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 2) count++; else count += 0; break; case 8: printf("What is the unit of resistance? \n\t1. Volt\n\t2. Ohm\n\t3. Ampere\n\t4. Sigma"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 2) count++; else count += 0; break; case 9: printf("Which gas comprises most of Venus' atmosphere? \n\t1. Carbon monoxide\n\t2. Carbon Dioxide\n\t3. Sulphur Dioxide\n\t4. Ozone"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 2) count++; else count += 0; break; case 10: printf("What element has an atomic number of 40? \n\t1. Krypton\n\t2. Molybdenom\n\t3. Niobium\n\t4. Zicronium"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 4) count++; else count += 0; break; } // end switch } // end for endGame(count); // function call } // end function qSetScnTech void qSetCrntAfrs(int arr[]) { // Local declarations int count = 0; int ans; for (int i = 0; i < 5; i++) { int r = arr[i]; printf("\n%d.) ", i + 1); switch (r) { case 1: printf("When will the Assembly Election Results of Four states and one UT be declared? \n\t1. April 30th\n\t2. May 2nd\n\t3. May 30th\n\t4. June 1st"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 2) count++; else count += 0; break; case 2: printf("West Bengal will go into Assembly Polls in how many phases? \n\t1. Five\n\t2. Six\n\t3. Seven\n\t4. Eight"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 4) count++; else count += 0; break; case 3: printf("Which state among the following will not have single-phase elections? \n\t1. Kerala\n\t2. Tamil Nadu\n\t3. Assam\n\t4. None of the above"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 3) count++; else count += 0; break; case 4: printf("Which country has finally permitted the burial of COVID-19 victims after repeated International pleas? \n\t1. Pakistan\n\t2. Bangladesh\n\t3. Sri Lanka\n\t4. India"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 3) count++; else count += 0; break; case 5: printf("The Financial Action Task Force (FATF) on February 25, 2021 retained Pakistan on its 'grey list' till when? \n\t1. June 2021\n\t2. August 2021\n\t3. September 2021\n\t4. October 2021"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 1) count++; else count += 0; break; case 6: printf("Indian social activist Anjali Bhardwaj was honoured with an anti-corruption award by which nation? \n\t1. USA\n\t2. UK\n\t3. France\n\t4. Kanada"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 1) count++; else count += 0; break; case 7: printf("Prime Minister Narendra Modi inaugurated and laid the foundation stone of various developmental initiatives in which state/ UT on February 25, 2021? \n\t1. West Bengal\n\t2. Odisha\n\t3. Puducherry\n\t4. Andhra Pradesh"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 3) count++; else count += 0; break; case 8: printf("Jal Shakti Ministry has selected how many iconic sites for transforming them into Swachh Tourist Destinations under Phase IV of the SIP initiative? \n\t1. 12\n\t2. 11\n\t3. 10\n\t4. 8"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 1) count++; else count += 0; break; case 9: printf("Which country has assumed the Chairmanship of BRICS for 2021? \n\t1. Brazil\n\t2. Russia\n\t3. India\n\t4. China"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 3) count++; else count += 0; break; case 10: printf("Which film won 'Best Film' at the Dadasaheb Phalke International Film Festival Awards 2021? \n\t1. Chhapak\n\t2. Laxmii\n\t3. Dil Bechara\n\t4. Tanhaji"); printf("\nEnter your only option: "); scanf("%d", &ans); if (ans == 4) count++; else count += 0; break; } // end switch } // end for endGame(count); // function call } // end function qSetCrntAfrs void randomize(int arr[]) { srand(time(NULL)); for (int i = 9; i >= 0; i--) { int j = rand() % (i + 1); swap(&arr[i], &arr[j]); } // end for } // end function randomize void swap(int *a, int *b) { int temp = *a; *a = *b; *b = temp; } // end function swap void endGame(int count) { // Local declaration unsigned int toReset; // Opening of the file 'score' which records the names and their points FILE *fp; if ((fp = fopen("score.txt", "a")) == NULL) { printf("%s", "\nError in opening the file.\n"); } // end if printf("\n\nYOUR TOTAL SCORE IS: %d OUT OF 25.", count * 5); p.score = (count * 5); // determining the points // Writting to the file fprintf(fp, "%s %d", p.name, p.score); fclose(fp); // Resetting the game for other players printf("%s", "\n\nTo play again, press \'1\' and to exit, press \'0\'\n"); // prompt scanf("%u", &toReset); // read the input from the user if (toReset == 1) { printf("%s", "\n\nLet's Play, Again!"); startGame(); } // end if else { printf("%s", "\n\nOkay, bye!\nHave a brilliant day ahead!\n\n"); exit(1); } // end else } // end function endGame void gameHelp(void) { // Local declaration unsigned int actionChoice; printf("%s", "\n\n********************---GAME HELP---********************"); printf("%s", "\n\n--------------------***************--------------------\n"); printf("%s", "~ There will be a total of 3 topics to choose from.\n"); printf("%s", "~ Once you choose the topic of your wish you will be prompted to enter you name.\n"); printf("%s", "~ You have to write only your FIRST NAME FOLLOWED IMMEDIATELY BY THE FIRST LETTER OF YOUR SURNAME (WITHOUT ANY SPACES).\n"); printf("%s", "~ There will be a total of 5 questions.\n"); printf("%s", "~ There will be a total of 4 options for each of the 5 questions.\n"); printf("%s", "~ There will be just one and only one correct option for each of the 5 questions.\n"); printf("%s", "~ The options will be numbered from \'1\' to \'4\'.\n"); printf("%s", "~ You have to enter the corresponding number of the option that you think is correct.\n"); printf("%s", "~ Each question carries only 5 points and no negative marking for wrong answer.\n"); printf("%s", "~ You will be asked the questions continuously.\n"); printf("%s", "~ You have to answer each and every question - it is mandatory!.\n"); printf("%s", "~ You can't go to the next question until you answer the previous one.\n"); printf("%s", "\n\n\t\t\t BEST OF LUCK!!!\n"); printf("%s", "\nTO CONTINUE TO THE QUIZ, PRESS \'1\'\n"); printf("%s", "TO EXIT THE PROGRAM, PRESS \'0\'"); printf("%s", "\n\nSo, GAME ON?\n"); scanf("%u", &actionChoice); if (actionChoice == 1) { printf("%s", "\nYEAH! I KNEW YOU WOULD BE UP FOR THE CHALLENGE!\nHAPPY QUIZ!\n"); startGame(); // function call } // end if else { printf("%s", "\nOkay, bye!\nBut you should have tried this once!\n"); exit(1); } // end else } //gameHelp ends void scoreBoard(void) { // Local declaration unsigned int nextChoice; // Opening the file 'score' and reading the contents FILE *fp; if ((fp = fopen("score.txt", "r")) == NULL) { printf("%s", "\n\nError opening the file\n\n"); } // end if else { printf("%s", "\n\nThe scores are shown in chronological order starting from the fisrt to the latest at the last."); printf("%s", "\n\n\t\t\tScore Board\n\n"); printf("%s", "\t <NAME> --> <POINTS>\n"); while (fscanf(fp, "%s %d", p.name, &p.score) != EOF) { printf("%s", "------------------------------------------------\n"); printf("%20s --> %4d\n", p.name, p.score); } // end while fclose(fp); } // end else printf("%s", "\nTO CONTINUE TO THE QUIZ, PRESS \'1\'\n"); printf("%s", "TO EXIT THE PROGRAM, PRESS \'0\'"); printf("%s", "\n\nSo, want to feature on the SCOREBOARD?\n"); // prompt scanf("%u", &nextChoice); // read the input from the user if (nextChoice == 1) { printf("%s", "\nSEE YOU ON THE SCOREBOARD!\nHAPPY QUIZ!\n\n"); startGame(); // function call } // end if else { printf("%s", "\nOkay, bye!\nBut wouldn't have your name looked cool on the SCOREBOARD!?\n"); exit(1); } // end else } // end function scoreBoard
the_stack_data/73759.c
/* Test case by Yoshito Kawada <[email protected]>. */ #include <errno.h> #include <error.h> #include <fcntl.h> #include <locale.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <wchar.h> int main (int argc, char *argv[]) { int a = 3; int fd; char name[] = "/tmp/wprintf.out.XXXXXX"; FILE *fp; char buf[100]; size_t len; int res = 0; fd = mkstemp (name); if (fd == -1) error (EXIT_FAILURE, errno, "cannot open temporary file"); unlink (name); setlocale (LC_ALL, ""); fp = fdopen (dup (fd), "w"); if (fp == NULL) error (EXIT_FAILURE, errno, "fdopen(,\"w\")"); fwprintf (fp, L"test start"); fwprintf (fp, L" int %d\n", a); /* String with precision. */ fwprintf (fp, L"1[%6.3s]\n", argv[1]); fclose (fp); fp = fdopen (dup (fd), "a"); if (fp == NULL) error (EXIT_FAILURE, errno, "fdopen(,\"a\")"); setvbuf (fp, NULL, _IONBF, 0); /* fwprintf to unbuffered stream. */ fwprintf (fp, L"hello.\n"); fclose (fp); /* Now read it back in. This time using multibyte functions. */ lseek (fd, SEEK_SET, 0); fp = fdopen (fd, "r"); if (fp == NULL) error (EXIT_FAILURE, errno, "fdopen(,\"r\")"); if (fgets (buf, sizeof buf, fp) != buf) error (EXIT_FAILURE, errno, "first fgets"); len = strlen (buf); if (buf[len - 1] == '\n') --len; else { puts ("newline missing after first line"); res = 1; } printf ("1st line: \"%.*s\" -> %s\n", (int) len, buf, strncmp (buf, "test start int 3", len) == 0 ? "OK" : "FAIL"); res |= strncmp (buf, "test start int 3", len) != 0; if (fgets (buf, sizeof buf, fp) != buf) error (EXIT_FAILURE, errno, "second fgets"); len = strlen (buf); if (buf[len - 1] == '\n') --len; else { puts ("newline missing after second line"); res = 1; } printf ("2nd line: \"%.*s\" -> %s\n", (int) len, buf, strncmp (buf, "1[ Som]", len) == 0 ? "OK" : "FAIL"); res |= strncmp (buf, "1[ Som]", len) != 0; if (fgets (buf, sizeof buf, fp) != buf) error (EXIT_FAILURE, errno, "third fgets"); len = strlen (buf); if (buf[len - 1] == '\n') --len; else { puts ("newline missing after third line"); res = 1; } printf ("3rd line: \"%.*s\" -> %s\n", (int) len, buf, strncmp (buf, "hello.", len) == 0 ? "OK" : "FAIL"); res |= strncmp (buf, "hello.", len) != 0; return res; }
the_stack_data/967241.c
#include <stdio.h> #include <stdlib.h> int main(){ printf("Hello, world\n"); return 0; }
the_stack_data/1025594.c
// # 1 "mail_run.c" // # 1 "/home/dquinlan/ROSE/PONTETEC/postfix-2.9.4/src/global//" // # 1 "<built-in>" // # 1 "<command-line>" // # 1 "mail_run.c" // # 59 "mail_run.c" // # 1 "../../include/sys_defs.h" 1 // # 748 "../../include/sys_defs.h" // # 1 "/usr/include/sys/types.h" 1 3 4 // # 27 "/usr/include/sys/types.h" 3 4 // # 1 "/usr/include/features.h" 1 3 4 // # 329 "/usr/include/features.h" 3 4 // # 1 "/usr/include/sys/cdefs.h" 1 3 4 // # 313 "/usr/include/sys/cdefs.h" 3 4 // # 1 "/usr/include/bits/wordsize.h" 1 3 4 // # 314 "/usr/include/sys/cdefs.h" 2 3 4 // # 330 "/usr/include/features.h" 2 3 4 // # 352 "/usr/include/features.h" 3 4 // # 1 "/usr/include/gnu/stubs.h" 1 3 4 // # 1 "/usr/include/bits/wordsize.h" 1 3 4 // # 5 "/usr/include/gnu/stubs.h" 2 3 4 // # 1 "/usr/include/gnu/stubs-64.h" 1 3 4 // # 10 "/usr/include/gnu/stubs.h" 2 3 4 // # 353 "/usr/include/features.h" 2 3 4 // # 28 "/usr/include/sys/types.h" 2 3 4 // # 1 "/usr/include/bits/types.h" 1 3 4 // # 28 "/usr/include/bits/types.h" 3 4 // # 1 "/usr/include/bits/wordsize.h" 1 3 4 // # 29 "/usr/include/bits/types.h" 2 3 4 // # 1 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/stddef.h" 1 3 4 // # 214 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/stddef.h" 3 4 typedef long unsigned int size_t; // # 32 "/usr/include/bits/types.h" 2 3 4 typedef unsigned char __u_char; typedef unsigned short int __u_short; typedef unsigned int __u_int; typedef unsigned long int __u_long; typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef signed short int __int16_t; typedef unsigned short int __uint16_t; typedef signed int __int32_t; typedef unsigned int __uint32_t; typedef signed long int __int64_t; typedef unsigned long int __uint64_t; typedef long int __quad_t; typedef unsigned long int __u_quad_t; // # 134 "/usr/include/bits/types.h" 3 4 // # 1 "/usr/include/bits/typesizes.h" 1 3 4 // # 135 "/usr/include/bits/types.h" 2 3 4 typedef unsigned long int __dev_t; typedef unsigned int __uid_t; typedef unsigned int __gid_t; typedef unsigned long int __ino_t; typedef unsigned long int __ino64_t; typedef unsigned int __mode_t; typedef unsigned long int __nlink_t; typedef long int __off_t; typedef long int __off64_t; typedef int __pid_t; typedef struct { int __val[2]; } __fsid_t; typedef long int __clock_t; typedef unsigned long int __rlim_t; typedef unsigned long int __rlim64_t; typedef unsigned int __id_t; typedef long int __time_t; typedef unsigned int __useconds_t; typedef long int __suseconds_t; typedef int __daddr_t; typedef long int __swblk_t; typedef int __key_t; typedef int __clockid_t; typedef void * __timer_t; typedef long int __blksize_t; typedef long int __blkcnt_t; typedef long int __blkcnt64_t; typedef unsigned long int __fsblkcnt_t; typedef unsigned long int __fsblkcnt64_t; typedef unsigned long int __fsfilcnt_t; typedef unsigned long int __fsfilcnt64_t; typedef long int __ssize_t; typedef __off64_t __loff_t; typedef __quad_t *__qaddr_t; typedef char *__caddr_t; typedef long int __intptr_t; typedef unsigned int __socklen_t; // # 32 "/usr/include/sys/types.h" 2 3 4 typedef __u_char u_char; typedef __u_short u_short; typedef __u_int u_int; typedef __u_long u_long; typedef __quad_t quad_t; typedef __u_quad_t u_quad_t; typedef __fsid_t fsid_t; typedef __loff_t loff_t; typedef __ino_t ino_t; // # 62 "/usr/include/sys/types.h" 3 4 typedef __dev_t dev_t; typedef __gid_t gid_t; typedef __mode_t mode_t; typedef __nlink_t nlink_t; typedef __uid_t uid_t; typedef __off_t off_t; // # 100 "/usr/include/sys/types.h" 3 4 typedef __pid_t pid_t; typedef __id_t id_t; typedef __ssize_t ssize_t; typedef __daddr_t daddr_t; typedef __caddr_t caddr_t; typedef __key_t key_t; // # 133 "/usr/include/sys/types.h" 3 4 // # 1 "/usr/include/time.h" 1 3 4 // # 75 "/usr/include/time.h" 3 4 typedef __time_t time_t; // # 93 "/usr/include/time.h" 3 4 typedef __clockid_t clockid_t; // # 105 "/usr/include/time.h" 3 4 typedef __timer_t timer_t; // # 134 "/usr/include/sys/types.h" 2 3 4 // # 147 "/usr/include/sys/types.h" 3 4 // # 1 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/stddef.h" 1 3 4 // # 148 "/usr/include/sys/types.h" 2 3 4 typedef unsigned long int ulong; typedef unsigned short int ushort; typedef unsigned int uint; // # 195 "/usr/include/sys/types.h" 3 4 typedef int int8_t __attribute__ ((__mode__ (__QI__))); typedef int int16_t __attribute__ ((__mode__ (__HI__))); typedef int int32_t __attribute__ ((__mode__ (__SI__))); typedef int int64_t __attribute__ ((__mode__ (__DI__))); typedef unsigned int u_int8_t __attribute__ ((__mode__ (__QI__))); typedef unsigned int u_int16_t __attribute__ ((__mode__ (__HI__))); typedef unsigned int u_int32_t __attribute__ ((__mode__ (__SI__))); typedef unsigned int u_int64_t __attribute__ ((__mode__ (__DI__))); typedef int register_t __attribute__ ((__mode__ (__word__))); // # 217 "/usr/include/sys/types.h" 3 4 // # 1 "/usr/include/endian.h" 1 3 4 // # 37 "/usr/include/endian.h" 3 4 // # 1 "/usr/include/bits/endian.h" 1 3 4 // # 38 "/usr/include/endian.h" 2 3 4 // # 218 "/usr/include/sys/types.h" 2 3 4 // # 1 "/usr/include/sys/select.h" 1 3 4 // # 31 "/usr/include/sys/select.h" 3 4 // # 1 "/usr/include/bits/select.h" 1 3 4 // # 32 "/usr/include/sys/select.h" 2 3 4 // # 1 "/usr/include/bits/sigset.h" 1 3 4 // # 23 "/usr/include/bits/sigset.h" 3 4 typedef int __sig_atomic_t; typedef struct { unsigned long int __val[(1024 / (8 * sizeof (unsigned long int)))]; } __sigset_t; // # 35 "/usr/include/sys/select.h" 2 3 4 typedef __sigset_t sigset_t; // # 1 "/usr/include/time.h" 1 3 4 // # 121 "/usr/include/time.h" 3 4 struct timespec { __time_t tv_sec; long int tv_nsec; }; // # 45 "/usr/include/sys/select.h" 2 3 4 // # 1 "/usr/include/bits/time.h" 1 3 4 // # 69 "/usr/include/bits/time.h" 3 4 struct timeval { __time_t tv_sec; __suseconds_t tv_usec; }; // # 47 "/usr/include/sys/select.h" 2 3 4 typedef __suseconds_t suseconds_t; typedef long int __fd_mask; // # 67 "/usr/include/sys/select.h" 3 4 typedef struct { __fd_mask __fds_bits[1024 / (8 * sizeof (__fd_mask))]; } fd_set; typedef __fd_mask fd_mask; // # 99 "/usr/include/sys/select.h" 3 4 // # 109 "/usr/include/sys/select.h" 3 4 extern int select (int __nfds, fd_set *__restrict __readfds, fd_set *__restrict __writefds, fd_set *__restrict __exceptfds, struct timeval *__restrict __timeout); // # 121 "/usr/include/sys/select.h" 3 4 extern int pselect (int __nfds, fd_set *__restrict __readfds, fd_set *__restrict __writefds, fd_set *__restrict __exceptfds, const struct timespec *__restrict __timeout, const __sigset_t *__restrict __sigmask); // # 221 "/usr/include/sys/types.h" 2 3 4 // # 1 "/usr/include/sys/sysmacros.h" 1 3 4 // # 29 "/usr/include/sys/sysmacros.h" 3 4 __extension__ extern __inline unsigned int gnu_dev_major (unsigned long long int __dev) __attribute__ ((__nothrow__)); __extension__ extern __inline unsigned int gnu_dev_minor (unsigned long long int __dev) __attribute__ ((__nothrow__)); __extension__ extern __inline unsigned long long int gnu_dev_makedev (unsigned int __major, unsigned int __minor) __attribute__ ((__nothrow__)); __extension__ extern __inline unsigned int __attribute__ ((__nothrow__)) gnu_dev_major (unsigned long long int __dev) { return ((__dev >> 8) & 0xfff) | ((unsigned int) (__dev >> 32) & ~0xfff); } __extension__ extern __inline unsigned int __attribute__ ((__nothrow__)) gnu_dev_minor (unsigned long long int __dev) { return (__dev & 0xff) | ((unsigned int) (__dev >> 12) & ~0xff); } __extension__ extern __inline unsigned long long int __attribute__ ((__nothrow__)) gnu_dev_makedev (unsigned int __major, unsigned int __minor) { return ((__minor & 0xff) | ((__major & 0xfff) << 8) | (((unsigned long long int) (__minor & ~0xff)) << 12) | (((unsigned long long int) (__major & ~0xfff)) << 32)); } // # 224 "/usr/include/sys/types.h" 2 3 4 // # 235 "/usr/include/sys/types.h" 3 4 typedef __blkcnt_t blkcnt_t; typedef __fsblkcnt_t fsblkcnt_t; typedef __fsfilcnt_t fsfilcnt_t; // # 270 "/usr/include/sys/types.h" 3 4 // # 1 "/usr/include/bits/pthreadtypes.h" 1 3 4 // # 23 "/usr/include/bits/pthreadtypes.h" 3 4 // # 1 "/usr/include/bits/wordsize.h" 1 3 4 // # 24 "/usr/include/bits/pthreadtypes.h" 2 3 4 // # 50 "/usr/include/bits/pthreadtypes.h" 3 4 typedef unsigned long int pthread_t; typedef union { char __size[56]; long int __align; } pthread_attr_t; typedef struct __pthread_internal_list { struct __pthread_internal_list *__prev; struct __pthread_internal_list *__next; } __pthread_list_t; // # 76 "/usr/include/bits/pthreadtypes.h" 3 4 typedef union { struct __pthread_mutex_s { int __lock; unsigned int __count; int __owner; unsigned int __nusers; int __kind; int __spins; __pthread_list_t __list; // # 101 "/usr/include/bits/pthreadtypes.h" 3 4 } __data; char __size[40]; long int __align; } pthread_mutex_t; typedef union { char __size[4]; int __align; } pthread_mutexattr_t; typedef union { struct { int __lock; unsigned int __futex; __extension__ unsigned long long int __total_seq; __extension__ unsigned long long int __wakeup_seq; __extension__ unsigned long long int __woken_seq; void *__mutex; unsigned int __nwaiters; unsigned int __broadcast_seq; } __data; char __size[48]; __extension__ long long int __align; } pthread_cond_t; typedef union { char __size[4]; int __align; } pthread_condattr_t; typedef unsigned int pthread_key_t; typedef int pthread_once_t; typedef union { struct { int __lock; unsigned int __nr_readers; unsigned int __readers_wakeup; unsigned int __writer_wakeup; unsigned int __nr_readers_queued; unsigned int __nr_writers_queued; int __writer; int __shared; unsigned long int __pad1; unsigned long int __pad2; unsigned int __flags; } __data; // # 187 "/usr/include/bits/pthreadtypes.h" 3 4 char __size[56]; long int __align; } pthread_rwlock_t; typedef union { char __size[8]; long int __align; } pthread_rwlockattr_t; typedef volatile int pthread_spinlock_t; typedef union { char __size[32]; long int __align; } pthread_barrier_t; typedef union { char __size[4]; int __align; } pthread_barrierattr_t; // # 271 "/usr/include/sys/types.h" 2 3 4 // # 749 "../../include/sys_defs.h" 2 // # 796 "../../include/sys_defs.h" // # 1 "/usr/include/linux/version.h" 1 3 4 // # 797 "../../include/sys_defs.h" 2 // # 1426 "../../include/sys_defs.h" typedef int WAIT_STATUS_T; // # 1495 "../../include/sys_defs.h" extern int closefrom(int); // # 1632 "../../include/sys_defs.h" // # 1 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/limits.h" 1 3 4 // # 11 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/limits.h" 3 4 // # 1 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/syslimits.h" 1 3 4 // # 1 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/limits.h" 1 3 4 // # 122 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/limits.h" 3 4 // # 1 "/usr/include/limits.h" 1 3 4 // # 145 "/usr/include/limits.h" 3 4 // # 1 "/usr/include/bits/posix1_lim.h" 1 3 4 // # 153 "/usr/include/bits/posix1_lim.h" 3 4 // # 1 "/usr/include/bits/local_lim.h" 1 3 4 // # 36 "/usr/include/bits/local_lim.h" 3 4 // # 1 "/usr/include/linux/limits.h" 1 3 4 // # 37 "/usr/include/bits/local_lim.h" 2 3 4 // # 154 "/usr/include/bits/posix1_lim.h" 2 3 4 // # 146 "/usr/include/limits.h" 2 3 4 // # 1 "/usr/include/bits/posix2_lim.h" 1 3 4 // # 150 "/usr/include/limits.h" 2 3 4 // # 123 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/limits.h" 2 3 4 // # 8 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/syslimits.h" 2 3 4 // # 12 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/limits.h" 2 3 4 // # 1633 "../../include/sys_defs.h" 2 // # 1702 "../../include/sys_defs.h" extern int REMOVE(const char *); // # 60 "mail_run.c" 2 // # 1 "/usr/include/sys/wait.h" 1 3 4 // # 29 "/usr/include/sys/wait.h" 3 4 // # 1 "/usr/include/signal.h" 1 3 4 // # 31 "/usr/include/signal.h" 3 4 // # 1 "/usr/include/bits/sigset.h" 1 3 4 // # 103 "/usr/include/bits/sigset.h" 3 4 extern int __sigismember (__const __sigset_t *, int); extern int __sigaddset (__sigset_t *, int); extern int __sigdelset (__sigset_t *, int); // # 117 "/usr/include/bits/sigset.h" 3 4 extern __inline int __sigismember (__const __sigset_t *__set, int __sig) { unsigned long int __mask = (((unsigned long int) 1) << (((__sig) - 1) % (8 * sizeof (unsigned long int)))); unsigned long int __word = (((__sig) - 1) / (8 * sizeof (unsigned long int))); return (__set->__val[__word] & __mask) ? 1 : 0; } extern __inline int __sigaddset ( __sigset_t *__set, int __sig) { unsigned long int __mask = (((unsigned long int) 1) << (((__sig) - 1) % (8 * sizeof (unsigned long int)))); unsigned long int __word = (((__sig) - 1) / (8 * sizeof (unsigned long int))); return ((__set->__val[__word] |= __mask), 0); } extern __inline int __sigdelset ( __sigset_t *__set, int __sig) { unsigned long int __mask = (((unsigned long int) 1) << (((__sig) - 1) % (8 * sizeof (unsigned long int)))); unsigned long int __word = (((__sig) - 1) / (8 * sizeof (unsigned long int))); return ((__set->__val[__word] &= ~__mask), 0); } // # 34 "/usr/include/signal.h" 2 3 4 typedef __sig_atomic_t sig_atomic_t; // # 58 "/usr/include/signal.h" 3 4 // # 1 "/usr/include/bits/signum.h" 1 3 4 // # 59 "/usr/include/signal.h" 2 3 4 // # 75 "/usr/include/signal.h" 3 4 typedef void (*__sighandler_t) (int); extern __sighandler_t __sysv_signal (int __sig, __sighandler_t __handler) __attribute__ ((__nothrow__)); // # 90 "/usr/include/signal.h" 3 4 extern __sighandler_t signal (int __sig, __sighandler_t __handler) __attribute__ ((__nothrow__)); // # 104 "/usr/include/signal.h" 3 4 // # 117 "/usr/include/signal.h" 3 4 extern int kill (__pid_t __pid, int __sig) __attribute__ ((__nothrow__)); extern int killpg (__pid_t __pgrp, int __sig) __attribute__ ((__nothrow__)); extern int raise (int __sig) __attribute__ ((__nothrow__)); extern __sighandler_t ssignal (int __sig, __sighandler_t __handler) __attribute__ ((__nothrow__)); extern int gsignal (int __sig) __attribute__ ((__nothrow__)); extern void psignal (int __sig, __const char *__s); // # 153 "/usr/include/signal.h" 3 4 extern int __sigpause (int __sig_or_mask, int __is_sig); // # 181 "/usr/include/signal.h" 3 4 extern int sigblock (int __mask) __attribute__ ((__nothrow__)) __attribute__ ((__deprecated__)); extern int sigsetmask (int __mask) __attribute__ ((__nothrow__)) __attribute__ ((__deprecated__)); extern int siggetmask (void) __attribute__ ((__nothrow__)) __attribute__ ((__deprecated__)); // # 201 "/usr/include/signal.h" 3 4 typedef __sighandler_t sig_t; // # 1 "/usr/include/time.h" 1 3 4 // # 210 "/usr/include/signal.h" 2 3 4 // # 1 "/usr/include/bits/siginfo.h" 1 3 4 // # 25 "/usr/include/bits/siginfo.h" 3 4 // # 1 "/usr/include/bits/wordsize.h" 1 3 4 // # 26 "/usr/include/bits/siginfo.h" 2 3 4 typedef union sigval { int sival_int; void *sival_ptr; } sigval_t; // # 51 "/usr/include/bits/siginfo.h" 3 4 typedef struct siginfo { int si_signo; int si_errno; int si_code; union { int _pad[((128 / sizeof (int)) - 4)]; struct { __pid_t si_pid; __uid_t si_uid; } _kill; struct { int si_tid; int si_overrun; sigval_t si_sigval; } _timer; struct { __pid_t si_pid; __uid_t si_uid; sigval_t si_sigval; } _rt; struct { __pid_t si_pid; __uid_t si_uid; int si_status; __clock_t si_utime; __clock_t si_stime; } _sigchld; struct { void *si_addr; } _sigfault; struct { long int si_band; int si_fd; } _sigpoll; } _sifields; } siginfo_t; // # 129 "/usr/include/bits/siginfo.h" 3 4 enum { SI_ASYNCNL = -60, SI_TKILL = -6, SI_SIGIO, SI_ASYNCIO, SI_MESGQ, SI_TIMER, SI_QUEUE, SI_USER, SI_KERNEL = 0x80 }; enum { ILL_ILLOPC = 1, ILL_ILLOPN, ILL_ILLADR, ILL_ILLTRP, ILL_PRVOPC, ILL_PRVREG, ILL_COPROC, ILL_BADSTK }; enum { FPE_INTDIV = 1, FPE_INTOVF, FPE_FLTDIV, FPE_FLTOVF, FPE_FLTUND, FPE_FLTRES, FPE_FLTINV, FPE_FLTSUB }; enum { SEGV_MAPERR = 1, SEGV_ACCERR }; enum { BUS_ADRALN = 1, BUS_ADRERR, BUS_OBJERR }; enum { TRAP_BRKPT = 1, TRAP_TRACE }; enum { CLD_EXITED = 1, CLD_KILLED, CLD_DUMPED, CLD_TRAPPED, CLD_STOPPED, CLD_CONTINUED }; enum { POLL_IN = 1, POLL_OUT, POLL_MSG, POLL_ERR, POLL_PRI, POLL_HUP }; // # 273 "/usr/include/bits/siginfo.h" 3 4 typedef struct sigevent { sigval_t sigev_value; int sigev_signo; int sigev_notify; union { int _pad[((64 / sizeof (int)) - 4)]; __pid_t _tid; struct { void (*_function) (sigval_t); void *_attribute; } _sigev_thread; } _sigev_un; } sigevent_t; enum { SIGEV_SIGNAL = 0, SIGEV_NONE, SIGEV_THREAD, SIGEV_THREAD_ID = 4 }; // # 213 "/usr/include/signal.h" 2 3 4 extern int sigemptyset (sigset_t *__set) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int sigfillset (sigset_t *__set) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int sigaddset (sigset_t *__set, int __signo) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int sigdelset (sigset_t *__set, int __signo) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int sigismember (__const sigset_t *__set, int __signo) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); // # 246 "/usr/include/signal.h" 3 4 // # 1 "/usr/include/bits/sigaction.h" 1 3 4 // # 25 "/usr/include/bits/sigaction.h" 3 4 struct sigaction { union { __sighandler_t sa_handler; void (*sa_sigaction) (int, siginfo_t *, void *); } __sigaction_handler; __sigset_t sa_mask; int sa_flags; void (*sa_restorer) (void); }; // # 247 "/usr/include/signal.h" 2 3 4 extern int sigprocmask (int __how, __const sigset_t *__restrict __set, sigset_t *__restrict __oset) __attribute__ ((__nothrow__)); extern int sigsuspend (__const sigset_t *__set) __attribute__ ((__nonnull__ (1))); extern int sigaction (int __sig, __const struct sigaction *__restrict __act, struct sigaction *__restrict __oact) __attribute__ ((__nothrow__)); extern int sigpending (sigset_t *__set) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int sigwait (__const sigset_t *__restrict __set, int *__restrict __sig) __attribute__ ((__nonnull__ (1, 2))); extern int sigwaitinfo (__const sigset_t *__restrict __set, siginfo_t *__restrict __info) __attribute__ ((__nonnull__ (1))); extern int sigtimedwait (__const sigset_t *__restrict __set, siginfo_t *__restrict __info, __const struct timespec *__restrict __timeout) __attribute__ ((__nonnull__ (1))); extern int sigqueue (__pid_t __pid, int __sig, __const union sigval __val) __attribute__ ((__nothrow__)); // # 304 "/usr/include/signal.h" 3 4 extern __const char *__const _sys_siglist[65]; extern __const char *__const sys_siglist[65]; struct sigvec { __sighandler_t sv_handler; int sv_mask; int sv_flags; }; // # 328 "/usr/include/signal.h" 3 4 extern int sigvec (int __sig, __const struct sigvec *__vec, struct sigvec *__ovec) __attribute__ ((__nothrow__)); // # 1 "/usr/include/bits/sigcontext.h" 1 3 4 // # 26 "/usr/include/bits/sigcontext.h" 3 4 // # 1 "/usr/include/bits/wordsize.h" 1 3 4 // # 27 "/usr/include/bits/sigcontext.h" 2 3 4 struct _fpreg { unsigned short significand[4]; unsigned short exponent; }; struct _fpxreg { unsigned short significand[4]; unsigned short exponent; unsigned short padding[3]; }; struct _xmmreg { __uint32_t element[4]; }; // # 109 "/usr/include/bits/sigcontext.h" 3 4 struct _fpstate { __uint16_t cwd; __uint16_t swd; __uint16_t ftw; __uint16_t fop; __uint64_t rip; __uint64_t rdp; __uint32_t mxcsr; __uint32_t mxcr_mask; struct _fpxreg _st[8]; struct _xmmreg _xmm[16]; __uint32_t padding[24]; }; struct sigcontext { unsigned long r8; unsigned long r9; unsigned long r10; unsigned long r11; unsigned long r12; unsigned long r13; unsigned long r14; unsigned long r15; unsigned long rdi; unsigned long rsi; unsigned long rbp; unsigned long rbx; unsigned long rdx; unsigned long rax; unsigned long rcx; unsigned long rsp; unsigned long rip; unsigned long eflags; unsigned short cs; unsigned short gs; unsigned short fs; unsigned short __pad0; unsigned long err; unsigned long trapno; unsigned long oldmask; unsigned long cr2; struct _fpstate * fpstate; unsigned long __reserved1 [8]; }; // # 334 "/usr/include/signal.h" 2 3 4 extern int sigreturn (struct sigcontext *__scp) __attribute__ ((__nothrow__)); // # 346 "/usr/include/signal.h" 3 4 extern int siginterrupt (int __sig, int __interrupt) __attribute__ ((__nothrow__)); // # 1 "/usr/include/bits/sigstack.h" 1 3 4 // # 26 "/usr/include/bits/sigstack.h" 3 4 struct sigstack { void *ss_sp; int ss_onstack; }; enum { SS_ONSTACK = 1, SS_DISABLE }; // # 50 "/usr/include/bits/sigstack.h" 3 4 typedef struct sigaltstack { void *ss_sp; int ss_flags; size_t ss_size; } stack_t; // # 349 "/usr/include/signal.h" 2 3 4 // # 357 "/usr/include/signal.h" 3 4 extern int sigstack (struct sigstack *__ss, struct sigstack *__oss) __attribute__ ((__nothrow__)) __attribute__ ((__deprecated__)); extern int sigaltstack (__const struct sigaltstack *__restrict __ss, struct sigaltstack *__restrict __oss) __attribute__ ((__nothrow__)); // # 387 "/usr/include/signal.h" 3 4 // # 1 "/usr/include/bits/sigthread.h" 1 3 4 // # 31 "/usr/include/bits/sigthread.h" 3 4 extern int pthread_sigmask (int __how, __const __sigset_t *__restrict __newmask, __sigset_t *__restrict __oldmask)__attribute__ ((__nothrow__)); extern int pthread_kill (pthread_t __threadid, int __signo) __attribute__ ((__nothrow__)); // # 388 "/usr/include/signal.h" 2 3 4 extern int __libc_current_sigrtmin (void) __attribute__ ((__nothrow__)); extern int __libc_current_sigrtmax (void) __attribute__ ((__nothrow__)); // # 32 "/usr/include/sys/wait.h" 2 3 4 // # 1 "/usr/include/sys/resource.h" 1 3 4 // # 25 "/usr/include/sys/resource.h" 3 4 // # 1 "/usr/include/bits/resource.h" 1 3 4 // # 33 "/usr/include/bits/resource.h" 3 4 enum __rlimit_resource { RLIMIT_CPU = 0, RLIMIT_FSIZE = 1, RLIMIT_DATA = 2, RLIMIT_STACK = 3, RLIMIT_CORE = 4, __RLIMIT_RSS = 5, RLIMIT_NOFILE = 7, __RLIMIT_OFILE = RLIMIT_NOFILE, RLIMIT_AS = 9, __RLIMIT_NPROC = 6, __RLIMIT_MEMLOCK = 8, __RLIMIT_LOCKS = 10, __RLIMIT_SIGPENDING = 11, __RLIMIT_MSGQUEUE = 12, __RLIMIT_NICE = 13, __RLIMIT_RTPRIO = 14, __RLIMIT_NLIMITS = 15, __RLIM_NLIMITS = __RLIMIT_NLIMITS }; // # 127 "/usr/include/bits/resource.h" 3 4 typedef __rlim_t rlim_t; struct rlimit { rlim_t rlim_cur; rlim_t rlim_max; }; // # 154 "/usr/include/bits/resource.h" 3 4 enum __rusage_who { RUSAGE_SELF = 0, RUSAGE_CHILDREN = -1, // # 171 "/usr/include/bits/resource.h" 3 4 }; // # 1 "/usr/include/bits/time.h" 1 3 4 // # 175 "/usr/include/bits/resource.h" 2 3 4 struct rusage { struct timeval ru_utime; struct timeval ru_stime; long int ru_maxrss; long int ru_ixrss; long int ru_idrss; long int ru_isrss; long int ru_minflt; long int ru_majflt; long int ru_nswap; long int ru_inblock; long int ru_oublock; long int ru_msgsnd; long int ru_msgrcv; long int ru_nsignals; long int ru_nvcsw; long int ru_nivcsw; }; enum __priority_which { PRIO_PROCESS = 0, PRIO_PGRP = 1, PRIO_USER = 2 }; // # 26 "/usr/include/sys/resource.h" 2 3 4 // # 43 "/usr/include/sys/resource.h" 3 4 typedef int __rlimit_resource_t; typedef int __rusage_who_t; typedef int __priority_which_t; extern int getrlimit (__rlimit_resource_t __resource, struct rlimit *__rlimits) __attribute__ ((__nothrow__)); // # 70 "/usr/include/sys/resource.h" 3 4 extern int setrlimit (__rlimit_resource_t __resource, __const struct rlimit *__rlimits) __attribute__ ((__nothrow__)); // # 88 "/usr/include/sys/resource.h" 3 4 extern int getrusage (__rusage_who_t __who, struct rusage *__usage) __attribute__ ((__nothrow__)); extern int getpriority (__priority_which_t __which, id_t __who) __attribute__ ((__nothrow__)); extern int setpriority (__priority_which_t __which, id_t __who, int __prio) __attribute__ ((__nothrow__)); // # 33 "/usr/include/sys/wait.h" 2 3 4 // # 1 "/usr/include/bits/waitflags.h" 1 3 4 // # 39 "/usr/include/sys/wait.h" 2 3 4 // # 63 "/usr/include/sys/wait.h" 3 4 typedef union { union wait *__uptr; int *__iptr; } __WAIT_STATUS __attribute__ ((__transparent_union__)); // # 80 "/usr/include/sys/wait.h" 3 4 // # 1 "/usr/include/bits/waitstatus.h" 1 3 4 // # 67 "/usr/include/bits/waitstatus.h" 3 4 union wait { int w_status; struct { unsigned int __w_termsig:7; unsigned int __w_coredump:1; unsigned int __w_retcode:8; unsigned int:16; } __wait_terminated; struct { unsigned int __w_stopval:8; unsigned int __w_stopsig:8; unsigned int:16; } __wait_stopped; }; // # 81 "/usr/include/sys/wait.h" 2 3 4 // # 102 "/usr/include/sys/wait.h" 3 4 typedef enum { P_ALL, P_PID, P_PGID } idtype_t; // # 116 "/usr/include/sys/wait.h" 3 4 extern __pid_t wait (__WAIT_STATUS __stat_loc); // # 139 "/usr/include/sys/wait.h" 3 4 extern __pid_t waitpid (__pid_t __pid, int *__stat_loc, int __options); // # 1 "/usr/include/bits/siginfo.h" 1 3 4 // # 25 "/usr/include/bits/siginfo.h" 3 4 // # 1 "/usr/include/bits/wordsize.h" 1 3 4 // # 26 "/usr/include/bits/siginfo.h" 2 3 4 // # 144 "/usr/include/sys/wait.h" 2 3 4 // # 155 "/usr/include/sys/wait.h" 3 4 extern int waitid (idtype_t __idtype, __id_t __id, siginfo_t *__infop, int __options); struct rusage; extern __pid_t wait3 (__WAIT_STATUS __stat_loc, int __options, struct rusage * __usage) __attribute__ ((__nothrow__)); struct rusage; extern __pid_t wait4 (__pid_t __pid, __WAIT_STATUS __stat_loc, int __options, struct rusage *__usage) __attribute__ ((__nothrow__)); // # 61 "mail_run.c" 2 // # 1 "/usr/include/unistd.h" 1 3 4 // # 28 "/usr/include/unistd.h" 3 4 // # 173 "/usr/include/unistd.h" 3 4 // # 1 "/usr/include/bits/posix_opt.h" 1 3 4 // # 174 "/usr/include/unistd.h" 2 3 4 // # 197 "/usr/include/unistd.h" 3 4 // # 1 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/stddef.h" 1 3 4 // # 198 "/usr/include/unistd.h" 2 3 4 // # 226 "/usr/include/unistd.h" 3 4 typedef __useconds_t useconds_t; // # 238 "/usr/include/unistd.h" 3 4 typedef __intptr_t intptr_t; typedef __socklen_t socklen_t; // # 258 "/usr/include/unistd.h" 3 4 extern int access (__const char *__name, int __type) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); // # 301 "/usr/include/unistd.h" 3 4 extern __off_t lseek (int __fd, __off_t __offset, int __whence) __attribute__ ((__nothrow__)); // # 320 "/usr/include/unistd.h" 3 4 extern int close (int __fd); extern ssize_t read (int __fd, void *__buf, size_t __nbytes) ; extern ssize_t write (int __fd, __const void *__buf, size_t __n) ; // # 384 "/usr/include/unistd.h" 3 4 extern int pipe (int __pipedes[2]) __attribute__ ((__nothrow__)) ; // # 393 "/usr/include/unistd.h" 3 4 extern unsigned int alarm (unsigned int __seconds) __attribute__ ((__nothrow__)); // # 405 "/usr/include/unistd.h" 3 4 extern unsigned int sleep (unsigned int __seconds); extern __useconds_t ualarm (__useconds_t __value, __useconds_t __interval) __attribute__ ((__nothrow__)); extern int usleep (__useconds_t __useconds); // # 429 "/usr/include/unistd.h" 3 4 extern int pause (void); extern int chown (__const char *__file, __uid_t __owner, __gid_t __group) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))) ; extern int fchown (int __fd, __uid_t __owner, __gid_t __group) __attribute__ ((__nothrow__)) ; extern int lchown (__const char *__file, __uid_t __owner, __gid_t __group) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))) ; // # 457 "/usr/include/unistd.h" 3 4 extern int chdir (__const char *__path) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))) ; extern int fchdir (int __fd) __attribute__ ((__nothrow__)) ; // # 471 "/usr/include/unistd.h" 3 4 extern char *getcwd (char *__buf, size_t __size) __attribute__ ((__nothrow__)) ; // # 484 "/usr/include/unistd.h" 3 4 extern char *getwd (char *__buf) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__deprecated__)) ; extern int dup (int __fd) __attribute__ ((__nothrow__)) ; extern int dup2 (int __fd, int __fd2) __attribute__ ((__nothrow__)); extern char **__environ; extern int execve (__const char *__path, char *__const __argv[], char *__const __envp[]) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); // # 516 "/usr/include/unistd.h" 3 4 extern int execv (__const char *__path, char *__const __argv[]) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int execle (__const char *__path, __const char *__arg, ...) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int execl (__const char *__path, __const char *__arg, ...) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int execvp (__const char *__file, char *__const __argv[]) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int execlp (__const char *__file, __const char *__arg, ...) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int nice (int __inc) __attribute__ ((__nothrow__)) ; extern void _exit (int __status) __attribute__ ((__noreturn__)); // # 1 "/usr/include/bits/confname.h" 1 3 4 // # 26 "/usr/include/bits/confname.h" 3 4 enum { _PC_LINK_MAX, _PC_MAX_CANON, _PC_MAX_INPUT, _PC_NAME_MAX, _PC_PATH_MAX, _PC_PIPE_BUF, _PC_CHOWN_RESTRICTED, _PC_NO_TRUNC, _PC_VDISABLE, _PC_SYNC_IO, _PC_ASYNC_IO, _PC_PRIO_IO, _PC_SOCK_MAXBUF, _PC_FILESIZEBITS, _PC_REC_INCR_XFER_SIZE, _PC_REC_MAX_XFER_SIZE, _PC_REC_MIN_XFER_SIZE, _PC_REC_XFER_ALIGN, _PC_ALLOC_SIZE_MIN, _PC_SYMLINK_MAX, _PC_2_SYMLINKS }; enum { _SC_ARG_MAX, _SC_CHILD_MAX, _SC_CLK_TCK, _SC_NGROUPS_MAX, _SC_OPEN_MAX, _SC_STREAM_MAX, _SC_TZNAME_MAX, _SC_JOB_CONTROL, _SC_SAVED_IDS, _SC_REALTIME_SIGNALS, _SC_PRIORITY_SCHEDULING, _SC_TIMERS, _SC_ASYNCHRONOUS_IO, _SC_PRIORITIZED_IO, _SC_SYNCHRONIZED_IO, _SC_FSYNC, _SC_MAPPED_FILES, _SC_MEMLOCK, _SC_MEMLOCK_RANGE, _SC_MEMORY_PROTECTION, _SC_MESSAGE_PASSING, _SC_SEMAPHORES, _SC_SHARED_MEMORY_OBJECTS, _SC_AIO_LISTIO_MAX, _SC_AIO_MAX, _SC_AIO_PRIO_DELTA_MAX, _SC_DELAYTIMER_MAX, _SC_MQ_OPEN_MAX, _SC_MQ_PRIO_MAX, _SC_VERSION, _SC_PAGESIZE, _SC_RTSIG_MAX, _SC_SEM_NSEMS_MAX, _SC_SEM_VALUE_MAX, _SC_SIGQUEUE_MAX, _SC_TIMER_MAX, _SC_BC_BASE_MAX, _SC_BC_DIM_MAX, _SC_BC_SCALE_MAX, _SC_BC_STRING_MAX, _SC_COLL_WEIGHTS_MAX, _SC_EQUIV_CLASS_MAX, _SC_EXPR_NEST_MAX, _SC_LINE_MAX, _SC_RE_DUP_MAX, _SC_CHARCLASS_NAME_MAX, _SC_2_VERSION, _SC_2_C_BIND, _SC_2_C_DEV, _SC_2_FORT_DEV, _SC_2_FORT_RUN, _SC_2_SW_DEV, _SC_2_LOCALEDEF, _SC_PII, _SC_PII_XTI, _SC_PII_SOCKET, _SC_PII_INTERNET, _SC_PII_OSI, _SC_POLL, _SC_SELECT, _SC_UIO_MAXIOV, _SC_IOV_MAX = _SC_UIO_MAXIOV, _SC_PII_INTERNET_STREAM, _SC_PII_INTERNET_DGRAM, _SC_PII_OSI_COTS, _SC_PII_OSI_CLTS, _SC_PII_OSI_M, _SC_T_IOV_MAX, _SC_THREADS, _SC_THREAD_SAFE_FUNCTIONS, _SC_GETGR_R_SIZE_MAX, _SC_GETPW_R_SIZE_MAX, _SC_LOGIN_NAME_MAX, _SC_TTY_NAME_MAX, _SC_THREAD_DESTRUCTOR_ITERATIONS, _SC_THREAD_KEYS_MAX, _SC_THREAD_STACK_MIN, _SC_THREAD_THREADS_MAX, _SC_THREAD_ATTR_STACKADDR, _SC_THREAD_ATTR_STACKSIZE, _SC_THREAD_PRIORITY_SCHEDULING, _SC_THREAD_PRIO_INHERIT, _SC_THREAD_PRIO_PROTECT, _SC_THREAD_PROCESS_SHARED, _SC_NPROCESSORS_CONF, _SC_NPROCESSORS_ONLN, _SC_PHYS_PAGES, _SC_AVPHYS_PAGES, _SC_ATEXIT_MAX, _SC_PASS_MAX, _SC_XOPEN_VERSION, _SC_XOPEN_XCU_VERSION, _SC_XOPEN_UNIX, _SC_XOPEN_CRYPT, _SC_XOPEN_ENH_I18N, _SC_XOPEN_SHM, _SC_2_CHAR_TERM, _SC_2_C_VERSION, _SC_2_UPE, _SC_XOPEN_XPG2, _SC_XOPEN_XPG3, _SC_XOPEN_XPG4, _SC_CHAR_BIT, _SC_CHAR_MAX, _SC_CHAR_MIN, _SC_INT_MAX, _SC_INT_MIN, _SC_LONG_BIT, _SC_WORD_BIT, _SC_MB_LEN_MAX, _SC_NZERO, _SC_SSIZE_MAX, _SC_SCHAR_MAX, _SC_SCHAR_MIN, _SC_SHRT_MAX, _SC_SHRT_MIN, _SC_UCHAR_MAX, _SC_UINT_MAX, _SC_ULONG_MAX, _SC_USHRT_MAX, _SC_NL_ARGMAX, _SC_NL_LANGMAX, _SC_NL_MSGMAX, _SC_NL_NMAX, _SC_NL_SETMAX, _SC_NL_TEXTMAX, _SC_XBS5_ILP32_OFF32, _SC_XBS5_ILP32_OFFBIG, _SC_XBS5_LP64_OFF64, _SC_XBS5_LPBIG_OFFBIG, _SC_XOPEN_LEGACY, _SC_XOPEN_REALTIME, _SC_XOPEN_REALTIME_THREADS, _SC_ADVISORY_INFO, _SC_BARRIERS, _SC_BASE, _SC_C_LANG_SUPPORT, _SC_C_LANG_SUPPORT_R, _SC_CLOCK_SELECTION, _SC_CPUTIME, _SC_THREAD_CPUTIME, _SC_DEVICE_IO, _SC_DEVICE_SPECIFIC, _SC_DEVICE_SPECIFIC_R, _SC_FD_MGMT, _SC_FIFO, _SC_PIPE, _SC_FILE_ATTRIBUTES, _SC_FILE_LOCKING, _SC_FILE_SYSTEM, _SC_MONOTONIC_CLOCK, _SC_MULTI_PROCESS, _SC_SINGLE_PROCESS, _SC_NETWORKING, _SC_READER_WRITER_LOCKS, _SC_SPIN_LOCKS, _SC_REGEXP, _SC_REGEX_VERSION, _SC_SHELL, _SC_SIGNALS, _SC_SPAWN, _SC_SPORADIC_SERVER, _SC_THREAD_SPORADIC_SERVER, _SC_SYSTEM_DATABASE, _SC_SYSTEM_DATABASE_R, _SC_TIMEOUTS, _SC_TYPED_MEMORY_OBJECTS, _SC_USER_GROUPS, _SC_USER_GROUPS_R, _SC_2_PBS, _SC_2_PBS_ACCOUNTING, _SC_2_PBS_LOCATE, _SC_2_PBS_MESSAGE, _SC_2_PBS_TRACK, _SC_SYMLOOP_MAX, _SC_STREAMS, _SC_2_PBS_CHECKPOINT, _SC_V6_ILP32_OFF32, _SC_V6_ILP32_OFFBIG, _SC_V6_LP64_OFF64, _SC_V6_LPBIG_OFFBIG, _SC_HOST_NAME_MAX, _SC_TRACE, _SC_TRACE_EVENT_FILTER, _SC_TRACE_INHERIT, _SC_TRACE_LOG, _SC_LEVEL1_ICACHE_SIZE, _SC_LEVEL1_ICACHE_ASSOC, _SC_LEVEL1_ICACHE_LINESIZE, _SC_LEVEL1_DCACHE_SIZE, _SC_LEVEL1_DCACHE_ASSOC, _SC_LEVEL1_DCACHE_LINESIZE, _SC_LEVEL2_CACHE_SIZE, _SC_LEVEL2_CACHE_ASSOC, _SC_LEVEL2_CACHE_LINESIZE, _SC_LEVEL3_CACHE_SIZE, _SC_LEVEL3_CACHE_ASSOC, _SC_LEVEL3_CACHE_LINESIZE, _SC_LEVEL4_CACHE_SIZE, _SC_LEVEL4_CACHE_ASSOC, _SC_LEVEL4_CACHE_LINESIZE, _SC_IPV6 = _SC_LEVEL1_ICACHE_SIZE + 50, _SC_RAW_SOCKETS }; enum { _CS_PATH, _CS_V6_WIDTH_RESTRICTED_ENVS, _CS_GNU_LIBC_VERSION, _CS_GNU_LIBPTHREAD_VERSION, _CS_LFS_CFLAGS = 1000, _CS_LFS_LDFLAGS, _CS_LFS_LIBS, _CS_LFS_LINTFLAGS, _CS_LFS64_CFLAGS, _CS_LFS64_LDFLAGS, _CS_LFS64_LIBS, _CS_LFS64_LINTFLAGS, _CS_XBS5_ILP32_OFF32_CFLAGS = 1100, _CS_XBS5_ILP32_OFF32_LDFLAGS, _CS_XBS5_ILP32_OFF32_LIBS, _CS_XBS5_ILP32_OFF32_LINTFLAGS, _CS_XBS5_ILP32_OFFBIG_CFLAGS, _CS_XBS5_ILP32_OFFBIG_LDFLAGS, _CS_XBS5_ILP32_OFFBIG_LIBS, _CS_XBS5_ILP32_OFFBIG_LINTFLAGS, _CS_XBS5_LP64_OFF64_CFLAGS, _CS_XBS5_LP64_OFF64_LDFLAGS, _CS_XBS5_LP64_OFF64_LIBS, _CS_XBS5_LP64_OFF64_LINTFLAGS, _CS_XBS5_LPBIG_OFFBIG_CFLAGS, _CS_XBS5_LPBIG_OFFBIG_LDFLAGS, _CS_XBS5_LPBIG_OFFBIG_LIBS, _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS, _CS_POSIX_V6_ILP32_OFF32_CFLAGS, _CS_POSIX_V6_ILP32_OFF32_LDFLAGS, _CS_POSIX_V6_ILP32_OFF32_LIBS, _CS_POSIX_V6_ILP32_OFF32_LINTFLAGS, _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS, _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS, _CS_POSIX_V6_ILP32_OFFBIG_LIBS, _CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS, _CS_POSIX_V6_LP64_OFF64_CFLAGS, _CS_POSIX_V6_LP64_OFF64_LDFLAGS, _CS_POSIX_V6_LP64_OFF64_LIBS, _CS_POSIX_V6_LP64_OFF64_LINTFLAGS, _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS, _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS, _CS_POSIX_V6_LPBIG_OFFBIG_LIBS, _CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS }; // # 555 "/usr/include/unistd.h" 2 3 4 extern long int pathconf (__const char *__path, int __name) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern long int fpathconf (int __fd, int __name) __attribute__ ((__nothrow__)); extern long int sysconf (int __name) __attribute__ ((__nothrow__)); extern size_t confstr (int __name, char *__buf, size_t __len) __attribute__ ((__nothrow__)); extern __pid_t getpid (void) __attribute__ ((__nothrow__)); extern __pid_t getppid (void) __attribute__ ((__nothrow__)); extern __pid_t getpgrp (void) __attribute__ ((__nothrow__)); // # 591 "/usr/include/unistd.h" 3 4 extern __pid_t __getpgid (__pid_t __pid) __attribute__ ((__nothrow__)); // # 600 "/usr/include/unistd.h" 3 4 extern int setpgid (__pid_t __pid, __pid_t __pgid) __attribute__ ((__nothrow__)); // # 617 "/usr/include/unistd.h" 3 4 extern int setpgrp (void) __attribute__ ((__nothrow__)); // # 634 "/usr/include/unistd.h" 3 4 extern __pid_t setsid (void) __attribute__ ((__nothrow__)); extern __uid_t getuid (void) __attribute__ ((__nothrow__)); extern __uid_t geteuid (void) __attribute__ ((__nothrow__)); extern __gid_t getgid (void) __attribute__ ((__nothrow__)); extern __gid_t getegid (void) __attribute__ ((__nothrow__)); extern int getgroups (int __size, __gid_t __list[]) __attribute__ ((__nothrow__)) ; // # 667 "/usr/include/unistd.h" 3 4 extern int setuid (__uid_t __uid) __attribute__ ((__nothrow__)); extern int setreuid (__uid_t __ruid, __uid_t __euid) __attribute__ ((__nothrow__)); extern int seteuid (__uid_t __uid) __attribute__ ((__nothrow__)); extern int setgid (__gid_t __gid) __attribute__ ((__nothrow__)); extern int setregid (__gid_t __rgid, __gid_t __egid) __attribute__ ((__nothrow__)); extern int setegid (__gid_t __gid) __attribute__ ((__nothrow__)); // # 723 "/usr/include/unistd.h" 3 4 extern __pid_t fork (void) __attribute__ ((__nothrow__)); extern __pid_t vfork (void) __attribute__ ((__nothrow__)); extern char *ttyname (int __fd) __attribute__ ((__nothrow__)); extern int ttyname_r (int __fd, char *__buf, size_t __buflen) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (2))) ; extern int isatty (int __fd) __attribute__ ((__nothrow__)); extern int ttyslot (void) __attribute__ ((__nothrow__)); extern int link (__const char *__from, __const char *__to) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1, 2))) ; // # 769 "/usr/include/unistd.h" 3 4 extern int symlink (__const char *__from, __const char *__to) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1, 2))) ; extern ssize_t readlink (__const char *__restrict __path, char *__restrict __buf, size_t __len) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1, 2))) ; // # 792 "/usr/include/unistd.h" 3 4 extern int unlink (__const char *__name) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); // # 801 "/usr/include/unistd.h" 3 4 extern int rmdir (__const char *__path) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern __pid_t tcgetpgrp (int __fd) __attribute__ ((__nothrow__)); extern int tcsetpgrp (int __fd, __pid_t __pgrp_id) __attribute__ ((__nothrow__)); extern char *getlogin (void); extern int getlogin_r (char *__name, size_t __name_len) __attribute__ ((__nonnull__ (1))); extern int setlogin (__const char *__name) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); // # 837 "/usr/include/unistd.h" 3 4 // # 1 "/usr/include/getopt.h" 1 3 4 // # 59 "/usr/include/getopt.h" 3 4 extern char *optarg; // # 73 "/usr/include/getopt.h" 3 4 extern int optind; extern int opterr; extern int optopt; // # 152 "/usr/include/getopt.h" 3 4 extern int getopt (int ___argc, char *const *___argv, const char *__shortopts) __attribute__ ((__nothrow__)); // # 838 "/usr/include/unistd.h" 2 3 4 extern int gethostname (char *__name, size_t __len) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int sethostname (__const char *__name, size_t __len) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))) ; extern int sethostid (long int __id) __attribute__ ((__nothrow__)) ; extern int getdomainname (char *__name, size_t __len) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))) ; extern int setdomainname (__const char *__name, size_t __len) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))) ; extern int vhangup (void) __attribute__ ((__nothrow__)); extern int revoke (__const char *__file) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))) ; extern int profil (unsigned short int *__sample_buffer, size_t __size, size_t __offset, unsigned int __scale) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int acct (__const char *__name) __attribute__ ((__nothrow__)); extern char *getusershell (void) __attribute__ ((__nothrow__)); extern void endusershell (void) __attribute__ ((__nothrow__)); extern void setusershell (void) __attribute__ ((__nothrow__)); extern int daemon (int __nochdir, int __noclose) __attribute__ ((__nothrow__)) ; extern int chroot (__const char *__path) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))) ; extern char *getpass (__const char *__prompt) __attribute__ ((__nonnull__ (1))); // # 923 "/usr/include/unistd.h" 3 4 extern int fsync (int __fd); extern long int gethostid (void); extern void sync (void) __attribute__ ((__nothrow__)); extern int getpagesize (void) __attribute__ ((__nothrow__)) __attribute__ ((__const__)); extern int getdtablesize (void) __attribute__ ((__nothrow__)); extern int truncate (__const char *__file, __off_t __length) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))) ; // # 970 "/usr/include/unistd.h" 3 4 extern int ftruncate (int __fd, __off_t __length) __attribute__ ((__nothrow__)) ; // # 990 "/usr/include/unistd.h" 3 4 extern int brk (void *__addr) __attribute__ ((__nothrow__)) ; extern void *sbrk (intptr_t __delta) __attribute__ ((__nothrow__)); // # 1011 "/usr/include/unistd.h" 3 4 extern long int syscall (long int __sysno, ...) __attribute__ ((__nothrow__)); // # 1034 "/usr/include/unistd.h" 3 4 extern int lockf (int __fd, int __cmd, __off_t __len) ; // # 1065 "/usr/include/unistd.h" 3 4 extern int fdatasync (int __fildes); // # 1103 "/usr/include/unistd.h" 3 4 // # 62 "mail_run.c" 2 // # 1 "/usr/include/errno.h" 1 3 4 // # 32 "/usr/include/errno.h" 3 4 // # 1 "/usr/include/bits/errno.h" 1 3 4 // # 25 "/usr/include/bits/errno.h" 3 4 // # 1 "/usr/include/linux/errno.h" 1 3 4 // # 1 "/usr/include/asm/errno.h" 1 3 4 // # 1 "/usr/include/asm-x86_64/errno.h" 1 3 4 // # 1 "/usr/include/asm-generic/errno.h" 1 3 4 // # 1 "/usr/include/asm-generic/errno-base.h" 1 3 4 // # 5 "/usr/include/asm-generic/errno.h" 2 3 4 // # 5 "/usr/include/asm-x86_64/errno.h" 2 3 4 // # 6 "/usr/include/asm/errno.h" 2 3 4 // # 5 "/usr/include/linux/errno.h" 2 3 4 // # 26 "/usr/include/bits/errno.h" 2 3 4 // # 43 "/usr/include/bits/errno.h" 3 4 extern int *__errno_location (void) __attribute__ ((__nothrow__)) __attribute__ ((__const__)); // # 37 "/usr/include/errno.h" 2 3 4 // # 59 "/usr/include/errno.h" 3 4 // # 63 "mail_run.c" 2 // # 1 "../../include/msg.h" 1 // # 17 "../../include/msg.h" // # 1 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/stdarg.h" 1 3 4 // # 43 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/stdarg.h" 3 4 typedef __builtin_va_list __gnuc_va_list; // # 105 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/stdarg.h" 3 4 typedef __gnuc_va_list va_list; // # 18 "../../include/msg.h" 2 // # 1 "/usr/include/time.h" 1 3 4 // # 31 "/usr/include/time.h" 3 4 // # 1 "/nfs/apps/gcc/4.2.4/lib/gcc/x86_64-unknown-linux-gnu/4.2.4/include/stddef.h" 1 3 4 // # 40 "/usr/include/time.h" 2 3 4 // # 1 "/usr/include/bits/time.h" 1 3 4 // # 44 "/usr/include/time.h" 2 3 4 // # 59 "/usr/include/time.h" 3 4 typedef __clock_t clock_t; // # 132 "/usr/include/time.h" 3 4 struct tm { int tm_sec; int tm_min; int tm_hour; int tm_mday; int tm_mon; int tm_year; int tm_wday; int tm_yday; int tm_isdst; long int tm_gmtoff; __const char *tm_zone; }; struct itimerspec { struct timespec it_interval; struct timespec it_value; }; struct sigevent; // # 181 "/usr/include/time.h" 3 4 extern clock_t clock (void) __attribute__ ((__nothrow__)); extern time_t time (time_t *__timer) __attribute__ ((__nothrow__)); extern double difftime (time_t __time1, time_t __time0) __attribute__ ((__nothrow__)) __attribute__ ((__const__)); extern time_t mktime (struct tm *__tp) __attribute__ ((__nothrow__)); extern size_t strftime (char *__restrict __s, size_t __maxsize, __const char *__restrict __format, __const struct tm *__restrict __tp) __attribute__ ((__nothrow__)); // # 229 "/usr/include/time.h" 3 4 extern struct tm *gmtime (__const time_t *__timer) __attribute__ ((__nothrow__)); extern struct tm *localtime (__const time_t *__timer) __attribute__ ((__nothrow__)); extern struct tm *gmtime_r (__const time_t *__restrict __timer, struct tm *__restrict __tp) __attribute__ ((__nothrow__)); extern struct tm *localtime_r (__const time_t *__restrict __timer, struct tm *__restrict __tp) __attribute__ ((__nothrow__)); extern char *asctime (__const struct tm *__tp) __attribute__ ((__nothrow__)); extern char *ctime (__const time_t *__timer) __attribute__ ((__nothrow__)); extern char *asctime_r (__const struct tm *__restrict __tp, char *__restrict __buf) __attribute__ ((__nothrow__)); extern char *ctime_r (__const time_t *__restrict __timer, char *__restrict __buf) __attribute__ ((__nothrow__)); extern char *__tzname[2]; extern int __daylight; extern long int __timezone; extern char *tzname[2]; extern void tzset (void) __attribute__ ((__nothrow__)); extern int daylight; extern long int timezone; extern int stime (__const time_t *__when) __attribute__ ((__nothrow__)); // # 312 "/usr/include/time.h" 3 4 extern time_t timegm (struct tm *__tp) __attribute__ ((__nothrow__)); extern time_t timelocal (struct tm *__tp) __attribute__ ((__nothrow__)); extern int dysize (int __year) __attribute__ ((__nothrow__)) __attribute__ ((__const__)); // # 327 "/usr/include/time.h" 3 4 extern int nanosleep (__const struct timespec *__requested_time, struct timespec *__remaining); extern int clock_getres (clockid_t __clock_id, struct timespec *__res) __attribute__ ((__nothrow__)); extern int clock_gettime (clockid_t __clock_id, struct timespec *__tp) __attribute__ ((__nothrow__)); extern int clock_settime (clockid_t __clock_id, __const struct timespec *__tp) __attribute__ ((__nothrow__)); extern int clock_nanosleep (clockid_t __clock_id, int __flags, __const struct timespec *__req, struct timespec *__rem); extern int clock_getcpuclockid (pid_t __pid, clockid_t *__clock_id) __attribute__ ((__nothrow__)); extern int timer_create (clockid_t __clock_id, struct sigevent *__restrict __evp, timer_t *__restrict __timerid) __attribute__ ((__nothrow__)); extern int timer_delete (timer_t __timerid) __attribute__ ((__nothrow__)); extern int timer_settime (timer_t __timerid, int __flags, __const struct itimerspec *__restrict __value, struct itimerspec *__restrict __ovalue) __attribute__ ((__nothrow__)); extern int timer_gettime (timer_t __timerid, struct itimerspec *__value) __attribute__ ((__nothrow__)); extern int timer_getoverrun (timer_t __timerid) __attribute__ ((__nothrow__)); // # 416 "/usr/include/time.h" 3 4 // # 19 "../../include/msg.h" 2 typedef void (*MSG_CLEANUP_FN) (void); extern int msg_verbose; extern void __attribute__ ((format (printf, (1), (2)))) msg_info(const char *,...); extern void __attribute__ ((format (printf, (1), (2)))) msg_warn(const char *,...); extern void __attribute__ ((format (printf, (1), (2)))) msg_error(const char *,...); extern void __attribute__((__noreturn__)) __attribute__ ((format (printf, (1), (2)))) msg_fatal(const char *,...); extern void __attribute__((__noreturn__)) __attribute__ ((format (printf, (2), (3)))) msg_fatal_status(int, const char *,...); extern void __attribute__((__noreturn__)) __attribute__ ((format (printf, (1), (2)))) msg_panic(const char *,...); extern void vmsg_info(const char *, va_list); extern void vmsg_warn(const char *, va_list); extern void vmsg_error(const char *, va_list); extern void __attribute__((__noreturn__)) vmsg_fatal(const char *, va_list); extern void __attribute__((__noreturn__)) vmsg_fatal_status(int, const char *, va_list); extern void __attribute__((__noreturn__)) vmsg_panic(const char *, va_list); extern int msg_error_limit(int); extern void msg_error_clear(void); extern MSG_CLEANUP_FN msg_cleanup(MSG_CLEANUP_FN); extern void __attribute__ ((format (printf, (4), (5)))) msg_rate_delay(time_t *, int, void (*log_fn) (const char *,...), const char *,...); // # 67 "mail_run.c" 2 // # 1 "../../include/stringops.h" 1 // # 17 "../../include/stringops.h" // # 1 "../../include/vstring.h" 1 // # 22 "../../include/vstring.h" // # 1 "../../include/vbuf.h" 1 // # 32 "../../include/vbuf.h" typedef struct VBUF VBUF; typedef int (*VBUF_GET_READY_FN) (VBUF *); typedef int (*VBUF_PUT_READY_FN) (VBUF *); typedef int (*VBUF_SPACE_FN) (VBUF *, ssize_t); struct VBUF { int flags; unsigned char *data; ssize_t len; ssize_t cnt; unsigned char *ptr; VBUF_GET_READY_FN get_ready; VBUF_PUT_READY_FN put_ready; VBUF_SPACE_FN space; }; // # 93 "../../include/vbuf.h" extern int vbuf_get(VBUF *); extern int vbuf_put(VBUF *, int); extern int vbuf_unget(VBUF *, int); extern ssize_t vbuf_read(VBUF *, char *, ssize_t); extern ssize_t vbuf_write(VBUF *, const char *, ssize_t); // # 23 "../../include/vstring.h" 2 typedef struct VSTRING { VBUF vbuf; ssize_t maxlen; } VSTRING; extern VSTRING *vstring_alloc(ssize_t); extern void vstring_ctl(VSTRING *,...); extern VSTRING *vstring_truncate(VSTRING *, ssize_t); extern VSTRING *vstring_free(VSTRING *); extern VSTRING *vstring_strcpy(VSTRING *, const char *); extern VSTRING *vstring_strncpy(VSTRING *, const char *, ssize_t); extern VSTRING *vstring_strcat(VSTRING *, const char *); extern VSTRING *vstring_strncat(VSTRING *, const char *, ssize_t); extern VSTRING *vstring_memcpy(VSTRING *, const char *, ssize_t); extern VSTRING *vstring_memcat(VSTRING *, const char *, ssize_t); extern char *vstring_memchr(VSTRING *, int); extern VSTRING *vstring_insert(VSTRING *, ssize_t, const char *, ssize_t); extern VSTRING *vstring_prepend(VSTRING *, const char *, ssize_t); extern VSTRING *__attribute__ ((format (printf, (2), (3)))) vstring_sprintf(VSTRING *, const char *,...); extern VSTRING *__attribute__ ((format (printf, (2), (3)))) vstring_sprintf_append(VSTRING *, const char *,...); extern VSTRING *__attribute__ ((format (printf, (2), (3)))) vstring_sprintf_prepend(VSTRING *, const char *, ...); extern char *vstring_export(VSTRING *); extern VSTRING *vstring_import(char *); // # 87 "../../include/vstring.h" extern VSTRING *vstring_vsprintf(VSTRING *, const char *, va_list); extern VSTRING *vstring_vsprintf_append(VSTRING *, const char *, va_list); // # 18 "../../include/stringops.h" 2 extern char *printable(char *, int); extern char *neuter(char *, const char *, int); extern char *lowercase(char *); extern char *uppercase(char *); extern char *skipblanks(const char *); extern char *trimblanks(char *, int); extern char *concatenate(const char *,...); extern char *mystrtok(char **, const char *); extern char *translit(char *, const char *, const char *); extern char *postfix_basename(const char *); extern char *sane_basename(VSTRING *, const char *); extern char *sane_dirname(VSTRING *, const char *); extern VSTRING *unescape(VSTRING *, const char *); extern VSTRING *escape(VSTRING *, const char *, ssize_t); extern int alldig(const char *); extern int allprint(const char *); extern int allspace(const char *); extern int allascii(const char *); extern const char *split_nameval(char *, char **, char **); extern int valid_utf_8(const char *, ssize_t); // # 68 "mail_run.c" 2 // # 1 "../../include/mymalloc.h" 1 // # 17 "../../include/mymalloc.h" extern char *mymalloc(ssize_t); extern char *myrealloc(char *, ssize_t); extern void myfree(char *); extern char *mystrdup(const char *); extern char *mystrndup(const char *, ssize_t); extern char *mymemdup(const char *, ssize_t); // # 69 "mail_run.c" 2 // # 1 "mail_params.h" 1 // # 17 "mail_params.h" typedef int bool; extern char *var_mail_name; extern bool var_helpful_warnings; extern bool var_show_unk_rcpt_table; // # 50 "mail_params.h" extern char *var_notify_classes; extern char *var_empty_addr; extern char *var_mail_owner; extern uid_t var_owner_uid; extern gid_t var_owner_gid; extern char *var_sgid_group; extern gid_t var_sgid_gid; extern char *var_default_privs; extern uid_t var_default_uid; extern gid_t var_default_gid; // # 87 "mail_params.h" extern char *var_flush_acl; extern char *var_showq_acl; extern char *var_submit_acl; extern char *var_myorigin; extern char *var_mydest; extern char *var_myhostname; extern char *var_mydomain; extern char *var_local_transport; extern char *var_bounce_rcpt; extern char *var_2bounce_rcpt; extern char *var_delay_rcpt; extern char *var_error_rcpt; // # 156 "mail_params.h" extern char *var_inet_interfaces; extern char *var_proxy_interfaces; extern char *var_masq_domains; extern char *var_masq_exceptions; // # 182 "mail_params.h" extern char *var_masq_classes; extern char *var_relayhost; extern char *var_snd_relay_maps; extern char *var_null_relay_maps_key; extern char *var_fallback_relay; extern bool var_disable_dns; // # 216 "mail_params.h" extern char *var_smtp_host_lookup; // # 225 "mail_params.h" extern char *var_smtp_dns_res_opt; extern int var_smtp_mxaddr_limit; extern int var_smtp_mxsess_limit; // # 246 "mail_params.h" extern char *var_queue_dir; // # 255 "mail_params.h" extern char *var_daemon_dir; extern char *var_command_dir; // # 270 "mail_params.h" extern char *var_pid_dir; // # 279 "mail_params.h" extern char *var_data_dir; extern time_t var_starttime; // # 293 "mail_params.h" extern char *var_config_dir; extern char *var_config_dirs; // # 307 "mail_params.h" extern char *var_db_type; extern char *var_syslog_facility; // # 331 "mail_params.h" extern char *var_always_bcc; // # 342 "mail_params.h" extern char *var_rcpt_witheld; extern bool var_always_add_hdrs; extern bool var_strict_rfc821_env; extern bool var_broken_auth_clients; extern bool var_disable_vrfy_cmd; extern char *var_virt_alias_maps; extern char *var_virt_alias_doms; extern int var_virt_alias_code; extern char *var_canonical_maps; extern char *var_send_canon_maps; extern char *var_rcpt_canon_maps; // # 412 "mail_params.h" extern char *var_canon_classes; extern char *var_send_canon_classes; extern char *var_rcpt_canon_classes; extern char *var_send_bcc_maps; extern char *var_rcpt_bcc_maps; extern char *var_transport_maps; extern char *var_def_transport; extern char *var_snd_def_xport_maps; extern char *var_null_def_xport_maps_key; extern bool var_swap_bangpath; extern bool var_append_at_myorigin; extern bool var_append_dot_mydomain; extern bool var_percent_hack; // # 476 "mail_params.h" extern char *var_alias_maps; extern bool var_biff; extern char *var_allow_commands; extern int var_command_maxtime; extern char *var_allow_files; extern char *var_local_cmd_shell; extern char *var_alias_db_map; extern char *var_luser_relay; extern char *var_mail_spool_dir; extern char *var_home_mailbox; extern char *var_mailbox_command; extern char *var_mailbox_cmd_maps; extern char *var_mailbox_transport; extern char *var_mbox_transp_maps; extern char *var_fallback_transport; extern char *var_fbck_transp_maps; extern char *var_forward_path; extern char *var_exec_directory; extern char *var_exec_exp_filter; extern char *var_mailbox_lock; extern long var_mailbox_limit; extern char *var_prop_extension; extern char *var_rcpt_delim; extern char *var_cmd_exp_filter; extern char *var_fwd_exp_filter; extern char *var_deliver_hdr; // # 617 "mail_params.h" extern bool var_enable_orcpt; extern bool var_exp_own_alias; extern bool var_stat_home_dir; extern int var_dup_filter_limit; extern bool var_tls_append_def_CA; extern char *var_tls_rand_exch_name; extern char *var_tls_rand_source; extern int var_tls_rand_bytes; extern int var_tls_daemon_rand_bytes; extern int var_tls_reseed_period; extern int var_tls_prng_upd_period; extern char *var_relocated_maps; // # 685 "mail_params.h" extern int var_min_backoff_time; extern int var_max_backoff_time; extern int var_max_queue_time; extern int var_dsn_queue_time; extern int var_delay_warn_time; extern int var_qmgr_active_limit; extern int var_qmgr_rcpt_limit; extern int var_qmgr_msg_rcpt_limit; extern int var_xport_rcpt_limit; extern int var_stack_rcpt_limit; extern int var_xport_refill_limit; extern int var_xport_refill_delay; extern int var_delivery_slot_cost; extern int var_delivery_slot_loan; extern int var_delivery_slot_discount; extern int var_min_delivery_slots; extern int var_qmgr_fudge; extern int var_init_dest_concurrency; extern int var_dest_con_limit; extern int var_local_con_lim; extern int var_dest_rcpt_limit; extern int var_local_rcpt_lim; extern int var_transport_retry_time; extern char *var_defer_xports; extern int var_qmgr_clog_warn_time; extern int var_proc_limit; extern int var_throttle_time; extern char *var_master_disable; extern int var_use_limit; extern int var_idle_limit; extern int var_event_drain; extern int var_ipc_idle_limit; // # 880 "mail_params.h" extern int var_ipc_ttl_limit; extern int var_line_limit; extern char *var_debug_peer_list; extern int var_debug_peer_level; extern char *var_hash_queue_names; extern int var_hash_queue_depth; extern bool var_long_queue_ids; // # 929 "mail_params.h" extern char *var_inet_protocols; // # 942 "mail_params.h" extern char *var_bestmx_transp; extern int var_smtp_cache_conn; extern int var_smtp_reuse_time; extern char *var_smtp_cache_dest; // # 970 "mail_params.h" extern bool var_smtp_cache_demand; extern int var_smtp_conn_tmout; extern int var_smtp_helo_tmout; extern int var_smtp_xfwd_tmout; extern int var_smtp_starttls_tmout; extern int var_smtp_mail_tmout; extern int var_smtp_rcpt_tmout; extern int var_smtp_data0_tmout; extern int var_smtp_data1_tmout; extern int var_smtp_data2_tmout; extern int var_smtp_rset_tmout; extern int var_smtp_quit_tmout; extern int var_smtp_quote_821_env; extern bool var_smtp_skip_5xx_greeting; extern bool var_ign_mx_lookup_err; extern bool var_skip_quit_resp; extern bool var_smtp_always_ehlo; extern bool var_smtp_never_ehlo; extern char *var_smtp_resp_filter; extern char *var_smtp_bind_addr; extern char *var_smtp_bind_addr6; extern char *var_smtp_helo_name; extern bool var_smtp_rand_addr; extern int var_smtp_line_limit; extern int var_smtp_pix_thresh; extern int var_smtp_pix_delay; // # 1110 "mail_params.h" extern char *var_smtp_pix_bug_words; extern char *var_smtp_pix_bug_maps; extern bool var_smtp_defer_mxaddr; extern bool var_smtp_send_xforward; extern char *var_smtp_generic_maps; // # 1141 "mail_params.h" extern char *var_smtpd_banner; extern int var_smtpd_tmout; extern int var_smtpd_starttls_tmout; extern int var_smtpd_rcpt_limit; extern int var_smtpd_soft_erlim; extern int var_smtpd_hard_erlim; extern int var_smtpd_err_sleep; extern int var_smtpd_junk_cmd_limit; extern int var_smtpd_rcpt_overlim; extern int var_smtpd_hist_thrsh; extern char *var_smtpd_noop_cmds; extern char *var_smtpd_forbid_cmds; extern char *var_smtpd_cmd_filter; extern bool var_smtpd_tls_wrappermode; extern char *var_smtpd_tls_level; extern bool var_smtpd_use_tls; extern bool var_smtpd_enforce_tls; extern bool var_smtpd_tls_auth_only; extern bool var_smtpd_tls_ask_ccert; extern bool var_smtpd_tls_req_ccert; extern int var_smtpd_tls_ccert_vd; extern char *var_smtpd_tls_cert_file; extern char *var_smtpd_tls_key_file; extern char *var_smtpd_tls_dcert_file; extern char *var_smtpd_tls_dkey_file; extern char *var_smtpd_tls_eccert_file; extern char *var_smtpd_tls_eckey_file; extern char *var_smtpd_tls_CAfile; extern char *var_smtpd_tls_CApath; extern char *var_smtpd_tls_proto; extern char *var_smtpd_tls_mand_proto; extern char *var_smtpd_tls_ciph; extern char *var_smtpd_tls_mand_ciph; extern char *var_smtpd_tls_excl_ciph; extern char *var_smtpd_tls_mand_excl; extern char *var_smtpd_tls_fpt_dgst; extern char *var_smtpd_tls_dh512_param_file; extern char *var_smtpd_tls_dh1024_param_file; extern char *var_smtpd_tls_eecdh; extern char *var_smtpd_tls_loglevel; extern bool var_smtpd_tls_received_header; extern char *var_smtpd_tls_scache_db; extern int var_smtpd_tls_scache_timeout; extern bool var_smtpd_tls_set_sessid; extern bool var_smtpd_delay_open; extern char *var_smtp_tls_per_site; extern bool var_smtp_use_tls; extern bool var_smtp_enforce_tls; extern bool var_smtp_tls_enforce_peername; extern char *var_smtp_tls_level; extern int var_smtp_tls_scert_vd; extern char *var_smtp_tls_cert_file; extern char *var_smtp_tls_key_file; extern char *var_smtp_tls_dcert_file; extern char *var_smtp_tls_dkey_file; extern char *var_smtp_tls_eccert_file; extern char *var_smtp_tls_eckey_file; extern char *var_smtp_tls_CAfile; extern char *var_smtp_tls_CApath; extern char *var_smtp_tls_ciph; extern char *var_smtp_tls_mand_ciph; extern char *var_smtp_tls_excl_ciph; extern char *var_smtp_tls_mand_excl; extern char *var_smtp_tls_fpt_dgst; extern char *var_smtp_tls_loglevel; extern char *var_lmtp_tls_loglevel; extern bool var_smtp_tls_note_starttls_offer; extern char *var_smtp_tls_scache_db; extern char *var_lmtp_tls_scache_db; extern int var_smtp_tls_scache_timeout; extern int var_lmtp_tls_scache_timeout; extern char *var_smtp_tls_policy; extern char *var_smtp_tls_proto; extern char *var_smtp_tls_mand_proto; extern char *var_smtp_tls_vfy_cmatch; // # 1491 "mail_params.h" extern char *var_smtp_tls_sec_cmatch; extern char *var_smtp_tls_fpt_cmatch; extern bool var_smtp_tls_blk_early_mail_reply; extern bool var_smtpd_sasl_enable; extern bool var_smtpd_sasl_auth_hdr; extern char *var_smtpd_sasl_opts; extern char *var_smtpd_sasl_path; extern char *var_cyrus_conf_path; extern char *var_smtpd_sasl_tls_opts; extern char *var_smtpd_sasl_realm; extern char *var_smtpd_sasl_exceptions_networks; extern char *var_smtpd_sasl_type; extern char *var_smtpd_snd_auth_maps; // # 1564 "mail_params.h" extern bool var_smtp_sasl_enable; extern char *var_smtp_sasl_passwd; extern char *var_smtp_sasl_opts; extern char *var_smtp_sasl_path; extern char *var_smtp_sasl_mechs; // # 1592 "mail_params.h" extern char *var_smtp_sasl_type; extern char *var_smtp_sasl_tls_opts; extern char *var_smtp_sasl_tlsv_opts; extern bool var_smtp_dummy_mail_auth; // # 1617 "mail_params.h" extern char *var_lmtpd_banner; extern int var_lmtpd_tmout; extern int var_lmtpd_rcpt_limit; extern int var_lmtpd_soft_erlim; extern int var_lmtpd_hard_erlim; extern int var_lmtpd_err_sleep; extern int var_lmtpd_junk_cmd_limit; extern bool var_lmtpd_sasl_enable; extern char *var_lmtpd_sasl_opts; extern char *var_lmtpd_sasl_realm; extern bool var_lmtp_sasl_enable; extern char *var_lmtp_sasl_passwd; extern char *var_lmtp_sasl_opts; extern char *var_lmtp_sasl_path; extern bool var_lmtp_dummy_mail_auth; // # 1688 "mail_params.h" extern int var_cyrus_sasl_authzid; // # 1697 "mail_params.h" extern bool var_smtp_sasl_auth_soft_bounce; extern char *var_smtp_sasl_auth_cache_name; extern int var_smtp_sasl_auth_cache_time; // # 1719 "mail_params.h" extern char *var_lmtp_tcp_port; extern bool var_lmtp_assume_final; extern bool var_lmtp_cache_conn; extern bool var_lmtp_skip_quit_resp; extern int var_lmtp_conn_tmout; extern int var_lmtp_rset_tmout; extern int var_lmtp_lhlo_tmout; extern int var_lmtp_xfwd_tmout; extern int var_lmtp_mail_tmout; extern int var_lmtp_rcpt_tmout; extern int var_lmtp_data0_tmout; extern int var_lmtp_data1_tmout; extern int var_lmtp_data2_tmout; extern int var_lmtp_quit_tmout; extern bool var_lmtp_send_xforward; extern int var_hopcount_limit; extern int var_header_limit; extern int var_token_limit; extern int var_virt_recur_limit; extern int var_virt_expan_limit; extern long var_message_limit; extern int var_queue_minfree; extern char *var_header_checks; extern char *var_mimehdr_checks; extern char *var_nesthdr_checks; extern char *var_body_checks; extern int var_body_check_len; extern int var_bounce_limit; extern char *var_double_bounce_sender; extern int var_fork_tries; extern int var_fork_delay; extern int var_flock_tries; extern int var_flock_delay; extern int var_flock_stale; extern int var_mailtool_compat; extern int var_daemon_timeout; extern int var_qmgr_daemon_timeout; extern int var_ipc_timeout; extern int var_qmgr_ipc_timeout; extern int var_trigger_timeout; extern char *var_mynetworks; extern char *var_mynetworks_style; extern char *var_relay_domains; extern char *var_relay_transport; extern char *var_relay_rcpt_maps; extern int var_relay_rcpt_code; extern char *var_smtpd_relay_ccerts; extern char *var_client_checks; extern bool var_helo_required; extern char *var_helo_checks; extern char *var_mail_checks; extern char *var_rcpt_checks; extern char *var_etrn_checks; extern char *var_data_checks; extern char *var_eod_checks; extern char *var_rest_classes; extern bool var_allow_untrust_route; // # 1993 "mail_params.h" extern int var_reject_code; extern int var_defer_code; extern char *var_reject_tmpf_act; extern int var_plaintext_code; extern int var_unk_client_code; // # 2032 "mail_params.h" extern int var_bad_name_code; extern int var_unk_name_code; extern char *var_unk_name_tf_act; extern int var_non_fqdn_code; // # 2061 "mail_params.h" extern int var_unk_addr_code; extern char *var_unk_addr_tf_act; extern bool var_smtpd_rej_unl_from; extern bool var_smtpd_rej_unl_rcpt; extern int var_unv_rcpt_rcode; extern int var_unv_from_rcode; extern int var_unv_rcpt_dcode; extern int var_unv_from_dcode; extern char *var_unv_rcpt_tf_act; extern char *var_unv_from_tf_act; extern char *var_unv_rcpt_why; extern char *var_unv_from_why; extern int var_mul_rcpt_code; // # 2121 "mail_params.h" extern int var_relay_code; extern char *var_perm_mx_networks; extern int var_map_reject_code; extern int var_map_defer_code; // # 2171 "mail_params.h" extern char *var_rbl_reply_maps; extern char *var_def_rbl_reply; extern int var_maps_rbl_code; extern char *var_maps_rbl_domains; extern int var_smtpd_delay_reject; extern char *var_smtpd_null_key; extern char *var_smtpd_exp_filter; extern bool var_smtpd_peername_lookup; extern char *var_local_rcpt_maps; extern int var_local_rcpt_code; // # 2240 "mail_params.h" extern char *var_proxy_read_maps; extern char *var_proxy_write_maps; extern char *var_proxy_read_acl; extern char *var_proxy_write_acl; extern char *var_procname; extern int var_pid; // # 2273 "mail_params.h" extern bool var_dont_remove; extern bool var_soft_bounce; extern bool var_ownreq_special; extern bool var_allow_min_user; extern void mail_params_init(void); extern char *var_filter_xport; extern char *var_def_filter_nexthop; extern char *var_fflush_domains; extern int var_fflush_purge; extern int var_fflush_refresh; extern char *var_import_environ; extern char *var_export_environ; extern char *var_virt_transport; extern char *var_virt_mailbox_maps; extern char *var_virt_mailbox_doms; extern int var_virt_mailbox_code; extern char *var_virt_uid_maps; extern char *var_virt_gid_maps; extern int var_virt_minimum_uid; extern char *var_virt_mailbox_base; extern long var_virt_mailbox_limit; extern char *var_virt_mailbox_lock; // # 2389 "mail_params.h" extern char *var_syslog_name; extern char *var_qmqpd_clients; extern int var_qmqpd_timeout; extern int var_qmqpd_err_sleep; extern char *var_verp_delims; extern char *var_verp_filter; extern bool var_verp_bounce_off; extern char *var_verp_clients; extern char *var_xclient_hosts; extern char *var_xforward_hosts; // # 2455 "mail_params.h" extern int var_in_flow_delay; // # 2468 "mail_params.h" extern char *var_par_dom_match; // # 2477 "mail_params.h" extern int var_fault_inj_code; // # 2526 "mail_params.h" extern bool var_resolve_dequoted; extern bool var_resolve_nulldom; extern bool var_resolve_num_dom; // # 2545 "mail_params.h" extern char *var_bounce_service; extern char *var_cleanup_service; extern char *var_defer_service; extern char *var_pickup_service; extern char *var_queue_service; extern char *var_rewrite_service; extern char *var_showq_service; extern char *var_error_service; extern char *var_flush_service; extern char *var_scache_service; extern int var_scache_proto_tmout; extern int var_scache_ttl_lim; extern int var_scache_stat_time; extern char *var_verify_service; extern char *var_verify_map; extern int var_verify_pos_exp; extern int var_verify_pos_try; extern int var_verify_neg_exp; extern int var_verify_neg_try; extern bool var_verify_neg_cache; extern int var_verify_scan_cache; extern char *var_verify_sender; extern int var_verify_sender_ttl; extern int var_verify_poll_count; extern int var_verify_poll_delay; extern char *var_vrfy_local_xport; extern char *var_vrfy_virt_xport; extern char *var_vrfy_relay_xport; extern char *var_vrfy_def_xport; extern char *var_snd_def_xport_maps; extern char *var_vrfy_relayhost; extern char *var_vrfy_relay_maps; extern char *var_vrfy_xport_maps; extern char *var_trace_service; extern char *var_proxymap_service; extern char *var_proxywrite_service; extern char *var_mbx_defer_errs; extern char *var_mdr_defer_errs; extern int var_db_create_buf; extern int var_db_read_buf; extern int var_qattr_count_limit; extern int var_mime_maxdepth; extern int var_mime_bound_len; extern bool var_disable_mime_input; extern bool var_disable_mime_oconv; extern bool var_strict_8bitmime; extern bool var_strict_7bit_hdrs; extern bool var_strict_8bit_body; extern bool var_strict_encoding; extern int var_auto_8bit_enc_hdr; extern bool var_sender_routing; extern char *var_xport_null_key; extern bool var_oldlog_compat; extern char *var_smtpd_proxy_filt; extern char *var_smtpd_proxy_ehlo; extern int var_smtpd_proxy_tmout; extern char *var_smtpd_proxy_opts; // # 2813 "mail_params.h" extern char *var_smtpd_input_transp; extern int var_smtpd_policy_tmout; extern int var_smtpd_policy_idle; extern int var_smtpd_policy_ttl; // # 2837 "mail_params.h" extern int var_smtpd_crate_limit; extern int var_smtpd_cconn_limit; extern int var_smtpd_cmail_limit; extern int var_smtpd_crcpt_limit; extern int var_smtpd_cntls_limit; extern char *var_smtpd_hoggers; extern int var_anvil_time_unit; extern int var_anvil_stat_time; // # 2884 "mail_params.h" extern char *var_remote_rwr_domain; extern char *var_local_rwr_clients; extern char *var_smtpd_ehlo_dis_words; extern char *var_smtpd_ehlo_dis_maps; extern char *var_smtp_ehlo_dis_words; extern char *var_smtp_ehlo_dis_maps; extern const char null_format_string[1]; extern char *var_msg_reject_chars; extern char *var_msg_strip_chars; extern bool var_frozen_delivered; extern bool var_reset_owner_attr; // # 2949 "mail_params.h" extern int var_delay_max_res; extern char *var_bounce_tmpl; // # 2965 "mail_params.h" extern bool var_smtp_sender_auth; // # 2974 "mail_params.h" extern bool var_smtp_cname_overr; // # 2992 "mail_params.h" extern char *var_tls_high_clist; extern char *var_tls_medium_clist; extern char *var_tls_low_clist; extern char *var_tls_export_clist; extern char *var_tls_null_clist; extern char *var_tls_eecdh_strong; extern char *var_tls_eecdh_ultra; extern bool var_tls_preempt_clist; // # 3036 "mail_params.h" extern char *var_tls_bug_tweaks; extern char *var_smtpd_milters; extern char *var_cleanup_milters; extern char *var_milt_def_action; extern char *var_milt_conn_macros; extern char *var_milt_helo_macros; extern char *var_milt_mail_macros; extern char *var_milt_rcpt_macros; extern char *var_milt_data_macros; extern char *var_milt_unk_macros; extern char *var_milt_eoh_macros; extern char *var_milt_eod_macros; extern int var_milt_conn_time; extern int var_milt_cmd_time; extern int var_milt_msg_time; extern char *var_milt_protocol; extern char *var_milt_def_action; extern char *var_milt_daemon_name; extern char *var_milt_v; extern char *var_milt_head_checks; // # 3131 "mail_params.h" extern char *var_int_filt_classes; extern bool var_smtpd_client_port_log; extern bool var_qmqpd_client_port_log; extern char *var_smtp_head_chks; extern char *var_smtp_mime_chks; extern char *var_smtp_nest_chks; extern char *var_smtp_body_chks; // # 3178 "mail_params.h" extern char *var_smtp_addr_pref; // # 3189 "mail_params.h" extern char *var_conc_pos_feedback; extern char *var_conc_neg_feedback; extern int var_conc_cohort_limit; extern bool var_conc_feedback_debug; extern int var_dest_rate_delay; extern char *var_stress; extern bool var_strict_mbox_owner; extern int var_inet_windowsize; extern char *var_multi_conf_dirs; extern char *var_multi_wrapper; extern char *var_multi_name; extern char *var_multi_group; extern bool var_multi_enable; extern char *var_multi_start_cmds; extern char *var_multi_stop_cmds; extern char *var_multi_cntrl_cmds; extern char *var_psc_cache_map; extern char *var_smtpd_service; extern int var_psc_post_queue_limit; extern int var_psc_pre_queue_limit; extern int var_psc_cache_ret; extern int var_psc_cache_scan; extern int var_psc_greet_wait; extern char *var_psc_pregr_banner; extern char *var_psc_pregr_enable; extern char *var_psc_pregr_action; extern int var_psc_pregr_ttl; extern char *var_psc_dnsbl_sites; extern int var_psc_dnsbl_thresh; extern char *var_psc_dnsbl_enable; extern char *var_psc_dnsbl_action; extern int var_psc_dnsbl_ttl; extern char *var_psc_dnsbl_reply; extern bool var_psc_pipel_enable; extern char *var_psc_pipel_action; extern int var_psc_pipel_ttl; extern bool var_psc_nsmtp_enable; extern char *var_psc_nsmtp_action; extern int var_psc_nsmtp_ttl; extern bool var_psc_barlf_enable; extern char *var_psc_barlf_action; extern int var_psc_barlf_ttl; extern char *var_psc_wlist_nets; extern char *var_psc_blist_nets; extern char *var_psc_blist_nets; extern int var_psc_cmd_count; extern char *var_psc_cmd_time; extern int var_psc_watchdog; extern char *var_psc_ehlo_dis_words; extern char *var_psc_ehlo_dis_maps; extern char *var_psc_tls_level; extern bool var_psc_use_tls; extern bool var_psc_enforce_tls; extern char *var_psc_forbid_cmds; extern bool var_psc_helo_required; extern bool var_psc_disable_vrfy; extern int var_psc_cconn_limit; extern char *var_psc_rej_footer; extern char *var_psc_exp_filter; extern char *var_psc_cmd_filter; extern char *var_psc_acl; extern char *var_psc_wlist_if; extern char *var_dnsblog_service; extern int var_dnsblog_delay; extern char *var_tlsproxy_service; extern int var_tlsp_watchdog; extern char *var_tlsp_tls_level; extern bool var_tlsp_use_tls; extern bool var_tlsp_enforce_tls; extern bool var_tlsp_tls_ask_ccert; extern bool var_tlsp_tls_req_ccert; extern int var_tlsp_tls_ccert_vd; extern char *var_tlsp_tls_cert_file; extern char *var_tlsp_tls_key_file; extern char *var_tlsp_tls_dcert_file; extern char *var_tlsp_tls_dkey_file; extern char *var_tlsp_tls_eccert_file; extern char *var_tlsp_tls_eckey_file; extern char *var_tlsp_tls_eckey_file; extern char *var_tlsp_tls_CAfile; extern char *var_tlsp_tls_CApath; extern char *var_tlsp_tls_proto; extern char *var_tlsp_tls_mand_proto; extern char *var_tlsp_tls_ciph; extern char *var_tlsp_tls_mand_ciph; extern char *var_tlsp_tls_excl_ciph; extern char *var_tlsp_tls_mand_excl; extern char *var_tlsp_tls_fpt_dgst; extern char *var_tlsp_tls_dh512_param_file; extern char *var_tlsp_tls_dh1024_param_file; extern char *var_tlsp_tls_eecdh; extern char *var_tlsp_tls_loglevel; extern bool var_tlsp_tls_received_header; extern char *var_tlsp_tls_scache_db; extern int var_tlsp_tls_scache_timeout; extern bool var_tlsp_tls_set_sessid; extern char *var_smtpd_rej_footer; extern bool var_smtpd_rec_deadline; extern bool var_smtp_rec_deadline; // # 3624 "mail_params.h" extern char *var_sm_fix_eol; extern bool var_daemon_open_fatal; // # 73 "mail_run.c" 2 // # 1 "mail_run.h" 1 // # 16 "mail_run.h" extern int mail_run_foreground(const char *, char **); extern int mail_run_background(const char *, char **); extern void __attribute__((__noreturn__)) mail_run_replace(const char *, char **); // # 74 "mail_run.c" 2 int mail_run_foreground(const char *dir, char **argv) { int count; char *path; WAIT_STATUS_T status; int pid; int wpid; path = concatenate(dir, "/", argv[0], (char *) 0); for (count = 0; count < var_fork_tries; count++) { switch (pid = fork()) { case -1: msg_warn("fork %s: %m", path); break; case 0: (void) msg_cleanup((MSG_CLEANUP_FN) 0); execv(path, argv); msg_fatal("execv %s: %m", path); default: do { wpid = waitpid(pid, &status, 0); } while (wpid == -1 && (*__errno_location ()) == 4); { myfree(path); return(wpid == -1 ? -1 : ((((__extension__ (((union { __typeof(status) __in; int __i; }) { .__in = (status) }).__i))) & 0x7f) == 0) ? ((((__extension__ (((union { __typeof(status) __in; int __i; }) { .__in = (status) }).__i))) & 0xff00) >> 8) : 1); } } sleep(var_fork_delay); } { myfree(path); return(-1); }; } int mail_run_background(const char *dir, char **argv) { int count; char *path; int pid; path = concatenate(dir, "/", argv[0], (char *) 0); for (count = 0; count < var_fork_tries; count++) { switch (pid = fork()) { case -1: msg_warn("fork %s: %m", path); break; case 0: (void) msg_cleanup((MSG_CLEANUP_FN) 0); execv(path, argv); msg_fatal("execv %s: %m", path); default: { myfree(path); return(pid); }; } sleep(var_fork_delay); } { myfree(path); return(-1); }; } void __attribute__((__noreturn__)) mail_run_replace(const char *dir, char **argv) { char *path; path = concatenate(dir, "/", argv[0], (char *) 0); execv(path, argv); msg_fatal("execv %s: %m", path); }
the_stack_data/254913.c
//modified from https://www.educative.io/edpresso/how-to-implement-tcp-sockets-in-c #include <stdio.h> #include <string.h> #include <sys/socket.h> //needed for socket related functions #include <arpa/inet.h> //needed for internet related functions int main(void) { int socket_desc; //status of socket creation int client_sock; //status of client connection int client_size;// struct sockaddr_in server_addr; //struct containing information about our server address struct sockaddr_in client_addr; //struct containing information about our client address char server_message[2000]; //array containing the server message char client_message[2000]; //array containing the clinet message //Set message arrays to null memset(server_message, '\0', sizeof(server_message)); memset(client_message, '\0', sizeof(client_message)); // Create socket. will return a negative if unsucessful socket_desc = socket(AF_INET, SOCK_STREAM, 0); //Check to see if socket sucessfully created if(socket_desc < 0){ //Display error and exit if not printf("Error while creating socket\n"); return -1; } printf("Socket created successfully\n"); // Set port and IP: server_addr.sin_family = AF_INET; //set socket domain server_addr.sin_port = htons(8000); //set socket port server_addr.sin_addr.s_addr = inet_addr("127.0.0.1"); //set socket IP address // Bind to the set port and IP if(bind(socket_desc, (struct sockaddr*)&server_addr, sizeof(server_addr))<0){ //Display error and exit if unsucessful printf("Couldn't bind to the port\n"); return -1; } printf("Done with binding\n"); // Listen for clients if(listen(socket_desc, 1) < 0){ printf("Error while listening\n"); return -1; } printf("\nListening for incoming connections.....\n"); // Accept an incoming connection and get information about our client client_size = sizeof(client_addr); client_sock = accept(socket_desc, (struct sockaddr*)&client_addr, &client_size); if (client_sock < 0){ //Display error and don't connect if unable to connect printf("Can't accept\n"); return -1; } printf("Client connected at IP: %s and port: %i\n", inet_ntoa(client_addr.sin_addr), ntohs(client_addr.sin_port)); // Receive client's message: if (recv(client_sock, client_message, sizeof(client_message), 0) < 0){ printf("Couldn't receive\n"); return -1; } printf("Msg from client: %s\n", client_message); // Respond to client: strcpy(server_message, "Message Received."); if (send(client_sock, server_message, strlen(server_message), 0) < 0){ printf("Can't send\n"); return -1; } // Closing the socket: close(client_sock); close(socket_desc); return 0; }
the_stack_data/57951021.c
// RUN: %clang_cc1 -triple i686-unknown-unknown -emit-llvm -o - %s | \ // RUN: FileCheck --check-prefix=I686-UNKNOWN %s // I686-UNKNOWN: target datalayout = "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-f64:32:64-f80:32-n8:16:32-S128" // RUN: %clang_cc1 -triple i686-apple-darwin9 -emit-llvm -o - %s | \ // RUN: FileCheck --check-prefix=I686-DARWIN %s // I686-DARWIN: target datalayout = "e-m:o-p:32:32-p270:32:32-p271:32:32-p272:64:64-f64:32:64-f80:128-n8:16:32-S128" // RUN: %clang_cc1 -triple i686-unknown-win32 -emit-llvm -o - %s | \ // RUN: FileCheck --check-prefix=I686-WIN32 %s // I686-WIN32: target datalayout = "e-m:x-p:32:32-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:32-n8:16:32-a:0:32-S32" // RUN: %clang_cc1 -triple i686-unknown-cygwin -emit-llvm -o - %s | \ // RUN: FileCheck --check-prefix=I686-CYGWIN %s // I686-CYGWIN: target datalayout = "e-m:x-p:32:32-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:32-n8:16:32-a:0:32-S32" // RUN: %clang_cc1 -triple i686-pc-macho -emit-llvm -o - %s | \ // RUN: FileCheck --check-prefix=I686-MACHO %s // I686-MACHO: target datalayout = "e-m:o-p:32:32-p270:32:32-p271:32:32-p272:64:64-f64:32:64-f80:32-n8:16:32-S128" // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | \ // RUN: FileCheck --check-prefix=X86_64 %s // X86_64: target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" // RUN: %clang_cc1 -triple xcore-unknown-unknown -emit-llvm -o - %s | \ // RUN: FileCheck --check-prefix=XCORE %s // XCORE: target datalayout = "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:32-f64:32-a:0:32-n32" // RUN: %clang_cc1 -triple sparc-sun-solaris -emit-llvm -o - %s | \ // RUN: FileCheck %s --check-prefix=SPARC-V8 // SPARC-V8: target datalayout = "E-m:e-p:32:32-i64:64-f128:64-n32-S64" // RUN: %clang_cc1 -triple sparcv9-sun-solaris -emit-llvm -o - %s | \ // RUN: FileCheck %s --check-prefix=SPARC-V9 // SPARC-V9: target datalayout = "E-m:e-i64:64-n32:64-S128" // RUN: %clang_cc1 -triple mipsel-linux-gnu -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-32EL // RUN: %clang_cc1 -triple mipsisa32r6el-linux-gnu -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-32EL // MIPS-32EL: target datalayout = "e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64" // RUN: %clang_cc1 -triple mips-linux-gnu -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-32EB // RUN: %clang_cc1 -triple mipsisa32r6-linux-gnu -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-32EB // MIPS-32EB: target datalayout = "E-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64" // RUN: %clang_cc1 -triple mips64el-linux-gnu -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-64EL // RUN: %clang_cc1 -triple mips64el-linux-gnuabi64 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-64EL // RUN: %clang_cc1 -triple mipsisa64r6el-linux-gnu -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-64EL // RUN: %clang_cc1 -triple mipsisa64r6el-linux-gnuabi64 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-64EL // MIPS-64EL: target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-n32:64-S128" // RUN: %clang_cc1 -triple mips64el-linux-gnu -o - -emit-llvm -target-abi n32 \ // RUN: %s | FileCheck %s -check-prefix=MIPS-64EL-N32 // RUN: %clang_cc1 -triple mips64el-linux-gnuabin32 -o - -emit-llvm \ // RUN: %s | FileCheck %s -check-prefix=MIPS-64EL-N32 // RUN: %clang_cc1 -triple mipsisa64r6el-linux-gnu -o - -emit-llvm -target-abi n32 \ // RUN: %s | FileCheck %s -check-prefix=MIPS-64EL-N32 // RUN: %clang_cc1 -triple mipsisa64r6el-linux-gnuabin32 -o - -emit-llvm \ // RUN: %s | FileCheck %s -check-prefix=MIPS-64EL-N32 // MIPS-64EL-N32: target datalayout = "e-m:e-p:32:32-i8:8:32-i16:16:32-i64:64-n32:64-S128" // RUN: %clang_cc1 -triple mips64-linux-gnu -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-64EB // RUN: %clang_cc1 -triple mips64-linux-gnuabi64 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-64EB // RUN: %clang_cc1 -triple mipsisa64r6-linux-gnu -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-64EB // RUN: %clang_cc1 -triple mipsisa64r6-linux-gnuabi64 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-64EB // MIPS-64EB: target datalayout = "E-m:e-i8:8:32-i16:16:32-i64:64-n32:64-S128" // RUN: %clang_cc1 -triple mips64-linux-gnu -o - -emit-llvm %s -target-abi n32 \ // RUN: | FileCheck %s -check-prefix=MIPS-64EB-N32 // RUN: %clang_cc1 -triple mips64-linux-gnuabin32 -o - -emit-llvm %s \ // RUN: | FileCheck %s -check-prefix=MIPS-64EB-N32 // RUN: %clang_cc1 -triple mipsisa64r6-linux-gnu -o - -emit-llvm %s -target-abi n32 \ // RUN: | FileCheck %s -check-prefix=MIPS-64EB-N32 // RUN: %clang_cc1 -triple mipsisa64r6-linux-gnuabin32 -o - -emit-llvm %s \ // RUN: | FileCheck %s -check-prefix=MIPS-64EB-N32 // MIPS-64EB-N32: target datalayout = "E-m:e-p:32:32-i8:8:32-i16:16:32-i64:64-n32:64-S128" // RUN: %clang_cc1 -triple powerpc64-lv2 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=PS3 // PS3: target datalayout = "E-m:e-p:32:32-i64:64-n32:64" // RUN: %clang_cc1 -triple i686-nacl -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=I686-NACL // I686-NACL: target datalayout = "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-i64:64-n8:16:32-S128" // RUN: %clang_cc1 -triple x86_64-nacl -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=X86_64-NACL // X86_64-NACL: target datalayout = "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-i64:64-n8:16:32:64-S128" // RUN: %clang_cc1 -triple arm-nacl -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=ARM-NACL // ARM-NACL: target datalayout = "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S128" // RUN: %clang_cc1 -triple mipsel-nacl -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MIPS-NACL // MIPS-NACL: target datalayout = "e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64" // RUN: %clang_cc1 -triple le32-nacl -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=LE32-NACL // LE32-NACL: target datalayout = "e-p:32:32-i64:64" // RUN: %clang_cc1 -triple wasm32-unknown-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=WEBASSEMBLY32 // WEBASSEMBLY32: target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128" // RUN: %clang_cc1 -triple wasm64-unknown-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=WEBASSEMBLY64 // WEBASSEMBLY64: target datalayout = "e-m:e-p:64:64-i64:64-n32:64-S128" // RUN: %clang_cc1 -triple lanai-unknown-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=LANAI // LANAI: target datalayout = "E-m:e-p:32:32-i64:64-a:0:32-n32-S64" // RUN: %clang_cc1 -triple powerpc-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=PPC // PPC: target datalayout = "E-m:e-p:32:32-i64:64-n32" // RUN: %clang_cc1 -triple powerpcle-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=PPCLE // PPCLE: target datalayout = "e-m:e-p:32:32-i64:64-n32" // RUN: %clang_cc1 -triple powerpc64-freebsd -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=PPC64-FREEBSD // PPC64-FREEBSD: target datalayout = "E-m:e-i64:64-n32:64" // RUN: %clang_cc1 -triple powerpc64le-freebsd -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=PPC64LE-FREEBSD // PPC64LE-FREEBSD: target datalayout = "e-m:e-i64:64-n32:64" // RUN: %clang_cc1 -triple powerpc64-linux -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=PPC64-LINUX // PPC64-LINUX: target datalayout = "E-m:e-i64:64-n32:64-v256:256:256-v512:512:512" // RUN: %clang_cc1 -triple powerpc64-linux -o - -emit-llvm -target-cpu future %s | \ // RUN: FileCheck %s -check-prefix=PPC64-FUTURE // PPC64-FUTURE: target datalayout = "E-m:e-i64:64-n32:64-v256:256:256-v512:512:512" // RUN: %clang_cc1 -triple powerpc64-linux -o - -emit-llvm -target-cpu pwr10 %s | \ // RUN: FileCheck %s -check-prefix=PPC64-P10 // PPC64-P10: target datalayout = "E-m:e-i64:64-n32:64-v256:256:256-v512:512:512" // RUN: %clang_cc1 -triple powerpc64le-linux -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=PPC64LE-LINUX // PPC64LE-LINUX: target datalayout = "e-m:e-i64:64-n32:64-v256:256:256-v512:512:512" // RUN: %clang_cc1 -triple powerpc64le-linux -o - -emit-llvm -target-cpu future %s | \ // RUN: FileCheck %s -check-prefix=PPC64LE-FUTURE // PPC64LE-FUTURE: target datalayout = "e-m:e-i64:64-n32:64-v256:256:256-v512:512:512" // RUN: %clang_cc1 -triple powerpc64le-linux -o - -emit-llvm -target-cpu pwr10 %s | \ // RUN: FileCheck %s -check-prefix=PPC64LE-P10 // PPC64LE-P10: target datalayout = "e-m:e-i64:64-n32:64-v256:256:256-v512:512:512" // RUN: %clang_cc1 -triple nvptx-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=NVPTX // NVPTX: target datalayout = "e-p:32:32-i64:64-i128:128-v16:16-v32:32-n16:32:64" // RUN: %clang_cc1 -triple nvptx64-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=NVPTX64 // NVPTX64: target datalayout = "e-i64:64-i128:128-v16:16-v32:32-n16:32:64" // RUN: %clang_cc1 -triple r600-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=R600 // R600: target datalayout = "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5-G1" // RUN: %clang_cc1 -triple r600-unknown -target-cpu cayman -o - -emit-llvm %s \ // RUN: | FileCheck %s -check-prefix=R600D // R600D: target datalayout = "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5-G1" // RUN: %clang_cc1 -triple amdgcn-unknown -target-cpu hawaii -o - -emit-llvm %s \ // RUN: | FileCheck %s -check-prefix=R600SI // R600SI: target datalayout = "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5-G1-ni:7" // Test default -target-cpu // RUN: %clang_cc1 -triple amdgcn-unknown -o - -emit-llvm %s \ // RUN: | FileCheck %s -check-prefix=R600SIDefault // R600SIDefault: target datalayout = "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5-G1-ni:7" // RUN: %clang_cc1 -triple arm64-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=AARCH64 // AARCH64: target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" // RUN: %clang_cc1 -triple arm64_32-apple-ios7.0 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=AARCH64-ILP32 // AARCH64-ILP32: target datalayout = "e-m:o-p:32:32-i64:64-i128:128-n32:64-S128" // RUN: %clang_cc1 -triple arm64-pc-win32-macho -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=AARCH64-WIN32-MACHO // AARCH64-WIN32-MACHO: target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128" // RUN: %clang_cc1 -triple thumb-unknown-gnueabi -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=THUMB // THUMB: target datalayout = "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64" // RUN: %clang_cc1 -triple arm-unknown-gnueabi -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=ARM // ARM: target datalayout = "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64" // RUN: %clang_cc1 -triple thumb-unknown -o - -emit-llvm -target-abi apcs-gnu \ // RUN: %s | FileCheck %s -check-prefix=THUMB-GNU // THUMB-GNU: target datalayout = "e-m:e-p:32:32-Fi8-f64:32:64-v64:32:64-v128:32:128-a:0:32-n32-S32" // RUN: %clang_cc1 -triple arm-unknown -o - -emit-llvm -target-abi apcs-gnu \ // RUN: %s | FileCheck %s -check-prefix=ARM-GNU // ARM-GNU: target datalayout = "e-m:e-p:32:32-Fi8-f64:32:64-v64:32:64-v128:32:128-a:0:32-n32-S32" // RUN: %clang_cc1 -triple arc-unknown-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=ARC // ARC: target datalayout = "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-f32:32:32-i64:32-f64:32-a:0:32-n32" // RUN: %clang_cc1 -triple hexagon-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=HEXAGON // HEXAGON: target datalayout = "e-m:e-p:32:32:32-a:0-n16:32-i64:64:64-i32:32:32-i16:16:16-i1:8:8-f32:32:32-f64:64:64-v32:32:32-v64:64:64-v512:512:512-v1024:1024:1024-v2048:2048:2048" // RUN: %clang_cc1 -triple s390x-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ // RUN: %clang_cc1 -triple s390x-unknown -target-cpu z10 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ // RUN: %clang_cc1 -triple s390x-unknown -target-cpu arch8 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ // RUN: %clang_cc1 -triple s390x-unknown -target-cpu z196 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ // RUN: %clang_cc1 -triple s390x-unknown -target-cpu arch9 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ // RUN: %clang_cc1 -triple s390x-unknown -target-cpu zEC12 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ // RUN: %clang_cc1 -triple s390x-unknown -target-cpu arch10 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ // RUN: %clang_cc1 -triple s390x-unknown -target-cpu z13 -target-feature +soft-float -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ // SYSTEMZ: target datalayout = "E-m:e-i1:8:16-i8:8:16-i64:64-f128:64-a:8:16-n32:64" // RUN: %clang_cc1 -triple s390x-unknown -target-cpu z13 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ-VECTOR // RUN: %clang_cc1 -triple s390x-unknown -target-cpu arch11 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ-VECTOR // RUN: %clang_cc1 -triple s390x-unknown -target-cpu z14 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ-VECTOR // RUN: %clang_cc1 -triple s390x-unknown -target-cpu arch12 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ-VECTOR // RUN: %clang_cc1 -triple s390x-unknown -target-cpu z15 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ-VECTOR // RUN: %clang_cc1 -triple s390x-unknown -target-cpu arch13 -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SYSTEMZ-VECTOR // SYSTEMZ-VECTOR: target datalayout = "E-m:e-i1:8:16-i8:8:16-i64:64-f128:64-v128:64-a:8:16-n32:64" // RUN: %clang_cc1 -triple msp430-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=MSP430 // MSP430: target datalayout = "e-m:e-p:16:16-i32:16-i64:16-f32:16-f64:16-a:8-n8:16-S16" // RUN: %clang_cc1 -triple tce-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=TCE // TCE: target datalayout = "E-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:32-f32:32:32-f64:32:32-v64:32:32-v128:32:32-v256:32:32-v512:32:32-v1024:32:32-a0:0:32-n32" // RUN: %clang_cc1 -triple tcele-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=TCELE // TCELE: target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:32-f32:32:32-f64:32:32-v64:32:32-v128:32:32-v256:32:32-v512:32:32-v1024:32:32-a0:0:32-n32" // RUN: %clang_cc1 -triple spir-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SPIR // SPIR: target datalayout = "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024" // RUN: %clang_cc1 -triple spir64-unknown -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=SPIR64 // SPIR64: target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024" // RUN: %clang_cc1 -triple bpfel -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=BPFEL // BPFEL: target datalayout = "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128" // RUN: %clang_cc1 -triple bpfeb -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=BPFEB // BPFEB: target datalayout = "E-m:e-p:64:64-i64:64-i128:128-n32:64-S128" // RUN: %clang_cc1 -triple ve -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=VE // VE: target datalayout = "e-m:e-i64:64-n32:64-S128-v64:64:64-v128:64:64-v256:64:64-v512:64:64-v1024:64:64-v2048:64:64-v4096:64:64-v8192:64:64-v16384:64:64"
the_stack_data/968257.c
/* { dg-do compile } */ /* { dg-options "-O -fdump-tree-ccp2" } */ extern void link_error (void); /* Some addresses clearly cannot be equal, check that some address expressions can be evaluated as constants. Most of the tests are folding tests, but at least some require points-to analysis, so we scan the first CCP dump after PTA. */ char g1, g2; void test6 (char p1, char p2) { char l1 = 1, l2 = 2; static char s1 = 5, s2 = 7; if (&l1 == &l2) link_error (); if (&p1 == &p2) link_error (); if (&s1 == &s2) link_error (); if (&g1 == &g2) link_error (); if (&p1 == &l1) link_error (); if (&p1 == &s1) link_error (); if (&p1 == &l2) link_error (); if (&p1 == &g1) link_error (); if (&l1 == &g1) link_error (); if (&s1 == &g1) link_error (); } extern void *alloc (int) __attribute__ ((malloc)); char gca1[128]; char* __restrict__ rgc1; char* test66 (char * __restrict__ rp1, char * __restrict__ rp2, char *p1) { char * __restrict__ rl1 = p1; char * l1 = (char*) alloc (20); if (l1 == rgc1) link_error (); if (l1 == rp1) link_error (); if (l1 == rl1) link_error (); if (l1 == gca1) link_error (); if (rl1 == rgc1) link_error (); if (rl1 == rp1) link_error (); if (rl1 == gca1) link_error (); if (rp1 == rp2) link_error (); if (rp1 == rgc1) link_error (); if (rp1 == gca1) link_error (); if (gca1 == rgc1) link_error (); } int gci1[128]; int* __restrict__ rgi1; int* test666 (int * __restrict__ rp1, int * __restrict__ rp2, int *p1) { int * __restrict__ rl1 = p1; int * l1 = (int*) alloc (20); if (l1 == rgi1) link_error (); if (l1 == rp1) link_error (); if (l1 == rl1) link_error (); if (l1 == gci1) link_error (); if (rl1 == rgi1) link_error (); if (rl1 == rp1) link_error (); if (rl1 == gci1) link_error (); if (rp1 == rp2) link_error (); if (rp1 == rgi1) link_error (); if (rp1 == gci1) link_error (); if (gci1 == rgi1) link_error (); } /* There should be not link_error calls, if there is any the optimization has failed */ /* ??? While we indeed don't handle some of these, a couple of the restrict tests are incorrect. */ /* { dg-final { scan-tree-dump-times "link_error" 0 "ccp2" { xfail *-*-* } } } */
the_stack_data/193893605.c
/* // Sample code to perform I/O: #include <stdio.h> int main(){ int num; scanf("%s", &num); // Reading input from STDIN printf("Input number is %d.\n", num); // Writing output to STDOUT } // Warning: Printing unwanted or ill-formatted data to output will cause the test cases to fail */ // Write your code here #include <stdio.h> #include <string.h> #include <stdlib.h> #define STR_LENGTH_MAX 10000 void correct(char *str_in) { // Correct last char from newline to string termination // int l = strlen(str_in), i; char ch; // char buffer manage stdin overflow for(i = 0; i <= l; i++) { if (str_in[i] == '\n') { str_in[i] = '\0'; break; } } if (strlen(str_in) == STR_LENGTH_MAX-1 ) while((ch = getchar())!='\n' && ch != EOF ); } int main(int argc, char *argv[]) { int tests; char str_buf[STR_LENGTH_MAX+1], buf[4]; char *pch; // pointer for strtok() char *strings[2]; int idx = 0, i, j, f; do { fgets(buf, 4, stdin); correct(&buf[0]); tests = atoi(buf); } while (tests < 1 || tests > 100); while (tests > 0) { // input strings if (fgets(str_buf, STR_LENGTH_MAX, stdin) != NULL) { correct(&str_buf[0]); } //printf("%s ", str_buf); // DEBUG // split string in two parts, separated by space idx = 0; pch = strtok (str_buf, " "); while (pch != NULL) { if (idx > 1) { printf("Error 1.\n"); return 0; } strings[idx++] = pch; pch = strtok (NULL, " "); } // check size of strings. If differ, they're not the same // and check if strings are equals if (idx != 2) printf("NO\n"); else if ( strlen(strings[0]) != strlen(strings[1]) ) printf("NO\n"); else if ( strcmp (strings[0], strings[1]) == 0 ) printf("YES\n"); else { f = 0; // initialize "found" flag for (i = 0; i < strlen(strings[0]); i++) { for (j = 0; j < strlen(strings[1]); j++) { // printf("%s %c %s\n", strings[0], (char) strings[0][i], strings[1]); // DEBUG if(strings[0][i] == strings[1][j]) { f = 1; strings[1][j] = ' '; break; } else { f = 0; } } if (f != 1) { printf("NO\n"); break; } } if (f == 1) printf("YES\n"); } tests--; } return 0; }
the_stack_data/54824551.c
#include <stdlib.h> #include <stdio.h> int main () { printf("12345"); return EXIT_SUCCESS; } /* UART_CHECK:ENABLED 12345 */
the_stack_data/312462.c
/*********************************************************************** * Code listing from "Advanced Linux Programming," by CodeSourcery LLC * * Copyright (C) 2001 by New Riders Publishing * * See COPYRIGHT for license information. * ***********************************************************************/ #include <pthread.h> #include <stdlib.h> #include <stdio.h> void* thread_function (void* thread_arg) { while(1) fprintf(stderr, "x"); /* Do work here... */ return NULL; } int main () { pthread_attr_t attr; pthread_t thread; pthread_attr_init (&attr); pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED); pthread_create (&thread, &attr, &thread_function, NULL); pthread_attr_destroy (&attr); /* Do work here... */ while(1); /* No need to join the second thread. */ return 0; }
the_stack_data/2286.c
#include <slurm/slurm.h> #include <slurm/slurm_errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> int suspend_all_jobs(job_info_msg_t* job_buffer_ptr) { int jobs_suspended = 0; job_info_t* job_ptr; for (size_t i = 0; i < job_buffer_ptr->record_count; i++) { job_ptr = &job_buffer_ptr->job_array[i]; if (job_ptr->job_state == JOB_RUNNING) { int job_suspend = slurm_suspend(job_ptr->job_id); if (job_suspend == 0) { printf("Job %d suspended.\n", job_ptr->job_id); jobs_suspended++; } else { printf("Job %d failed to suspend. Error code %d.\n", job_ptr->job_id, job_suspend); } } // slurm_print_job_info(stdout, job_ptr, 1); } if (jobs_suspended == 0) { printf("No jobs suspended.\n"); } return jobs_suspended; } int resume_all_jobs(job_info_msg_t* job_buffer_ptr) { int jobs_resumed = 0; job_info_t* job_ptr; for (size_t i = 0; i < job_buffer_ptr->record_count; i++) { job_ptr = &job_buffer_ptr->job_array[i]; if (job_ptr->job_state == JOB_SUSPENDED) { int job_resume = slurm_resume(job_ptr->job_id); if (job_resume == 0) { printf("Job %d resumed.\n", job_ptr->job_id); jobs_resumed++; } else { printf("Job %d failed to resume. Error code %d.\n", job_ptr->job_id, job_resume); } } } if (jobs_resumed == 0) { printf("No jobs to resumed.\n"); } return jobs_resumed; } int main(int argc, char* argv[]) { if (argc != 2) { fprintf(stderr, "Invalid arguments.\n\tUsage: ./slurmutil <option>\n"); return 1; } job_info_msg_t* job_buffer_ptr = NULL; if (slurm_load_jobs((time_t)NULL, &job_buffer_ptr, SHOW_ALL)) { slurm_perror("slurm_load_jobs error"); return 1; } if (strcmp(argv[1], "suspend") == 0) { suspend_all_jobs(job_buffer_ptr); } else if (strcmp(argv[1], "resume") == 0) { resume_all_jobs(job_buffer_ptr); } else { fprintf(stderr, "Invalid arguments.\n\tUsage: ./slurmutil <option>\n"); return 1; } /*node_info_msg_t* node_buffer_ptr = NULL; if (slurm_load_node((time_t)NULL, &node_buffer_ptr, SHOW_ALL)) { slurm_perror("slurm_load_node error"); return 1; } //slurm_print_node_table(stdout, slurm_print_job_info_msg(stdout, job_buffer_ptr, 0); slurm_print_node_info_msg(stdout, node_buffer_ptr, 0); */ // slurm_free_node_info_msg(node_buffer_ptr); slurm_free_job_info_msg(job_buffer_ptr); return 0; }
the_stack_data/900815.c
/* ************************************************************************** */ /* */ /* :::::::: */ /* generate_range.c :+: :+: */ /* +:+ */ /* By: safoh <[email protected]> +#+ */ /* +#+ */ /* Created: 2021/08/03 14:15:43 by safoh #+# #+# */ /* Updated: 2021/08/03 14:15:44 by safoh ######## odam.nl */ /* */ /* ************************************************************************** */ // 1) dynamically allocate memory for the return array // 2) assign the size of this array to the pointer *sz #include <stdlib.h> int count_size(int min, int max, int step) { int size; int diff; diff = max - min; size = diff / step; return (size + 1); } int *generate_range(int min, int max, int step, size_t *sz) { int *result; int temp; int size; size_t i; i = 0; size = count_size(min, max, step); *sz = size; result = (int *)calloc(size + 1, sizeof(int)); while (size) { if (i == 0) { temp = min; result[i] = temp; i++; } else { temp += step; result[i] += temp; i++; size--; } } return (result); }
the_stack_data/152630.c
/* PR middle-end/21709 */ /* { dg-do compile } */ /* { dg-options "-O2" } */ double _Complex f(void) { return 1.0iF / 0.0; }
the_stack_data/63603.c
#include <stdio.h> #include <stdlib.h> #include <string.h> void *cvirt_xmalloc(size_t size) { void *res = malloc(size); if (!res && size) { fprintf(stderr, "malloc(%zu) failed", size); exit(EXIT_FAILURE); } return res; } void *cvirt_xcalloc(size_t nmemb, size_t size) { void *res = calloc(nmemb, size); if (!res && (nmemb && size)) { fprintf(stderr, "calloc(%zu, %zu) failed", nmemb, size); exit(EXIT_FAILURE); } return res; } void *cvirt_xrealloc(void *ptr, size_t size) { void *res = realloc(ptr, size); if (!res && size) { fprintf(stderr, "realloc(%zu) failed", size); exit(EXIT_FAILURE); } return res; } char *cvirt_xstrdup(const char *s) { char *res = strdup(s); if (!res) { fprintf(stderr, "strdup() failed"); exit(EXIT_FAILURE); } return res; } char *cvirt_xstrndup(const char *s, size_t size) { char *res = strndup(s, size); if (!res) { fprintf(stderr, "strndup() failed"); exit(EXIT_FAILURE); } return res; }
the_stack_data/44145.c
// Implementation of stack using Linked List /* Implement the following stack operations : 1. Push 2. Pop 3. Peek 4. Display */ #include <stdio.h> #include <stdlib.h> struct Stack { int data; struct Stack *next; }; struct Stack *top = NULL; // Push Element at the top of stack void push() { int x; printf("Enter Element to be pushed\n"); scanf("%d", &x); struct Stack *newNode = (struct Stack *)malloc(sizeof(struct Stack)); newNode->data = x; newNode->next = top; top = newNode; } // Pop the top-element from the stack void pop() { struct Stack *temp = (struct Stack *)malloc(sizeof(struct Stack)); temp = top; if (top == NULL) { printf("Stack is empty\n"); } else { printf("Popped Element is %d\n", top->data); top = top->next; free(temp); } } // Prints the top-most element void peek() { if (top == NULL) { printf("Stack is empty\n"); } else { printf("Top element is %d\n", top->data); } } // Prints The Stack void display() { struct Stack *temp = top; if (top == NULL) { printf("Stack is empty\n"); } else { while (temp != NULL) { printf("%d ", temp->data); temp = temp->next; } } printf("\n"); } // Delete Entire Stack void deleteStack() { struct Stack *temp = top; if (top == NULL) { printf("Stack is empty\n"); } else { while (temp != NULL) { top = top->next; free(temp); temp = top; } } } int main() { int opt; while (1) { printf("which operation do you want to perform?\n"); printf("1.Push\n"); printf("2.Pop\n"); printf("3.Peek\n"); printf("4.Display\n"); printf("5.Delete Entire Stack\n"); printf("6.Exit\n"); scanf("%d", &opt); switch (opt) { case 1: push(); break; case 2: pop(); break; case 3: peek(); break; case 4: display(); break; case 5: deleteStack(); break; case 6: exit(0); break; default: printf("Unknown operation\n"); } } return 0; } /* Output: which operation do you want to perform? 1.Push 2.Pop 3.Peek 4.Display 5.Delete Entire Stack 6.Exit 1 Enter Element to be pushed 10 which operation do you want to perform? 1.Push 2.Pop 3.Peek 4.Display 5.Delete Entire Stack 6.Exit 1 Enter Element to be pushed 5 which operation do you want to perform? 1.Push 2.Pop 3.Peek 4.Display 5.Delete Entire Stack 6.Exit 1 Enter Element to be pushed 3 which operation do you want to perform? 1.Push 2.Pop 3.Peek 4.Display 5.Delete Entire Stack 6.Exit 4 3 5 10 which operation do you want to perform? 1.Push 2.Pop 3.Peek 4.Display 5.Delete Entire Stack 6.Exit 2 Popped Element is 3 which operation do you want to perform? 1.Push 2.Pop 3.Peek 4.Display 5.Delete Entire Stack 6.Exit 5 which operation do you want to perform? 1.Push 2.Pop 3.Peek 4.Display 5.Delete Entire Stack 6.Exit 4 Stack is empty which operation do you want to perform? 1.Push 2.Pop 3.Peek 4.Display 5.Delete Entire Stack 6.Exit 6 */
the_stack_data/90762820.c
// Need to define _GNU_SOURCE sometimes to get value of CPU_SETSIZE #define _GNU_SOURCE #include <stdio.h> #include <sched.h> // Punt on MAC: cannot map threads to cores #ifdef MAC void runnable (void *mask, int *lo_out, int *hi_out) { } #else void runnable (cpu_set_t *mask, int *lo_out, int *hi_out) { int lo; int hi = -1; // Loop through core set, find first range of runnable cores and store results in "lo" and "hi" for (lo = 0; lo < CPU_SETSIZE; ++lo) { if (CPU_ISSET (lo, mask)) { for (hi = lo+1; hi < CPU_SETSIZE; hi++) { if ( ! CPU_ISSET (hi, mask)) break; } --hi; // Change index from first no to last yes break; } } // Set return values *lo_out = lo; *hi_out = hi; // Check to see if another range exists if (hi < CPU_SETSIZE) { for (lo = hi+1; lo < CPU_SETSIZE; ++lo) { if (CPU_ISSET (lo, mask)) { break; } } if (lo < CPU_SETSIZE) { printf ("runnable: found another runnable range starting at core=%d. lo_out=%d hi_out=%d\n", lo, *lo_out, *hi_out); } } } #endif
the_stack_data/115764765.c
#include <stdio.h> void abertura(int m){ printf("Tabuada do %d\n\n",m); } int main() { int multiplicador = 2; abertura(multiplicador); for(int i = 1; i<= 10; i++){ printf("%d x %d = %d\n",multiplicador,i,multiplicador*i); } }
the_stack_data/232954958.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/fcntl.h> struct student_st { char name[32]; int age; int english; int math; int chiness; }; int read_all_student(void) { //1.ๆ‰“ๅผ€ๆ–‡ไปถ //2.ๆŠŠๆ‰€ๆœ‰ๅญฆ็”Ÿ้ƒฝๅ‡บๆฅ๏ผˆๅพช็Žฏ๏ผ‰ //3.ๅ…ณ้—ญๆ–‡ไปถ int fd; fd = open("sm", O_RDONLY); struct student_st s; int ret; while(1) { //ๅฆ‚ๆžœ่ฟ”ๅ›žๅ€ผๆ˜ฏ๏ผ๏ผŒไปฃ่กจๆ–‡ไปถๅทฒ็ป่ฏปๅˆฐไบ†็ป“ๅฐพ ret = read(fd, &s, sizeof(s)); if (ret == 0) { break; } printf("===============\n"); printf("[%s %d %d %d %d]\n", s.name, s.age, s.english, s.chiness, s.math); } close(fd); return 0; } int write_student_to_file(void) { char name[32]; int age, english, chiness, math; printf("ๅง“ๅ:"); scanf("%s", name); printf("ๅนด้พ„:"); scanf("%d", &age); printf("่‹ฑ่ฏญๆˆ็ปฉ:"); scanf("%d", &english); printf("่ฏญๆ–‡ๆˆ็ปฉ:"); scanf("%d", &chiness); printf("ๆ•ฐๅญฆๆˆ็ปฉ:"); scanf("%d", &math); //1.ๆ‰“ๅผ€ๆ–‡ไปถ //2.ๅฎšไฝๅˆฐๆ–‡ไปถ็š„็ป“ๅฐพ //3.ๅ†™ๅ…ฅๅญฆ็”Ÿๆ•ฐๆฎ //4.ๅ…ณ้—ญๆ–‡ไปถ int fd; //O_APPENDไปฃ่กจๆ‰“ๅผ€ๆ–‡ไปถๅŽๆ–‡ไปถๆŒ‡้’ˆ๏ผˆๅ…‰ๆ ‡๏ผ‰ๅฎšไฝๅˆฐๆ–‡ไปถ็ป“ๅฐพ fd = open("sm", O_RDWR | O_CREAT | O_APPEND); //ๆž„ๅปบไธ€ไธชๅญฆ็”Ÿ struct student_st s; strcpy(s.name, name); s.age = age; s.english = english; s.chiness = chiness; s.math = math; //ๆŠŠๅญฆ็”Ÿๅ†™ๅˆฐๆ–‡ไปถ write(fd, &s, sizeof(s)); //ๅ…ณ้—ญๆ–‡ไปถ close(fd); return 0; } int main(void) { char *prompt = "่ฝฏไปถไฝฟ็”จๆ–นๆณ•:\n"; char *fun1 = "1.ๆทปๅŠ ไธ€ไธชๅญฆ็”Ÿ\n"; char *fun2 = "2.ๆŸฅ็œ‹ๆ‰€ๆœ‰ๅญฆ็”Ÿ\n"; char *fun3 = "3.้€€ๅ‡บ\n"; int id;//1/2/3 printf("%s%s%s%s", prompt, fun1, fun2, fun3); while (1) { //printfไผšๆŠŠๅญ—็ฌฆไธฒๆ”พๅˆฐ็ผ“ๅญ˜๏ผˆๅฆ‚ๆžœๅญ—็ฌฆไธฒไธญๆœ‰\nๅˆ™ไผšๅˆทๆ–ฐ็ผ“ๅญ˜๏ผ‰ printf("่ฏท่พ“ๅ…ฅๅŠŸ่ƒฝid:"); //ๅˆท็ผ“ๅญ˜ fflush(NULL); scanf("%d", &id); switch(id) { case 1: write_student_to_file(); break; case 2: read_all_student(); break; case 3: //็จ‹ๅบ้€€ๅ‡บ exit(0); default: break; } } return 0; }
the_stack_data/83345.c
//Classification: #default/n/DAM/NP/sS/D(v)/lc/cd //Written by: Sergey Pomelov //Reviewed by: Igor Eremeev //Comment: #include <stdio.h> int main(void) { int *p; static int a = 1; int c; scanf("%d",&c); if (c==1) a = *p; printf("%d %d",a,c); return 0; }
the_stack_data/92324387.c
#include "wchar.h" #ifdef __cplusplus extern "C" { #endif #ifdef _MSC_VER #pragma function(wcslen) #endif size_t wcslen(const wchar_t *__str) { size_t i; /* Increment i until __str[i] is NULL */ for (i = 0; __str[i]; i++) ; return i; } #ifdef __cplusplus } #endif
the_stack_data/994886.c
/** @file patest_sine_formats.c @ingroup test_src @brief Play a sine wave for several seconds. Test various data formats. @author Phil Burk */ /* * $Id: patest_sine_formats.c,v 1.8 2008-12-31 15:38:36 richardash1981 Exp $ * * This program uses the PortAudio Portable Audio Library. * For more information see: http://www.portaudio.com * Copyright (c) 1999-2000 Ross Bencina and Phil Burk * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files * (the "Software"), to deal in the Software without restriction, * including without limitation the rights to use, copy, modify, merge, * publish, distribute, sublicense, and/or sell copies of the Software, * and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /* * The text above constitutes the entire PortAudio license; however, * the PortAudio community also makes the following non-binding requests: * * Any person wishing to distribute modifications to the Software is * requested to send the modifications to the original developer so that * they can be incorporated into the canonical version. It is also * requested that these non-binding requests be included along with the * license above. */ #include <stdio.h> #include <math.h> #include "portaudio.h" #define NUM_SECONDS (10) #define SAMPLE_RATE (44100) #define FRAMES_PER_BUFFER (512) #define LEFT_FREQ (SAMPLE_RATE/256.0) /* So we hit 1.0 */ #define RIGHT_FREQ (500.0) #define AMPLITUDE (1.0) /* Select ONE format for testing. */ #define TEST_UINT8 (0) #define TEST_INT8 (0) #define TEST_INT16 (1) #define TEST_FLOAT32 (0) #if TEST_UINT8 #define TEST_FORMAT paUInt8 typedef unsigned char SAMPLE_t; #define SAMPLE_ZERO (0x80) #define DOUBLE_TO_SAMPLE(x) (SAMPLE_ZERO + (SAMPLE_t)(127.0 * (x))) #define FORMAT_NAME "Unsigned 8 Bit" #elif TEST_INT8 #define TEST_FORMAT paInt8 typedef char SAMPLE_t; #define SAMPLE_ZERO (0) #define DOUBLE_TO_SAMPLE(x) (SAMPLE_ZERO + (SAMPLE_t)(127.0 * (x))) #define FORMAT_NAME "Signed 8 Bit" #elif TEST_INT16 #define TEST_FORMAT paInt16 typedef short SAMPLE_t; #define SAMPLE_ZERO (0) #define DOUBLE_TO_SAMPLE(x) (SAMPLE_ZERO + (SAMPLE_t)(32767 * (x))) #define FORMAT_NAME "Signed 16 Bit" #elif TEST_FLOAT32 #define TEST_FORMAT paFloat32 typedef float SAMPLE_t; #define SAMPLE_ZERO (0.0) #define DOUBLE_TO_SAMPLE(x) ((SAMPLE_t)(x)) #define FORMAT_NAME "Float 32 Bit" #endif #ifndef M_PI #define M_PI (3.14159265) #endif typedef struct { double left_phase; double right_phase; unsigned int framesToGo; } paTestData; /* This routine will be called by the PortAudio engine when audio is needed. ** It may called at interrupt level on some machines so don't do anything ** that could mess up the system like calling malloc() or free(). */ static int patestCallback( const void *inputBuffer, void *outputBuffer, unsigned long framesPerBuffer, const PaStreamCallbackTimeInfo* timeInfo, PaStreamCallbackFlags statusFlags, void *userData ) { paTestData *data = (paTestData*)userData; SAMPLE_t *out = (SAMPLE_t *)outputBuffer; int i; int framesToCalc; int finished = 0; (void) inputBuffer; /* Prevent unused variable warnings. */ if( data->framesToGo < framesPerBuffer ) { framesToCalc = data->framesToGo; data->framesToGo = 0; finished = 1; } else { framesToCalc = framesPerBuffer; data->framesToGo -= framesPerBuffer; } for( i=0; i<framesToCalc; i++ ) { data->left_phase += (LEFT_FREQ / SAMPLE_RATE); if( data->left_phase > 1.0) data->left_phase -= 1.0; *out++ = DOUBLE_TO_SAMPLE( AMPLITUDE * sin( (data->left_phase * M_PI * 2. ))); data->right_phase += (RIGHT_FREQ / SAMPLE_RATE); if( data->right_phase > 1.0) data->right_phase -= 1.0; *out++ = DOUBLE_TO_SAMPLE( AMPLITUDE * sin( (data->right_phase * M_PI * 2. ))); } /* zero remainder of final buffer */ for( ; i<(int)framesPerBuffer; i++ ) { *out++ = SAMPLE_ZERO; /* left */ *out++ = SAMPLE_ZERO; /* right */ } return finished; } /*******************************************************************/ int main(void); int main(void) { PaStream *stream; PaStreamParameters outputParameters; PaError err; paTestData data; int totalSamps; printf("PortAudio Test: output " FORMAT_NAME "\n"); data.left_phase = data.right_phase = 0.0; data.framesToGo = totalSamps = NUM_SECONDS * SAMPLE_RATE; /* Play for a few seconds. */ err = Pa_Initialize(); if( err != paNoError ) goto error; outputParameters.device = Pa_GetDefaultOutputDevice(); /* Default output device. */ outputParameters.channelCount = 2; /* Stereo output */ outputParameters.sampleFormat = TEST_FORMAT; /* Selected above. */ outputParameters.suggestedLatency = Pa_GetDeviceInfo(outputParameters.device)->defaultLowOutputLatency; outputParameters.hostApiSpecificStreamInfo = NULL; err = Pa_OpenStream( &stream, NULL, /* No input. */ &outputParameters, /* As above. */ SAMPLE_RATE, FRAMES_PER_BUFFER, paClipOff, /* we won't output out of range samples so don't bother clipping them */ patestCallback, &data ); if( err != paNoError ) goto error; err = Pa_StartStream( stream ); if( err != paNoError ) goto error; printf("Waiting %d seconds for sound to finish.\n", NUM_SECONDS ); while( ( err = Pa_IsStreamActive( stream ) ) == 1 ) Pa_Sleep(100); if( err < 0 ) goto error; err = Pa_CloseStream( stream ); if( err != paNoError ) goto error; Pa_Terminate(); printf("PortAudio Test Finished: " FORMAT_NAME "\n"); return err; error: Pa_Terminate(); fprintf( stderr, "An error occured while using the portaudio stream\n" ); fprintf( stderr, "Error number: %d\n", err ); fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) ); return err; }
the_stack_data/187643931.c
#include "stdio.h" int main() { int x = 15; int y = sizeof(x++); printf("%d", x); }
the_stack_data/148578732.c
#include<stdio.h> int lru(int time[], int n) { int min=time[0], i, index=0; for(i=1;i<n;i++) { if(time[i] < min) { min=time[i]; index=i; } } return index; } int main() { int pno,fno,i,j; printf("enter the no of pages\n"); scanf("%d",&pno); int page[pno]; printf("Enter the Page sequence\n"); for(i=0;i<pno;i++) scanf("%d",&page[i]); printf("Enter the no. of frames\n"); scanf("%d",&fno); int f[fno]; for(j=0;j<fno;j++) f[j]=-1; int c=0; //int k=0,l=0; int time[fno]; printf("pageno\tFrame\n"); int flt=0; for(i=0;i<pno;i++) { int f1=0,f2=0; printf("%d\t",page[i]); for(j=0;j<fno;j++) { if(page[i]==f[j]) { c++; f1=1; f2=1; time[j]=c; break; } } if(f1==0) { for(j=0;j<fno;j++) { if(f[j]==-1) { c++; flt++; f[j]=page[i]; f2=1; time[j]=c; break; } } } if(f2==0) { int index=lru(time,fno); c++; flt++; f[index]=page[i]; } for(j=0;j<fno;j++) printf("%d\t",f[j]); printf("\n"); } printf("fault:%d",flt); return 0; }
the_stack_data/488072.c
int main(int argc, const char *argv[]) { int fds[2]; if (pipe2(fds, 0) == -1) return (1); return (0); }
the_stack_data/190768431.c
#include <stdio.h> /* Autor: Hosana Gomes 2015 - 1ยบ semestre UFRRJ รlgebra Linear Computacional*/ /*Funรงรฃo que preenche uma matriz com os dados inseridos pelo usuรกrio*/ void PreencherMatriz(int DIM, float matriz[][DIM]) { int linha, coluna; printf("Preencha a matriz: \n"); for(linha = 0 ; linha < DIM ; linha++) { for(coluna = 0 ; coluna < DIM ; coluna++) { printf("Elemento [%d][%d]: ", linha+1, coluna+1); scanf("%f", &matriz[linha][coluna]); } } }
the_stack_data/211080940.c
/* { dg-do compile } */ /* { dg-options "-Wjump-misses-init -std=c99" } */ extern void f1 (); int f2 (int a) { switch (a) /* { dg-message "switch" } */ { case 1: f1 (); int v2 = 3; /* { dg-message "here" } */ case 2: /* { dg-warning "jump" } */ if (v2 == 7) f1 (); } return 0; } int f3 (int i) { if (i) goto bad; /* { dg-warning "jump" } */ int a = f2 (i); /* { dg-message "here" } */ bad: /* { dg-message "here" } */ return a; } int f4 (int a) { switch (a) { case 1: f1 (); static int v2 = 3; case 2: if (v2 == 7) f1 (); } return 0; } int f5 (int i) { if (i) goto bad; static int a = 6; bad: return a; }
the_stack_data/581007.c
#include <string.h> #include <stdio.h> #include <errno.h> int main(int argc, char *argv[]) { int status; int pid[2];//่ฟ›็จ‹ๅท int pipe_fd[2];//pipe็š„ๆ่ฟฐ็ฌฆ๏ผŒไธ€ไธชpipeๆœ‰ไธคไธชๆ่ฟฐ็ฌฆ๏ผŒๅˆ†ๅˆซ็”จไบŽreadๆ—ถๅ€™็š„่พ“ๅ…ฅ๏ผŒๅ’Œwriteๆ—ถๅ€™็š„่พ“ๅ‡บ char *prog1_argv[4];//ๅฏๅŠจ่ฟ›็จ‹็š„ๆ—ถๅ€™็š„ๅ‚ๆ•ฐ char *prog2_argv[2]; char rwBuffer[1024] = {'\0'};//็”จreadๅ’Œwrite่ฏปๅ†™pipeๆ—ถๅ€™ไฝฟ็”จ็š„็ผ“ๅ†ฒๅŒบ prog1_argv[0]="/bin/ls";/* ๅ‘ฝไปคls็š„ๅ‚ๆ•ฐ่กจ */ prog1_argv[1]="-l"; prog1_argv[2]="/etc/"; prog1_argv[3]=NULL; prog2_argv[0]="/bin/more";/* ๅ‘ฝไปคmore็š„ๅ‚ๆ•ฐ่กจ */ prog2_argv[1]=NULL; if (pipe(pipe_fd)<0)//ๅˆ›ๅปบpipe๏ผŒ่Žทๅพ—็”จไบŽ่พ“ๅ…ฅๅ’Œ่พ“ๅ‡บ็š„ๆ่ฟฐ็ฌฆ { perror("pipe failed"); exit(errno); } if ((pid[0]=fork())<0)/* ็ˆถ่ฟ›็จ‹ไธบlsๅ‘ฝไปคๅˆ›ๅปบๅญ่ฟ›็จ‹ */ { perror("Fork failed"); exit(errno); } if (!pid[0])/* lsๅญ่ฟ›็จ‹ */ { read(pipe_fd[0],rwBuffer,1024);//ๅบฆ็ฎก้“๏ผŒไผš้˜ปๅกž๏ผŒ็ญ‰ๅพ…็ˆถ่ฟ›็จ‹ๅ‘ๅธƒๅ‘ฝไปค fprintf(stdout,"\n\n-----------------------%s|rec---------------------------\n\n",rwBuffer); /*ไธ้œ€่ฆๅ†่ฏปๅ–ไบ†,ๅ…ณ้—ญ่ฏป็ซฏ*/ close(pipe_fd[0]); dup2(pipe_fd[1],1);/*ๅฐ†็ฎก้“็š„ๅ†™ๆ่ฟฐ็ฌฆๅคๅˆถ็ป™ๆ ‡ๅ‡†่พ“ๅ‡บ,็„ถๅŽๅ…ณ้—ญ*/ close(pipe_fd[1]); execvp(prog1_argv[0], prog1_argv);//่ฐƒ็”จls } if (pid[0])/*็ˆถ่ฟ›็จ‹๏ผŒไธบmoreๅˆ›ๅปบๅญ่ฟ›็จ‹*/ { if ((pid[1]=fork())<0)//ๅ†ๆฌกๅˆ›ๅปบ่ฟ›็จ‹ { perror("Fork failed"); exit(errno); } if (!pid[1])//ๅญ่ฟ›็จ‹ { close(pipe_fd[1]); dup2(pipe_fd[0],0);/*ๅฐ†็ฎก้“็š„่ฏปๆ่ฟฐ็ฌฆๅคๅˆถ็ป™ๆ ‡ๅ‡†่พ“ๅ…ฅ๏ผŒ็„ถๅŽๅ…ณ้—ญ*/ close(pipe_fd[0]); execvp(prog2_argv[0],prog2_argv); }else{ fprintf(stdout,"\n\n-------------------------%s|send---------------------\n\n",rwBuffer); sprintf(rwBuffer,"start1"); write(pipe_fd[1],rwBuffer,strlen(rwBuffer));//ๅฐ†ๅ‘ฝไปคๅ†™ๅ…ฅๅˆฐ็ฎก้“ fprintf(stdout,"\n\n-------------------------%s|send---------------------\n\n",rwBuffer); sprintf(rwBuffer,"start2"); write(pipe_fd[1],rwBuffer,strlen(rwBuffer));//ๅฐ†ๅ‘ฝไปคๅ†™ๅ…ฅๅˆฐ็ฎก้“ } close(pipe_fd[0]); close(pipe_fd[1]); waitpid(pid[1],&status,0); printf("Done waiting for more.\n"); } return 0; }
the_stack_data/145453140.c
// Template file for the OpenCL Assignment 4 #include <stdio.h> #include <stdlib.h> #include <CL/cl.h> // This is a macro for checking the error variable. #define CHK_ERROR(err) \ if (err != CL_SUCCESS) \ fprintf(stderr, "Error: %s\n", clGetErrorString(err)); // A errorCode to string converter (forward declaration) const char *clGetErrorString(int); const char *mykernel = "__kernel void helloWorld()" "{\n" " unsigned int group_x = get_group_id(0);\n" " unsigned int group_y = get_group_id(1);\n" " unsigned int group_z = get_group_id(2);\n" " unsigned int global_x = get_global_id(1);\n" " unsigned int global_y = get_global_id(1);\n" " unsigned int global_z = get_global_id(2);\n" " unsigned int local_x = get_local_id(0);\n" " unsigned int local_y = get_local_id(1);\n" " unsigned int local_z = get_local_id(2);\n" " printf(\"Hello world! My groupId is (%d,%d,%d), globalId is (%d,%d,%d) and localId is (%d,%d,%d)\\n\", group_x, group_y, group_z, global_x, global_y, global_z, local_x, local_y, local_z);\n" "}"; int main(int argc, char *argv) { cl_platform_id *platforms; cl_uint n_platform; // Find OpenCL Platforms cl_int err = clGetPlatformIDs(0, NULL, &n_platform); CHK_ERROR(err); platforms = (cl_platform_id *)malloc(sizeof(cl_platform_id) * n_platform); err = clGetPlatformIDs(n_platform, platforms, NULL); CHK_ERROR(err); // Find and sort devices cl_device_id *device_list; cl_uint n_devices; err = clGetDeviceIDs(platforms[0], CL_DEVICE_TYPE_GPU, 0, NULL, &n_devices); CHK_ERROR(err); device_list = (cl_device_id *)malloc(sizeof(cl_device_id) * n_devices); err = clGetDeviceIDs(platforms[0], CL_DEVICE_TYPE_GPU, n_devices, device_list, NULL); CHK_ERROR(err); // Create and initialize an OpenCL context cl_context context = clCreateContext(NULL, n_devices, device_list, NULL, NULL, &err); CHK_ERROR(err); // Create a command queue cl_command_queue cmd_queue = clCreateCommandQueue(context, device_list[0], 0, &err); CHK_ERROR(err); // Create program cl_program program = clCreateProgramWithSource(context, 1, (const char **)&mykernel, NULL, &err); CHK_ERROR(err); err = clBuildProgram(program, 1, device_list, NULL, NULL, NULL); if (err != CL_SUCCESS) { size_t len; char buffer[2048]; clGetProgramBuildInfo(program, device_list[0], CL_PROGRAM_BUILD_LOG, sizeof(buffer), buffer, &len); fprintf(stderr, "Build error: %s\n", buffer); return 0; } cl_kernel kernel = clCreateKernel(program, "helloWorld", &err); CHK_ERROR(err); size_t n_workitem[3] = {8, 8, 8}; size_t workgroup_size[3] = {4, 4, 4}; // Launch the kernel! err = clEnqueueNDRangeKernel(cmd_queue, kernel, 3, NULL, &n_workitem[0], &workgroup_size[0], 0, NULL, NULL); CHK_ERROR(err); err = clFlush(cmd_queue); CHK_ERROR(err); err = clFinish(cmd_queue); CHK_ERROR(err); // Finally, release all that we have allocated. err = clReleaseCommandQueue(cmd_queue); CHK_ERROR(err); err = clReleaseContext(context); CHK_ERROR(err); free(platforms); free(device_list); return 0; } // The source for this particular version is from: https://stackoverflow.com/questions/24326432/convenient-way-to-show-opencl-error-codes const char *clGetErrorString(int errorCode) { switch (errorCode) { case 0: return "CL_SUCCESS"; case -1: return "CL_DEVICE_NOT_FOUND"; case -2: return "CL_DEVICE_NOT_AVAILABLE"; case -3: return "CL_COMPILER_NOT_AVAILABLE"; case -4: return "CL_MEM_OBJECT_ALLOCATION_FAILURE"; case -5: return "CL_OUT_OF_RESOURCES"; case -6: return "CL_OUT_OF_HOST_MEMORY"; case -7: return "CL_PROFILING_INFO_NOT_AVAILABLE"; case -8: return "CL_MEM_COPY_OVERLAP"; case -9: return "CL_IMAGE_FORMAT_MISMATCH"; case -10: return "CL_IMAGE_FORMAT_NOT_SUPPORTED"; case -12: return "CL_MAP_FAILURE"; case -13: return "CL_MISALIGNED_SUB_BUFFER_OFFSET"; case -14: return "CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST"; case -15: return "CL_COMPILE_PROGRAM_FAILURE"; case -16: return "CL_LINKER_NOT_AVAILABLE"; case -17: return "CL_LINK_PROGRAM_FAILURE"; case -18: return "CL_DEVICE_PARTITION_FAILED"; case -19: return "CL_KERNEL_ARG_INFO_NOT_AVAILABLE"; case -30: return "CL_INVALID_VALUE"; case -31: return "CL_INVALID_DEVICE_TYPE"; case -32: return "CL_INVALID_PLATFORM"; case -33: return "CL_INVALID_DEVICE"; case -34: return "CL_INVALID_CONTEXT"; case -35: return "CL_INVALID_QUEUE_PROPERTIES"; case -36: return "CL_INVALID_COMMAND_QUEUE"; case -37: return "CL_INVALID_HOST_PTR"; case -38: return "CL_INVALID_MEM_OBJECT"; case -39: return "CL_INVALID_IMAGE_FORMAT_DESCRIPTOR"; case -40: return "CL_INVALID_IMAGE_SIZE"; case -41: return "CL_INVALID_SAMPLER"; case -42: return "CL_INVALID_BINARY"; case -43: return "CL_INVALID_BUILD_OPTIONS"; case -44: return "CL_INVALID_PROGRAM"; case -45: return "CL_INVALID_PROGRAM_EXECUTABLE"; case -46: return "CL_INVALID_KERNEL_NAME"; case -47: return "CL_INVALID_KERNEL_DEFINITION"; case -48: return "CL_INVALID_KERNEL"; case -49: return "CL_INVALID_ARG_INDEX"; case -50: return "CL_INVALID_ARG_VALUE"; case -51: return "CL_INVALID_ARG_SIZE"; case -52: return "CL_INVALID_KERNEL_ARGS"; case -53: return "CL_INVALID_WORK_DIMENSION"; case -54: return "CL_INVALID_WORK_GROUP_SIZE"; case -55: return "CL_INVALID_WORK_ITEM_SIZE"; case -56: return "CL_INVALID_GLOBAL_OFFSET"; case -57: return "CL_INVALID_EVENT_WAIT_LIST"; case -58: return "CL_INVALID_EVENT"; case -59: return "CL_INVALID_OPERATION"; case -60: return "CL_INVALID_GL_OBJECT"; case -61: return "CL_INVALID_BUFFER_SIZE"; case -62: return "CL_INVALID_MIP_LEVEL"; case -63: return "CL_INVALID_GLOBAL_WORK_SIZE"; case -64: return "CL_INVALID_PROPERTY"; case -65: return "CL_INVALID_IMAGE_DESCRIPTOR"; case -66: return "CL_INVALID_COMPILER_OPTIONS"; case -67: return "CL_INVALID_LINKER_OPTIONS"; case -68: return "CL_INVALID_DEVICE_PARTITION_COUNT"; case -69: return "CL_INVALID_PIPE_SIZE"; case -70: return "CL_INVALID_DEVICE_QUEUE"; case -71: return "CL_INVALID_SPEC_ID"; case -72: return "CL_MAX_SIZE_RESTRICTION_EXCEEDED"; case -1002: return "CL_INVALID_D3D10_DEVICE_KHR"; case -1003: return "CL_INVALID_D3D10_RESOURCE_KHR"; case -1004: return "CL_D3D10_RESOURCE_ALREADY_ACQUIRED_KHR"; case -1005: return "CL_D3D10_RESOURCE_NOT_ACQUIRED_KHR"; case -1006: return "CL_INVALID_D3D11_DEVICE_KHR"; case -1007: return "CL_INVALID_D3D11_RESOURCE_KHR"; case -1008: return "CL_D3D11_RESOURCE_ALREADY_ACQUIRED_KHR"; case -1009: return "CL_D3D11_RESOURCE_NOT_ACQUIRED_KHR"; case -1010: return "CL_INVALID_DX9_MEDIA_ADAPTER_KHR"; case -1011: return "CL_INVALID_DX9_MEDIA_SURFACE_KHR"; case -1012: return "CL_DX9_MEDIA_SURFACE_ALREADY_ACQUIRED_KHR"; case -1013: return "CL_DX9_MEDIA_SURFACE_NOT_ACQUIRED_KHR"; case -1093: return "CL_INVALID_EGL_OBJECT_KHR"; case -1092: return "CL_EGL_RESOURCE_NOT_ACQUIRED_KHR"; case -1001: return "CL_PLATFORM_NOT_FOUND_KHR"; case -1057: return "CL_DEVICE_PARTITION_FAILED_EXT"; case -1058: return "CL_INVALID_PARTITION_COUNT_EXT"; case -1059: return "CL_INVALID_PARTITION_NAME_EXT"; case -1094: return "CL_INVALID_ACCELERATOR_INTEL"; case -1095: return "CL_INVALID_ACCELERATOR_TYPE_INTEL"; case -1096: return "CL_INVALID_ACCELERATOR_DESCRIPTOR_INTEL"; case -1097: return "CL_ACCELERATOR_TYPE_NOT_SUPPORTED_INTEL"; case -1000: return "CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR"; case -1098: return "CL_INVALID_VA_API_MEDIA_ADAPTER_INTEL"; case -1099: return "CL_INVALID_VA_API_MEDIA_SURFACE_INTEL"; case -1100: return "CL_VA_API_MEDIA_SURFACE_ALREADY_ACQUIRED_INTEL"; case -1101: return "CL_VA_API_MEDIA_SURFACE_NOT_ACQUIRED_INTEL"; default: return "CL_UNKNOWN_ERROR"; } }
the_stack_data/215768825.c
/* Test that the signals below are supported. */ #include <signal.h> int dummy1 = SIGABRT; int dummy2 = SIGALRM; int dummy3 = SIGBUS; int dummy4 = SIGCHLD; int dummy5 = SIGCONT; int dummy6 = SIGFPE; int dummy7 = SIGHUP; int dummy8 = SIGILL; int dummy9 = SIGINT; int dummy10 = SIGKILL; int dummy11 = SIGPIPE; int dummy12 = SIGQUIT; int dummy13 = SIGSEGV; int dummy14 = SIGSTOP; int dummy15 = SIGTERM; int dummy16 = SIGTSTP; int dummy17 = SIGTTIN; int dummy18 = SIGTTOU; int dummy19 = SIGUSR1; int dummy20 = SIGUSR2; #ifdef SIGPOLL int dummy21 = SIGPOLL; #endif #ifdef SIGPROF int dummy22 = SIGPROF; #endif int dummy23 = SIGSYS; int dummy24 = SIGTRAP; int dummy25 = SIGURG; int dummy26 = SIGVTALRM; int dummy27 = SIGXCPU; int dummy28 = SIGXFSZ;
the_stack_data/138121.c
/** * @file * Sockets BSD-Like API module * */ /* * Copyright (c) 2001-2004 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. * * This file is part of the lwIP TCP/IP stack. * * Author: Adam Dunkels <[email protected]> * * Improved by Marc Boucher <[email protected]> and David Haas <[email protected]> * */ #ifdef LIBOHIBOARD_ETHERNET_LWIP_1_4_1 #include "lwip/opt.h" #if LWIP_SOCKET /* don't build if not configured for use in lwipopts.h */ #include "lwip/sockets.h" #include "lwip/api.h" #include "lwip/sys.h" #include "lwip/igmp.h" #include "lwip/inet.h" #include "lwip/tcp.h" #include "lwip/raw.h" #include "lwip/udp.h" #include "lwip/tcpip.h" #include "lwip/pbuf.h" #if LWIP_CHECKSUM_ON_COPY #include "lwip/inet_chksum.h" #endif #include <string.h> #define NUM_SOCKETS MEMP_NUM_NETCONN /** Contains all internal pointers and states used for a socket */ struct lwip_sock { /** sockets currently are built on netconns, each socket has one netconn */ struct netconn *conn; /** data that was left from the previous read */ void *lastdata; /** offset in the data that was left from the previous read */ u16_t lastoffset; /** number of times data was received, set by event_callback(), tested by the receive and select functions */ s16_t rcvevent; /** number of times data was ACKed (free send buffer), set by event_callback(), tested by select */ u16_t sendevent; /** error happened for this socket, set by event_callback(), tested by select */ u16_t errevent; /** last error that occurred on this socket */ int err; /** counter of how many threads are waiting for this socket using select */ int select_waiting; }; /** Description for a task waiting in select */ struct lwip_select_cb { /** Pointer to the next waiting task */ struct lwip_select_cb *next; /** Pointer to the previous waiting task */ struct lwip_select_cb *prev; /** readset passed to select */ fd_set *readset; /** writeset passed to select */ fd_set *writeset; /** unimplemented: exceptset passed to select */ fd_set *exceptset; /** don't signal the same semaphore twice: set to 1 when signalled */ int sem_signalled; /** semaphore to wake up a task waiting for select */ sys_sem_t sem; }; /** This struct is used to pass data to the set/getsockopt_internal * functions running in tcpip_thread context (only a void* is allowed) */ struct lwip_setgetsockopt_data { /** socket struct for which to change options */ struct lwip_sock *sock; #ifdef LWIP_DEBUG /** socket index for which to change options */ int s; #endif /* LWIP_DEBUG */ /** level of the option to process */ int level; /** name of the option to process */ int optname; /** set: value to set the option to * get: value of the option is stored here */ void *optval; /** size of *optval */ socklen_t *optlen; /** if an error occures, it is temporarily stored here */ err_t err; }; /** The global array of available sockets */ static struct lwip_sock sockets[NUM_SOCKETS]; /** The global list of tasks waiting for select */ static struct lwip_select_cb *select_cb_list; /** This counter is increased from lwip_select when the list is chagned and checked in event_callback to see if it has changed. */ static volatile int select_cb_ctr; /** Table to quickly map an lwIP error (err_t) to a socket error * by using -err as an index */ static const int err_to_errno_table[] = { 0, /* ERR_OK 0 No error, everything OK. */ ENOMEM, /* ERR_MEM -1 Out of memory error. */ ENOBUFS, /* ERR_BUF -2 Buffer error. */ EWOULDBLOCK, /* ERR_TIMEOUT -3 Timeout */ EHOSTUNREACH, /* ERR_RTE -4 Routing problem. */ EINPROGRESS, /* ERR_INPROGRESS -5 Operation in progress */ EINVAL, /* ERR_VAL -6 Illegal value. */ EWOULDBLOCK, /* ERR_WOULDBLOCK -7 Operation would block. */ EADDRINUSE, /* ERR_USE -8 Address in use. */ EALREADY, /* ERR_ISCONN -9 Already connected. */ ECONNABORTED, /* ERR_ABRT -10 Connection aborted. */ ECONNRESET, /* ERR_RST -11 Connection reset. */ ENOTCONN, /* ERR_CLSD -12 Connection closed. */ ENOTCONN, /* ERR_CONN -13 Not connected. */ EIO, /* ERR_ARG -14 Illegal argument. */ -1, /* ERR_IF -15 Low-level netif error */ }; #define ERR_TO_ERRNO_TABLE_SIZE \ (sizeof(err_to_errno_table)/sizeof(err_to_errno_table[0])) #define err_to_errno(err) \ ((unsigned)(-(err)) < ERR_TO_ERRNO_TABLE_SIZE ? \ err_to_errno_table[-(err)] : EIO) #ifdef ERRNO #ifndef set_errno #define set_errno(err) errno = (err) #endif #else /* ERRNO */ #define set_errno(err) #endif /* ERRNO */ #define sock_set_errno(sk, e) do { \ sk->err = (e); \ set_errno(sk->err); \ } while (0) /* Forward delcaration of some functions */ static void event_callback(struct netconn *conn, enum netconn_evt evt, u16_t len); static void lwip_getsockopt_internal(void *arg); static void lwip_setsockopt_internal(void *arg); /** * Initialize this module. This function has to be called before any other * functions in this module! */ void lwip_socket_init(void) { } /** * Map a externally used socket index to the internal socket representation. * * @param s externally used socket index * @return struct lwip_sock for the socket or NULL if not found */ static struct lwip_sock * get_socket(int s) { struct lwip_sock *sock; if ((s < 0) || (s >= NUM_SOCKETS)) { LWIP_DEBUGF(SOCKETS_DEBUG, ("get_socket(%d): invalid\n", s)); set_errno(EBADF); return NULL; } sock = &sockets[s]; if (!sock->conn) { LWIP_DEBUGF(SOCKETS_DEBUG, ("get_socket(%d): not active\n", s)); set_errno(EBADF); return NULL; } return sock; } /** * Same as get_socket but doesn't set errno * * @param s externally used socket index * @return struct lwip_sock for the socket or NULL if not found */ static struct lwip_sock * tryget_socket(int s) { if ((s < 0) || (s >= NUM_SOCKETS)) { return NULL; } if (!sockets[s].conn) { return NULL; } return &sockets[s]; } /** * Allocate a new socket for a given netconn. * * @param newconn the netconn for which to allocate a socket * @param accepted 1 if socket has been created by accept(), * 0 if socket has been created by socket() * @return the index of the new socket; -1 on error */ static int alloc_socket(struct netconn *newconn, int accepted) { int i; SYS_ARCH_DECL_PROTECT(lev); /* allocate a new socket identifier */ for (i = 0; i < NUM_SOCKETS; ++i) { /* Protect socket array */ SYS_ARCH_PROTECT(lev); if (!sockets[i].conn) { sockets[i].conn = newconn; /* The socket is not yet known to anyone, so no need to protect after having marked it as used. */ SYS_ARCH_UNPROTECT(lev); sockets[i].lastdata = NULL; sockets[i].lastoffset = 0; sockets[i].rcvevent = 0; /* TCP sendbuf is empty, but the socket is not yet writable until connected * (unless it has been created by accept()). */ sockets[i].sendevent = (newconn->type == NETCONN_TCP ? (accepted != 0) : 1); sockets[i].errevent = 0; sockets[i].err = 0; sockets[i].select_waiting = 0; return i; } SYS_ARCH_UNPROTECT(lev); } return -1; } /** Free a socket. The socket's netconn must have been * delete before! * * @param sock the socket to free * @param is_tcp != 0 for TCP sockets, used to free lastdata */ static void free_socket(struct lwip_sock *sock, int is_tcp) { void *lastdata; SYS_ARCH_DECL_PROTECT(lev); lastdata = sock->lastdata; sock->lastdata = NULL; sock->lastoffset = 0; sock->err = 0; /* Protect socket array */ SYS_ARCH_PROTECT(lev); sock->conn = NULL; SYS_ARCH_UNPROTECT(lev); /* don't use 'sock' after this line, as another task might have allocated it */ if (lastdata != NULL) { if (is_tcp) { pbuf_free((struct pbuf *)lastdata); } else { netbuf_delete((struct netbuf *)lastdata); } } } /* Below this, the well-known socket functions are implemented. * Use google.com or opengroup.org to get a good description :-) * * Exceptions are documented! */ int lwip_accept(int s, struct sockaddr *addr, socklen_t *addrlen) { struct lwip_sock *sock, *nsock; struct netconn *newconn; ip_addr_t naddr; u16_t port; int newsock; struct sockaddr_in sin; err_t err; SYS_ARCH_DECL_PROTECT(lev); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_accept(%d)...\n", s)); sock = get_socket(s); if (!sock) { return -1; } if (netconn_is_nonblocking(sock->conn) && (sock->rcvevent <= 0)) { LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_accept(%d): returning EWOULDBLOCK\n", s)); sock_set_errno(sock, EWOULDBLOCK); return -1; } /* wait for a new connection */ err = netconn_accept(sock->conn, &newconn); if (err != ERR_OK) { LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_accept(%d): netconn_acept failed, err=%d\n", s, err)); if (netconn_type(sock->conn) != NETCONN_TCP) { sock_set_errno(sock, EOPNOTSUPP); return EOPNOTSUPP; } sock_set_errno(sock, err_to_errno(err)); return -1; } LWIP_ASSERT("newconn != NULL", newconn != NULL); /* Prevent automatic window updates, we do this on our own! */ netconn_set_noautorecved(newconn, 1); /* get the IP address and port of the remote host */ err = netconn_peer(newconn, &naddr, &port); if (err != ERR_OK) { LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_accept(%d): netconn_peer failed, err=%d\n", s, err)); netconn_delete(newconn); sock_set_errno(sock, err_to_errno(err)); return -1; } /* Note that POSIX only requires us to check addr is non-NULL. addrlen must * not be NULL if addr is valid. */ if (NULL != addr) { LWIP_ASSERT("addr valid but addrlen NULL", addrlen != NULL); memset(&sin, 0, sizeof(sin)); sin.sin_len = sizeof(sin); sin.sin_family = AF_INET; sin.sin_port = htons(port); inet_addr_from_ipaddr(&sin.sin_addr, &naddr); if (*addrlen > sizeof(sin)) *addrlen = sizeof(sin); MEMCPY(addr, &sin, *addrlen); } newsock = alloc_socket(newconn, 1); if (newsock == -1) { netconn_delete(newconn); sock_set_errno(sock, ENFILE); return -1; } LWIP_ASSERT("invalid socket index", (newsock >= 0) && (newsock < NUM_SOCKETS)); LWIP_ASSERT("newconn->callback == event_callback", newconn->callback == event_callback); nsock = &sockets[newsock]; /* See event_callback: If data comes in right away after an accept, even * though the server task might not have created a new socket yet. * In that case, newconn->socket is counted down (newconn->socket--), * so nsock->rcvevent is >= 1 here! */ SYS_ARCH_PROTECT(lev); nsock->rcvevent += (s16_t)(-1 - newconn->socket); newconn->socket = newsock; SYS_ARCH_UNPROTECT(lev); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_accept(%d) returning new sock=%d addr=", s, newsock)); ip_addr_debug_print(SOCKETS_DEBUG, &naddr); LWIP_DEBUGF(SOCKETS_DEBUG, (" port=%"U16_F"\n", port)); sock_set_errno(sock, 0); return newsock; } int lwip_bind(int s, const struct sockaddr *name, socklen_t namelen) { struct lwip_sock *sock; ip_addr_t local_addr; u16_t local_port; err_t err; const struct sockaddr_in *name_in; sock = get_socket(s); if (!sock) { return -1; } /* check size, familiy and alignment of 'name' */ LWIP_ERROR("lwip_bind: invalid address", ((namelen == sizeof(struct sockaddr_in)) && ((name->sa_family) == AF_INET) && ((((mem_ptr_t)name) % 4) == 0)), sock_set_errno(sock, err_to_errno(ERR_ARG)); return -1;); name_in = (const struct sockaddr_in *)(void*)name; inet_addr_to_ipaddr(&local_addr, &name_in->sin_addr); local_port = name_in->sin_port; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_bind(%d, addr=", s)); ip_addr_debug_print(SOCKETS_DEBUG, &local_addr); LWIP_DEBUGF(SOCKETS_DEBUG, (" port=%"U16_F")\n", ntohs(local_port))); err = netconn_bind(sock->conn, &local_addr, ntohs(local_port)); if (err != ERR_OK) { LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_bind(%d) failed, err=%d\n", s, err)); sock_set_errno(sock, err_to_errno(err)); return -1; } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_bind(%d) succeeded\n", s)); sock_set_errno(sock, 0); return 0; } int lwip_close(int s) { struct lwip_sock *sock; int is_tcp = 0; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_close(%d)\n", s)); sock = get_socket(s); if (!sock) { return -1; } if(sock->conn != NULL) { is_tcp = netconn_type(sock->conn) == NETCONN_TCP; } else { LWIP_ASSERT("sock->lastdata == NULL", sock->lastdata == NULL); } netconn_delete(sock->conn); free_socket(sock, is_tcp); set_errno(0); return 0; } int lwip_connect(int s, const struct sockaddr *name, socklen_t namelen) { struct lwip_sock *sock; err_t err; const struct sockaddr_in *name_in; sock = get_socket(s); if (!sock) { return -1; } /* check size, familiy and alignment of 'name' */ LWIP_ERROR("lwip_connect: invalid address", ((namelen == sizeof(struct sockaddr_in)) && ((name->sa_family) == AF_INET) && ((((mem_ptr_t)name) % 4) == 0)), sock_set_errno(sock, err_to_errno(ERR_ARG)); return -1;); name_in = (const struct sockaddr_in *)(void*)name; if (name_in->sin_family == AF_UNSPEC) { LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_connect(%d, AF_UNSPEC)\n", s)); err = netconn_disconnect(sock->conn); } else { ip_addr_t remote_addr; u16_t remote_port; inet_addr_to_ipaddr(&remote_addr, &name_in->sin_addr); remote_port = name_in->sin_port; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_connect(%d, addr=", s)); ip_addr_debug_print(SOCKETS_DEBUG, &remote_addr); LWIP_DEBUGF(SOCKETS_DEBUG, (" port=%"U16_F")\n", ntohs(remote_port))); err = netconn_connect(sock->conn, &remote_addr, ntohs(remote_port)); } if (err != ERR_OK) { LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_connect(%d) failed, err=%d\n", s, err)); sock_set_errno(sock, err_to_errno(err)); return -1; } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_connect(%d) succeeded\n", s)); sock_set_errno(sock, 0); return 0; } /** * Set a socket into listen mode. * The socket may not have been used for another connection previously. * * @param s the socket to set to listening mode * @param backlog (ATTENTION: needs TCP_LISTEN_BACKLOG=1) * @return 0 on success, non-zero on failure */ int lwip_listen(int s, int backlog) { struct lwip_sock *sock; err_t err; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_listen(%d, backlog=%d)\n", s, backlog)); sock = get_socket(s); if (!sock) { return -1; } /* limit the "backlog" parameter to fit in an u8_t */ backlog = LWIP_MIN(LWIP_MAX(backlog, 0), 0xff); err = netconn_listen_with_backlog(sock->conn, (u8_t)backlog); if (err != ERR_OK) { LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_listen(%d) failed, err=%d\n", s, err)); if (netconn_type(sock->conn) != NETCONN_TCP) { sock_set_errno(sock, EOPNOTSUPP); return EOPNOTSUPP; } sock_set_errno(sock, err_to_errno(err)); return -1; } sock_set_errno(sock, 0); return 0; } int lwip_recvfrom(int s, void *mem, size_t len, int flags, struct sockaddr *from, socklen_t *fromlen) { struct lwip_sock *sock; void *buf = NULL; struct pbuf *p; u16_t buflen, copylen; int off = 0; ip_addr_t *addr; u16_t port; u8_t done = 0; err_t err; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom(%d, %p, %"SZT_F", 0x%x, ..)\n", s, mem, len, flags)); sock = get_socket(s); if (!sock) { return -1; } do { LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom: top while sock->lastdata=%p\n", sock->lastdata)); /* Check if there is data left from the last recv operation. */ if (sock->lastdata) { buf = sock->lastdata; } else { /* If this is non-blocking call, then check first */ if (((flags & MSG_DONTWAIT) || netconn_is_nonblocking(sock->conn)) && (sock->rcvevent <= 0)) { if (off > 0) { /* update receive window */ netconn_recved(sock->conn, (u32_t)off); /* already received data, return that */ sock_set_errno(sock, 0); return off; } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom(%d): returning EWOULDBLOCK\n", s)); sock_set_errno(sock, EWOULDBLOCK); return -1; } /* No data was left from the previous operation, so we try to get some from the network. */ if (netconn_type(sock->conn) == NETCONN_TCP) { err = netconn_recv_tcp_pbuf(sock->conn, (struct pbuf **)&buf); } else { err = netconn_recv(sock->conn, (struct netbuf **)&buf); } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom: netconn_recv err=%d, netbuf=%p\n", err, buf)); if (err != ERR_OK) { if (off > 0) { /* update receive window */ netconn_recved(sock->conn, (u32_t)off); /* already received data, return that */ sock_set_errno(sock, 0); return off; } /* We should really do some error checking here. */ LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom(%d): buf == NULL, error is \"%s\"!\n", s, lwip_strerr(err))); sock_set_errno(sock, err_to_errno(err)); if (err == ERR_CLSD) { return 0; } else { return -1; } } LWIP_ASSERT("buf != NULL", buf != NULL); sock->lastdata = buf; } if (netconn_type(sock->conn) == NETCONN_TCP) { p = (struct pbuf *)buf; } else { p = ((struct netbuf *)buf)->p; } buflen = p->tot_len; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom: buflen=%"U16_F" len=%"SZT_F" off=%d sock->lastoffset=%"U16_F"\n", buflen, len, off, sock->lastoffset)); buflen -= sock->lastoffset; if (len > buflen) { copylen = buflen; } else { copylen = (u16_t)len; } /* copy the contents of the received buffer into the supplied memory pointer mem */ pbuf_copy_partial(p, (u8_t*)mem + off, copylen, sock->lastoffset); off += copylen; if (netconn_type(sock->conn) == NETCONN_TCP) { LWIP_ASSERT("invalid copylen, len would underflow", len >= copylen); len -= copylen; if ( (len <= 0) || (p->flags & PBUF_FLAG_PUSH) || (sock->rcvevent <= 0) || ((flags & MSG_PEEK)!=0)) { done = 1; } } else { done = 1; } /* Check to see from where the data was.*/ if (done) { ip_addr_t fromaddr; if (from && fromlen) { struct sockaddr_in sin; if (netconn_type(sock->conn) == NETCONN_TCP) { addr = &fromaddr; netconn_getaddr(sock->conn, addr, &port, 0); } else { addr = netbuf_fromaddr((struct netbuf *)buf); port = netbuf_fromport((struct netbuf *)buf); } memset(&sin, 0, sizeof(sin)); sin.sin_len = sizeof(sin); sin.sin_family = AF_INET; sin.sin_port = htons(port); inet_addr_from_ipaddr(&sin.sin_addr, addr); if (*fromlen > sizeof(sin)) { *fromlen = sizeof(sin); } MEMCPY(from, &sin, *fromlen); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom(%d): addr=", s)); ip_addr_debug_print(SOCKETS_DEBUG, addr); LWIP_DEBUGF(SOCKETS_DEBUG, (" port=%"U16_F" len=%d\n", port, off)); } else { #if SOCKETS_DEBUG if (netconn_type(sock->conn) == NETCONN_TCP) { addr = &fromaddr; netconn_getaddr(sock->conn, addr, &port, 0); } else { addr = netbuf_fromaddr((struct netbuf *)buf); port = netbuf_fromport((struct netbuf *)buf); } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom(%d): addr=", s)); ip_addr_debug_print(SOCKETS_DEBUG, addr); LWIP_DEBUGF(SOCKETS_DEBUG, (" port=%"U16_F" len=%d\n", port, off)); #endif /* SOCKETS_DEBUG */ } } /* If we don't peek the incoming message... */ if ((flags & MSG_PEEK) == 0) { /* If this is a TCP socket, check if there is data left in the buffer. If so, it should be saved in the sock structure for next time around. */ if ((netconn_type(sock->conn) == NETCONN_TCP) && (buflen - copylen > 0)) { sock->lastdata = buf; sock->lastoffset += copylen; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom: lastdata now netbuf=%p\n", buf)); } else { sock->lastdata = NULL; sock->lastoffset = 0; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom: deleting netbuf=%p\n", buf)); if (netconn_type(sock->conn) == NETCONN_TCP) { pbuf_free((struct pbuf *)buf); } else { netbuf_delete((struct netbuf *)buf); } } } } while (!done); if (off > 0) { /* update receive window */ netconn_recved(sock->conn, (u32_t)off); } sock_set_errno(sock, 0); return off; } int lwip_read(int s, void *mem, size_t len) { return lwip_recvfrom(s, mem, len, 0, NULL, NULL); } int lwip_recv(int s, void *mem, size_t len, int flags) { return lwip_recvfrom(s, mem, len, flags, NULL, NULL); } int lwip_send(int s, const void *data, size_t size, int flags) { struct lwip_sock *sock; err_t err; u8_t write_flags; size_t written; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_send(%d, data=%p, size=%"SZT_F", flags=0x%x)\n", s, data, size, flags)); sock = get_socket(s); if (!sock) { return -1; } if (sock->conn->type != NETCONN_TCP) { #if (LWIP_UDP || LWIP_RAW) return lwip_sendto(s, data, size, flags, NULL, 0); #else /* (LWIP_UDP || LWIP_RAW) */ sock_set_errno(sock, err_to_errno(ERR_ARG)); return -1; #endif /* (LWIP_UDP || LWIP_RAW) */ } write_flags = NETCONN_COPY | ((flags & MSG_MORE) ? NETCONN_MORE : 0) | ((flags & MSG_DONTWAIT) ? NETCONN_DONTBLOCK : 0); written = 0; err = netconn_write_partly(sock->conn, data, size, write_flags, &written); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_send(%d) err=%d written=%"SZT_F"\n", s, err, written)); sock_set_errno(sock, err_to_errno(err)); return (err == ERR_OK ? (int)written : -1); } int lwip_sendto(int s, const void *data, size_t size, int flags, const struct sockaddr *to, socklen_t tolen) { struct lwip_sock *sock; err_t err; u16_t short_size; const struct sockaddr_in *to_in; u16_t remote_port; #if !LWIP_TCPIP_CORE_LOCKING struct netbuf buf; #endif sock = get_socket(s); if (!sock) { return -1; } if (sock->conn->type == NETCONN_TCP) { #if LWIP_TCP return lwip_send(s, data, size, flags); #else /* LWIP_TCP */ LWIP_UNUSED_ARG(flags); sock_set_errno(sock, err_to_errno(ERR_ARG)); return -1; #endif /* LWIP_TCP */ } /* @todo: split into multiple sendto's? */ LWIP_ASSERT("lwip_sendto: size must fit in u16_t", size <= 0xffff); short_size = (u16_t)size; LWIP_ERROR("lwip_sendto: invalid address", (((to == NULL) && (tolen == 0)) || ((tolen == sizeof(struct sockaddr_in)) && ((to->sa_family) == AF_INET) && ((((mem_ptr_t)to) % 4) == 0))), sock_set_errno(sock, err_to_errno(ERR_ARG)); return -1;); to_in = (const struct sockaddr_in *)(void*)to; #if LWIP_TCPIP_CORE_LOCKING /* Should only be consider like a sample or a simple way to experiment this option (no check of "to" field...) */ { struct pbuf* p; ip_addr_t *remote_addr; #if LWIP_NETIF_TX_SINGLE_PBUF p = pbuf_alloc(PBUF_TRANSPORT, short_size, PBUF_RAM); if (p != NULL) { #if LWIP_CHECKSUM_ON_COPY u16_t chksum = 0; if (sock->conn->type != NETCONN_RAW) { chksum = LWIP_CHKSUM_COPY(p->payload, data, short_size); } else #endif /* LWIP_CHECKSUM_ON_COPY */ MEMCPY(p->payload, data, size); #else /* LWIP_NETIF_TX_SINGLE_PBUF */ p = pbuf_alloc(PBUF_TRANSPORT, short_size, PBUF_REF); if (p != NULL) { p->payload = (void*)data; #endif /* LWIP_NETIF_TX_SINGLE_PBUF */ if (to_in != NULL) { inet_addr_to_ipaddr_p(remote_addr, &to_in->sin_addr); remote_port = ntohs(to_in->sin_port); } else { remote_addr = &sock->conn->pcb.ip->remote_ip; #if LWIP_UDP if (NETCONNTYPE_GROUP(sock->conn->type) == NETCONN_UDP) { remote_port = sock->conn->pcb.udp->remote_port; } else #endif /* LWIP_UDP */ { remote_port = 0; } } LOCK_TCPIP_CORE(); if (netconn_type(sock->conn) == NETCONN_RAW) { #if LWIP_RAW err = sock->conn->last_err = raw_sendto(sock->conn->pcb.raw, p, remote_addr); #else /* LWIP_RAW */ err = ERR_ARG; #endif /* LWIP_RAW */ } #if LWIP_UDP && LWIP_RAW else #endif /* LWIP_UDP && LWIP_RAW */ { #if LWIP_UDP #if LWIP_CHECKSUM_ON_COPY && LWIP_NETIF_TX_SINGLE_PBUF err = sock->conn->last_err = udp_sendto_chksum(sock->conn->pcb.udp, p, remote_addr, remote_port, 1, chksum); #else /* LWIP_CHECKSUM_ON_COPY && LWIP_NETIF_TX_SINGLE_PBUF */ err = sock->conn->last_err = udp_sendto(sock->conn->pcb.udp, p, remote_addr, remote_port); #endif /* LWIP_CHECKSUM_ON_COPY && LWIP_NETIF_TX_SINGLE_PBUF */ #else /* LWIP_UDP */ err = ERR_ARG; #endif /* LWIP_UDP */ } UNLOCK_TCPIP_CORE(); pbuf_free(p); } else { err = ERR_MEM; } } #else /* LWIP_TCPIP_CORE_LOCKING */ /* initialize a buffer */ buf.p = buf.ptr = NULL; #if LWIP_CHECKSUM_ON_COPY buf.flags = 0; #endif /* LWIP_CHECKSUM_ON_COPY */ if (to) { inet_addr_to_ipaddr(&buf.addr, &to_in->sin_addr); remote_port = ntohs(to_in->sin_port); netbuf_fromport(&buf) = remote_port; } else { remote_port = 0; ip_addr_set_any(&buf.addr); netbuf_fromport(&buf) = 0; } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_sendto(%d, data=%p, short_size=%"U16_F", flags=0x%x to=", s, data, short_size, flags)); ip_addr_debug_print(SOCKETS_DEBUG, &buf.addr); LWIP_DEBUGF(SOCKETS_DEBUG, (" port=%"U16_F"\n", remote_port)); /* make the buffer point to the data that should be sent */ #if LWIP_NETIF_TX_SINGLE_PBUF /* Allocate a new netbuf and copy the data into it. */ if (netbuf_alloc(&buf, short_size) == NULL) { err = ERR_MEM; } else { #if LWIP_CHECKSUM_ON_COPY if (sock->conn->type != NETCONN_RAW) { u16_t chksum = LWIP_CHKSUM_COPY(buf.p->payload, data, short_size); netbuf_set_chksum(&buf, chksum); err = ERR_OK; } else #endif /* LWIP_CHECKSUM_ON_COPY */ { err = netbuf_take(&buf, data, short_size); } } #else /* LWIP_NETIF_TX_SINGLE_PBUF */ err = netbuf_ref(&buf, data, short_size); #endif /* LWIP_NETIF_TX_SINGLE_PBUF */ if (err == ERR_OK) { /* send the data */ err = netconn_send(sock->conn, &buf); } /* deallocated the buffer */ netbuf_free(&buf); #endif /* LWIP_TCPIP_CORE_LOCKING */ sock_set_errno(sock, err_to_errno(err)); return (err == ERR_OK ? short_size : -1); } int lwip_socket(int domain, int type, int protocol) { struct netconn *conn; int i; LWIP_UNUSED_ARG(domain); /* create a netconn */ switch (type) { case SOCK_RAW: conn = netconn_new_with_proto_and_callback(NETCONN_RAW, (u8_t)protocol, event_callback); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_socket(%s, SOCK_RAW, %d) = ", domain == PF_INET ? "PF_INET" : "UNKNOWN", protocol)); break; case SOCK_DGRAM: conn = netconn_new_with_callback( (protocol == IPPROTO_UDPLITE) ? NETCONN_UDPLITE : NETCONN_UDP, event_callback); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_socket(%s, SOCK_DGRAM, %d) = ", domain == PF_INET ? "PF_INET" : "UNKNOWN", protocol)); break; case SOCK_STREAM: conn = netconn_new_with_callback(NETCONN_TCP, event_callback); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_socket(%s, SOCK_STREAM, %d) = ", domain == PF_INET ? "PF_INET" : "UNKNOWN", protocol)); if (conn != NULL) { /* Prevent automatic window updates, we do this on our own! */ netconn_set_noautorecved(conn, 1); } break; default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_socket(%d, %d/UNKNOWN, %d) = -1\n", domain, type, protocol)); set_errno(EINVAL); return -1; } if (!conn) { LWIP_DEBUGF(SOCKETS_DEBUG, ("-1 / ENOBUFS (could not create netconn)\n")); set_errno(ENOBUFS); return -1; } i = alloc_socket(conn, 0); if (i == -1) { netconn_delete(conn); set_errno(ENFILE); return -1; } conn->socket = i; LWIP_DEBUGF(SOCKETS_DEBUG, ("%d\n", i)); set_errno(0); return i; } int lwip_write(int s, const void *data, size_t size) { return lwip_send(s, data, size, 0); } /** * Go through the readset and writeset lists and see which socket of the sockets * set in the sets has events. On return, readset, writeset and exceptset have * the sockets enabled that had events. * * exceptset is not used for now!!! * * @param maxfdp1 the highest socket index in the sets * @param readset_in: set of sockets to check for read events * @param writeset_in: set of sockets to check for write events * @param exceptset_in: set of sockets to check for error events * @param readset_out: set of sockets that had read events * @param writeset_out: set of sockets that had write events * @param exceptset_out: set os sockets that had error events * @return number of sockets that had events (read/write/exception) (>= 0) */ static int lwip_selscan(int maxfdp1, fd_set *readset_in, fd_set *writeset_in, fd_set *exceptset_in, fd_set *readset_out, fd_set *writeset_out, fd_set *exceptset_out) { int i, nready = 0; fd_set lreadset, lwriteset, lexceptset; struct lwip_sock *sock; SYS_ARCH_DECL_PROTECT(lev); FD_ZERO(&lreadset); FD_ZERO(&lwriteset); FD_ZERO(&lexceptset); /* Go through each socket in each list to count number of sockets which currently match */ for(i = 0; i < maxfdp1; i++) { void* lastdata = NULL; s16_t rcvevent = 0; u16_t sendevent = 0; u16_t errevent = 0; /* First get the socket's status (protected)... */ SYS_ARCH_PROTECT(lev); sock = tryget_socket(i); if (sock != NULL) { lastdata = sock->lastdata; rcvevent = sock->rcvevent; sendevent = sock->sendevent; errevent = sock->errevent; } SYS_ARCH_UNPROTECT(lev); /* ... then examine it: */ /* See if netconn of this socket is ready for read */ if (readset_in && FD_ISSET(i, readset_in) && ((lastdata != NULL) || (rcvevent > 0))) { FD_SET(i, &lreadset); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_selscan: fd=%d ready for reading\n", i)); nready++; } /* See if netconn of this socket is ready for write */ if (writeset_in && FD_ISSET(i, writeset_in) && (sendevent != 0)) { FD_SET(i, &lwriteset); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_selscan: fd=%d ready for writing\n", i)); nready++; } /* See if netconn of this socket had an error */ if (exceptset_in && FD_ISSET(i, exceptset_in) && (errevent != 0)) { FD_SET(i, &lexceptset); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_selscan: fd=%d ready for exception\n", i)); nready++; } } /* copy local sets to the ones provided as arguments */ *readset_out = lreadset; *writeset_out = lwriteset; *exceptset_out = lexceptset; LWIP_ASSERT("nready >= 0", nready >= 0); return nready; } /** * Processing exceptset is not yet implemented. */ int lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset, struct timeval *timeout) { u32_t waitres = 0; int nready; fd_set lreadset, lwriteset, lexceptset; u32_t msectimeout; struct lwip_select_cb select_cb; err_t err; int i; SYS_ARCH_DECL_PROTECT(lev); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_select(%d, %p, %p, %p, tvsec=%"S32_F" tvusec=%"S32_F")\n", maxfdp1, (void *)readset, (void *) writeset, (void *) exceptset, timeout ? (s32_t)timeout->tv_sec : (s32_t)-1, timeout ? (s32_t)timeout->tv_usec : (s32_t)-1)); /* Go through each socket in each list to count number of sockets which currently match */ nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset); /* If we don't have any current events, then suspend if we are supposed to */ if (!nready) { if (timeout && timeout->tv_sec == 0 && timeout->tv_usec == 0) { LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_select: no timeout, returning 0\n")); /* This is OK as the local fdsets are empty and nready is zero, or we would have returned earlier. */ goto return_copy_fdsets; } /* None ready: add our semaphore to list: We don't actually need any dynamic memory. Our entry on the list is only valid while we are in this function, so it's ok to use local variables. */ select_cb.next = NULL; select_cb.prev = NULL; select_cb.readset = readset; select_cb.writeset = writeset; select_cb.exceptset = exceptset; select_cb.sem_signalled = 0; err = sys_sem_new(&select_cb.sem, 0); if (err != ERR_OK) { /* failed to create semaphore */ set_errno(ENOMEM); return -1; } /* Protect the select_cb_list */ SYS_ARCH_PROTECT(lev); /* Put this select_cb on top of list */ select_cb.next = select_cb_list; if (select_cb_list != NULL) { select_cb_list->prev = &select_cb; } select_cb_list = &select_cb; /* Increasing this counter tells even_callback that the list has changed. */ select_cb_ctr++; /* Now we can safely unprotect */ SYS_ARCH_UNPROTECT(lev); /* Increase select_waiting for each socket we are interested in */ for(i = 0; i < maxfdp1; i++) { if ((readset && FD_ISSET(i, readset)) || (writeset && FD_ISSET(i, writeset)) || (exceptset && FD_ISSET(i, exceptset))) { struct lwip_sock *sock = tryget_socket(i); LWIP_ASSERT("sock != NULL", sock != NULL); SYS_ARCH_PROTECT(lev); sock->select_waiting++; LWIP_ASSERT("sock->select_waiting > 0", sock->select_waiting > 0); SYS_ARCH_UNPROTECT(lev); } } /* Call lwip_selscan again: there could have been events between the last scan (whithout us on the list) and putting us on the list! */ nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset); if (!nready) { /* Still none ready, just wait to be woken */ if (timeout == 0) { /* Wait forever */ msectimeout = 0; } else { msectimeout = ((timeout->tv_sec * 1000) + ((timeout->tv_usec + 500)/1000)); if (msectimeout == 0) { /* Wait 1ms at least (0 means wait forever) */ msectimeout = 1; } } waitres = sys_arch_sem_wait(&select_cb.sem, msectimeout); } /* Increase select_waiting for each socket we are interested in */ for(i = 0; i < maxfdp1; i++) { if ((readset && FD_ISSET(i, readset)) || (writeset && FD_ISSET(i, writeset)) || (exceptset && FD_ISSET(i, exceptset))) { struct lwip_sock *sock = tryget_socket(i); LWIP_ASSERT("sock != NULL", sock != NULL); SYS_ARCH_PROTECT(lev); sock->select_waiting--; LWIP_ASSERT("sock->select_waiting >= 0", sock->select_waiting >= 0); SYS_ARCH_UNPROTECT(lev); } } /* Take us off the list */ SYS_ARCH_PROTECT(lev); if (select_cb.next != NULL) { select_cb.next->prev = select_cb.prev; } if (select_cb_list == &select_cb) { LWIP_ASSERT("select_cb.prev == NULL", select_cb.prev == NULL); select_cb_list = select_cb.next; } else { LWIP_ASSERT("select_cb.prev != NULL", select_cb.prev != NULL); select_cb.prev->next = select_cb.next; } /* Increasing this counter tells even_callback that the list has changed. */ select_cb_ctr++; SYS_ARCH_UNPROTECT(lev); sys_sem_free(&select_cb.sem); if (waitres == SYS_ARCH_TIMEOUT) { /* Timeout */ LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_select: timeout expired\n")); /* This is OK as the local fdsets are empty and nready is zero, or we would have returned earlier. */ goto return_copy_fdsets; } /* See what's set */ nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset); } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_select: nready=%d\n", nready)); return_copy_fdsets: set_errno(0); if (readset) { *readset = lreadset; } if (writeset) { *writeset = lwriteset; } if (exceptset) { *exceptset = lexceptset; } return nready; } /** * Callback registered in the netconn layer for each socket-netconn. * Processes recvevent (data available) and wakes up tasks waiting for select. */ static void event_callback(struct netconn *conn, enum netconn_evt evt, u16_t len) { int s; struct lwip_sock *sock; struct lwip_select_cb *scb; int last_select_cb_ctr; SYS_ARCH_DECL_PROTECT(lev); LWIP_UNUSED_ARG(len); /* Get socket */ if (conn) { s = conn->socket; if (s < 0) { /* Data comes in right away after an accept, even though * the server task might not have created a new socket yet. * Just count down (or up) if that's the case and we * will use the data later. Note that only receive events * can happen before the new socket is set up. */ SYS_ARCH_PROTECT(lev); if (conn->socket < 0) { if (evt == NETCONN_EVT_RCVPLUS) { conn->socket--; } SYS_ARCH_UNPROTECT(lev); return; } s = conn->socket; SYS_ARCH_UNPROTECT(lev); } sock = get_socket(s); if (!sock) { return; } } else { return; } SYS_ARCH_PROTECT(lev); /* Set event as required */ switch (evt) { case NETCONN_EVT_RCVPLUS: sock->rcvevent++; break; case NETCONN_EVT_RCVMINUS: sock->rcvevent--; break; case NETCONN_EVT_SENDPLUS: sock->sendevent = 1; break; case NETCONN_EVT_SENDMINUS: sock->sendevent = 0; break; case NETCONN_EVT_ERROR: sock->errevent = 1; break; default: LWIP_ASSERT("unknown event", 0); break; } if (sock->select_waiting == 0) { /* noone is waiting for this socket, no need to check select_cb_list */ SYS_ARCH_UNPROTECT(lev); return; } /* Now decide if anyone is waiting for this socket */ /* NOTE: This code goes through the select_cb_list list multiple times ONLY IF a select was actually waiting. We go through the list the number of waiting select calls + 1. This list is expected to be small. */ /* At this point, SYS_ARCH is still protected! */ again: for (scb = select_cb_list; scb != NULL; scb = scb->next) { if (scb->sem_signalled == 0) { /* semaphore not signalled yet */ int do_signal = 0; /* Test this select call for our socket */ if (sock->rcvevent > 0) { if (scb->readset && FD_ISSET(s, scb->readset)) { do_signal = 1; } } if (sock->sendevent != 0) { if (!do_signal && scb->writeset && FD_ISSET(s, scb->writeset)) { do_signal = 1; } } if (sock->errevent != 0) { if (!do_signal && scb->exceptset && FD_ISSET(s, scb->exceptset)) { do_signal = 1; } } if (do_signal) { scb->sem_signalled = 1; /* Don't call SYS_ARCH_UNPROTECT() before signaling the semaphore, as this might lead to the select thread taking itself off the list, invalidagin the semaphore. */ sys_sem_signal(&scb->sem); } } /* unlock interrupts with each step */ last_select_cb_ctr = select_cb_ctr; SYS_ARCH_UNPROTECT(lev); /* this makes sure interrupt protection time is short */ SYS_ARCH_PROTECT(lev); if (last_select_cb_ctr != select_cb_ctr) { /* someone has changed select_cb_list, restart at the beginning */ goto again; } } SYS_ARCH_UNPROTECT(lev); } /** * Unimplemented: Close one end of a full-duplex connection. * Currently, the full connection is closed. */ int lwip_shutdown(int s, int how) { struct lwip_sock *sock; err_t err; u8_t shut_rx = 0, shut_tx = 0; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_shutdown(%d, how=%d)\n", s, how)); sock = get_socket(s); if (!sock) { return -1; } if (sock->conn != NULL) { if (netconn_type(sock->conn) != NETCONN_TCP) { sock_set_errno(sock, EOPNOTSUPP); return EOPNOTSUPP; } } else { sock_set_errno(sock, ENOTCONN); return ENOTCONN; } if (how == SHUT_RD) { shut_rx = 1; } else if (how == SHUT_WR) { shut_tx = 1; } else if(how == SHUT_RDWR) { shut_rx = 1; shut_tx = 1; } else { sock_set_errno(sock, EINVAL); return EINVAL; } err = netconn_shutdown(sock->conn, shut_rx, shut_tx); sock_set_errno(sock, err_to_errno(err)); return (err == ERR_OK ? 0 : -1); } static int lwip_getaddrname(int s, struct sockaddr *name, socklen_t *namelen, u8_t local) { struct lwip_sock *sock; struct sockaddr_in sin; ip_addr_t naddr; sock = get_socket(s); if (!sock) { return -1; } memset(&sin, 0, sizeof(sin)); sin.sin_len = sizeof(sin); sin.sin_family = AF_INET; /* get the IP address and port */ netconn_getaddr(sock->conn, &naddr, &sin.sin_port, local); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getaddrname(%d, addr=", s)); ip_addr_debug_print(SOCKETS_DEBUG, &naddr); LWIP_DEBUGF(SOCKETS_DEBUG, (" port=%"U16_F")\n", sin.sin_port)); sin.sin_port = htons(sin.sin_port); inet_addr_from_ipaddr(&sin.sin_addr, &naddr); if (*namelen > sizeof(sin)) { *namelen = sizeof(sin); } MEMCPY(name, &sin, *namelen); sock_set_errno(sock, 0); return 0; } int lwip_getpeername(int s, struct sockaddr *name, socklen_t *namelen) { return lwip_getaddrname(s, name, namelen, 0); } int lwip_getsockname(int s, struct sockaddr *name, socklen_t *namelen) { return lwip_getaddrname(s, name, namelen, 1); } int lwip_getsockopt(int s, int level, int optname, void *optval, socklen_t *optlen) { err_t err = ERR_OK; struct lwip_sock *sock = get_socket(s); struct lwip_setgetsockopt_data data; if (!sock) { return -1; } if ((NULL == optval) || (NULL == optlen)) { sock_set_errno(sock, EFAULT); return -1; } /* Do length and type checks for the various options first, to keep it readable. */ switch (level) { /* Level: SOL_SOCKET */ case SOL_SOCKET: switch (optname) { case SO_ACCEPTCONN: case SO_BROADCAST: /* UNIMPL case SO_DEBUG: */ /* UNIMPL case SO_DONTROUTE: */ case SO_ERROR: case SO_KEEPALIVE: /* UNIMPL case SO_CONTIMEO: */ #if LWIP_SO_SNDTIMEO case SO_SNDTIMEO: #endif /* LWIP_SO_SNDTIMEO */ #if LWIP_SO_RCVTIMEO case SO_RCVTIMEO: #endif /* LWIP_SO_RCVTIMEO */ #if LWIP_SO_RCVBUF case SO_RCVBUF: #endif /* LWIP_SO_RCVBUF */ /* UNIMPL case SO_OOBINLINE: */ /* UNIMPL case SO_SNDBUF: */ /* UNIMPL case SO_RCVLOWAT: */ /* UNIMPL case SO_SNDLOWAT: */ #if SO_REUSE case SO_REUSEADDR: case SO_REUSEPORT: #endif /* SO_REUSE */ case SO_TYPE: /* UNIMPL case SO_USELOOPBACK: */ if (*optlen < sizeof(int)) { err = EINVAL; } break; case SO_NO_CHECK: if (*optlen < sizeof(int)) { err = EINVAL; } #if LWIP_UDP if ((sock->conn->type != NETCONN_UDP) || ((udp_flags(sock->conn->pcb.udp) & UDP_FLAGS_UDPLITE) != 0)) { /* this flag is only available for UDP, not for UDP lite */ err = EAFNOSUPPORT; } #endif /* LWIP_UDP */ break; default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, SOL_SOCKET, UNIMPL: optname=0x%x, ..)\n", s, optname)); err = ENOPROTOOPT; } /* switch (optname) */ break; /* Level: IPPROTO_IP */ case IPPROTO_IP: switch (optname) { /* UNIMPL case IP_HDRINCL: */ /* UNIMPL case IP_RCVDSTADDR: */ /* UNIMPL case IP_RCVIF: */ case IP_TTL: case IP_TOS: if (*optlen < sizeof(int)) { err = EINVAL; } break; #if LWIP_IGMP case IP_MULTICAST_TTL: if (*optlen < sizeof(u8_t)) { err = EINVAL; } break; case IP_MULTICAST_IF: if (*optlen < sizeof(struct in_addr)) { err = EINVAL; } break; case IP_MULTICAST_LOOP: if (*optlen < sizeof(u8_t)) { err = EINVAL; } if (NETCONNTYPE_GROUP(sock->conn->type) != NETCONN_UDP) { err = EAFNOSUPPORT; } break; #endif /* LWIP_IGMP */ default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_IP, UNIMPL: optname=0x%x, ..)\n", s, optname)); err = ENOPROTOOPT; } /* switch (optname) */ break; #if LWIP_TCP /* Level: IPPROTO_TCP */ case IPPROTO_TCP: if (*optlen < sizeof(int)) { err = EINVAL; break; } /* If this is no TCP socket, ignore any options. */ if (sock->conn->type != NETCONN_TCP) return 0; switch (optname) { case TCP_NODELAY: case TCP_KEEPALIVE: #if LWIP_TCP_KEEPALIVE case TCP_KEEPIDLE: case TCP_KEEPINTVL: case TCP_KEEPCNT: #endif /* LWIP_TCP_KEEPALIVE */ break; default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_TCP, UNIMPL: optname=0x%x, ..)\n", s, optname)); err = ENOPROTOOPT; } /* switch (optname) */ break; #endif /* LWIP_TCP */ #if LWIP_UDP && LWIP_UDPLITE /* Level: IPPROTO_UDPLITE */ case IPPROTO_UDPLITE: if (*optlen < sizeof(int)) { err = EINVAL; break; } /* If this is no UDP lite socket, ignore any options. */ if (sock->conn->type != NETCONN_UDPLITE) { return 0; } switch (optname) { case UDPLITE_SEND_CSCOV: case UDPLITE_RECV_CSCOV: break; default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_UDPLITE, UNIMPL: optname=0x%x, ..)\n", s, optname)); err = ENOPROTOOPT; } /* switch (optname) */ break; #endif /* LWIP_UDP && LWIP_UDPLITE*/ /* UNDEFINED LEVEL */ default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, level=0x%x, UNIMPL: optname=0x%x, ..)\n", s, level, optname)); err = ENOPROTOOPT; } /* switch */ if (err != ERR_OK) { sock_set_errno(sock, err); return -1; } /* Now do the actual option processing */ data.sock = sock; #ifdef LWIP_DEBUG data.s = s; #endif /* LWIP_DEBUG */ data.level = level; data.optname = optname; data.optval = optval; data.optlen = optlen; data.err = err; tcpip_callback(lwip_getsockopt_internal, &data); sys_arch_sem_wait(&sock->conn->op_completed, 0); /* maybe lwip_getsockopt_internal has changed err */ err = data.err; sock_set_errno(sock, err); return err ? -1 : 0; } static void lwip_getsockopt_internal(void *arg) { struct lwip_sock *sock; #ifdef LWIP_DEBUG int s; #endif /* LWIP_DEBUG */ int level, optname; void *optval; struct lwip_setgetsockopt_data *data; LWIP_ASSERT("arg != NULL", arg != NULL); data = (struct lwip_setgetsockopt_data*)arg; sock = data->sock; #ifdef LWIP_DEBUG s = data->s; #endif /* LWIP_DEBUG */ level = data->level; optname = data->optname; optval = data->optval; switch (level) { /* Level: SOL_SOCKET */ case SOL_SOCKET: switch (optname) { /* The option flags */ case SO_ACCEPTCONN: case SO_BROADCAST: /* UNIMPL case SO_DEBUG: */ /* UNIMPL case SO_DONTROUTE: */ case SO_KEEPALIVE: /* UNIMPL case SO_OOBINCLUDE: */ #if SO_REUSE case SO_REUSEADDR: case SO_REUSEPORT: #endif /* SO_REUSE */ /*case SO_USELOOPBACK: UNIMPL */ *(int*)optval = ip_get_option(sock->conn->pcb.ip, optname); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, SOL_SOCKET, optname=0x%x, ..) = %s\n", s, optname, (*(int*)optval?"on":"off"))); break; case SO_TYPE: switch (NETCONNTYPE_GROUP(sock->conn->type)) { case NETCONN_RAW: *(int*)optval = SOCK_RAW; break; case NETCONN_TCP: *(int*)optval = SOCK_STREAM; break; case NETCONN_UDP: *(int*)optval = SOCK_DGRAM; break; default: /* unrecognized socket type */ *(int*)optval = sock->conn->type; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, SOL_SOCKET, SO_TYPE): unrecognized socket type %d\n", s, *(int *)optval)); } /* switch (sock->conn->type) */ LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, SOL_SOCKET, SO_TYPE) = %d\n", s, *(int *)optval)); break; case SO_ERROR: /* only overwrite ERR_OK or tempoary errors */ if ((sock->err == 0) || (sock->err == EINPROGRESS)) { sock_set_errno(sock, err_to_errno(sock->conn->last_err)); } *(int *)optval = sock->err; sock->err = 0; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, SOL_SOCKET, SO_ERROR) = %d\n", s, *(int *)optval)); break; #if LWIP_SO_SNDTIMEO case SO_SNDTIMEO: *(int *)optval = netconn_get_sendtimeout(sock->conn); break; #endif /* LWIP_SO_SNDTIMEO */ #if LWIP_SO_RCVTIMEO case SO_RCVTIMEO: *(int *)optval = netconn_get_recvtimeout(sock->conn); break; #endif /* LWIP_SO_RCVTIMEO */ #if LWIP_SO_RCVBUF case SO_RCVBUF: *(int *)optval = netconn_get_recvbufsize(sock->conn); break; #endif /* LWIP_SO_RCVBUF */ #if LWIP_UDP case SO_NO_CHECK: *(int*)optval = (udp_flags(sock->conn->pcb.udp) & UDP_FLAGS_NOCHKSUM) ? 1 : 0; break; #endif /* LWIP_UDP*/ default: LWIP_ASSERT("unhandled optname", 0); break; } /* switch (optname) */ break; /* Level: IPPROTO_IP */ case IPPROTO_IP: switch (optname) { case IP_TTL: *(int*)optval = sock->conn->pcb.ip->ttl; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_IP, IP_TTL) = %d\n", s, *(int *)optval)); break; case IP_TOS: *(int*)optval = sock->conn->pcb.ip->tos; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_IP, IP_TOS) = %d\n", s, *(int *)optval)); break; #if LWIP_IGMP case IP_MULTICAST_TTL: *(u8_t*)optval = sock->conn->pcb.ip->ttl; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_IP, IP_MULTICAST_TTL) = %d\n", s, *(int *)optval)); break; case IP_MULTICAST_IF: inet_addr_from_ipaddr((struct in_addr*)optval, &sock->conn->pcb.udp->multicast_ip); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_IP, IP_MULTICAST_IF) = 0x%"X32_F"\n", s, *(u32_t *)optval)); break; case IP_MULTICAST_LOOP: if ((sock->conn->pcb.udp->flags & UDP_FLAGS_MULTICAST_LOOP) != 0) { *(u8_t*)optval = 1; } else { *(u8_t*)optval = 0; } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_IP, IP_MULTICAST_LOOP) = %d\n", s, *(int *)optval)); break; #endif /* LWIP_IGMP */ default: LWIP_ASSERT("unhandled optname", 0); break; } /* switch (optname) */ break; #if LWIP_TCP /* Level: IPPROTO_TCP */ case IPPROTO_TCP: switch (optname) { case TCP_NODELAY: *(int*)optval = tcp_nagle_disabled(sock->conn->pcb.tcp); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_TCP, TCP_NODELAY) = %s\n", s, (*(int*)optval)?"on":"off") ); break; case TCP_KEEPALIVE: *(int*)optval = (int)sock->conn->pcb.tcp->keep_idle; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_IP, TCP_KEEPALIVE) = %d\n", s, *(int *)optval)); break; #if LWIP_TCP_KEEPALIVE case TCP_KEEPIDLE: *(int*)optval = (int)(sock->conn->pcb.tcp->keep_idle/1000); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_IP, TCP_KEEPIDLE) = %d\n", s, *(int *)optval)); break; case TCP_KEEPINTVL: *(int*)optval = (int)(sock->conn->pcb.tcp->keep_intvl/1000); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_IP, TCP_KEEPINTVL) = %d\n", s, *(int *)optval)); break; case TCP_KEEPCNT: *(int*)optval = (int)sock->conn->pcb.tcp->keep_cnt; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_IP, TCP_KEEPCNT) = %d\n", s, *(int *)optval)); break; #endif /* LWIP_TCP_KEEPALIVE */ default: LWIP_ASSERT("unhandled optname", 0); break; } /* switch (optname) */ break; #endif /* LWIP_TCP */ #if LWIP_UDP && LWIP_UDPLITE /* Level: IPPROTO_UDPLITE */ case IPPROTO_UDPLITE: switch (optname) { case UDPLITE_SEND_CSCOV: *(int*)optval = sock->conn->pcb.udp->chksum_len_tx; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_UDPLITE, UDPLITE_SEND_CSCOV) = %d\n", s, (*(int*)optval)) ); break; case UDPLITE_RECV_CSCOV: *(int*)optval = sock->conn->pcb.udp->chksum_len_rx; LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_UDPLITE, UDPLITE_RECV_CSCOV) = %d\n", s, (*(int*)optval)) ); break; default: LWIP_ASSERT("unhandled optname", 0); break; } /* switch (optname) */ break; #endif /* LWIP_UDP */ default: LWIP_ASSERT("unhandled level", 0); break; } /* switch (level) */ sys_sem_signal(&sock->conn->op_completed); } int lwip_setsockopt(int s, int level, int optname, const void *optval, socklen_t optlen) { struct lwip_sock *sock = get_socket(s); err_t err = ERR_OK; struct lwip_setgetsockopt_data data; if (!sock) { return -1; } if (NULL == optval) { sock_set_errno(sock, EFAULT); return -1; } /* Do length and type checks for the various options first, to keep it readable. */ switch (level) { /* Level: SOL_SOCKET */ case SOL_SOCKET: switch (optname) { case SO_BROADCAST: /* UNIMPL case SO_DEBUG: */ /* UNIMPL case SO_DONTROUTE: */ case SO_KEEPALIVE: /* UNIMPL case case SO_CONTIMEO: */ #if LWIP_SO_SNDTIMEO case SO_SNDTIMEO: #endif /* LWIP_SO_SNDTIMEO */ #if LWIP_SO_RCVTIMEO case SO_RCVTIMEO: #endif /* LWIP_SO_RCVTIMEO */ #if LWIP_SO_RCVBUF case SO_RCVBUF: #endif /* LWIP_SO_RCVBUF */ /* UNIMPL case SO_OOBINLINE: */ /* UNIMPL case SO_SNDBUF: */ /* UNIMPL case SO_RCVLOWAT: */ /* UNIMPL case SO_SNDLOWAT: */ #if SO_REUSE case SO_REUSEADDR: case SO_REUSEPORT: #endif /* SO_REUSE */ /* UNIMPL case SO_USELOOPBACK: */ if (optlen < sizeof(int)) { err = EINVAL; } break; case SO_NO_CHECK: if (optlen < sizeof(int)) { err = EINVAL; } #if LWIP_UDP if ((sock->conn->type != NETCONN_UDP) || ((udp_flags(sock->conn->pcb.udp) & UDP_FLAGS_UDPLITE) != 0)) { /* this flag is only available for UDP, not for UDP lite */ err = EAFNOSUPPORT; } #endif /* LWIP_UDP */ break; default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, SOL_SOCKET, UNIMPL: optname=0x%x, ..)\n", s, optname)); err = ENOPROTOOPT; } /* switch (optname) */ break; /* Level: IPPROTO_IP */ case IPPROTO_IP: switch (optname) { /* UNIMPL case IP_HDRINCL: */ /* UNIMPL case IP_RCVDSTADDR: */ /* UNIMPL case IP_RCVIF: */ case IP_TTL: case IP_TOS: if (optlen < sizeof(int)) { err = EINVAL; } break; #if LWIP_IGMP case IP_MULTICAST_TTL: if (optlen < sizeof(u8_t)) { err = EINVAL; } if (NETCONNTYPE_GROUP(sock->conn->type) != NETCONN_UDP) { err = EAFNOSUPPORT; } break; case IP_MULTICAST_IF: if (optlen < sizeof(struct in_addr)) { err = EINVAL; } if (NETCONNTYPE_GROUP(sock->conn->type) != NETCONN_UDP) { err = EAFNOSUPPORT; } break; case IP_MULTICAST_LOOP: if (optlen < sizeof(u8_t)) { err = EINVAL; } if (NETCONNTYPE_GROUP(sock->conn->type) != NETCONN_UDP) { err = EAFNOSUPPORT; } break; case IP_ADD_MEMBERSHIP: case IP_DROP_MEMBERSHIP: if (optlen < sizeof(struct ip_mreq)) { err = EINVAL; } if (NETCONNTYPE_GROUP(sock->conn->type) != NETCONN_UDP) { err = EAFNOSUPPORT; } break; #endif /* LWIP_IGMP */ default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_IP, UNIMPL: optname=0x%x, ..)\n", s, optname)); err = ENOPROTOOPT; } /* switch (optname) */ break; #if LWIP_TCP /* Level: IPPROTO_TCP */ case IPPROTO_TCP: if (optlen < sizeof(int)) { err = EINVAL; break; } /* If this is no TCP socket, ignore any options. */ if (sock->conn->type != NETCONN_TCP) return 0; switch (optname) { case TCP_NODELAY: case TCP_KEEPALIVE: #if LWIP_TCP_KEEPALIVE case TCP_KEEPIDLE: case TCP_KEEPINTVL: case TCP_KEEPCNT: #endif /* LWIP_TCP_KEEPALIVE */ break; default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_TCP, UNIMPL: optname=0x%x, ..)\n", s, optname)); err = ENOPROTOOPT; } /* switch (optname) */ break; #endif /* LWIP_TCP */ #if LWIP_UDP && LWIP_UDPLITE /* Level: IPPROTO_UDPLITE */ case IPPROTO_UDPLITE: if (optlen < sizeof(int)) { err = EINVAL; break; } /* If this is no UDP lite socket, ignore any options. */ if (sock->conn->type != NETCONN_UDPLITE) return 0; switch (optname) { case UDPLITE_SEND_CSCOV: case UDPLITE_RECV_CSCOV: break; default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_UDPLITE, UNIMPL: optname=0x%x, ..)\n", s, optname)); err = ENOPROTOOPT; } /* switch (optname) */ break; #endif /* LWIP_UDP && LWIP_UDPLITE */ /* UNDEFINED LEVEL */ default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, level=0x%x, UNIMPL: optname=0x%x, ..)\n", s, level, optname)); err = ENOPROTOOPT; } /* switch (level) */ if (err != ERR_OK) { sock_set_errno(sock, err); return -1; } /* Now do the actual option processing */ data.sock = sock; #ifdef LWIP_DEBUG data.s = s; #endif /* LWIP_DEBUG */ data.level = level; data.optname = optname; data.optval = (void*)optval; data.optlen = &optlen; data.err = err; tcpip_callback(lwip_setsockopt_internal, &data); sys_arch_sem_wait(&sock->conn->op_completed, 0); /* maybe lwip_setsockopt_internal has changed err */ err = data.err; sock_set_errno(sock, err); return err ? -1 : 0; } static void lwip_setsockopt_internal(void *arg) { struct lwip_sock *sock; #ifdef LWIP_DEBUG int s; #endif /* LWIP_DEBUG */ int level, optname; const void *optval; struct lwip_setgetsockopt_data *data; LWIP_ASSERT("arg != NULL", arg != NULL); data = (struct lwip_setgetsockopt_data*)arg; sock = data->sock; #ifdef LWIP_DEBUG s = data->s; #endif /* LWIP_DEBUG */ level = data->level; optname = data->optname; optval = data->optval; switch (level) { /* Level: SOL_SOCKET */ case SOL_SOCKET: switch (optname) { /* The option flags */ case SO_BROADCAST: /* UNIMPL case SO_DEBUG: */ /* UNIMPL case SO_DONTROUTE: */ case SO_KEEPALIVE: /* UNIMPL case SO_OOBINCLUDE: */ #if SO_REUSE case SO_REUSEADDR: case SO_REUSEPORT: #endif /* SO_REUSE */ /* UNIMPL case SO_USELOOPBACK: */ if (*(int*)optval) { ip_set_option(sock->conn->pcb.ip, optname); } else { ip_reset_option(sock->conn->pcb.ip, optname); } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, SOL_SOCKET, optname=0x%x, ..) -> %s\n", s, optname, (*(int*)optval?"on":"off"))); break; #if LWIP_SO_SNDTIMEO case SO_SNDTIMEO: netconn_set_sendtimeout(sock->conn, (s32_t)*(int*)optval); break; #endif /* LWIP_SO_SNDTIMEO */ #if LWIP_SO_RCVTIMEO case SO_RCVTIMEO: netconn_set_recvtimeout(sock->conn, *(int*)optval); break; #endif /* LWIP_SO_RCVTIMEO */ #if LWIP_SO_RCVBUF case SO_RCVBUF: netconn_set_recvbufsize(sock->conn, *(int*)optval); break; #endif /* LWIP_SO_RCVBUF */ #if LWIP_UDP case SO_NO_CHECK: if (*(int*)optval) { udp_setflags(sock->conn->pcb.udp, udp_flags(sock->conn->pcb.udp) | UDP_FLAGS_NOCHKSUM); } else { udp_setflags(sock->conn->pcb.udp, udp_flags(sock->conn->pcb.udp) & ~UDP_FLAGS_NOCHKSUM); } break; #endif /* LWIP_UDP */ default: LWIP_ASSERT("unhandled optname", 0); break; } /* switch (optname) */ break; /* Level: IPPROTO_IP */ case IPPROTO_IP: switch (optname) { case IP_TTL: sock->conn->pcb.ip->ttl = (u8_t)(*(int*)optval); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_IP, IP_TTL, ..) -> %d\n", s, sock->conn->pcb.ip->ttl)); break; case IP_TOS: sock->conn->pcb.ip->tos = (u8_t)(*(int*)optval); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_IP, IP_TOS, ..)-> %d\n", s, sock->conn->pcb.ip->tos)); break; #if LWIP_IGMP case IP_MULTICAST_TTL: sock->conn->pcb.udp->ttl = (u8_t)(*(u8_t*)optval); break; case IP_MULTICAST_IF: inet_addr_to_ipaddr(&sock->conn->pcb.udp->multicast_ip, (struct in_addr*)optval); break; case IP_MULTICAST_LOOP: if (*(u8_t*)optval) { udp_setflags(sock->conn->pcb.udp, udp_flags(sock->conn->pcb.udp) | UDP_FLAGS_MULTICAST_LOOP); } else { udp_setflags(sock->conn->pcb.udp, udp_flags(sock->conn->pcb.udp) & ~UDP_FLAGS_MULTICAST_LOOP); } break; case IP_ADD_MEMBERSHIP: case IP_DROP_MEMBERSHIP: { /* If this is a TCP or a RAW socket, ignore these options. */ struct ip_mreq *imr = (struct ip_mreq *)optval; ip_addr_t if_addr; ip_addr_t multi_addr; inet_addr_to_ipaddr(&if_addr, &imr->imr_interface); inet_addr_to_ipaddr(&multi_addr, &imr->imr_multiaddr); if(optname == IP_ADD_MEMBERSHIP){ data->err = igmp_joingroup(&if_addr, &multi_addr); } else { data->err = igmp_leavegroup(&if_addr, &multi_addr); } if(data->err != ERR_OK) { data->err = EADDRNOTAVAIL; } } break; #endif /* LWIP_IGMP */ default: LWIP_ASSERT("unhandled optname", 0); break; } /* switch (optname) */ break; #if LWIP_TCP /* Level: IPPROTO_TCP */ case IPPROTO_TCP: switch (optname) { case TCP_NODELAY: if (*(int*)optval) { tcp_nagle_disable(sock->conn->pcb.tcp); } else { tcp_nagle_enable(sock->conn->pcb.tcp); } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_TCP, TCP_NODELAY) -> %s\n", s, (*(int *)optval)?"on":"off") ); break; case TCP_KEEPALIVE: sock->conn->pcb.tcp->keep_idle = (u32_t)(*(int*)optval); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_TCP, TCP_KEEPALIVE) -> %"U32_F"\n", s, sock->conn->pcb.tcp->keep_idle)); break; #if LWIP_TCP_KEEPALIVE case TCP_KEEPIDLE: sock->conn->pcb.tcp->keep_idle = 1000*(u32_t)(*(int*)optval); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_TCP, TCP_KEEPIDLE) -> %"U32_F"\n", s, sock->conn->pcb.tcp->keep_idle)); break; case TCP_KEEPINTVL: sock->conn->pcb.tcp->keep_intvl = 1000*(u32_t)(*(int*)optval); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_TCP, TCP_KEEPINTVL) -> %"U32_F"\n", s, sock->conn->pcb.tcp->keep_intvl)); break; case TCP_KEEPCNT: sock->conn->pcb.tcp->keep_cnt = (u32_t)(*(int*)optval); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_TCP, TCP_KEEPCNT) -> %"U32_F"\n", s, sock->conn->pcb.tcp->keep_cnt)); break; #endif /* LWIP_TCP_KEEPALIVE */ default: LWIP_ASSERT("unhandled optname", 0); break; } /* switch (optname) */ break; #endif /* LWIP_TCP*/ #if LWIP_UDP && LWIP_UDPLITE /* Level: IPPROTO_UDPLITE */ case IPPROTO_UDPLITE: switch (optname) { case UDPLITE_SEND_CSCOV: if ((*(int*)optval != 0) && ((*(int*)optval < 8) || (*(int*)optval > 0xffff))) { /* don't allow illegal values! */ sock->conn->pcb.udp->chksum_len_tx = 8; } else { sock->conn->pcb.udp->chksum_len_tx = (u16_t)*(int*)optval; } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_UDPLITE, UDPLITE_SEND_CSCOV) -> %d\n", s, (*(int*)optval)) ); break; case UDPLITE_RECV_CSCOV: if ((*(int*)optval != 0) && ((*(int*)optval < 8) || (*(int*)optval > 0xffff))) { /* don't allow illegal values! */ sock->conn->pcb.udp->chksum_len_rx = 8; } else { sock->conn->pcb.udp->chksum_len_rx = (u16_t)*(int*)optval; } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_UDPLITE, UDPLITE_RECV_CSCOV) -> %d\n", s, (*(int*)optval)) ); break; default: LWIP_ASSERT("unhandled optname", 0); break; } /* switch (optname) */ break; #endif /* LWIP_UDP */ default: LWIP_ASSERT("unhandled level", 0); break; } /* switch (level) */ sys_sem_signal(&sock->conn->op_completed); } int lwip_ioctl(int s, long cmd, void *argp) { struct lwip_sock *sock = get_socket(s); u8_t val; #if LWIP_SO_RCVBUF u16_t buflen = 0; s16_t recv_avail; #endif /* LWIP_SO_RCVBUF */ if (!sock) { return -1; } switch (cmd) { #if LWIP_SO_RCVBUF case FIONREAD: if (!argp) { sock_set_errno(sock, EINVAL); return -1; } SYS_ARCH_GET(sock->conn->recv_avail, recv_avail); if (recv_avail < 0) { recv_avail = 0; } *((u16_t*)argp) = (u16_t)recv_avail; /* Check if there is data left from the last recv operation. /maq 041215 */ if (sock->lastdata) { struct pbuf *p = (struct pbuf *)sock->lastdata; if (netconn_type(sock->conn) != NETCONN_TCP) { p = ((struct netbuf *)p)->p; } buflen = p->tot_len; buflen -= sock->lastoffset; *((u16_t*)argp) += buflen; } LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_ioctl(%d, FIONREAD, %p) = %"U16_F"\n", s, argp, *((u16_t*)argp))); sock_set_errno(sock, 0); return 0; #endif /* LWIP_SO_RCVBUF */ case FIONBIO: val = 0; if (argp && *(u32_t*)argp) { val = 1; } netconn_set_nonblocking(sock->conn, val); LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_ioctl(%d, FIONBIO, %d)\n", s, val)); sock_set_errno(sock, 0); return 0; default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_ioctl(%d, UNIMPL: 0x%lx, %p)\n", s, cmd, argp)); sock_set_errno(sock, ENOSYS); /* not yet implemented */ return -1; } /* switch (cmd) */ } /** A minimal implementation of fcntl. * Currently only the commands F_GETFL and F_SETFL are implemented. * Only the flag O_NONBLOCK is implemented. */ int lwip_fcntl(int s, int cmd, int val) { struct lwip_sock *sock = get_socket(s); int ret = -1; if (!sock || !sock->conn) { return -1; } switch (cmd) { case F_GETFL: ret = netconn_is_nonblocking(sock->conn) ? O_NONBLOCK : 0; break; case F_SETFL: if ((val & ~O_NONBLOCK) == 0) { /* only O_NONBLOCK, all other bits are zero */ netconn_set_nonblocking(sock->conn, val & O_NONBLOCK); ret = 0; } break; default: LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_fcntl(%d, UNIMPL: %d, %d)\n", s, cmd, val)); break; } return ret; } #endif /* LWIP_SOCKET */ #endif /* LIBOHIBOARD_ETHERNET_LWIP_1_4_1 */
the_stack_data/95451129.c
/* ่พ“ๅ‡บ1900-2000ๅนดไธญๆ˜ฏ้—ฐๅนด็š„ๅนดไปฝ๏ผŒ็ฌฆๅˆไธ‹้ขไธคไธชๆกไปถไน‹ไธ€็š„ๅนดไปฝๆ˜ฏ้—ฐๅนด๏ผš 1โƒฃ๏ธ ่ƒฝ่ขซ4ๆ•ด้™คไฝ†ไธ่ƒฝ่ขซ100ๆ•ด้™ค๏ผ› 2โƒฃ๏ธ ่ƒฝ่ขซ100ๆ•ด้™คไธ”่ƒฝ่ขซ400ๆ•ด้™คใ€‚ */ #include <stdio.h> int main() { for (int i = 1900; i <= 2000; i++) { if ((i % 4 == 0 && i % 100 != 0) || i % 400 == 0) printf("%d\n", i); } return 0; }
the_stack_data/30490.c
#ifdef USBHOST #include "usbh_hid_parser.c" #endif /* USBHOST */
the_stack_data/192332001.c
// RUN: %libomptarget-compile-generic -fopenmp-version=51 // RUN: %libomptarget-run-fail-generic 2>&1 \ // RUN: | %fcheck-generic #include <stdio.h> int main() { int arr[5]; // CHECK: addr=0x[[#%x,HOST_ADDR:]] fprintf(stderr, "addr=%p\n", arr); // CHECK-NOT: Libomptarget #pragma omp target data map(alloc: arr[0:5]) #pragma omp target map(present, alloc: arr[0:0]) ; // CHECK: arr is present fprintf(stderr, "arr is present\n"); // arr[0:0] doesn't create an actual mapping in the first directive. // // CHECK: Libomptarget message: device mapping required by 'present' map type modifier does not exist for host address 0x{{0*}}[[#HOST_ADDR]] (0 bytes) // CHECK: Libomptarget error: Call to getOrAllocTgtPtr returned null pointer ('present' map type modifier). // CHECK: Libomptarget error: Call to targetDataBegin failed, abort target. // CHECK: Libomptarget error: Failed to process data before launching the kernel. // CHECK: Libomptarget fatal error 1: failure of target construct while offloading is mandatory #pragma omp target data map(alloc: arr[0:0]) #pragma omp target map(present, alloc: arr[0:0]) ; // CHECK-NOT: arr is present fprintf(stderr, "arr is present\n"); return 0; }
the_stack_data/271306.c
/* This file is part of the YAZ toolkit. * Copyright (C) Index Data * See the file LICENSE for details. */ /** * \file * \brief ICU chain */ #if HAVE_CONFIG_H #include "config.h" #endif #if YAZ_HAVE_ICU #include <yaz/xmalloc.h> #include <yaz/icu_I18N.h> #include <yaz/stemmer.h> #include <yaz/log.h> #include <yaz/nmem.h> #include <yaz/nmem_xml.h> #include <string.h> #include <stdlib.h> #include <stdio.h> #include <assert.h> #include <unicode/ustring.h> /* some more string fcns*/ #include <unicode/uchar.h> /* char names */ enum icu_chain_step_type { ICU_chain_step_type_none, ICU_chain_step_type_display, /* convert to utf8 display format */ ICU_chain_step_type_casemap, /* apply utf16 charmap */ ICU_chain_step_type_transform, /* apply utf16 transform */ ICU_chain_step_type_tokenize, /* apply utf16 tokenization */ ICU_chain_step_type_transliterate, /* apply utf16 tokenization */ YAZ_chain_step_type_stemming, /* apply utf16 stemming (YAZ) */ ICU_chain_step_type_join }; struct icu_chain_step { /* type and action object */ enum icu_chain_step_type type; union { struct icu_casemap *casemap; struct icu_transform *transform; struct icu_tokenizer *tokenizer; yaz_stemmer_p stemmer; struct icu_buf_utf16 *join; } u; struct icu_chain_step *previous; }; struct icu_chain { yaz_icu_iter_t iter; char *locale; int sort; UCollator *coll; /* linked list of chain steps */ struct icu_chain_step *csteps; }; int icu_check_status(UErrorCode status) { if (U_FAILURE(status)) { yaz_log(YLOG_WARN, "ICU: %d %s\n", status, u_errorName(status)); return 0; } return 1; } static struct icu_chain_step *icu_chain_insert_step( struct icu_chain *chain, enum icu_chain_step_type type, const char *rule, UErrorCode *status) { struct icu_chain_step *step = 0; assert(chain); assert(type); step = (struct icu_chain_step *) xmalloc(sizeof(*step)); step->type = type; switch (step->type) { case ICU_chain_step_type_display: break; case ICU_chain_step_type_casemap: assert(rule); step->u.casemap = icu_casemap_create(rule[0], status); break; case ICU_chain_step_type_transform: assert(rule); /* rule omitted. Only ID used */ step->u.transform = icu_transform_create(rule, 'f', 0, status); break; case ICU_chain_step_type_tokenize: assert(rule); step->u.tokenizer = icu_tokenizer_create(chain->locale, rule[0], status); break; case ICU_chain_step_type_transliterate: assert(rule); /* we pass a dummy ID to utrans_openU.. */ step->u.transform = icu_transform_create("custom", 'f', rule, status); break; case YAZ_chain_step_type_stemming: assert(rule); step->u.stemmer = yaz_stemmer_create(chain->locale, rule, status); break; case ICU_chain_step_type_join: assert(rule); step->u.join = icu_buf_utf16_create(0); icu_utf16_from_utf8_cstr(step->u.join, rule, status); break; default: break; } step->previous = chain->csteps; chain->csteps = step; return step; } static void icu_chain_step_destroy(struct icu_chain_step *step) { if (!step) return; icu_chain_step_destroy(step->previous); switch (step->type) { case ICU_chain_step_type_display: break; case ICU_chain_step_type_casemap: icu_casemap_destroy(step->u.casemap); break; case ICU_chain_step_type_transform: case ICU_chain_step_type_transliterate: icu_transform_destroy(step->u.transform); break; case ICU_chain_step_type_tokenize: icu_tokenizer_destroy(step->u.tokenizer); break; case YAZ_chain_step_type_stemming: yaz_stemmer_destroy(step->u.stemmer); break; case ICU_chain_step_type_join: icu_buf_utf16_destroy(step->u.join); break; default: break; } xfree(step); } struct icu_chain_step *icu_chain_step_clone(struct icu_chain_step *old) { struct icu_chain_step *step = 0; struct icu_chain_step **sp = &step; while (old) { *sp = (struct icu_chain_step *) xmalloc(sizeof(**sp)); (*sp)->type = old->type; switch ((*sp)->type) { case ICU_chain_step_type_display: break; case ICU_chain_step_type_casemap: (*sp)->u.casemap = icu_casemap_clone(old->u.casemap); break; case ICU_chain_step_type_transform: case ICU_chain_step_type_transliterate: (*sp)->u.transform = icu_transform_clone(old->u.transform); break; case ICU_chain_step_type_tokenize: (*sp)->u.tokenizer = icu_tokenizer_clone(old->u.tokenizer); break; case YAZ_chain_step_type_stemming: (*sp)->u.stemmer = yaz_stemmer_clone(old->u.stemmer); break; case ICU_chain_step_type_none: break; case ICU_chain_step_type_join: (*sp)->u.join = icu_buf_utf16_create(0); (*sp)->u.join = icu_buf_utf16_copy((*sp)->u.join, old->u.join); break; } old = old->previous; sp = &(*sp)->previous; } *sp = 0; return step; } struct icu_chain *icu_chain_create(const char *locale, int sort, UErrorCode *status) { struct icu_chain *chain; UCollator *coll = ucol_open(locale, status); if (U_FAILURE(*status)) return 0; chain = (struct icu_chain *) xmalloc(sizeof(*chain)); chain->iter = 0; chain->locale = xstrdup(locale); chain->sort = sort; chain->coll = coll; chain->csteps = 0; return chain; } void icu_chain_destroy(struct icu_chain *chain) { if (chain) { if (chain->coll) ucol_close(chain->coll); if (chain->iter) icu_iter_destroy(chain->iter); icu_chain_step_destroy(chain->csteps); xfree(chain->locale); xfree(chain); } } struct icu_chain *icu_chain_xml_config(const xmlNode *xml_node, int sort, UErrorCode *status) { xmlNode *node = 0; int no_errors = 0; struct icu_chain *chain = 0; NMEM nmem = 0; *status = U_ZERO_ERROR; if (xml_node && xml_node->type == XML_ELEMENT_NODE) { xmlChar *xml_locale = xmlGetProp((xmlNode *) xml_node, (xmlChar *) "locale"); if (xml_locale) { chain = icu_chain_create((const char *) xml_locale, sort, status); xmlFree(xml_locale); } } if (!chain) return 0; nmem = nmem_create(); for (node = xml_node->children; node; node = node->next) { char *rule = 0; struct icu_chain_step *step = 0; struct _xmlAttr *attr; nmem_reset(nmem); if (node->type != XML_ELEMENT_NODE) continue; for (attr = node->properties; attr; attr = attr->next) { if (!strcmp((const char *) attr->name, "rule")) { rule = nmem_text_node_cdata(attr->children, nmem); } else { yaz_log(YLOG_WARN, "Unsupported attribute '%s' for " "element '%s'", attr->name, node->name); no_errors++; } } if (!rule && node->children) rule = nmem_text_node_cdata(node->children, nmem); if (!rule && strcmp((const char *) node->name, "display")) { yaz_log(YLOG_WARN, "Missing attribute 'rule' for element %s", (const char *) node->name); no_errors++; continue; } if (!strcmp((const char *) node->name, "casemap")) step = icu_chain_insert_step(chain, ICU_chain_step_type_casemap, rule, status); else if (!strcmp((const char *) node->name, "transform")) step = icu_chain_insert_step(chain, ICU_chain_step_type_transform, rule, status); else if (!strcmp((const char *) node->name, "transliterate")) step = icu_chain_insert_step(chain, ICU_chain_step_type_transliterate, rule, status); else if (!strcmp((const char *) node->name, "tokenize")) step = icu_chain_insert_step(chain, ICU_chain_step_type_tokenize, rule, status); else if (!strcmp((const char *) node->name, "display")) step = icu_chain_insert_step(chain, ICU_chain_step_type_display, rule, status); else if (!strcmp((const char *) node->name, "stemming")) step = icu_chain_insert_step(chain, YAZ_chain_step_type_stemming, rule, status); else if (!strcmp((const char *) node->name, "join")) step = icu_chain_insert_step(chain, ICU_chain_step_type_join, rule, status); else if (!strcmp((const char *) node->name, "normalize")) { yaz_log(YLOG_WARN, "Element %s is deprecated. " "Use transform instead", node->name); step = icu_chain_insert_step(chain, ICU_chain_step_type_transform, rule, status); } else if (!strcmp((const char *) node->name, "index") || !strcmp((const char *) node->name, "sortkey")) { yaz_log(YLOG_WARN, "Element %s is no longer needed. " "Remove it from the configuration", node->name); } else { yaz_log(YLOG_WARN, "Unknown element %s", node->name); no_errors++; continue; } if (!step) { yaz_log(YLOG_WARN, "Step not created for %s", node->name); no_errors++; } if (step && U_FAILURE(*status)) { yaz_log(YLOG_WARN, "ICU Error %d %s for element %s, rule %s", *status, u_errorName(*status), node->name, rule ? rule : ""); no_errors++; break; } } nmem_destroy(nmem); if (no_errors) { icu_chain_destroy(chain); return 0; } return chain; } struct icu_iter { struct icu_chain *chain; struct icu_buf_utf16 *last; struct icu_buf_utf16 *org; UErrorCode status; struct icu_buf_utf8 *display; struct icu_buf_utf8 *sort8; struct icu_buf_utf8 *result; int token_count; size_t org_start; size_t org_len; size_t utf8_base; size_t utf16_base; struct icu_chain_step *steps; }; void icu_utf16_print(struct icu_buf_utf16 *src16) { UErrorCode status = U_ZERO_ERROR; const char *p; struct icu_buf_utf8 *dst8 = icu_buf_utf8_create(0); icu_utf16_to_utf8(dst8, src16, &status); if (U_FAILURE(status)) { printf("failure"); } else { p = icu_buf_utf8_to_cstr(dst8); printf("%s", p); } icu_buf_utf8_destroy(dst8); } struct icu_buf_utf16 *icu_iter_invoke(yaz_icu_iter_t iter, struct icu_chain_step *step, struct icu_buf_utf16 *src) { if (!step) return src; else { struct icu_buf_utf16 *dst = icu_iter_invoke(iter, step->previous, src); switch (step->type) { case ICU_chain_step_type_casemap: if (dst) { struct icu_buf_utf16 *src = dst; dst = icu_buf_utf16_create(0); icu_casemap_casemap(step->u.casemap, dst, src, &iter->status, iter->chain->locale); icu_buf_utf16_destroy(src); } break; case ICU_chain_step_type_tokenize: if (dst) { struct icu_buf_utf16 *src = dst; icu_tokenizer_attach(step->u.tokenizer, src, &iter->status); icu_buf_utf16_destroy(src); } dst = icu_buf_utf16_create(0); iter->status = U_ZERO_ERROR; if (!icu_tokenizer_next_token(step->u.tokenizer, dst, &iter->status, &iter->org_start, &iter->org_len)) { icu_buf_utf16_destroy(dst); dst = 0; } break; case ICU_chain_step_type_transform: case ICU_chain_step_type_transliterate: if (dst) { struct icu_buf_utf16 *src = dst; dst = icu_buf_utf16_create(0); icu_transform_trans(step->u.transform, dst, src, &iter->status); icu_buf_utf16_destroy(src); } break; case ICU_chain_step_type_display: if (dst) icu_utf16_to_utf8(iter->display, dst, &iter->status); break; case YAZ_chain_step_type_stemming: if (dst) { struct icu_buf_utf16 *src = dst; dst = icu_buf_utf16_create(0); yaz_stemmer_stem(step->u.stemmer, dst, src, &iter->status); icu_buf_utf16_destroy(src); } break; case ICU_chain_step_type_join: if (dst) { while (1) { struct icu_buf_utf16 *dst1 = icu_iter_invoke(iter, step->previous, 0); if (!dst1) break; dst = icu_buf_utf16_append(dst, step->u.join); dst = icu_buf_utf16_append(dst, dst1); icu_buf_utf16_destroy(dst1); } } break; default: assert(0); } return dst; } } yaz_icu_iter_t icu_iter_create(struct icu_chain *chain) { yaz_icu_iter_t iter = xmalloc(sizeof(*iter)); iter->chain = chain; iter->status = U_ZERO_ERROR; iter->display = icu_buf_utf8_create(0); iter->sort8 = icu_buf_utf8_create(0); iter->result = icu_buf_utf8_create(0); iter->org = icu_buf_utf16_create(0); iter->last = 0; /* no last returned string (yet) */ iter->steps = icu_chain_step_clone(chain->csteps); iter->token_count = 0; return iter; } void icu_iter_first(yaz_icu_iter_t iter, const char *src8cstr) { struct icu_buf_utf16 *src = icu_buf_utf16_create(0); icu_utf16_from_utf8_cstr(src, src8cstr, &iter->status); icu_buf_utf16_copy(iter->org, src); iter->token_count = 0; iter->org_start = 0; iter->utf8_base = iter->utf16_base = 0; iter->org_len = src->utf16_len; iter->last = icu_iter_invoke(iter, iter->steps, src); } void icu_iter_destroy(yaz_icu_iter_t iter) { if (iter) { icu_buf_utf8_destroy(iter->display); icu_buf_utf8_destroy(iter->sort8); icu_buf_utf8_destroy(iter->result); icu_buf_utf16_destroy(iter->org); icu_chain_step_destroy(iter->steps); xfree(iter); } } int icu_iter_next(yaz_icu_iter_t iter) { if (iter->token_count && iter->last) iter->last = icu_iter_invoke(iter, iter->steps, 0); if (!iter->last) return 0; else { iter->token_count++; if (iter->chain->sort) { icu_sortkey8_from_utf16(iter->chain->coll, iter->sort8, iter->last, &iter->status); } icu_utf16_to_utf8(iter->result, iter->last, &iter->status); icu_buf_utf16_destroy(iter->last); return 1; } } const char *icu_iter_get_norm(yaz_icu_iter_t iter) { return icu_buf_utf8_to_cstr(iter->result); } const char *icu_iter_get_sortkey(yaz_icu_iter_t iter) { return icu_buf_utf8_to_cstr(iter->sort8); } const char *icu_iter_get_display(yaz_icu_iter_t iter) { return icu_buf_utf8_to_cstr(iter->display); } int icu_iter_get_token_number(yaz_icu_iter_t iter) { return iter->token_count; } void icu_iter_get_org_info(yaz_icu_iter_t iter, size_t *start, size_t *len) { int32_t len1 = 0, len2 = 0; UErrorCode status = U_ZERO_ERROR; if (iter->org_start < iter->utf16_base) { iter->utf8_base = 0; iter->utf16_base = 0; } u_strToUTF8(0, 0, &len1, iter->org->utf16 + iter->utf16_base, iter->org_start - iter->utf16_base, &status); status = U_ZERO_ERROR; *start = len1 + iter->utf8_base; u_strToUTF8(0, 0, &len2, iter->org->utf16 + iter->utf16_base, iter->org_start - iter->utf16_base + iter->org_len, &status); *len = len2 - len1; iter->utf8_base = *start; iter->utf16_base = iter->org_start; } int icu_chain_assign_cstr(struct icu_chain *chain, const char *src8cstr, UErrorCode *status) { if (chain->iter) icu_iter_destroy(chain->iter); chain->iter = icu_iter_create(chain); icu_iter_first(chain->iter, src8cstr); return 1; } int icu_chain_next_token(struct icu_chain *chain, UErrorCode *status) { *status = U_ZERO_ERROR; return icu_iter_next(chain->iter); } int icu_chain_token_number(struct icu_chain *chain) { if (chain && chain->iter) return chain->iter->token_count; return 0; } const char *icu_chain_token_display(struct icu_chain *chain) { if (chain->iter) return icu_iter_get_display(chain->iter); return 0; } const char *icu_chain_token_norm(struct icu_chain *chain) { if (chain->iter) return icu_iter_get_norm(chain->iter); return 0; } const char *icu_chain_token_sortkey(struct icu_chain *chain) { if (chain->iter) return icu_iter_get_sortkey(chain->iter); return 0; } void icu_chain_get_org_info(struct icu_chain *chain, size_t *start, size_t *len) { if (chain->iter) icu_iter_get_org_info(chain->iter, start, len); } #endif /* YAZ_HAVE_ICU */ /* * Local variables: * c-basic-offset: 4 * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab */
the_stack_data/1229419.c
#include <stdio.h> // Define boolean type typedef enum {false, true} bool; /** * Print table's row. * @param period: Period * @param price: Current price * @param cash: Current money available * @param shares: Current shares available * @param value: Equivalent money **/ void print_line(int period, float price, float cash, float shares, float value) { printf("%4d %9.3f %10.2f %10.2f %10.2f\n", period, price, cash, shares, value); } /** * Main program * * @return: Exit code **/ int main(void) { /* Tracking variables */ int goes_up = 1; int goes_down = 1; float curr_price, prev_price; bool can_buy = true; bool can_sell = false; int strategy = 3; // For Dilbert's rule set at 3 /* Table variables */ int period = 1; float cash = 10000.0; float shares = 0.00; float value = cash; /* Print header and first row */ if (scanf("%f", &curr_price) != EOF) { prev_price = curr_price; printf("%s %7s %8s %12s %8s\n", "period", "price", "cash", "shares", "value"); printf("-----------------------------------------------\n"); print_line(period, curr_price, cash, shares, value); period++; } /* Read prices from file */ while (scanf("%f", &curr_price) != EOF) { if (prev_price < curr_price) { /* Buy */ if (strategy <= goes_down && can_buy) { shares = cash / curr_price; cash = 0.0; can_buy = false; can_sell = true; } /* Reset and update trackers */ goes_down = 1; goes_up++; } else if (curr_price < prev_price) { /* Sell */ if (strategy <= goes_up && can_sell) { cash = shares * curr_price; shares = 0.0; can_buy = true; can_sell = false; } /* Reset and update trackers */ goes_up = 1; goes_down++; } else { /* Reset trackers */ goes_up = 1; goes_down = 1; } /* Recalculate value */ if (shares == 0.0) value = cash; else value = shares * curr_price; /* Print current row */ print_line(period, curr_price, cash, shares, value); /* Update trackers */ prev_price = curr_price; period++; } return 0; }
the_stack_data/31718.c
// RUN: %libomptarget-compile-nvptx64-nvidia-cuda \ // RUN: -gline-tables-only -fopenmp-extensions // RUN: env LIBOMPTARGET_INFO=63 %libomptarget-run-nvptx64-nvidia-cuda 2>&1 | \ // RUN: %fcheck-nvptx64-nvidia-cuda -allow-empty -check-prefix=INFO // REQUIRES: nvptx64-nvidia-cuda #include <stdio.h> #include <omp.h> #define N 64 #pragma omp declare target int global; #pragma omp end declare target extern void __tgt_set_info_flag(unsigned); int main() { int A[N]; int B[N]; int C[N]; int val = 1; // INFO: CUDA device 0 info: Device supports up to {{[0-9]+}} CUDA blocks and {{[0-9]+}} threads with a warp size of {{[0-9]+}} // INFO: Libomptarget device 0 info: Entering OpenMP data region at info.c:{{[0-9]+}}:{{[0-9]+}} with 3 arguments: // INFO: Libomptarget device 0 info: alloc(A[0:64])[256] // INFO: Libomptarget device 0 info: tofrom(B[0:64])[256] // INFO: Libomptarget device 0 info: to(C[0:64])[256] // INFO: Libomptarget device 0 info: Creating new map entry with HstPtrBegin={{.*}}, TgtPtrBegin={{.*}}, Size=256, DynRefCount=1, HoldRefCount=0, Name=A[0:64] // INFO: Libomptarget device 0 info: Creating new map entry with HstPtrBegin={{.*}}, TgtPtrBegin={{.*}}, Size=256, DynRefCount=0, HoldRefCount=1, Name=B[0:64] // INFO: Libomptarget device 0 info: Copying data from host to device, HstPtr={{.*}}, TgtPtr={{.*}}, Size=256, Name=B[0:64] // INFO: Libomptarget device 0 info: Creating new map entry with HstPtrBegin={{.*}}, TgtPtrBegin={{.*}}, Size=256, DynRefCount=1, HoldRefCount=0, Name=C[0:64] // INFO: Libomptarget device 0 info: Copying data from host to device, HstPtr={{.*}}, TgtPtr={{.*}}, Size=256, Name=C[0:64] // INFO: Libomptarget device 0 info: OpenMP Host-Device pointer mappings after block at info.c:{{[0-9]+}}:{{[0-9]+}}: // INFO: Libomptarget device 0 info: Host Ptr Target Ptr Size (B) DynRefCount HoldRefCount Declaration // INFO: Libomptarget device 0 info: {{.*}} {{.*}} 256 1 0 C[0:64] at info.c:{{[0-9]+}}:{{[0-9]+}} // INFO: Libomptarget device 0 info: {{.*}} {{.*}} 256 0 1 B[0:64] at info.c:{{[0-9]+}}:{{[0-9]+}} // INFO: Libomptarget device 0 info: {{.*}} {{.*}} 256 1 0 A[0:64] at info.c:{{[0-9]+}}:{{[0-9]+}} // INFO: Libomptarget device 0 info: Entering OpenMP kernel at info.c:{{[0-9]+}}:{{[0-9]+}} with 1 arguments: // INFO: Libomptarget device 0 info: firstprivate(val)[4] // INFO: CUDA device 0 info: Launching kernel __omp_offloading_{{.*}}main{{.*}} with {{[0-9]+}} blocks and {{[0-9]+}} threads in Generic mode // INFO: Libomptarget device 0 info: OpenMP Host-Device pointer mappings after block at info.c:{{[0-9]+}}:{{[0-9]+}}: // INFO: Libomptarget device 0 info: Host Ptr Target Ptr Size (B) DynRefCount HoldRefCount Declaration // INFO: Libomptarget device 0 info: {{.*}} {{.*}} 256 1 0 C[0:64] at info.c:{{[0-9]+}}:{{[0-9]+}} // INFO: Libomptarget device 0 info: {{.*}} {{.*}} 256 0 1 B[0:64] at info.c:{{[0-9]+}}:{{[0-9]+}} // INFO: Libomptarget device 0 info: {{.*}} {{.*}} 256 1 0 A[0:64] at info.c:{{[0-9]+}}:{{[0-9]+}} // INFO: Libomptarget device 0 info: Exiting OpenMP data region at info.c:{{[0-9]+}}:{{[0-9]+}} with 3 arguments: // INFO: Libomptarget device 0 info: alloc(A[0:64])[256] // INFO: Libomptarget device 0 info: tofrom(B[0:64])[256] // INFO: Libomptarget device 0 info: to(C[0:64])[256] // INFO: Libomptarget device 0 info: Copying data from device to host, TgtPtr={{.*}}, HstPtr={{.*}}, Size=256, Name=B[0:64] // INFO: Libomptarget device 0 info: Removing map entry with HstPtrBegin={{.*}}, TgtPtrBegin={{.*}}, Size=256, Name=C[0:64] // INFO: Libomptarget device 0 info: Removing map entry with HstPtrBegin={{.*}}, TgtPtrBegin={{.*}}, Size=256, Name=B[0:64] // INFO: Libomptarget device 0 info: Removing map entry with HstPtrBegin={{.*}}, TgtPtrBegin={{.*}}, Size=256, Name=A[0:64] // INFO: Libomptarget device 0 info: OpenMP Host-Device pointer mappings after block at info.c:[[#%u,]]:[[#%u,]]: // INFO: Libomptarget device 0 info: Host Ptr Target Ptr Size (B) DynRefCount HoldRefCount Declaration // INFO: Libomptarget device 0 info: [[#%#x,]] [[#%#x,]] 4 INF 0 unknown at unknown:0:0 #pragma omp target data map(alloc:A[0:N]) map(ompx_hold,tofrom:B[0:N]) map(to:C[0:N]) #pragma omp target firstprivate(val) { val = 1; } __tgt_set_info_flag(0x0); // INFO-NOT: Libomptarget device 0 info: {{.*}} #pragma omp target { } return 0; }
the_stack_data/531909.c
double power(double x, int n) { if(n==0) return 1; else if ((n%2)==0) return power(x*x,n/2); else return x*power(x*x, (n-1)/2); }
the_stack_data/82949066.c
/* Exercise 1 - Calculations Write a C program to input marks of two subjects. Calculate and print the average of the two marks. */ #include <stdio.h> int main() { int marks1,marks2,sum,avg; printf("Enter the subjet 1 marks :"); scanf("%d",&marks1); printf("Enter the subject 2 marks :"); scanf("%d",&marks2); sum=marks1+marks2; avg = sum/2; printf("Average : %d",avg); return 0; }
the_stack_data/67325242.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* wdmatch.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: kibotrel <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/02/26 11:19:34 by kibotrel #+# #+# */ /* Updated: 2019/02/26 11:19:53 by kibotrel ### ########.fr */ /* */ /* ************************************************************************** */ #include <unistd.h> int ft_strlen(char *str) { int i; i = 0; while (str[i]) i++; return (i); } int wdmatch(char *s1, char *s2) { int length; int count; length = ft_strlen(s1); count = 0; while (*s1 && *s2) { if (*s1 == *s2++) { s1++; count++; } } return ((count == length ? 1 : 0)); } int main(int ac, char **av) { if (ac == 3) if (wdmatch(av[1], av[2])) write(1, av[1], ft_strlen(av[1])); write(1, "\n", 1); return (0); }
the_stack_data/225144290.c
/* * Matrix Addition using pointers only * Using malloc * Author Krishna Pai * Date 1-Oct-2021 */ #include <stdio.h> #include <stdlib.h> void input(int *a, int *b, int row, int col); void add(int *a, int *b, int *ans, int r, int c); void main() { int row, col; printf("Enter row(s): "); scanf("%d", &row); printf("Enter column(s): "); scanf("%d", &col); int *A, *B, *answer; A = (int *)malloc(row * col * sizeof(int)); B = (int *)malloc(row * col * sizeof(int)); answer = (int *)malloc(row * col * sizeof(int)); input(A, B, row, col); add(A, B, answer, row, col); } void input(int *a, int *b, int row, int col) { int i, j; printf("Enter matrix A: \n"); for (i = 0; i < row; i++) { for (j = 0; j < col; j++) { scanf("%d", ((a + i * col) + j)); } } printf("\nEnter matrix B:\n"); for (i = 0; i < row; i++) { for (j = 0; j < col; j++) { scanf("%d", ((b + i * col) + j)); } } } void add(int *a, int *b, int *ans, int r, int c) { printf("\nAddition Matrix:\n"); int i, j; for (i = 0; i < r; i++) { for (j = 0; j < c; j++) { *((ans + i * c) + j) = *((a + i * c) + j) + *((b + i * c) + j); printf("%d\t", *((ans + i * c) + j)); } printf("\n"); } }
the_stack_data/463935.c
/* ** MIT LICENSE ** Copyright <2020> <David Reguera Garcia aka Dreg> [email protected] ** http://www.fr33project.org - https://github.com/David-Reguera-Garcia-Dreg ** ** Permission is hereby granted, free of charge, to any person obtaining a copy of this software and ** associated documentation files (the "Software"), to deal in the Software without restriction, ** including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, ** and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, ** subject to the following conditions: ** ** The above copyright notice and this permission notice shall be included in all copies or substantial ** portions of the Software. ** ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT ** LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, ** WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc, char* argv[]) { FILE* file; unsigned char readed_sect[512]; long curr_pos; size_t bytes_readed; unsigned int i; puts("\n-\n" "cryptfile (MIT LICENSE) by David Reguera Garcia aka Dreg - [email protected]\n" "http://www.fr33project.org - https://github.com/David-Reguera-Garcia-Dreg\n" "syntax: cryptfile.exe file.exe [0xPAD_BYTE]\n" "examples: fileadder.exe stage3.exe\n" " fileadder.exe stage3.exe 0x20\n" "-\n"); if (argc < 2) { puts("bad args!"); return 1; } printf("openning: %s\n", argv[1]); file = fopen(argv[1], "rb+"); if (NULL != file) { puts("xoring content with 0xAA ..."); while (!feof(file)) { curr_pos = ftell(file); bytes_readed = fread(readed_sect, 1, 512, file); if (bytes_readed > 0) { for (i = 0; i < bytes_readed; i++) { readed_sect[i] ^= 0xAA; } fseek(file, curr_pos, SEEK_SET); fwrite(readed_sect, bytes_readed, 1, file); fflush(file); } else { break; } } fflush(file); fclose(file); } else { perror(argv[1]); return 1; } puts("\nOK SUCCESS!\n"); return 0; }
the_stack_data/178264870.c
/* eigens.c * * Eigenvalues and eigenvectors of a real symmetric matrix * * * * SYNOPSIS: * * int n; * double A[n*(n+1)/2], EV[n*n], E[n]; * void eigens( A, EV, E, n ); * * * * DESCRIPTION: * * The algorithm is due to J. vonNeumann. * - - * A[] is a symmetric matrix stored in lower triangular form. * That is, A[ row, column ] = A[ (row*row+row)/2 + column ] * or equivalently with row and column interchanged. The * indices row and column run from 0 through n-1. * * EV[] is the output matrix of eigenvectors stored columnwise. * That is, the elements of each eigenvector appear in sequential * memory order. The jth element of the ith eigenvector is * EV[ n*i+j ] = EV[i][j]. * * E[] is the output matrix of eigenvalues. The ith element * of E corresponds to the ith eigenvector (the ith row of EV). * * On output, the matrix A will have been diagonalized and its * orginal contents are destroyed. * * ACCURACY: * * The error is controlled by an internal parameter called RANGE * which is set to 1e-10. After diagonalization, the * off-diagonal elements of A will have been reduced by * this factor. * * ERROR MESSAGES: * * None. * */ /* Copyright 1973, 1991 by Stephen L. Moshier Copyleft version. */ void eigens( A, RR, E, N ) double A[], RR[], E[]; int N; { int IND, L, LL, LM, M, MM, MQ, I, J, K, IA, LQ; int IQ, IM, IL, NLI, NMI; double ANORM, ANORMX, AIA, THR, ALM, QI, ALL, AMM, X, Y; double SINX, SINX2, COSX, COSX2, SINCS, AIL, AIM; double RLI, RMI, Q, V; double sqrt(), fabs(); static double RANGE = 1.0e-10; /*3.0517578e-5;*/ /* Initialize identity matrix in RR[] */ for( J=0; J<N*N; J++ ) RR[J] = 0.0; MM = 0; for( J=0; J<N; J++ ) { RR[MM + J] = 1.0; MM += N; } ANORM=0.0; for( I=0; I<N; I++ ) { for( J=0; J<N; J++ ) { if( I != J ) { IA = I + (J*J+J)/2; AIA = A[IA]; ANORM += AIA * AIA; } } } if( ANORM <= 0.0 ) goto done; ANORM = sqrt( ANORM + ANORM ); ANORMX = ANORM * RANGE / N; THR = ANORM; while( THR > ANORMX ) { THR=THR/N; do { /* while IND != 0 */ IND = 0; for( L=0; L<N-1; L++ ) { for( M=L+1; M<N; M++ ) { MQ=(M*M+M)/2; LM=L+MQ; ALM=A[LM]; if( fabs(ALM) < THR ) continue; IND=1; LQ=(L*L+L)/2; LL=L+LQ; MM=M+MQ; ALL=A[LL]; AMM=A[MM]; X=(ALL-AMM)/2.0; Y=-ALM/sqrt(ALM*ALM+X*X); if(X < 0.0) Y=-Y; SINX = Y / sqrt( 2.0 * (1.0 + sqrt( 1.0-Y*Y)) ); SINX2=SINX*SINX; COSX=sqrt(1.0-SINX2); COSX2=COSX*COSX; SINCS=SINX*COSX; /* ROTATE L AND M COLUMNS */ for( I=0; I<N; I++ ) { IQ=(I*I+I)/2; if( (I != M) && (I != L) ) { if(I > M) IM=M+IQ; else IM=I+MQ; if(I >= L) IL=L+IQ; else IL=I+LQ; AIL=A[IL]; AIM=A[IM]; X=AIL*COSX-AIM*SINX; A[IM]=AIL*SINX+AIM*COSX; A[IL]=X; } NLI = N*L + I; NMI = N*M + I; RLI = RR[ NLI ]; RMI = RR[ NMI ]; RR[NLI]=RLI*COSX-RMI*SINX; RR[NMI]=RLI*SINX+RMI*COSX; } X=2.0*ALM*SINCS; A[LL]=ALL*COSX2+AMM*SINX2-X; A[MM]=ALL*SINX2+AMM*COSX2+X; A[LM]=(ALL-AMM)*SINCS+ALM*(COSX2-SINX2); } /* for M=L+1 to N-1 */ } /* for L=0 to N-2 */ } while( IND != 0 ); } /* while THR > ANORMX */ done: ; /* Extract eigenvalues from the reduced matrix */ L=0; for( J=1; J<=N; J++ ) { L=L+J; E[J-1]=A[L-1]; } }
the_stack_data/26701638.c
#include <assert.h> #include <stdio.h> int findLucky(int* arr, int arrSize) { int cache[501] = {}; for (int i = 0; i < arrSize; i++) { cache[arr[i]] += 1; }; for (int i = 500; i > 0; i--) { if (cache[i] == i) { return i; } } return -1; } int main() { int case0[4] = {2, 2, 3, 4}; assert(2 == findLucky(case0, 4)); }
the_stack_data/40761859.c
/* * POK header * * The following file is a part of the POK project. Any modification should * made according to the POK licence. You CANNOT use this file or a part of * this file is this 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-2009 POK team * * Created by julien on Fri Jan 30 14:41:34 2009 */ /* e_j1f.c -- float version of e_j1.c. * Conversion to float by Ian Lance Taylor, Cygnus Support, [email protected]. */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this * software is freely granted, provided that this notice * is preserved. * ==================================================== */ #ifdef POK_NEEDS_LIBMATH #include <libm.h> #include "namespace.h" #include "math_private.h" static float ponef(float), qonef(float); static const float huge = 1e30, one = 1.0, invsqrtpi= 5.6418961287e-01, /* 0x3f106ebb */ tpi = 6.3661974669e-01, /* 0x3f22f983 */ /* R0/S0 on [0,2] */ r00 = -6.2500000000e-02, /* 0xbd800000 */ r01 = 1.4070566976e-03, /* 0x3ab86cfd */ r02 = -1.5995563444e-05, /* 0xb7862e36 */ r03 = 4.9672799207e-08, /* 0x335557d2 */ s01 = 1.9153760746e-02, /* 0x3c9ce859 */ s02 = 1.8594678841e-04, /* 0x3942fab6 */ s03 = 1.1771846857e-06, /* 0x359dffc2 */ s04 = 5.0463624390e-09, /* 0x31ad6446 */ s05 = 1.2354227016e-11; /* 0x2d59567e */ static const float zero = 0.0; float __ieee754_j1f(float x) { float z, s,c,ss,cc,r,u,v,y; int32_t hx,ix; GET_FLOAT_WORD(hx,x); ix = hx&0x7fffffff; if(ix>=0x7f800000) return one/x; y = fabsf(x); if(ix >= 0x40000000) { /* |x| >= 2.0 */ s = sinf(y); c = cosf(y); ss = -s-c; cc = s-c; if(ix<0x7f000000) { /* make sure y+y not overflow */ z = cosf(y+y); if ((s*c)>zero) cc = z/ss; else ss = z/cc; } /* * j1(x) = 1/sqrt(pi) * (P(1,x)*cc - Q(1,x)*ss) / sqrt(x) * y1(x) = 1/sqrt(pi) * (P(1,x)*ss + Q(1,x)*cc) / sqrt(x) */ #ifdef DEAD_CODE if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(y); else #endif { u = ponef(y); v = qonef(y); z = invsqrtpi*(u*cc-v*ss)/sqrtf(y); } if(hx<0) return -z; else return z; } if(ix<0x32000000) { /* |x|<2**-27 */ if(huge+x>one) return (float)0.5*x;/* inexact if x!=0 necessary */ } z = x*x; r = z*(r00+z*(r01+z*(r02+z*r03))); s = one+z*(s01+z*(s02+z*(s03+z*(s04+z*s05)))); r *= x; return(x*(float)0.5+r/s); } static const float U0[5] = { -1.9605709612e-01, /* 0xbe48c331 */ 5.0443872809e-02, /* 0x3d4e9e3c */ -1.9125689287e-03, /* 0xbafaaf2a */ 2.3525259166e-05, /* 0x37c5581c */ -9.1909917899e-08, /* 0xb3c56003 */ }; static const float V0[5] = { 1.9916731864e-02, /* 0x3ca3286a */ 2.0255257550e-04, /* 0x3954644b */ 1.3560879779e-06, /* 0x35b602d4 */ 6.2274145840e-09, /* 0x31d5f8eb */ 1.6655924903e-11, /* 0x2d9281cf */ }; float __ieee754_y1f(float x) { float z, s,c,ss,cc,u,v; int32_t hx,ix; GET_FLOAT_WORD(hx,x); ix = 0x7fffffff&hx; /* if Y1(NaN) is NaN, Y1(-inf) is NaN, Y1(inf) is 0 */ if(ix>=0x7f800000) return one/(x+x*x); if(ix==0) return -one/zero; if(hx<0) return zero/zero; if(ix >= 0x40000000) { /* |x| >= 2.0 */ s = sinf(x); c = cosf(x); ss = -s-c; cc = s-c; if(ix<0x7f000000) { /* make sure x+x not overflow */ z = cosf(x+x); if ((s*c)>zero) cc = z/ss; else ss = z/cc; } /* y1(x) = sqrt(2/(pi*x))*(p1(x)*sin(x0)+q1(x)*cos(x0)) * where x0 = x-3pi/4 * Better formula: * cos(x0) = cos(x)cos(3pi/4)+sin(x)sin(3pi/4) * = 1/sqrt(2) * (sin(x) - cos(x)) * sin(x0) = sin(x)cos(3pi/4)-cos(x)sin(3pi/4) * = -1/sqrt(2) * (cos(x) + sin(x)) * To avoid cancellation, use * sin(x) +- cos(x) = -cos(2x)/(sin(x) -+ cos(x)) * to compute the worse one. */ if(ix>0x48000000) z = (invsqrtpi*ss)/sqrtf(x); else { u = ponef(x); v = qonef(x); z = invsqrtpi*(u*ss+v*cc)/sqrtf(x); } return z; } if(ix<=0x24800000) { /* x < 2**-54 */ return(-tpi/x); } z = x*x; u = U0[0]+z*(U0[1]+z*(U0[2]+z*(U0[3]+z*U0[4]))); v = one+z*(V0[0]+z*(V0[1]+z*(V0[2]+z*(V0[3]+z*V0[4])))); return(x*(u/v) + tpi*(__ieee754_j1f(x)*__ieee754_logf(x)-one/x)); } /* For x >= 8, the asymptotic expansions of pone is * 1 + 15/128 s^2 - 4725/2^15 s^4 - ..., where s = 1/x. * We approximate pone by * pone(x) = 1 + (R/S) * where R = pr0 + pr1*s^2 + pr2*s^4 + ... + pr5*s^10 * S = 1 + ps0*s^2 + ... + ps4*s^10 * and * | pone(x)-1-R/S | <= 2 ** ( -60.06) */ static const float pr8[6] = { /* for x in [inf, 8]=1/[0,0.125] */ 0.0000000000e+00, /* 0x00000000 */ 1.1718750000e-01, /* 0x3df00000 */ 1.3239480972e+01, /* 0x4153d4ea */ 4.1205184937e+02, /* 0x43ce06a3 */ 3.8747453613e+03, /* 0x45722bed */ 7.9144794922e+03, /* 0x45f753d6 */ }; static const float ps8[5] = { 1.1420736694e+02, /* 0x42e46a2c */ 3.6509309082e+03, /* 0x45642ee5 */ 3.6956207031e+04, /* 0x47105c35 */ 9.7602796875e+04, /* 0x47bea166 */ 3.0804271484e+04, /* 0x46f0a88b */ }; static const float pr5[6] = { /* for x in [8,4.5454]=1/[0.125,0.22001] */ 1.3199052094e-11, /* 0x2d68333f */ 1.1718749255e-01, /* 0x3defffff */ 6.8027510643e+00, /* 0x40d9b023 */ 1.0830818176e+02, /* 0x42d89dca */ 5.1763616943e+02, /* 0x440168b7 */ 5.2871520996e+02, /* 0x44042dc6 */ }; static const float ps5[5] = { 5.9280597687e+01, /* 0x426d1f55 */ 9.9140142822e+02, /* 0x4477d9b1 */ 5.3532670898e+03, /* 0x45a74a23 */ 7.8446904297e+03, /* 0x45f52586 */ 1.5040468750e+03, /* 0x44bc0180 */ }; static const float pr3[6] = { 3.0250391081e-09, /* 0x314fe10d */ 1.1718686670e-01, /* 0x3defffab */ 3.9329774380e+00, /* 0x407bb5e7 */ 3.5119403839e+01, /* 0x420c7a45 */ 9.1055007935e+01, /* 0x42b61c2a */ 4.8559066772e+01, /* 0x42423c7c */ }; static const float ps3[5] = { 3.4791309357e+01, /* 0x420b2a4d */ 3.3676245117e+02, /* 0x43a86198 */ 1.0468714600e+03, /* 0x4482dbe3 */ 8.9081134033e+02, /* 0x445eb3ed */ 1.0378793335e+02, /* 0x42cf936c */ }; static const float pr2[6] = {/* for x in [2.8570,2]=1/[0.3499,0.5] */ 1.0771083225e-07, /* 0x33e74ea8 */ 1.1717621982e-01, /* 0x3deffa16 */ 2.3685150146e+00, /* 0x401795c0 */ 1.2242610931e+01, /* 0x4143e1bc */ 1.7693971634e+01, /* 0x418d8d41 */ 5.0735230446e+00, /* 0x40a25a4d */ }; static const float ps2[5] = { 2.1436485291e+01, /* 0x41ab7dec */ 1.2529022980e+02, /* 0x42fa9499 */ 2.3227647400e+02, /* 0x436846c7 */ 1.1767937469e+02, /* 0x42eb5bd7 */ 8.3646392822e+00, /* 0x4105d590 */ }; static float ponef(float x) { const float *p,*q; float z,r,s; int32_t ix; p = q = 0; GET_FLOAT_WORD(ix,x); ix &= 0x7fffffff; if(ix>=0x41000000) {p = pr8; q= ps8;} else if(ix>=0x40f71c58){p = pr5; q= ps5;} else if(ix>=0x4036db68){p = pr3; q= ps3;} else if(ix>=0x40000000){p = pr2; q= ps2;} z = one/(x*x); r = p[0]+z*(p[1]+z*(p[2]+z*(p[3]+z*(p[4]+z*p[5])))); s = one+z*(q[0]+z*(q[1]+z*(q[2]+z*(q[3]+z*q[4])))); return one+ r/s; } /* For x >= 8, the asymptotic expansions of qone is * 3/8 s - 105/1024 s^3 - ..., where s = 1/x. * We approximate pone by * qone(x) = s*(0.375 + (R/S)) * where R = qr1*s^2 + qr2*s^4 + ... + qr5*s^10 * S = 1 + qs1*s^2 + ... + qs6*s^12 * and * | qone(x)/s -0.375-R/S | <= 2 ** ( -61.13) */ static const float qr8[6] = { /* for x in [inf, 8]=1/[0,0.125] */ 0.0000000000e+00, /* 0x00000000 */ -1.0253906250e-01, /* 0xbdd20000 */ -1.6271753311e+01, /* 0xc1822c8d */ -7.5960174561e+02, /* 0xc43de683 */ -1.1849806641e+04, /* 0xc639273a */ -4.8438511719e+04, /* 0xc73d3683 */ }; static const float qs8[6] = { 1.6139537048e+02, /* 0x43216537 */ 7.8253862305e+03, /* 0x45f48b17 */ 1.3387534375e+05, /* 0x4802bcd6 */ 7.1965775000e+05, /* 0x492fb29c */ 6.6660125000e+05, /* 0x4922be94 */ -2.9449025000e+05, /* 0xc88fcb48 */ }; static const float qr5[6] = { /* for x in [8,4.5454]=1/[0.125,0.22001] */ -2.0897993405e-11, /* 0xadb7d219 */ -1.0253904760e-01, /* 0xbdd1fffe */ -8.0564479828e+00, /* 0xc100e736 */ -1.8366960144e+02, /* 0xc337ab6b */ -1.3731937256e+03, /* 0xc4aba633 */ -2.6124443359e+03, /* 0xc523471c */ }; static const float qs5[6] = { 8.1276550293e+01, /* 0x42a28d98 */ 1.9917987061e+03, /* 0x44f8f98f */ 1.7468484375e+04, /* 0x468878f8 */ 4.9851425781e+04, /* 0x4742bb6d */ 2.7948074219e+04, /* 0x46da5826 */ -4.7191835938e+03, /* 0xc5937978 */ }; static const float qr3[6] = { /* for x in [4.5454,2.8570]=1/[0.22001,0.3499] */ -5.0783124372e-09, /* 0xb1ae7d4f */ -1.0253783315e-01, /* 0xbdd1ff5b */ -4.6101160049e+00, /* 0xc0938612 */ -5.7847221375e+01, /* 0xc267638e */ -2.2824453735e+02, /* 0xc3643e9a */ -2.1921012878e+02, /* 0xc35b35cb */ }; static const float qs3[6] = { 4.7665153503e+01, /* 0x423ea91e */ 6.7386511230e+02, /* 0x4428775e */ 3.3801528320e+03, /* 0x45534272 */ 5.5477290039e+03, /* 0x45ad5dd5 */ 1.9031191406e+03, /* 0x44ede3d0 */ -1.3520118713e+02, /* 0xc3073381 */ }; static const float qr2[6] = {/* for x in [2.8570,2]=1/[0.3499,0.5] */ -1.7838172539e-07, /* 0xb43f8932 */ -1.0251704603e-01, /* 0xbdd1f475 */ -2.7522056103e+00, /* 0xc0302423 */ -1.9663616180e+01, /* 0xc19d4f16 */ -4.2325313568e+01, /* 0xc2294d1f */ -2.1371921539e+01, /* 0xc1aaf9b2 */ }; static const float qs2[6] = { 2.9533363342e+01, /* 0x41ec4454 */ 2.5298155212e+02, /* 0x437cfb47 */ 7.5750280762e+02, /* 0x443d602e */ 7.3939318848e+02, /* 0x4438d92a */ 1.5594900513e+02, /* 0x431bf2f2 */ -4.9594988823e+00, /* 0xc09eb437 */ }; static float qonef(float x) { const float *p,*q; float s,r,z; int32_t ix; p = q = 0; GET_FLOAT_WORD(ix,x); ix &= 0x7fffffff; /* [inf, 8] (8 41000000) */ if(ix>=0x41000000) {p = qr8; q= qs8;} /* [8, 4.5454] (4.5454 409173eb) */ else if(ix>=0x409173eb){p = qr5; q= qs5;} /* [4.5454, 2.8570] (2.8570 4036d917) */ else if(ix>=0x4036d917){p = qr3; q= qs3;} /* [2.8570, 2] (2 40000000) */ else if(ix>=0x40000000){p = qr2; q= qs2;} z = one/(x*x); r = p[0]+z*(p[1]+z*(p[2]+z*(p[3]+z*(p[4]+z*p[5])))); s = one+z*(q[0]+z*(q[1]+z*(q[2]+z*(q[3]+z*(q[4]+z*q[5]))))); return ((float).375 + r/s)/x; } #endif
the_stack_data/693269.c
// Delete elements from Array #include<stdio.h> #include<stdlib.h> #define MAX 100 int arr[MAX] = {0}; // array int numRandom() { int lower = 15, upper=450; int num = (rand() % (upper - lower + 1)) + lower; return num; } int main() { int i, pos, value; int choice; char ch = 'y'; int N; //number of elements printf("The array if of fixed size 100.\nHow many elements do you want to begin with?\n"); scanf("%d",&N); if(N<=MAX){ for (i=0; i<N; ++i) arr[i] = numRandom(); printf("Array[ POSITION ] is ----> \n"); for (i=0; i<N; i++) printf("array[%d]\t--->\t%d\n", i, arr[i]); printf("\n"); } // DELETE POSITION -----> Head pos =0; while ( N < MAX && N>0 && ch == 'y' || ch == 'Y') { printf("Array[ POSITION ] before deletion\n"); for (i=0; i<N; i++) printf("array[%d]\t--\t%d\n", i, arr[i]); printf("\n"); // Delete element and shift the rest elements printf("\n Deleted Element: %d\n\n", arr[pos]); for (i=pos; i<(N-1); i++) arr[i] = arr[i+1]; N--; printf("Array[ POSITION ] after deletion\n"); for (i=0; i<N; i++) printf("array[%d]\t--\t%d\n", i, arr[i]); printf("\n"); printf("Continue Deletion? [y]/n :"); getchar(); ch = getchar(); if (ch=='\n') ch = 'y'; } if(N >= MAX) printf("\nOVERFLOW! -- Array cannot be initialized.\n"); else if(N <= 0) printf("\nUNDERFLOW! -- Not enough elements. Array is empty."); printf("DONE.\n"); exit(0); }
the_stack_data/946443.c
#include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <sys/socket.h> #include <string.h> #include <arpa/inet.h> #include <net/if.h> #define SERVER_PORT 8000 /* ๆ— ๅ…ณ็ดง่ฆ */ #define MAXLINE 1500 #define BROADCAST_IP "192.168.22.255" #define CLIENT_PORT 9000 /* ้‡่ฆ */ int main(void) { int sockfd; struct sockaddr_in serveraddr, clientaddr; char buf[MAXLINE]; /* ๆž„้€ ็”จไบŽUDP้€šไฟก็š„ๅฅ—ๆŽฅๅญ— */ sockfd = socket(AF_INET, SOCK_DGRAM, 0); bzero(&serveraddr, sizeof(serveraddr)); serveraddr.sin_family = AF_INET; /* IPv4 */ serveraddr.sin_addr.s_addr = htonl(INADDR_ANY); /* ๆœฌๅœฐไปปๆ„IP INADDR_ANY = 0 */ serveraddr.sin_port = htons(SERVER_PORT); bind(sockfd, (struct sockaddr *)&serveraddr, sizeof(serveraddr)); int flag = 1; setsockopt(sockfd, SOL_SOCKET, SO_BROADCAST, &flag, sizeof(flag)); /*ๆž„้€  client ๅœฐๅ€ IP+็ซฏๅฃ 192.168.7.255+9000 */ bzero(&clientaddr, sizeof(clientaddr)); clientaddr.sin_family = AF_INET; inet_pton(AF_INET, BROADCAST_IP, &clientaddr.sin_addr.s_addr); clientaddr.sin_port = htons(CLIENT_PORT); int i = 0; while (1) { sprintf(buf, "Drink %d glasses of water\n", i++); //fgets(buf, sizeof(buf), stdin); sendto(sockfd, buf, strlen(buf), 0, (struct sockaddr *)&clientaddr, sizeof(clientaddr)); sleep(1); } close(sockfd); return 0; }
the_stack_data/161081491.c
#include <stdio.h> int main() { fork(); fork(); fork(); fork(); printf("Tester 4 fork! "); // fork(); // fork(); // fork(); // fork(); }
the_stack_data/43887672.c
#include <stdio.h> double getMoney(double money){ switch (((int)money)/1000) { case 0: return money; case 1: return money * 0.9; case 2: return money * 0.85; case 3: return money * 0.8; default: return money * 0.75; } } int main() { double money; scanf("%lf",&money); printf("%.2lf",getMoney(money)); return 0; }
the_stack_data/218894409.c
#include <stdio.h> #include <stdlib.h> #include <string.h> char *contents( char *filename, int *len ) { FILE *file = fopen( filename, "r" ); if( file == NULL ) { return ""; } fseek( file, 0, SEEK_END ); *len = ftell( file ); fseek( file, 0, SEEK_SET ); char *contents = malloc( *len * sizeof( char ) + 1 ); fread( contents, *len, 1, file ); contents[ *len ] = '\0'; fclose( file ); return contents; } char *memnchr( char *haystack, char needle, int len ) { for( int i = 0; i < len; i++ ) { if( haystack[ i ] == needle ) { return haystack + i + 1; } } return NULL; } int main() { int len; char *data = contents( "./items/items.bin", &len ); // get rid of the damn \n vim insists on adding... data[ len - 1 ] = '\0'; int id = 0; char *currName = data; //printf( "[" ); while( 1 ) { // this is cheating if( strcmp( currName, "No Bottle" ) == 0 ) { id++; currName = memnchr( currName, '\0', len ); continue; } //printf( "\n\t{\n\t\t\"id\" : %d,\n\t\t\"name\" : {\n\t\t\t\"hgg\" : \"%s\"\n\t\t}\n\t}", id, currName ); printf( "%d %s", id, currName ); char *nextName = memnchr( currName, '\0', len ); if( *nextName == NULL ) { break; } printf( "\n\n" ); id++; currName = nextName; } //printf( "\n]\n" ); return EXIT_SUCCESS; }
the_stack_data/179831758.c
#include<stdio.h> struct ogrenci{ char isim[20]; char soyisim[20]; int numara; }; int main(){ struct ogrenci ogrenciler[3]; int i; for(i=0;i<3;i++){ printf("%d. ogrencinin bilgilerini giriniz:",i+1); scanf("%s %s %d",&ogrenciler[i].isim,&ogrenciler[i].soyisim,&ogrenciler[i].numara); } for(i=0;i<3;i++){ printf("%d. ogrencinin bilgileri: %s %s %d\n",i+1,ogrenciler[i].isim,ogrenciler[i].soyisim,ogrenciler[i].numara); } return 0; }
the_stack_data/800932.c
// Topics // C Standard Library Functions (math, random numbers, time) // Function prototypes // Function definitions // Header files // Parameter Lists // Passing arguments by value versus by reference //#include <math.h> #include <stdio.h> #include <math.h> void print_welcome_message(int week_number); // return-type name(parameter-list|void) // { // body // } void print_welcome_message(int week_number) { printf("Welcome to Week %d: ", week_number); switch(week_number) { case 9: printf("Functions, Part One\n"); break; case 10: printf("Functions, Part Two\n"); break; default: printf("Topic Unknown\n"); break; } } int main(void) { int week = 9; print_welcome_message(week); printf("Square Root of the Week is %.2f.\n", sqrt(week)); // Ceiling of a number is the next highest integer // Ceiling of 1.2 is 2 // Ceiling of 1 is 1 printf("Ceiling of 1.2 is %f.\n", ceil(1.2)); printf("Ceiling of 1 is %f.\n", ceil(1)); // Floor of a number is the next lowest integer // Floor of 1.2 is 1 // Floor of 1 is 1 printf("Floor of 1.2 is %f.\n", floor(1.2)); printf("Floor of 1 is %f.\n", floor(1)); }
the_stack_data/59512978.c
// RUN: rm -rf %t* // RUN: 3c -base-dir=%S %s -- | FileCheck -match-full-lines %s // RUN: 3c -base-dir=%S %s -- | %clang -c -fcheckedc-extension -x c -o %t.unused - int foo1(int x, int *y); //CHECK: int foo1(int x, _Ptr<int> y); int foo1(); //CHECK: int foo1(int x, _Ptr<int> y); int bar1(void) { int *z = (int *)4; return foo1(4, z); } int foo1(int x, int *y) { //CHECK: int foo1(int x, _Ptr<int> y) { return x + *y; } int foo2(int x, int *y); //CHECK: int foo2(int x, _Ptr<int> y); int bar2(void) { int *z = (int *)4; return foo2(4, z); } int foo2(); //CHECK: int foo2(int x, _Ptr<int> y); int foo2(int x, int *y) { //CHECK: int foo2(int x, _Ptr<int> y) { return x + *y; } int foo3(int x, int *y) { //CHECK: int foo3(int x, _Ptr<int> y) { return x + *y; } int bar3(void) { int *z = (int *)4; return foo3(4, z); } int foo3(int x, int *y); //CHECK: int foo3(int x, _Ptr<int> y); int foo3(); //CHECK: int foo3(int x, _Ptr<int> y);
the_stack_data/132952991.c
/* * Copyright 1993-2021 NVIDIA Corporation. All rights reserved. * * NOTICE TO LICENSEE: * * This source code and/or documentation ("Licensed Deliverables") are * subject to NVIDIA intellectual property rights under U.S. and * international Copyright laws. * * These Licensed Deliverables contained herein is PROPRIETARY and * CONFIDENTIAL to NVIDIA and is being provided under the terms and * conditions of a form of NVIDIA software license agreement by and * between NVIDIA and Licensee ("License Agreement") or electronically * accepted by Licensee. Notwithstanding any terms or conditions to * the contrary in the License Agreement, reproduction or disclosure * of the Licensed Deliverables to any third party without the express * written consent of NVIDIA is prohibited. * * NOTWITHSTANDING ANY TERMS OR CONDITIONS TO THE CONTRARY IN THE * LICENSE AGREEMENT, NVIDIA MAKES NO REPRESENTATION ABOUT THE * SUITABILITY OF THESE LICENSED DELIVERABLES FOR ANY PURPOSE. IT IS * PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND. * NVIDIA DISCLAIMS ALL WARRANTIES WITH REGARD TO THESE LICENSED * DELIVERABLES, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY, * NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE. * NOTWITHSTANDING ANY TERMS OR CONDITIONS TO THE CONTRARY IN THE * LICENSE AGREEMENT, IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY * SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY * DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE * OF THESE LICENSED DELIVERABLES. * * U.S. Government End Users. These Licensed Deliverables are a * "commercial item" as that term is defined at 48 C.F.R. 2.101 (OCT * 1995), consisting of "commercial computer software" and "commercial * computer software documentation" as such terms are used in 48 * C.F.R. 12.212 (SEPT 1995) and is provided to the U.S. Government * only as a commercial end item. Consistent with 48 C.F.R.12.212 and * 48 C.F.R. 227.7202-1 through 227.7202-4 (JUNE 1995), all * U.S. Government End Users acquire the Licensed Deliverables with * only those rights set forth herein. * * Any use of the Licensed Deliverables in individual and commercial * software must include, in the user documentation and internal * comments to the code, the above Disclaimer and U.S. Government End * Users Notice. */ #include <cuda_runtime_api.h> // cudaMalloc, cudaMemcpy, etc. #include <cusparse.h> // cusparseSpSV #include <stdio.h> // printf #include <stdlib.h> // EXIT_FAILURE #define CHECK_CUDA(func) \ { \ cudaError_t status = (func); \ if (status != cudaSuccess) { \ printf("CUDA API failed at line %d with error: %s (%d)\n", \ __LINE__, cudaGetErrorString(status), status); \ return EXIT_FAILURE; \ } \ } #define CHECK_CUSPARSE(func) \ { \ cusparseStatus_t status = (func); \ if (status != CUSPARSE_STATUS_SUCCESS) { \ printf("CUSPARSE API failed at line %d with error: %s (%d)\n", \ __LINE__, cusparseGetErrorString(status), status); \ return EXIT_FAILURE; \ } \ } int main(void) { // Host problem definition const int A_num_rows = 4; const int A_num_cols = 4; const int A_nnz = 9; int hA_csrOffsets[] = { 0, 3, 4, 7, 9 }; int hA_columns[] = { 0, 2, 3, 1, 0, 2, 3, 1, 3 }; float hA_values[] = { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f, 9.0f }; float hX[] = { 1.0f, 8.0f, 23.0f, 52.0f }; float hY[] = { 0.0f, 0.0f, 0.0f, 0.0f }; float hY_result[] = { 1.0f, 2.0f, 3.0f, 4.0f }; float alpha = 1.0f; //-------------------------------------------------------------------------- // Device memory management int *dA_csrOffsets, *dA_columns; float *dA_values, *dX, *dY; CHECK_CUDA( cudaMalloc((void**) &dA_csrOffsets, (A_num_rows + 1) * sizeof(int)) ) CHECK_CUDA( cudaMalloc((void**) &dA_columns, A_nnz * sizeof(int)) ) CHECK_CUDA( cudaMalloc((void**) &dA_values, A_nnz * sizeof(float)) ) CHECK_CUDA( cudaMalloc((void**) &dX, A_num_cols * sizeof(float)) ) CHECK_CUDA( cudaMalloc((void**) &dY, A_num_rows * sizeof(float)) ) CHECK_CUDA( cudaMemcpy(dA_csrOffsets, hA_csrOffsets, (A_num_rows + 1) * sizeof(int), cudaMemcpyHostToDevice) ) CHECK_CUDA( cudaMemcpy(dA_columns, hA_columns, A_nnz * sizeof(int), cudaMemcpyHostToDevice) ) CHECK_CUDA( cudaMemcpy(dA_values, hA_values, A_nnz * sizeof(float), cudaMemcpyHostToDevice) ) CHECK_CUDA( cudaMemcpy(dX, hX, A_num_cols * sizeof(float), cudaMemcpyHostToDevice) ) CHECK_CUDA( cudaMemcpy(dY, hY, A_num_rows * sizeof(float), cudaMemcpyHostToDevice) ) //-------------------------------------------------------------------------- // CUSPARSE APIs cusparseHandle_t handle = NULL; cusparseSpMatDescr_t matA; cusparseDnVecDescr_t vecX, vecY; void* dBuffer = NULL; size_t bufferSize = 0; cusparseSpSVDescr_t spsvDescr; CHECK_CUSPARSE( cusparseCreate(&handle) ) // Create sparse matrix A in CSR format CHECK_CUSPARSE( cusparseCreateCsr(&matA, A_num_rows, A_num_cols, A_nnz, dA_csrOffsets, dA_columns, dA_values, CUSPARSE_INDEX_32I, CUSPARSE_INDEX_32I, CUSPARSE_INDEX_BASE_ZERO, CUDA_R_32F) ) // Create dense vector X CHECK_CUSPARSE( cusparseCreateDnVec(&vecX, A_num_cols, dX, CUDA_R_32F) ) // Create dense vector y CHECK_CUSPARSE( cusparseCreateDnVec(&vecY, A_num_rows, dY, CUDA_R_32F) ) // Create opaque data structure, that holds analysis data between calls. CHECK_CUSPARSE( cusparseSpSV_createDescr(&spsvDescr) ) // Specify Lower|Upper fill mode. cusparseFillMode_t fillmode = CUSPARSE_FILL_MODE_LOWER; CHECK_CUSPARSE( cusparseSpMatSetAttribute(matA, CUSPARSE_SPMAT_FILL_MODE, &fillmode, sizeof(fillmode)) ) // Specify Unit|Non-Unit diagonal type. cusparseDiagType_t diagtype = CUSPARSE_DIAG_TYPE_NON_UNIT; CHECK_CUSPARSE( cusparseSpMatSetAttribute(matA, CUSPARSE_SPMAT_DIAG_TYPE, &diagtype, sizeof(diagtype)) ) // allocate an external buffer for analysis CHECK_CUSPARSE( cusparseSpSV_bufferSize( handle, CUSPARSE_OPERATION_NON_TRANSPOSE, &alpha, matA, vecX, vecY, CUDA_R_32F, CUSPARSE_SPSV_ALG_DEFAULT, spsvDescr, &bufferSize) ) CHECK_CUDA( cudaMalloc(&dBuffer, bufferSize) ) CHECK_CUSPARSE( cusparseSpSV_analysis( handle, CUSPARSE_OPERATION_NON_TRANSPOSE, &alpha, matA, vecX, vecY, CUDA_R_32F, CUSPARSE_SPSV_ALG_DEFAULT, spsvDescr, dBuffer) ) // execute SpSV CHECK_CUSPARSE( cusparseSpSV_solve(handle, CUSPARSE_OPERATION_NON_TRANSPOSE, &alpha, matA, vecX, vecY, CUDA_R_32F, CUSPARSE_SPSV_ALG_DEFAULT, spsvDescr) ) // destroy matrix/vector descriptors CHECK_CUSPARSE( cusparseDestroySpMat(matA) ) CHECK_CUSPARSE( cusparseDestroyDnVec(vecX) ) CHECK_CUSPARSE( cusparseDestroyDnVec(vecY) ) CHECK_CUSPARSE( cusparseSpSV_destroyDescr(spsvDescr)); CHECK_CUSPARSE( cusparseDestroy(handle) ) //-------------------------------------------------------------------------- // device result check CHECK_CUDA( cudaMemcpy(hY, dY, A_num_rows * sizeof(float), cudaMemcpyDeviceToHost) ) int correct = 1; for (int i = 0; i < A_num_rows; i++) { if (hY[i] != hY_result[i]) { // direct floating point comparison is not correct = 0; // reliable break; } } if (correct) printf("spsv_csr_example test PASSED\n"); else printf("spsv_csr_example test FAILED: wrong result\n"); //-------------------------------------------------------------------------- // device memory deallocation CHECK_CUDA( cudaFree(dBuffer) ) CHECK_CUDA( cudaFree(dA_csrOffsets) ) CHECK_CUDA( cudaFree(dA_columns) ) CHECK_CUDA( cudaFree(dA_values) ) CHECK_CUDA( cudaFree(dX) ) CHECK_CUDA( cudaFree(dY) ) return EXIT_SUCCESS; }
the_stack_data/156392151.c
#include <stdio.h> #include <stdlib.h> #include <string.h> struct materia{ int codigoMat; //char nombreMat [30]; No implementado, podria asignarse materias con mismo codigo y diferente nombre a alumnos diferentes. struct materia *sigMat;//Puntero a la siguiente materia }; struct alumno{ int dni; char nombreAlu [31]; struct materia *listaInscriptas;//Puntero tipo materia para relacionar al alumno con las materias que cursa. struct alumno *sigAlu;//Puntero al siguiente alumno }; typedef struct alumno alumno; typedef struct materia materia; typedef alumno* alumnoPtr; typedef materia* materiaPtr; void menu(void){ printf("\n\n(1) para agregar Alumno...\n" "(2) para agregar o eliminar materias a un alumno existente...\n" "(3) para ver materias inscriptas de un alumo...\n" "(4) listar alumnos anotados en una materia...\n" "(0) para salir a Windows.\n"); } void crearMateria (alumnoPtr *Alumno, int codigo){ materiaPtr nuevaMateria, actMateria, antMateria; nuevaMateria = (materiaPtr)malloc(sizeof(materia)); actMateria = (*Alumno)->listaInscriptas; antMateria = NULL; nuevaMateria->codigoMat = codigo; nuevaMateria->sigMat = NULL; while(actMateria != NULL && codigo > actMateria->codigoMat){ antMateria = actMateria; actMateria = actMateria->sigMat; } if (antMateria == NULL){ nuevaMateria->sigMat = (*Alumno)->listaInscriptas; (*Alumno)->listaInscriptas = nuevaMateria; } else { antMateria->sigMat = nuevaMateria; nuevaMateria->sigMat = actMateria; } } void eliminarMateria (alumnoPtr *alumno, int codigo){ materiaPtr actMateria, antMateria; actMateria = (*alumno)->listaInscriptas; antMateria = NULL; while(actMateria != NULL && codigo != actMateria->codigoMat){ antMateria = actMateria; actMateria = actMateria->sigMat; } if(antMateria == NULL){ (*alumno)->listaInscriptas = actMateria->sigMat; } else { antMateria->sigMat = actMateria->sigMat; free(actMateria); } printf("La materia cod %d de DNI %d se elimino con exito.\n",codigo,(*alumno)->dni); } void crearAlumno(alumnoPtr *listaAlumnos){ alumnoPtr nuevoAlumno, actAlumno, antAlumno; int dni; int codigo; int i = 0; char temp [30] = {'\0'}; nuevoAlumno = (alumnoPtr)malloc(sizeof(alumno)); nuevoAlumno->listaInscriptas = NULL; nuevoAlumno->sigAlu = NULL; if (nuevoAlumno != NULL){//Si hay espacio en la memoria del sistema para crear un nuevo alumno!!! antAlumno = NULL; actAlumno = *listaAlumnos; //Empieza la carga de los atributos de alumno (DNI y Materias) printf("Ingrese DNI del alumno: \n"); scanf("%d",&dni); while(dni > 99999999 || dni <= 0){ printf("DNI invรกlido, intente nuevamente\n"); scanf("%d",&dni); } nuevoAlumno->dni = dni;//Fin de carga de DNI printf("Ingrese el nombre del Alumno\n"); while(getchar()!= '\n'); //fflush(stdin); fgets(temp,30,stdin); while(temp[i] != '\0'){ if (temp[i] == '\n') temp[i] = '\0'; i++; } strcpy(nuevoAlumno->nombreAlu,temp); printf("Ingrese los codigos de materia del alumno %d (0 para terminar)\n",nuevoAlumno->dni);//La idea es encolar de una en una las materias del alumno while (codigo != 0){//no esta encadenando bien las materias del alumno scanf("%d",&codigo); while (codigo < 0 || codigo > 999){ printf("Codigo invalido, intente nuevamente:\n"); scanf("%d",&codigo); } if (codigo != 0) crearMateria(&nuevoAlumno,codigo); } while (actAlumno != NULL && dni > actAlumno->dni){ antAlumno = actAlumno; actAlumno = actAlumno->sigAlu; } if (antAlumno == NULL){ nuevoAlumno->sigAlu = *listaAlumnos; *listaAlumnos = nuevoAlumno; } else { antAlumno->sigAlu = nuevoAlumno; nuevoAlumno->sigAlu = NULL; } } else { printf("No se puede crear nuevo Alumno, no hay memoria disponible\n"); } } void imprimirListaAlumnos(alumnoPtr inicio){ if(inicio == NULL){ printf("Lista vacรญa.\n"); return; } else{ while (inicio != NULL){ printf("\n%s\tDNI Nro: %d\n",inicio->nombreAlu,inicio->dni); materiaPtr materia, antMateria; materia = inicio->listaInscriptas; antMateria = NULL; if (materia == NULL){ printf("No tiene materias inscriptas.\n"); } else { printf("Esta inscripto en: \t"); while (materia != NULL){ printf("%d\t",materia->codigoMat); antMateria = materia; materia = materia->sigMat; } } inicio = inicio->sigAlu; } } } void imprimirMaterias (alumnoPtr alumno){ printf("\n%s DNI Nro: %d \n",alumno->nombreAlu,alumno->dni); materiaPtr materia, antMateria; materia = alumno->listaInscriptas; antMateria = NULL; if (materia == NULL) printf("\nNo tiene materias inscriptas.\n"); else { printf("Esta inscripto en: \t"); while (materia != NULL){ printf("%d\t",materia->codigoMat); antMateria = materia; materia = materia->sigMat; } } } void menuModificarMaterias(){ printf("\n(1) para agregar, (2) para quitar, (3) para terminar.\n"); } alumnoPtr buscarDNI (int dni, alumnoPtr listaAlumnos){ alumnoPtr actualAlumno, antAlumno; if (listaAlumnos == NULL) return NULL; else{ actualAlumno = listaAlumnos; antAlumno = NULL; while(actualAlumno != NULL && actualAlumno->dni != dni){ antAlumno = actualAlumno; actualAlumno = actualAlumno->sigAlu; } if (actualAlumno != NULL){ return actualAlumno; } } return NULL; } materiaPtr buscaMateria(alumnoPtr alumno, int codigo){ materiaPtr materia, antMateria; materia = alumno->listaInscriptas; antMateria = NULL; if(materia == NULL){ printf("Este alumno no esta inscripto en ninguna materia"); return NULL; } else { while (materia != NULL){ if(materia->codigoMat == codigo) return materia; else{ antMateria = materia; materia = materia->sigMat; } } return materia; } printf("La materia cod %d no existe para %s DNI %d\n",codigo,alumno->nombreAlu,alumno->dni); return NULL; } void modificarMaterias(int dni, alumnoPtr listaAlumnos){ int opcion, codigo; alumnoPtr alumno = buscarDNI(dni,listaAlumnos); materiaPtr materia; if(alumno == NULL){ printf("El DNI solicitado no pertenece a un alumno valido\n"); return; } else{ imprimirMaterias(alumno); } menuModificarMaterias(); printf("? "); scanf("%d",&opcion); switch(opcion){ case 1: printf("Ingrese el codigo de la materia a agregar:\n"); do{ scanf("%d",&codigo); if(codigo > 999 || codigo < 0) printf("Codigo invรกlido, intente nuevamente... \n"); }while(codigo > 999 || codigo < 0); materia = buscaMateria(alumno,codigo); if(materia == NULL){ crearMateria(&alumno,codigo); } else{ printf("La materia ya existe para %s DNI: %d\n",alumno->nombreAlu,alumno->dni); } break; case 2: printf("Ingrese el codigo de la materia a quitar:\n"); do{ scanf("%d",&codigo); if(codigo > 999 || codigo < 0) printf("Codigo invรกlido, intente nuevamente... \n"); }while(codigo > 999 || codigo < 0); materia = buscaMateria(alumno,codigo); if(materia == NULL){ printf("El alumno %s DNI:%d no se encuentra asociado a la materia %d\n",alumno->nombreAlu,alumno->dni,codigo); } else{ eliminarMateria(&alumno,codigo); imprimirMaterias(alumno); } break; case 3: printf("Regreso al menu principal sin realizar cambios!\n"); break; default: printf("Opcion no valida!!!\n"); modificarMaterias(dni,listaAlumnos); } } void listarMateria (alumnoPtr listaAlumnos, int codigo){ if(codigo > 999 || codigo < 0){ printf("Codigo no valido!!!\n"); return; } else if(listaAlumnos == NULL){ printf("No hay alumnos registrados...\n"); } else { int i = 0; alumnoPtr alumno, antAlumno; alumno = listaAlumnos; antAlumno = NULL; materiaPtr materia, antMateria; materia = listaAlumnos->listaInscriptas; antMateria = NULL; printf("LISTADO DE LA MATERIA %d\n",codigo); while (alumno != NULL){ materia = alumno->listaInscriptas; while(materia != NULL){ if(materia->codigoMat == codigo){ i++; printf("%d. %s\t\t\t %d\n",i,alumno->nombreAlu,alumno->dni); } antMateria = materia; materia = materia->sigMat; } antAlumno = alumno; alumno = alumno->sigAlu; } } } int main(int argc, char** argv) { alumnoPtr listaAlumnos = NULL; alumnoPtr alumno; int opcion; int dniBuscado, matBuscado; printf("\tBIENVENIDO A ALUMNOS & MATERIAS\n\tEST 2017\n"); menu(); printf("? "); scanf("%d",&opcion); while(opcion != 0){ switch(opcion){ case 0: break; case 1: crearAlumno(&listaAlumnos); imprimirListaAlumnos(listaAlumnos); break; case 2: printf("Ingrese un DNI de alumno:\n"); scanf("%d",&dniBuscado); modificarMaterias(dniBuscado,listaAlumnos); break; case 3:printf("Ingrese un DNI de alumno:\n"); scanf("%d",&dniBuscado); alumno = buscarDNI(dniBuscado,listaAlumnos); if(alumno == NULL){ printf("El alumno %d no existe...",dniBuscado); } else{ imprimirMaterias(alumno); } break; case 4: printf("Ingrese un codigo de materia:\n"); scanf("%d",&matBuscado); listarMateria(listaAlumnos,matBuscado); break; default: printf("Seleccion invalida\n\n"); menu(); break; } menu(); printf("? "); scanf("%d",&opcion); } return (EXIT_SUCCESS); }
the_stack_data/74595.c
#pragma acc data copyin (A) copy (C) #pragma acc parallel #pragma acc loop #pragma acc loop #pragma acc loop #pragma acc loop
the_stack_data/654069.c
/*** * This code is a part of EvoApproxLib library (ehw.fit.vutbr.cz/approxlib) distributed under The MIT License. * When used, please cite the following article(s): V. Mrazek, S. S. Sarwar, L. Sekanina, Z. Vasicek and K. Roy, "Design of power-efficient approximate multipliers for approximate artificial neural networks," 2016 IEEE/ACM International Conference on Computer-Aided Design (ICCAD), Austin, TX, 2016, pp. 1-7. doi: 10.1145/2966986.2967021 * This file contains a circuit from a sub-set of pareto optimal circuits with respect to the pwr and mse parameters ***/ // MAE% = 0.00 % // MAE = 0 // WCE% = 0.00 % // WCE = 0 // WCRE% = 0.00 % // EP% = 0.00 % // MRE% = 0.00 % // MSE = 0 // PDK45_PWR = 0.277 mW // PDK45_AREA = 536.4 um2 // PDK45_DELAY = 1.20 ns #include <stdint.h> #include <stdlib.h> uint64_t mul7u_01L(uint64_t a, uint64_t b) { int wa[7]; int wb[7]; uint64_t y = 0; wa[0] = (a >> 0) & 0x01; wb[0] = (b >> 0) & 0x01; wa[1] = (a >> 1) & 0x01; wb[1] = (b >> 1) & 0x01; wa[2] = (a >> 2) & 0x01; wb[2] = (b >> 2) & 0x01; wa[3] = (a >> 3) & 0x01; wb[3] = (b >> 3) & 0x01; wa[4] = (a >> 4) & 0x01; wb[4] = (b >> 4) & 0x01; wa[5] = (a >> 5) & 0x01; wb[5] = (b >> 5) & 0x01; wa[6] = (a >> 6) & 0x01; wb[6] = (b >> 6) & 0x01; int sig_14 = wa[0] & wb[0]; int sig_15 = wa[1] & wb[0]; int sig_16 = wa[2] & wb[0]; int sig_17 = wa[3] & wb[0]; int sig_18 = wa[4] & wb[0]; int sig_19 = wa[5] & wb[0]; int sig_20 = wa[6] & wb[0]; int sig_21 = wa[0] & wb[1]; int sig_22 = wa[1] & wb[1]; int sig_23 = wa[2] & wb[1]; int sig_24 = wa[3] & wb[1]; int sig_25 = wa[4] & wb[1]; int sig_26 = wa[5] & wb[1]; int sig_27 = wa[6] & wb[1]; int sig_28 = sig_15 ^ sig_21; int sig_29 = sig_15 & sig_21; int sig_30 = sig_16 ^ sig_22; int sig_31 = sig_16 & sig_22; int sig_32 = sig_17 ^ sig_23; int sig_33 = sig_17 & sig_23; int sig_34 = sig_18 ^ sig_24; int sig_35 = sig_18 & sig_24; int sig_36 = sig_19 ^ sig_25; int sig_37 = sig_19 & sig_25; int sig_38 = sig_20 ^ sig_26; int sig_39 = sig_20 & sig_26; int sig_40 = wa[0] & wb[2]; int sig_41 = wa[1] & wb[2]; int sig_42 = wa[2] & wb[2]; int sig_43 = wa[3] & wb[2]; int sig_44 = wa[4] & wb[2]; int sig_45 = wa[5] & wb[2]; int sig_46 = wa[6] & wb[2]; int sig_47 = sig_30 ^ sig_40; int sig_48 = sig_30 & sig_40; int sig_49 = sig_47 & sig_29; int sig_50 = sig_47 ^ sig_29; int sig_51 = sig_48 | sig_49; int sig_52 = sig_32 ^ sig_41; int sig_53 = sig_32 & sig_41; int sig_54 = sig_52 & sig_31; int sig_55 = sig_52 ^ sig_31; int sig_56 = sig_53 | sig_54; int sig_57 = sig_34 ^ sig_42; int sig_58 = sig_34 & sig_42; int sig_59 = sig_57 & sig_33; int sig_60 = sig_57 ^ sig_33; int sig_61 = sig_58 | sig_59; int sig_62 = sig_36 ^ sig_43; int sig_63 = sig_36 & sig_43; int sig_64 = sig_62 & sig_35; int sig_65 = sig_62 ^ sig_35; int sig_66 = sig_63 | sig_64; int sig_67 = sig_38 ^ sig_44; int sig_68 = sig_38 & sig_44; int sig_69 = sig_67 & sig_37; int sig_70 = sig_67 ^ sig_37; int sig_71 = sig_68 | sig_69; int sig_72 = sig_27 ^ sig_45; int sig_73 = sig_27 & sig_45; int sig_74 = sig_72 & sig_39; int sig_75 = sig_72 ^ sig_39; int sig_76 = sig_73 | sig_74; int sig_77 = wa[0] & wb[3]; int sig_78 = wa[1] & wb[3]; int sig_79 = wa[2] & wb[3]; int sig_80 = wa[3] & wb[3]; int sig_81 = wa[4] & wb[3]; int sig_82 = wa[5] & wb[3]; int sig_83 = wa[6] & wb[3]; int sig_84 = sig_55 ^ sig_77; int sig_85 = sig_55 & sig_77; int sig_86 = sig_84 & sig_51; int sig_87 = sig_84 ^ sig_51; int sig_88 = sig_85 | sig_86; int sig_89 = sig_60 ^ sig_78; int sig_90 = sig_60 & sig_78; int sig_91 = sig_89 & sig_56; int sig_92 = sig_89 ^ sig_56; int sig_93 = sig_90 | sig_91; int sig_94 = sig_65 ^ sig_79; int sig_95 = sig_65 & sig_79; int sig_96 = sig_94 & sig_61; int sig_97 = sig_94 ^ sig_61; int sig_98 = sig_95 | sig_96; int sig_99 = sig_70 ^ sig_80; int sig_100 = sig_70 & sig_80; int sig_101 = sig_99 & sig_66; int sig_102 = sig_99 ^ sig_66; int sig_103 = sig_100 | sig_101; int sig_104 = sig_75 ^ sig_81; int sig_105 = sig_75 & sig_81; int sig_106 = sig_104 & sig_71; int sig_107 = sig_104 ^ sig_71; int sig_108 = sig_105 | sig_106; int sig_109 = sig_46 ^ sig_82; int sig_110 = sig_46 & sig_82; int sig_111 = sig_109 & sig_76; int sig_112 = sig_109 ^ sig_76; int sig_113 = sig_110 | sig_111; int sig_114 = wa[0] & wb[4]; int sig_115 = wa[1] & wb[4]; int sig_116 = wa[2] & wb[4]; int sig_117 = wa[3] & wb[4]; int sig_118 = wa[4] & wb[4]; int sig_119 = wa[5] & wb[4]; int sig_120 = wa[6] & wb[4]; int sig_121 = sig_92 ^ sig_114; int sig_122 = sig_92 & sig_114; int sig_123 = sig_121 & sig_88; int sig_124 = sig_121 ^ sig_88; int sig_125 = sig_122 | sig_123; int sig_126 = sig_97 ^ sig_115; int sig_127 = sig_97 & sig_115; int sig_128 = sig_126 & sig_93; int sig_129 = sig_126 ^ sig_93; int sig_130 = sig_127 | sig_128; int sig_131 = sig_102 ^ sig_116; int sig_132 = sig_102 & sig_116; int sig_133 = sig_131 & sig_98; int sig_134 = sig_131 ^ sig_98; int sig_135 = sig_132 | sig_133; int sig_136 = sig_107 ^ sig_117; int sig_137 = sig_107 & sig_117; int sig_138 = sig_136 & sig_103; int sig_139 = sig_136 ^ sig_103; int sig_140 = sig_137 | sig_138; int sig_141 = sig_112 ^ sig_118; int sig_142 = sig_112 & sig_118; int sig_143 = sig_141 & sig_108; int sig_144 = sig_141 ^ sig_108; int sig_145 = sig_142 | sig_143; int sig_146 = sig_83 ^ sig_119; int sig_147 = sig_83 & sig_119; int sig_148 = sig_146 & sig_113; int sig_149 = sig_146 ^ sig_113; int sig_150 = sig_147 | sig_148; int sig_151 = wa[0] & wb[5]; int sig_152 = wa[1] & wb[5]; int sig_153 = wa[2] & wb[5]; int sig_154 = wa[3] & wb[5]; int sig_155 = wa[4] & wb[5]; int sig_156 = wa[5] & wb[5]; int sig_157 = wa[6] & wb[5]; int sig_158 = sig_129 ^ sig_151; int sig_159 = sig_129 & sig_151; int sig_160 = sig_158 & sig_125; int sig_161 = sig_158 ^ sig_125; int sig_162 = sig_159 | sig_160; int sig_163 = sig_134 ^ sig_152; int sig_164 = sig_134 & sig_152; int sig_165 = sig_163 & sig_130; int sig_166 = sig_163 ^ sig_130; int sig_167 = sig_164 | sig_165; int sig_168 = sig_139 ^ sig_153; int sig_169 = sig_139 & sig_153; int sig_170 = sig_168 & sig_135; int sig_171 = sig_168 ^ sig_135; int sig_172 = sig_169 | sig_170; int sig_173 = sig_144 ^ sig_154; int sig_174 = sig_144 & sig_154; int sig_175 = sig_173 & sig_140; int sig_176 = sig_173 ^ sig_140; int sig_177 = sig_174 | sig_175; int sig_178 = sig_149 ^ sig_155; int sig_179 = sig_149 & sig_155; int sig_180 = sig_178 & sig_145; int sig_181 = sig_178 ^ sig_145; int sig_182 = sig_179 | sig_180; int sig_183 = sig_120 ^ sig_156; int sig_184 = sig_120 & sig_156; int sig_185 = sig_183 & sig_150; int sig_186 = sig_183 ^ sig_150; int sig_187 = sig_184 | sig_185; int sig_188 = wa[0] & wb[6]; int sig_189 = wa[1] & wb[6]; int sig_190 = wa[2] & wb[6]; int sig_191 = wa[3] & wb[6]; int sig_192 = wa[4] & wb[6]; int sig_193 = wa[5] & wb[6]; int sig_194 = wa[6] & wb[6]; int sig_195 = sig_166 ^ sig_188; int sig_196 = sig_166 & sig_188; int sig_197 = sig_195 & sig_162; int sig_198 = sig_195 ^ sig_162; int sig_199 = sig_196 | sig_197; int sig_200 = sig_171 ^ sig_189; int sig_201 = sig_171 & sig_189; int sig_202 = sig_200 & sig_167; int sig_203 = sig_200 ^ sig_167; int sig_204 = sig_201 | sig_202; int sig_205 = sig_176 ^ sig_190; int sig_206 = sig_176 & sig_190; int sig_207 = sig_205 & sig_172; int sig_208 = sig_205 ^ sig_172; int sig_209 = sig_206 | sig_207; int sig_210 = sig_181 ^ sig_191; int sig_211 = sig_181 & sig_191; int sig_212 = sig_210 & sig_177; int sig_213 = sig_210 ^ sig_177; int sig_214 = sig_211 | sig_212; int sig_215 = sig_186 ^ sig_192; int sig_216 = sig_186 & sig_192; int sig_217 = sig_215 & sig_182; int sig_218 = sig_215 ^ sig_182; int sig_219 = sig_216 | sig_217; int sig_220 = sig_157 ^ sig_193; int sig_221 = sig_157 & sig_193; int sig_222 = sig_220 & sig_187; int sig_223 = sig_220 ^ sig_187; int sig_224 = sig_221 | sig_222; int sig_225 = sig_203 ^ sig_199; int sig_226 = sig_203 & sig_199; int sig_227 = sig_208 ^ sig_204; int sig_228 = sig_208 & sig_204; int sig_229 = sig_227 & sig_226; int sig_230 = sig_227 ^ sig_226; int sig_231 = sig_228 | sig_229; int sig_232 = sig_213 ^ sig_209; int sig_233 = sig_213 & sig_209; int sig_234 = sig_232 & sig_231; int sig_235 = sig_232 ^ sig_231; int sig_236 = sig_233 | sig_234; int sig_237 = sig_218 ^ sig_214; int sig_238 = sig_218 & sig_214; int sig_239 = sig_237 & sig_236; int sig_240 = sig_237 ^ sig_236; int sig_241 = sig_238 | sig_239; int sig_242 = sig_223 ^ sig_219; int sig_243 = sig_223 & sig_219; int sig_244 = sig_242 & sig_241; int sig_245 = sig_242 ^ sig_241; int sig_246 = sig_243 | sig_244; int sig_247 = sig_194 ^ sig_224; int sig_248 = sig_194 & sig_224; int sig_249 = sig_247 & sig_246; int sig_250 = sig_247 ^ sig_246; int sig_251 = sig_248 | sig_249; y |= (sig_14 & 0x01) << 0; // default output y |= (sig_28 & 0x01) << 1; // default output y |= (sig_50 & 0x01) << 2; // default output y |= (sig_87 & 0x01) << 3; // default output y |= (sig_124 & 0x01) << 4; // default output y |= (sig_161 & 0x01) << 5; // default output y |= (sig_198 & 0x01) << 6; // default output y |= (sig_225 & 0x01) << 7; // default output y |= (sig_230 & 0x01) << 8; // default output y |= (sig_235 & 0x01) << 9; // default output y |= (sig_240 & 0x01) << 10; // default output y |= (sig_245 & 0x01) << 11; // default output y |= (sig_250 & 0x01) << 12; // default output y |= (sig_251 & 0x01) << 13; // default output return y; }
the_stack_data/161080719.c
#include "stdio.h" #include "string.h" #include "stdlib.h" int checkRecord(char * s){ int a = 0, l = 0, len = strlen(s); char prev; for (int i = 0; i < len; i++) { if (prev != 'L') l = 0; if (s[i] == 'A') a++; else if (s[i] == 'L') l++; if (a > 1 || l > 2) return 0; prev = s[i]; } return 1; } void main() { printf("%d \r\n", checkRecord("ALLAPPL")); }
the_stack_data/116735.c
/* Copyright (c) 2020, Intel Corporation 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 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 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. */ /* * listing_12-40.c -- example of writing to persisting memory with a write * dependency. The code does an extra flush for the flag */ #include <emmintrin.h> #include <stdint.h> #include <stdio.h> #include <sys/mman.h> #include <fcntl.h> #include <string.h> void flush(const void *addr, size_t len) { uintptr_t flush_align = 64, uptr; for (uptr = (uintptr_t)addr & ~(flush_align - 1); uptr < (uintptr_t)addr + len; uptr += flush_align) _mm_clflush((char *)uptr); } int main(int argc, char *argv[]) { int fd, *ptr, *data, *flag; fd = open("/mnt/pmem/file", O_CREAT|O_RDWR, 0666); posix_fallocate(fd, 0, sizeof(int) * 2); ptr = (int *) mmap(NULL, sizeof(int) * 2, PROT_READ | PROT_WRITE, MAP_SHARED_VALIDATE | MAP_SYNC, fd, 0); data = &(ptr[1]); flag = &(ptr[0]); *data = 1234; flush((void *) data, sizeof(int)); *flag = 1; flush((void *) flag, sizeof(int)); flush((void *) flag, sizeof(int)); // extra flush munmap(ptr, 2 * sizeof(int)); return 0; }
the_stack_data/131073.c
/***************************************************************************** * * MODULE NAME : GETOPT.C * * COPYRIGHTS: * This module contains code made available by IBM * Corporation on an AS IS basis. Any one receiving the * module is considered to be licensed under IBM copyrights * to use the IBM-provided source code in any way he or she * deems fit, including copying it, compiling it, modifying * it, and redistributing it, with or without * modifications. No license under any IBM patents or * patent applications is to be implied from this copyright * license. * * A user of the module should understand that IBM cannot * provide technical support for the module and will not be * responsible for any consequences of use of the program. * * Any notices, including this one, are not to be removed * from the module without the prior written consent of * IBM. * * AUTHOR: Original author: * G. R. Blair (BOBBLAIR at AUSVM1) * Internet: [email protected] * * Extensively revised by: * John Q. Walker II, Ph.D. (JOHHQ at RALVM6) * Internet: [email protected] * *****************************************************************************/ /****************************************************************************** * getopt() * * The getopt() function is a command line parser. It returns the next * option character in argv that matches an option character in opstring. * * The argv argument points to an array of argc+1 elements containing argc * pointers to character strings followed by a null pointer. * * The opstring argument points to a string of option characters; if an * option character is followed by a colon, the option is expected to have * an argument that may or may not be separated from it by white space. * The external variable optarg is set to point to the start of the option * argument on return from getopt(). * * The getopt() function places in optind the argv index of the next argument * to be processed. The system initializes the external variable optind to * 1 before the first call to getopt(). * * When all options have been processed (that is, up to the first nonoption * argument), getopt() returns EOF. The special option "--" may be used to * delimit the end of the options; EOF will be returned, and "--" will be * skipped. * * The getopt() function returns a question mark (?) when it encounters an * option character not included in opstring. This error message can be * disabled by setting opterr to zero. Otherwise, it returns the option * character that was detected. * * If the special option "--" is detected, or all options have been * processed, EOF is returned. * * Options are marked by either a minus sign (-) or a slash (/). * * No errors are defined. *****************************************************************************/ #include <stdio.h> /* for EOF */ #include <string.h> /* for strchr() */ /* static (global) variables that are specified as exported by getopt() */ char *optarg = NULL; /* pointer to the start of the option argument */ int optind = 1; /* number of the next argv[] to be evaluated */ int opterr = 1; /* non-zero if a question mark should be returned when a non-valid option character is detected */ /* handle possible future character set concerns by putting this in a macro */ #define _next_char(string) (char)(*(string+1)) int getopt(int argc, char *argv[], char *opstring) { static char *pIndexPosition = NULL; /* place inside current argv string */ char *pArgString = NULL; /* where to start from next */ char *pOptString; /* the string in our program */ if (pIndexPosition != NULL) { /* we last left off inside an argv string */ if (*(++pIndexPosition)) { /* there is more to come in the most recent argv */ pArgString = pIndexPosition; } } if (pArgString == NULL) { /* we didn't leave off in the middle of an argv string */ if (optind >= argc) { /* more command-line arguments than the argument count */ pIndexPosition = NULL; /* not in the middle of anything */ return EOF; /* used up all command-line arguments */ } /*--------------------------------------------------------------------- * If the next argv[] is not an option, there can be no more options. *-------------------------------------------------------------------*/ pArgString = argv[optind++]; /* set this to the next argument ptr */ if (('/' != *pArgString) && /* doesn't start with a slash or a dash? */ ('-' != *pArgString)) { --optind; /* point to current arg once we're done */ optarg = NULL; /* no argument follows the option */ pIndexPosition = NULL; /* not in the middle of anything */ return EOF; /* used up all the command-line flags */ } /* check for special end-of-flags markers */ if ((strcmp(pArgString, "-") == 0) || (strcmp(pArgString, "--") == 0)) { optarg = NULL; /* no argument follows the option */ pIndexPosition = NULL; /* not in the middle of anything */ return EOF; /* encountered the special flag */ } pArgString++; /* look past the / or - */ } if (':' == *pArgString) { /* is it a colon? */ /*--------------------------------------------------------------------- * Rare case: if opterr is non-zero, return a question mark; * otherwise, just return the colon we're on. *-------------------------------------------------------------------*/ return (opterr ? (int)'?' : (int)':'); } else if ((pOptString = strchr(opstring, *pArgString)) == 0) { /*--------------------------------------------------------------------- * The letter on the command-line wasn't any good. *-------------------------------------------------------------------*/ optarg = NULL; /* no argument follows the option */ pIndexPosition = NULL; /* not in the middle of anything */ return (opterr ? (int)'?' : (int)*pArgString); } else { /*--------------------------------------------------------------------- * The letter on the command-line matches one we expect to see *-------------------------------------------------------------------*/ if (':' == _next_char(pOptString)) { /* is the next letter a colon? */ /* It is a colon. Look for an argument string. */ if ('\0' != _next_char(pArgString)) { /* argument in this argv? */ optarg = &pArgString[1]; /* Yes, it is */ } else { /*------------------------------------------------------------- * The argument string must be in the next argv. * But, what if there is none (bad input from the user)? * In that case, return the letter, and optarg as NULL. *-----------------------------------------------------------*/ if (optind < argc) optarg = argv[optind++]; else { optarg = NULL; return (opterr ? (int)'?' : (int)*pArgString); } } pIndexPosition = NULL; /* not in the middle of anything */ } else { /* it's not a colon, so just return the letter */ optarg = NULL; /* no argument follows the option */ pIndexPosition = pArgString; /* point to the letter we're on */ } return (int)*pArgString; /* return the letter that matched */ } }
the_stack_data/150143360.c
#include <stdio.h> #include <stdint.h> static int duel1(uint64_t a, uint64_t b) { int n = 40000000, k = 0; while (n--) { a = a * 16807ULL % 2147483647ULL; b = b * 48271ULL % 2147483647ULL; k += (a & 0xffff) == (b & 0xffff); } return k; } static int duel2(uint64_t a, uint64_t b) { int n = 5000000, k = 0; while (n--) { do { a = a * 16807ULL % 2147483647ULL; } while (a & 0x3); do { b = b * 48271ULL % 2147483647ULL; } while (b & 0x7); k += (a & 0xffff) == (b & 0xffff); } return k; } int main(void) { printf("Part 1: %i\n", duel1(783, 325)); printf("Part 2: %i\n", duel2(783, 325)); return 0; }
the_stack_data/154827812.c
#ifdef FLA_ENABLE_XBLAS /* ../netlib/cgbrfsx.f -- translated by f2c (version 20160102). You must link the resulting object file with libf2c: on Microsoft Windows system, link with libf2c.lib; on Linux or Unix systems, link with .../path/to/libf2c.a -lm or, if you install libf2c.a in a standard place, with -lf2c -lm -- in that order, at the end of the command line, as in cc *.o -lf2c -lm Source for libf2c is in /netlib/f2c/libf2c.zip, e.g., http://www.netlib.org/f2c/libf2c.zip */ #include "FLA_f2c.h" /* Table of constant values */ static logical c_true = TRUE_; static logical c_false = FALSE_; /* > \brief \b CGBRFSX */ /* =========== DOCUMENTATION =========== */ /* Online html documentation available at */ /* http://www.netlib.org/lapack/explore-html/ */ /* > \htmlonly */ /* > Download CGBRFSX + dependencies */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/cgbrfsx .f"> */ /* > [TGZ]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/cgbrfsx .f"> */ /* > [ZIP]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/cgbrfsx .f"> */ /* > [TXT]</a> */ /* > \endhtmlonly */ /* Definition: */ /* =========== */ /* SUBROUTINE CGBRFSX( TRANS, EQUED, N, KL, KU, NRHS, AB, LDAB, AFB, */ /* LDAFB, IPIV, R, C, B, LDB, X, LDX, RCOND, */ /* BERR, N_ERR_BNDS, ERR_BNDS_NORM, */ /* ERR_BNDS_COMP, NPARAMS, PARAMS, WORK, RWORK, */ /* INFO ) */ /* .. Scalar Arguments .. */ /* CHARACTER TRANS, EQUED */ /* INTEGER INFO, LDAB, LDAFB, LDB, LDX, N, KL, KU, NRHS, */ /* $ NPARAMS, N_ERR_BNDS */ /* REAL RCOND */ /* .. */ /* .. Array Arguments .. */ /* INTEGER IPIV( * ) */ /* COMPLEX AB( LDAB, * ), AFB( LDAFB, * ), B( LDB, * ), */ /* $ X( LDX , * ),WORK( * ) */ /* REAL R( * ), C( * ), PARAMS( * ), BERR( * ), */ /* $ ERR_BNDS_NORM( NRHS, * ), */ /* $ ERR_BNDS_COMP( NRHS, * ), RWORK( * ) */ /* .. */ /* > \par Purpose: */ /* ============= */ /* > */ /* > \verbatim */ /* > */ /* > CGBRFSX improves the computed solution to a system of linear */ /* > equations and provides error bounds and backward error estimates */ /* > for the solution. In addition to normwise error bound, the code */ /* > provides maximum componentwise error bound if possible. See */ /* > comments for ERR_BNDS_NORM and ERR_BNDS_COMP for details of the */ /* > error bounds. */ /* > */ /* > The original system of linear equations may have been equilibrated */ /* > before calling this routine, as described by arguments EQUED, R */ /* > and C below. In this case, the solution and error bounds returned */ /* > are for the original unequilibrated system. */ /* > \endverbatim */ /* Arguments: */ /* ========== */ /* > \verbatim */ /* > Some optional parameters are bundled in the PARAMS array. These */ /* > settings determine how refinement is performed, but often the */ /* > defaults are acceptable. If the defaults are acceptable, users */ /* > can pass NPARAMS = 0 which prevents the source code from accessing */ /* > the PARAMS argument. */ /* > \endverbatim */ /* > */ /* > \param[in] TRANS */ /* > \verbatim */ /* > TRANS is CHARACTER*1 */ /* > Specifies the form of the system of equations: */ /* > = 'N': A * X = B (No transpose) */ /* > = 'T': A**T * X = B (Transpose) */ /* > = 'C': A**H * X = B (Conjugate transpose) */ /* > \endverbatim */ /* > */ /* > \param[in] EQUED */ /* > \verbatim */ /* > EQUED is CHARACTER*1 */ /* > Specifies the form of equilibration that was done to A */ /* > before calling this routine. This is needed to compute */ /* > the solution and error bounds correctly. */ /* > = 'N': No equilibration */ /* > = 'R': Row equilibration, i.e., A has been premultiplied by */ /* > diag(R). */ /* > = 'C': Column equilibration, i.e., A has been postmultiplied */ /* > by diag(C). */ /* > = 'B': Both row and column equilibration, i.e., A has been */ /* > replaced by diag(R) * A * diag(C). */ /* > The right hand side B has been changed accordingly. */ /* > \endverbatim */ /* > */ /* > \param[in] N */ /* > \verbatim */ /* > N is INTEGER */ /* > The order of the matrix A. N >= 0. */ /* > \endverbatim */ /* > */ /* > \param[in] KL */ /* > \verbatim */ /* > KL is INTEGER */ /* > The number of subdiagonals within the band of A. KL >= 0. */ /* > \endverbatim */ /* > */ /* > \param[in] KU */ /* > \verbatim */ /* > KU is INTEGER */ /* > The number of superdiagonals within the band of A. KU >= 0. */ /* > \endverbatim */ /* > */ /* > \param[in] NRHS */ /* > \verbatim */ /* > NRHS is INTEGER */ /* > The number of right hand sides, i.e., the number of columns */ /* > of the matrices B and X. NRHS >= 0. */ /* > \endverbatim */ /* > */ /* > \param[in] AB */ /* > \verbatim */ /* > AB is COMPLEX array, dimension (LDAB,N) */ /* > The original band matrix A, stored in rows 1 to KL+KU+1. */ /* > The j-th column of A is stored in the j-th column of the */ /* > array AB as follows: */ /* > AB(ku+1+i-j,j) = A(i,j) for max(1,j-ku)<=i<=min(n,j+kl). */ /* > \endverbatim */ /* > */ /* > \param[in] LDAB */ /* > \verbatim */ /* > LDAB is INTEGER */ /* > The leading dimension of the array AB. LDAB >= KL+KU+1. */ /* > \endverbatim */ /* > */ /* > \param[in] AFB */ /* > \verbatim */ /* > AFB is COMPLEX array, dimension (LDAFB,N) */ /* > Details of the LU factorization of the band matrix A, as */ /* > computed by DGBTRF. U is stored as an upper triangular band */ /* > matrix with KL+KU superdiagonals in rows 1 to KL+KU+1, and */ /* > the multipliers used during the factorization are stored in */ /* > rows KL+KU+2 to 2*KL+KU+1. */ /* > \endverbatim */ /* > */ /* > \param[in] LDAFB */ /* > \verbatim */ /* > LDAFB is INTEGER */ /* > The leading dimension of the array AFB. LDAFB >= 2*KL*KU+1. */ /* > \endverbatim */ /* > */ /* > \param[in] IPIV */ /* > \verbatim */ /* > IPIV is INTEGER array, dimension (N) */ /* > The pivot indices from SGETRF; for 1<=i<=N, row i of the */ /* > matrix was interchanged with row IPIV(i). */ /* > \endverbatim */ /* > */ /* > \param[in,out] R */ /* > \verbatim */ /* > R is REAL array, dimension (N) */ /* > The row scale factors for A. If EQUED = 'R' or 'B', A is */ /* > multiplied on the left by diag(R); if EQUED = 'N' or 'C', R */ /* > is not accessed. R is an input argument if FACT = 'F'; */ /* > otherwise, R is an output argument. If FACT = 'F' and */ /* > EQUED = 'R' or 'B', each element of R must be positive. */ /* > If R is output, each element of R is a power of the radix. */ /* > If R is input, each element of R should be a power of the radix */ /* > to ensure a reliable solution and error estimates. Scaling by */ /* > powers of the radix does not cause rounding errors unless the */ /* > result underflows or overflows. Rounding errors during scaling */ /* > lead to refining with a matrix that is not equivalent to the */ /* > input matrix, producing error estimates that may not be */ /* > reliable. */ /* > \endverbatim */ /* > */ /* > \param[in,out] C */ /* > \verbatim */ /* > C is REAL array, dimension (N) */ /* > The column scale factors for A. If EQUED = 'C' or 'B', A is */ /* > multiplied on the right by diag(C); if EQUED = 'N' or 'R', C */ /* > is not accessed. C is an input argument if FACT = 'F'; */ /* > otherwise, C is an output argument. If FACT = 'F' and */ /* > EQUED = 'C' or 'B', each element of C must be positive. */ /* > If C is output, each element of C is a power of the radix. */ /* > If C is input, each element of C should be a power of the radix */ /* > to ensure a reliable solution and error estimates. Scaling by */ /* > powers of the radix does not cause rounding errors unless the */ /* > result underflows or overflows. Rounding errors during scaling */ /* > lead to refining with a matrix that is not equivalent to the */ /* > input matrix, producing error estimates that may not be */ /* > reliable. */ /* > \endverbatim */ /* > */ /* > \param[in] B */ /* > \verbatim */ /* > B is COMPLEX array, dimension (LDB,NRHS) */ /* > The right hand side matrix B. */ /* > \endverbatim */ /* > */ /* > \param[in] LDB */ /* > \verbatim */ /* > LDB is INTEGER */ /* > The leading dimension of the array B. LDB >= max(1,N). */ /* > \endverbatim */ /* > */ /* > \param[in,out] X */ /* > \verbatim */ /* > X is COMPLEX array, dimension (LDX,NRHS) */ /* > On entry, the solution matrix X, as computed by SGETRS. */ /* > On exit, the improved solution matrix X. */ /* > \endverbatim */ /* > */ /* > \param[in] LDX */ /* > \verbatim */ /* > LDX is INTEGER */ /* > The leading dimension of the array X. LDX >= max(1,N). */ /* > \endverbatim */ /* > */ /* > \param[out] RCOND */ /* > \verbatim */ /* > RCOND is REAL */ /* > Reciprocal scaled condition number. This is an estimate of the */ /* > reciprocal Skeel condition number of the matrix A after */ /* > equilibration (if done). If this is less than the machine */ /* > precision (in particular, if it is zero), the matrix is singular */ /* > to working precision. Note that the error may still be small even */ /* > if this number is very small and the matrix appears ill- */ /* > conditioned. */ /* > \endverbatim */ /* > */ /* > \param[out] BERR */ /* > \verbatim */ /* > BERR is REAL array, dimension (NRHS) */ /* > Componentwise relative backward error. This is the */ /* > componentwise relative backward error of each solution vector X(j) */ /* > (i.e., the smallest relative change in any element of A or B that */ /* > makes X(j) an exact solution). */ /* > \endverbatim */ /* > */ /* > \param[in] N_ERR_BNDS */ /* > \verbatim */ /* > N_ERR_BNDS is INTEGER */ /* > Number of error bounds to return for each right hand side */ /* > and each type (normwise or componentwise). See ERR_BNDS_NORM and */ /* > ERR_BNDS_COMP below. */ /* > \endverbatim */ /* > */ /* > \param[out] ERR_BNDS_NORM */ /* > \verbatim */ /* > ERR_BNDS_NORM is REAL array, dimension (NRHS, N_ERR_BNDS) */ /* > For each right-hand side, this array contains information about */ /* > various error bounds and condition numbers corresponding to the */ /* > normwise relative error, which is defined as follows: */ /* > */ /* > Normwise relative error in the ith solution vector: */ /* > max_j (f2c_abs(XTRUE(j,i) - X(j,i))) */ /* > ------------------------------ */ /* > max_j f2c_abs(X(j,i)) */ /* > */ /* > The array is indexed by the type of error information as described */ /* > below. There currently are up to three pieces of information */ /* > returned. */ /* > */ /* > The first index in ERR_BNDS_NORM(i,:) corresponds to the ith */ /* > right-hand side. */ /* > */ /* > The second index in ERR_BNDS_NORM(:,err) contains the following */ /* > three fields: */ /* > err = 1 "Trust/don't trust" boolean. Trust the answer if the */ /* > reciprocal condition number is less than the threshold */ /* > sqrt(n) * slamch('Epsilon'). */ /* > */ /* > err = 2 "Guaranteed" error bound: The estimated forward error, */ /* > almost certainly within a factor of 10 of the true error */ /* > so long as the next entry is greater than the threshold */ /* > sqrt(n) * slamch('Epsilon'). This error bound should only */ /* > be trusted if the previous boolean is true. */ /* > */ /* > err = 3 Reciprocal condition number: Estimated normwise */ /* > reciprocal condition number. Compared with the threshold */ /* > sqrt(n) * slamch('Epsilon') to determine if the error */ /* > estimate is "guaranteed". These reciprocal condition */ /* > numbers are 1 / (norm(Z^{ -1} ,inf) * norm(Z,inf)) for some */ /* > appropriately scaled matrix Z. */ /* > Let Z = S*A, where S scales each row by a power of the */ /* > radix so all absolute row sums of Z are approximately 1. */ /* > */ /* > See Lapack Working Note 165 for further details and extra */ /* > cautions. */ /* > \endverbatim */ /* > */ /* > \param[out] ERR_BNDS_COMP */ /* > \verbatim */ /* > ERR_BNDS_COMP is REAL array, dimension (NRHS, N_ERR_BNDS) */ /* > For each right-hand side, this array contains information about */ /* > various error bounds and condition numbers corresponding to the */ /* > componentwise relative error, which is defined as follows: */ /* > */ /* > Componentwise relative error in the ith solution vector: */ /* > f2c_abs(XTRUE(j,i) - X(j,i)) */ /* > max_j ---------------------- */ /* > f2c_abs(X(j,i)) */ /* > */ /* > The array is indexed by the right-hand side i (on which the */ /* > componentwise relative error depends), and the type of error */ /* > information as described below. There currently are up to three */ /* > pieces of information returned for each right-hand side. If */ /* > componentwise accuracy is not requested (PARAMS(3) = 0.0), then */ /* > ERR_BNDS_COMP is not accessed. If N_ERR_BNDS < 3, then at most */ /* > the first (:,N_ERR_BNDS) entries are returned. */ /* > */ /* > The first index in ERR_BNDS_COMP(i,:) corresponds to the ith */ /* > right-hand side. */ /* > */ /* > The second index in ERR_BNDS_COMP(:,err) contains the following */ /* > three fields: */ /* > err = 1 "Trust/don't trust" boolean. Trust the answer if the */ /* > reciprocal condition number is less than the threshold */ /* > sqrt(n) * slamch('Epsilon'). */ /* > */ /* > err = 2 "Guaranteed" error bound: The estimated forward error, */ /* > almost certainly within a factor of 10 of the true error */ /* > so long as the next entry is greater than the threshold */ /* > sqrt(n) * slamch('Epsilon'). This error bound should only */ /* > be trusted if the previous boolean is true. */ /* > */ /* > err = 3 Reciprocal condition number: Estimated componentwise */ /* > reciprocal condition number. Compared with the threshold */ /* > sqrt(n) * slamch('Epsilon') to determine if the error */ /* > estimate is "guaranteed". These reciprocal condition */ /* > numbers are 1 / (norm(Z^{ -1} ,inf) * norm(Z,inf)) for some */ /* > appropriately scaled matrix Z. */ /* > Let Z = S*(A*diag(x)), where x is the solution for the */ /* > current right-hand side and S scales each row of */ /* > A*diag(x) by a power of the radix so all absolute row */ /* > sums of Z are approximately 1. */ /* > */ /* > See Lapack Working Note 165 for further details and extra */ /* > cautions. */ /* > \endverbatim */ /* > */ /* > \param[in] NPARAMS */ /* > \verbatim */ /* > NPARAMS is INTEGER */ /* > Specifies the number of parameters set in PARAMS. If <= 0, the */ /* > PARAMS array is never referenced and default values are used. */ /* > \endverbatim */ /* > */ /* > \param[in,out] PARAMS */ /* > \verbatim */ /* > PARAMS is REAL array, dimension NPARAMS */ /* > Specifies algorithm parameters. If an entry is < 0.0, then */ /* > that entry will be filled with default value used for that */ /* > parameter. Only positions up to NPARAMS are accessed; defaults */ /* > are used for higher-numbered parameters. */ /* > */ /* > PARAMS(LA_LINRX_ITREF_I = 1) : Whether to perform iterative */ /* > refinement or not. */ /* > Default: 1.0 */ /* > = 0.0: No refinement is performed, and no error bounds are */ /* > computed. */ /* > = 1.0: Use the double-precision refinement algorithm, */ /* > possibly with doubled-single computations if the */ /* > compilation environment does not support DOUBLE */ /* > PRECISION. */ /* > (other values are reserved for future use) */ /* > */ /* > PARAMS(LA_LINRX_ITHRESH_I = 2) : Maximum number of residual */ /* > computations allowed for refinement. */ /* > Default: 10 */ /* > Aggressive: Set to 100 to permit convergence using approximate */ /* > factorizations or factorizations other than LU. If */ /* > the factorization uses a technique other than */ /* > Gaussian elimination, the guarantees in */ /* > err_bnds_norm and err_bnds_comp may no longer be */ /* > trustworthy. */ /* > */ /* > PARAMS(LA_LINRX_CWISE_I = 3) : Flag determining if the code */ /* > will attempt to find a solution with small componentwise */ /* > relative error in the double-precision algorithm. Positive */ /* > is true, 0.0 is false. */ /* > Default: 1.0 (attempt componentwise convergence) */ /* > \endverbatim */ /* > */ /* > \param[out] WORK */ /* > \verbatim */ /* > WORK is COMPLEX array, dimension (2*N) */ /* > \endverbatim */ /* > */ /* > \param[out] RWORK */ /* > \verbatim */ /* > RWORK is REAL array, dimension (2*N) */ /* > \endverbatim */ /* > */ /* > \param[out] INFO */ /* > \verbatim */ /* > INFO is INTEGER */ /* > = 0: Successful exit. The solution to every right-hand side is */ /* > guaranteed. */ /* > < 0: If INFO = -i, the i-th argument had an illegal value */ /* > > 0 and <= N: U(INFO,INFO) is exactly zero. The factorization */ /* > has been completed, but the factor U is exactly singular, so */ /* > the solution and error bounds could not be computed. RCOND = 0 */ /* > is returned. */ /* > = N+J: The solution corresponding to the Jth right-hand side is */ /* > not guaranteed. The solutions corresponding to other right- */ /* > hand sides K with K > J may not be guaranteed as well, but */ /* > only the first such right-hand side is reported. If a small */ /* > componentwise error is not requested (PARAMS(3) = 0.0) then */ /* > the Jth right-hand side is the first with a normwise error */ /* > bound that is not guaranteed (the smallest J such */ /* > that ERR_BNDS_NORM(J,1) = 0.0). By default (PARAMS(3) = 1.0) */ /* > the Jth right-hand side is the first with either a normwise or */ /* > componentwise error bound that is not guaranteed (the smallest */ /* > J such that either ERR_BNDS_NORM(J,1) = 0.0 or */ /* > ERR_BNDS_COMP(J,1) = 0.0). See the definition of */ /* > ERR_BNDS_NORM(:,1) and ERR_BNDS_COMP(:,1). To get information */ /* > about all of the right-hand sides check ERR_BNDS_NORM or */ /* > ERR_BNDS_COMP. */ /* > \endverbatim */ /* Authors: */ /* ======== */ /* > \author Univ. of Tennessee */ /* > \author Univ. of California Berkeley */ /* > \author Univ. of Colorado Denver */ /* > \author NAG Ltd. */ /* > \date April 2012 */ /* > \ingroup complexGBcomputational */ /* ===================================================================== */ /* Subroutine */ int cgbrfsx_(char *trans, char *equed, integer *n, integer * kl, integer *ku, integer *nrhs, complex *ab, integer *ldab, complex * afb, integer *ldafb, integer *ipiv, real *r__, real *c__, complex *b, integer *ldb, complex *x, integer *ldx, real *rcond, real *berr, integer *n_err_bnds__, real *err_bnds_norm__, real *err_bnds_comp__, integer *nparams, real *params, complex *work, real *rwork, integer * info) { AOCL_DTL_TRACE_ENTRY(AOCL_DTL_LEVEL_TRACE_5); #if AOCL_DTL_LOG_ENABLE char buffer[256]; #if FLA_ENABLE_ILP64 snprintf(buffer, 256,"cgbrfsx inputs: trans %c, equed %c, n %lld, kl %lld, ku %lld, nrhs %lld, ldab %lld, ldafb %lld, ipiv %lld, ldb %lld, ldx %lld, n_err_bnds__ %lld, nparams %lld",*trans, *equed, *n, *kl, *ku, *nrhs, *ldab, *ldafb, *ipiv, *ldb, *ldx, *n_err_bnds__, *nparams); #else snprintf(buffer, 256,"cgbrfsx inputs: trans %c, equed %c n %d, kl %d, ku %d, nrhs %d, ldab %d, ldafb %d, ipiv %d ldb %d, ldx %d, n_err_bnds__ %d, nparams %d",*trans, *equed, *n, *kl, *ku, *nrhs, *ldab, *ldafb, *ipiv, *ldb, *ldx, *n_err_bnds__, *nparams); #endif AOCL_DTL_LOG(AOCL_DTL_LEVEL_TRACE_5, buffer); #endif /* System generated locals */ integer ab_dim1, ab_offset, afb_dim1, afb_offset, b_dim1, b_offset, x_dim1, x_offset, err_bnds_norm_dim1, err_bnds_norm_offset, err_bnds_comp_dim1, err_bnds_comp_offset, i__1; real r__1, r__2; /* Builtin functions */ double sqrt(doublereal); /* Local variables */ real illrcond_thresh__, unstable_thresh__, err_lbnd__; integer ref_type__; extern integer ilatrans_(char *); integer j; real rcond_tmp__; integer prec_type__, trans_type__; real cwise_wrong__; extern /* Subroutine */ int cla_gbrfsx_extended_(integer *, integer *, integer *, integer *, integer *, integer *, complex *, integer *, complex *, integer *, integer *, logical *, real *, complex *, integer *, complex *, integer *, real *, integer *, real *, real * , complex *, real *, complex *, real *, real *, integer *, real *, real *, logical *, integer *); char norm[1]; logical ignore_cwise__; extern real cla_gbrcond_c_(char *, integer *, integer *, integer *, complex *, integer *, complex *, integer *, integer *, real *, logical *, integer *, complex *, real *); extern logical lsame_(char *, char *); real anorm; extern real cla_gbrcond_x_(char *, integer *, integer *, integer *, complex *, integer *, complex *, integer *, integer *, complex *, integer *, complex *, real *), clangb_(char *, integer *, integer *, integer *, complex *, integer *, real *); extern /* Subroutine */ int cgbcon_(char *, integer *, integer *, integer *, complex *, integer *, integer *, real *, real *, complex *, real *, integer *); extern real slamch_(char *); extern /* Subroutine */ int xerbla_(char *, integer *); logical colequ, notran, rowequ; extern integer ilaprec_(char *); integer ithresh, n_norms__; real rthresh; /* -- LAPACK computational 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..-- */ /* April 2012 */ /* .. Scalar Arguments .. */ /* .. */ /* .. Array Arguments .. */ /* .. */ /* ================================================================== */ /* .. Parameters .. */ /* .. */ /* .. Local Scalars .. */ /* .. */ /* .. External Subroutines .. */ /* .. */ /* .. Intrinsic Functions .. */ /* .. */ /* .. External Functions .. */ /* .. */ /* .. Executable Statements .. */ /* Check the input parameters. */ /* Parameter adjustments */ err_bnds_comp_dim1 = *nrhs; err_bnds_comp_offset = 1 + err_bnds_comp_dim1; err_bnds_comp__ -= err_bnds_comp_offset; err_bnds_norm_dim1 = *nrhs; err_bnds_norm_offset = 1 + err_bnds_norm_dim1; err_bnds_norm__ -= err_bnds_norm_offset; ab_dim1 = *ldab; ab_offset = 1 + ab_dim1; ab -= ab_offset; afb_dim1 = *ldafb; afb_offset = 1 + afb_dim1; afb -= afb_offset; --ipiv; --r__; --c__; b_dim1 = *ldb; b_offset = 1 + b_dim1; b -= b_offset; x_dim1 = *ldx; x_offset = 1 + x_dim1; x -= x_offset; --berr; --params; --work; --rwork; /* Function Body */ *info = 0; trans_type__ = ilatrans_(trans); ref_type__ = 1; if (*nparams >= 1) { if (params[1] < 0.f) { params[1] = 1.f; } else { ref_type__ = params[1]; } } /* Set default parameters. */ illrcond_thresh__ = (real) (*n) * slamch_("Epsilon"); ithresh = 10; rthresh = .5f; unstable_thresh__ = .25f; ignore_cwise__ = FALSE_; if (*nparams >= 2) { if (params[2] < 0.f) { params[2] = (real) ithresh; } else { ithresh = (integer) params[2]; } } if (*nparams >= 3) { if (params[3] < 0.f) { if (ignore_cwise__) { params[3] = 0.f; } else { params[3] = 1.f; } } else { ignore_cwise__ = params[3] == 0.f; } } if (ref_type__ == 0 || *n_err_bnds__ == 0) { n_norms__ = 0; } else if (ignore_cwise__) { n_norms__ = 1; } else { n_norms__ = 2; } notran = lsame_(trans, "N"); rowequ = lsame_(equed, "R") || lsame_(equed, "B"); colequ = lsame_(equed, "C") || lsame_(equed, "B"); /* Test input parameters. */ if (trans_type__ == -1) { *info = -1; } else if (! rowequ && ! colequ && ! lsame_(equed, "N")) { *info = -2; } else if (*n < 0) { *info = -3; } else if (*kl < 0) { *info = -4; } else if (*ku < 0) { *info = -5; } else if (*nrhs < 0) { *info = -6; } else if (*ldab < *kl + *ku + 1) { *info = -8; } else if (*ldafb < (*kl << 1) + *ku + 1) { *info = -10; } else if (*ldb < max(1,*n)) { *info = -13; } else if (*ldx < max(1,*n)) { *info = -15; } if (*info != 0) { i__1 = -(*info); xerbla_("CGBRFSX", &i__1); AOCL_DTL_TRACE_EXIT(AOCL_DTL_LEVEL_TRACE_5); return 0; } /* Quick return if possible. */ if (*n == 0 || *nrhs == 0) { *rcond = 1.f; i__1 = *nrhs; for (j = 1; j <= i__1; ++j) { berr[j] = 0.f; if (*n_err_bnds__ >= 1) { err_bnds_norm__[j + err_bnds_norm_dim1] = 1.f; err_bnds_comp__[j + err_bnds_comp_dim1] = 1.f; } if (*n_err_bnds__ >= 2) { err_bnds_norm__[j + (err_bnds_norm_dim1 << 1)] = 0.f; err_bnds_comp__[j + (err_bnds_comp_dim1 << 1)] = 0.f; } if (*n_err_bnds__ >= 3) { err_bnds_norm__[j + err_bnds_norm_dim1 * 3] = 1.f; err_bnds_comp__[j + err_bnds_comp_dim1 * 3] = 1.f; } } AOCL_DTL_TRACE_EXIT(AOCL_DTL_LEVEL_TRACE_5); return 0; } /* Default to failure. */ *rcond = 0.f; i__1 = *nrhs; for (j = 1; j <= i__1; ++j) { berr[j] = 1.f; if (*n_err_bnds__ >= 1) { err_bnds_norm__[j + err_bnds_norm_dim1] = 1.f; err_bnds_comp__[j + err_bnds_comp_dim1] = 1.f; } if (*n_err_bnds__ >= 2) { err_bnds_norm__[j + (err_bnds_norm_dim1 << 1)] = 1.f; err_bnds_comp__[j + (err_bnds_comp_dim1 << 1)] = 1.f; } if (*n_err_bnds__ >= 3) { err_bnds_norm__[j + err_bnds_norm_dim1 * 3] = 0.f; err_bnds_comp__[j + err_bnds_comp_dim1 * 3] = 0.f; } } /* Compute the norm of A and the reciprocal of the condition */ /* number of A. */ if (notran) { *(unsigned char *)norm = 'I'; } else { *(unsigned char *)norm = '1'; } anorm = clangb_(norm, n, kl, ku, &ab[ab_offset], ldab, &rwork[1]); cgbcon_(norm, n, kl, ku, &afb[afb_offset], ldafb, &ipiv[1], &anorm, rcond, &work[1], &rwork[1], info); /* Perform refinement on each right-hand side */ if (ref_type__ != 0 && *info == 0) { prec_type__ = ilaprec_("D"); if (notran) { cla_gbrfsx_extended_(&prec_type__, &trans_type__, n, kl, ku, nrhs, &ab[ab_offset], ldab, &afb[afb_offset], ldafb, & ipiv[1], &colequ, &c__[1], &b[b_offset], ldb, &x[x_offset] , ldx, &berr[1], &n_norms__, &err_bnds_norm__[ err_bnds_norm_offset], &err_bnds_comp__[ err_bnds_comp_offset], &work[1], &rwork[1], &work[*n + 1], &rwork[1], rcond, &ithresh, &rthresh, &unstable_thresh__, &ignore_cwise__, info); } else { cla_gbrfsx_extended_(&prec_type__, &trans_type__, n, kl, ku, nrhs, &ab[ab_offset], ldab, &afb[afb_offset], ldafb, & ipiv[1], &rowequ, &r__[1], &b[b_offset], ldb, &x[x_offset] , ldx, &berr[1], &n_norms__, &err_bnds_norm__[ err_bnds_norm_offset], &err_bnds_comp__[ err_bnds_comp_offset], &work[1], &rwork[1], &work[*n + 1], &rwork[1], rcond, &ithresh, &rthresh, &unstable_thresh__, &ignore_cwise__, info); } } /* Computing MAX */ r__1 = 10.f; r__2 = sqrt((real) (*n)); // , expr subst err_lbnd__ = max(r__1,r__2) * slamch_("Epsilon"); if (*n_err_bnds__ >= 1 && n_norms__ >= 1) { /* Compute scaled normwise condition number cond(A*C). */ if (colequ && notran) { rcond_tmp__ = cla_gbrcond_c_(trans, n, kl, ku, &ab[ab_offset], ldab, &afb[afb_offset], ldafb, &ipiv[1], &c__[1], &c_true, info, &work[1], &rwork[1]); } else if (rowequ && ! notran) { rcond_tmp__ = cla_gbrcond_c_(trans, n, kl, ku, &ab[ab_offset], ldab, &afb[afb_offset], ldafb, &ipiv[1], &r__[1], &c_true, info, &work[1], &rwork[1]); } else { rcond_tmp__ = cla_gbrcond_c_(trans, n, kl, ku, &ab[ab_offset], ldab, &afb[afb_offset], ldafb, &ipiv[1], &c__[1], & c_false, info, &work[1], &rwork[1]); } i__1 = *nrhs; for (j = 1; j <= i__1; ++j) { /* Cap the error at 1.0. */ if (*n_err_bnds__ >= 2 && err_bnds_norm__[j + (err_bnds_norm_dim1 << 1)] > 1.f) { err_bnds_norm__[j + (err_bnds_norm_dim1 << 1)] = 1.f; } /* Threshold the error (see LAWN). */ if (rcond_tmp__ < illrcond_thresh__) { err_bnds_norm__[j + (err_bnds_norm_dim1 << 1)] = 1.f; err_bnds_norm__[j + err_bnds_norm_dim1] = 0.f; if (*info <= *n) { *info = *n + j; } } else if (err_bnds_norm__[j + (err_bnds_norm_dim1 << 1)] < err_lbnd__) { err_bnds_norm__[j + (err_bnds_norm_dim1 << 1)] = err_lbnd__; err_bnds_norm__[j + err_bnds_norm_dim1] = 1.f; } /* Save the condition number. */ if (*n_err_bnds__ >= 3) { err_bnds_norm__[j + err_bnds_norm_dim1 * 3] = rcond_tmp__; } } } if (*n_err_bnds__ >= 1 && n_norms__ >= 2) { /* Compute componentwise condition number cond(A*diag(Y(:,J))) for */ /* each right-hand side using the current solution as an estimate of */ /* the true solution. If the componentwise error estimate is too */ /* large, then the solution is a lousy estimate of truth and the */ /* estimated RCOND may be too optimistic. To avoid misleading users, */ /* the inverse condition number is set to 0.0 when the estimated */ /* cwise error is at least CWISE_WRONG. */ cwise_wrong__ = sqrt(slamch_("Epsilon")); i__1 = *nrhs; for (j = 1; j <= i__1; ++j) { if (err_bnds_comp__[j + (err_bnds_comp_dim1 << 1)] < cwise_wrong__) { rcond_tmp__ = cla_gbrcond_x_(trans, n, kl, ku, &ab[ab_offset] , ldab, &afb[afb_offset], ldafb, &ipiv[1], &x[j * x_dim1 + 1], info, &work[1], &rwork[1]); } else { rcond_tmp__ = 0.f; } /* Cap the error at 1.0. */ if (*n_err_bnds__ >= 2 && err_bnds_comp__[j + (err_bnds_comp_dim1 << 1)] > 1.f) { err_bnds_comp__[j + (err_bnds_comp_dim1 << 1)] = 1.f; } /* Threshold the error (see LAWN). */ if (rcond_tmp__ < illrcond_thresh__) { err_bnds_comp__[j + (err_bnds_comp_dim1 << 1)] = 1.f; err_bnds_comp__[j + err_bnds_comp_dim1] = 0.f; if (params[3] == 1.f && *info < *n + j) { *info = *n + j; } } else if (err_bnds_comp__[j + (err_bnds_comp_dim1 << 1)] < err_lbnd__) { err_bnds_comp__[j + (err_bnds_comp_dim1 << 1)] = err_lbnd__; err_bnds_comp__[j + err_bnds_comp_dim1] = 1.f; } /* Save the condition number. */ if (*n_err_bnds__ >= 3) { err_bnds_comp__[j + err_bnds_comp_dim1 * 3] = rcond_tmp__; } } } AOCL_DTL_TRACE_EXIT(AOCL_DTL_LEVEL_TRACE_5); return 0; /* End of CGBRFSX */ } /* cgbrfsx_ */ #endif
the_stack_data/779981.c
// INFO: task hung in flush_to_ldisc // https://syzkaller.appspot.com/bug?id=6e1263e9241b27ea47f67b92a781a9a6b822a77a // status:open // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <arpa/inet.h> #include <dirent.h> #include <endian.h> #include <errno.h> #include <fcntl.h> #include <net/if.h> #include <netinet/in.h> #include <signal.h> #include <stdarg.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/prctl.h> #include <sys/socket.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/types.h> #include <sys/wait.h> #include <time.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> static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } 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) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } 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); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); int i; for (i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter; for (iter = 0;; iter++) { int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5 * 1000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; res = syz_open_dev(0xc, 4, 1); if (res != -1) r[0] = res; *(uint8_t*)0x20000000 = 2; *(uint16_t*)0x20000001 = 0; *(uint16_t*)0x20000003 = 2; *(uint16_t*)0x20000005 = 0; *(uint16_t*)0x20000007 = 0; *(uint16_t*)0x20000009 = 0; syscall(__NR_ioctl, r[0], 0x541cul, 0x20000000ul); *(uint8_t*)0x20000080 = 3; syscall(__NR_ioctl, r[0], 0x541cul, 0x20000080ul); } int main(void) { syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x32ul, -1, 0); loop(); return 0; }
the_stack_data/1060719.c
#include <signal.h> #include <stdlib.h> #include <sys/stat.h> #include <stdio.h> #include <sys/types.h> #include <unistd.h> int main() { printf("pid = %d\n", getpid()); //alarm(9); while(1) { //printf("10 seconds later,you will expose\n"); //sleep(10); //kill(getpid(), 9); //raise(9); } printf("hello world\n"); return 0; }
the_stack_data/212643367.c
/* ==================================================================== * Copyright (c) 1995-1999 The Apache Group. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the Apache Group * for use in the Apache HTTP server project (http://www.apache.org/)." * * 4. The names "Apache Server" and "Apache Group" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * [email protected]. * * 5. Products derived from this software may not be called "Apache" * nor may "Apache" appear in their names without prior written * permission of the Apache Group. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the Apache Group * for use in the Apache HTTP server project (http://www.apache.org/)." * * THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY * EXPRESSED 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 APACHE GROUP 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. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Group and was originally based * on public domain software written at the National Center for * Supercomputing Applications, University of Illinois, Urbana-Champaign. * For more information on the Apache Group and the Apache HTTP server * project, please see <http://www.apache.org/>. * */ /* base64 encoder/decoder. Derived from the original Apache file ap_base64.c */ #include <string.h> /* aaaack but it's fast and const should make it shared text page. */ static const unsigned char pr2six[256] = { /* ASCII table */ 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 62, 64, 64, 64, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 64, 64, 64, 64, 64, 64, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 64, 64, 64, 64, 64, 64, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64 }; int base64decode_len(const char *in, int inlen) { int nbytesdecoded; register const unsigned char *bufin; register int nprbytes; bufin = (const unsigned char *) in; while ((pr2six[*(bufin++)] <= 63) && inlen) inlen--; nprbytes = (bufin - (const unsigned char *) in) - 1; nbytesdecoded = ((nprbytes + 3) / 4) * 3; return nbytesdecoded + 1; } int base64decode(const char *in, int inlen, unsigned char *out, int *outlen) { int nbytesdecoded; register const unsigned char *bufin; register unsigned char *bufout; register int nprbytes; bufin = (const unsigned char *) in; while ((pr2six[*(bufin++)] <= 63) && inlen) inlen--; nprbytes = (bufin - (const unsigned char *) in) - 1; nbytesdecoded = ((nprbytes + 3) / 4) * 3; if (*outlen < (nbytesdecoded + 1)) /* +1 is for NULL termination byte */ return -1; bufout = (unsigned char *) out; bufin = (const unsigned char *) in; while (nprbytes > 4) { *(bufout++) = (unsigned char) (pr2six[*bufin] << 2 | pr2six[bufin[1]] >> 4); *(bufout++) = (unsigned char) (pr2six[bufin[1]] << 4 | pr2six[bufin[2]] >> 2); *(bufout++) = (unsigned char) (pr2six[bufin[2]] << 6 | pr2six[bufin[3]]); bufin += 4; nprbytes -= 4; } /* Note: (nprbytes == 1) would be an error, so just ingore that case */ if (nprbytes > 1) { *(bufout++) = (unsigned char) (pr2six[*bufin] << 2 | pr2six[bufin[1]] >> 4); } if (nprbytes > 2) { *(bufout++) = (unsigned char) (pr2six[bufin[1]] << 4 | pr2six[bufin[2]] >> 2); } if (nprbytes > 3) { *(bufout++) = (unsigned char) (pr2six[bufin[2]] << 6 | pr2six[bufin[3]]); } *(bufout++) = '\0'; nbytesdecoded -= (4 - nprbytes) & 3; *outlen = nbytesdecoded; return 0; } static const char basis_64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; int base64encode_len(int len) { return ((len + 2) / 3 * 4) + 1; } int base64encode(const unsigned char *in, int inlen, char *out, int *outlen) { int i; char *p; if (*outlen < base64encode_len(inlen)) return -1; p = out; for (i = 0; i < inlen - 2; i += 3) { *p++ = basis_64[(in[i] >> 2) & 0x3F]; *p++ = basis_64[((in[i] & 0x3) << 4) | ((int) (in[i + 1] & 0xF0) >> 4)]; *p++ = basis_64[((in[i + 1] & 0xF) << 2) | ((int) (in[i + 2] & 0xC0) >> 6)]; *p++ = basis_64[in[i + 2] & 0x3F]; } if (i < inlen) { *p++ = basis_64[(in[i] >> 2) & 0x3F]; if (i == (inlen - 1)) { *p++ = basis_64[((in[i] & 0x3) << 4)]; *p++ = '='; } else { *p++ = basis_64[((in[i] & 0x3) << 4) | ((int) (in[i + 1] & 0xF0) >> 4)]; *p++ = basis_64[((in[i + 1] & 0xF) << 2)]; } *p++ = '='; } *p++ = '\0'; *outlen = p - out; return 0; }
the_stack_data/170452865.c
/* Generated by CIL v. 1.7.0 */ /* print_CIL_Input is false */ struct _IO_FILE; struct timeval; extern void signal(int sig , void *func ) ; extern float strtof(char const *str , char const *endptr ) ; typedef struct _IO_FILE FILE; extern int atoi(char const *s ) ; extern double strtod(char const *str , char const *endptr ) ; extern int fclose(void *stream ) ; extern void *fopen(char const *filename , char const *mode ) ; extern void abort() ; extern void exit(int status ) ; extern int raise(int sig ) ; extern int fprintf(struct _IO_FILE *stream , char const *format , ...) ; extern int strcmp(char const *a , char const *b ) ; extern int rand() ; extern unsigned long strtoul(char const *str , char const *endptr , int base ) ; void RandomFunc(unsigned char input[1] , unsigned char output[1] ) ; extern int strncmp(char const *s1 , char const *s2 , unsigned long maxlen ) ; extern int gettimeofday(struct timeval *tv , void *tz , ...) ; extern int printf(char const *format , ...) ; int main(int argc , char *argv[] ) ; void megaInit(void) ; extern unsigned long strlen(char const *s ) ; extern long strtol(char const *str , char const *endptr , int base ) ; extern unsigned long strnlen(char const *s , unsigned long maxlen ) ; extern void *memcpy(void *s1 , void const *s2 , unsigned long size ) ; struct timeval { long tv_sec ; long tv_usec ; }; extern void *malloc(unsigned long size ) ; extern int scanf(char const *format , ...) ; int main(int argc , char *argv[] ) { unsigned char input[1] ; unsigned char output[1] ; int randomFuns_i5 ; unsigned char randomFuns_value6 ; int randomFuns_main_i7 ; { megaInit(); if (argc != 2) { printf("Call this program with %i arguments\n", 1); exit(-1); } else { } randomFuns_i5 = 0; while (randomFuns_i5 < 1) { randomFuns_value6 = (unsigned char )strtoul(argv[randomFuns_i5 + 1], 0, 10); input[randomFuns_i5] = randomFuns_value6; randomFuns_i5 ++; } RandomFunc(input, output); if (output[0] == 0) { printf("You win!\n"); } else { } randomFuns_main_i7 = 0; while (randomFuns_main_i7 < 1) { printf("%u\n", output[randomFuns_main_i7]); randomFuns_main_i7 ++; } } } void RandomFunc(unsigned char input[1] , unsigned char output[1] ) { unsigned char state[1] ; unsigned char local2 ; unsigned char local1 ; { state[0UL] = input[0UL] ^ (unsigned char)219; local1 = 0UL; while (local1 < (unsigned char)0) { local2 = 0UL; while (local2 < (unsigned char)0) { state[local1] = state[0UL] << (((state[0UL] >> (unsigned char)2) & (unsigned char)7) | 1UL); local2 += 2UL; } local1 += 2UL; } output[0UL] = (state[0UL] << (unsigned char)5) << (unsigned char)7; } } void megaInit(void) { { } }
the_stack_data/40762682.c
/* * OS X compilers seem to have trouble resolving MAKE_CLONE()es, * so just make explicit wrapper functions. */ #include <sha2.h> /* MAKE_CLONE(SHA224Transform, SHA256Transform); */ void SHA224Transform(u_int32_t state[8], const u_int8_t data[SHA256_BLOCK_LENGTH]) { SHA256Transform(state, data); } /* MAKE_CLONE(SHA224Update, SHA256Update); */ void SHA224Update(SHA2_CTX *context, const u_int8_t *data, size_t len) { SHA256Update(context, data, len); } /* MAKE_CLONE(SHA224Pad, SHA256Pad); */ void SHA224Pad(SHA2_CTX *context) { SHA256Pad(context); } /* MAKE_CLONE(SHA384Transform, SHA512Transform); */ void SHA384Transform(u_int64_t state[8], const u_int8_t data[SHA512_BLOCK_LENGTH]) { SHA512Transform(state, data); } /* MAKE_CLONE(SHA384Update, SHA512Update); */ void SHA384Update(SHA2_CTX *context, const u_int8_t *data, size_t len) { SHA512Update(context, data, len); } /* MAKE_CLONE(SHA384Pad, SHA512Pad); */ void SHA384Pad(SHA2_CTX *context) { SHA512Pad(context); } /* MAKE_CLONE(SHA512_256Transform, SHA512Transform); */ void SHA512_256Transform(u_int64_t state[8], const u_int8_t data[SHA512_BLOCK_LENGTH]) { SHA512Transform(state, data); } /* MAKE_CLONE(SHA512_256Update, SHA512Update); */ void SHA512_256Update(SHA2_CTX *context, const u_int8_t *data, size_t len) { SHA512Update(context, data, len); } /* MAKE_CLONE(SHA512_256Pad, SHA512Pad); */ void SHA512_256Pad(SHA2_CTX *context) { SHA512Pad(context); }
the_stack_data/23574240.c
char D4[] = { 0, 2, 5, 8, 11, 14, 17, 20, 23, 26, 29, 32, 34, 37, 40, 43, 45, 48, 51, 54, 56, 59, 61, 64, 67, 69, 71, 74, 76, 79, 81, 83, 85, 87, 90, 92, 94, 96, 97, 99, 101, 103, 105, 106, 108, 109, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 124, 125, 125, 126, 126, 126, 127, 127, 127, 127, 127, 127, 127, 126, 126, 126, 125, 125, 124, 124, 123, 122, 121, 121, 120, 119, 117, 116, 115, 114, 112, 111, 110, 108, 107, 105, 103, 102, 100, 98, 96, 94, 92, 90, 88, 86, 84, 81, 79, 77, 74, 72, 70, 67, 65, 62, 59, 57, 54, 51, 49, 46, 43, 41, 38, 35, 32, 29, 26, 24, 21, 18, 15, 12, 9, 6, 3, 0, -3, -6, -9, -12, -15, -17, -20, -23, -26, -29, -32, -35, -38, -40, -43, -46, -49, -51, -54, -57, -59, -62, -64, -67, -69, -72, -74, -77, -79, -81, -84, -86, -88, -90, -92, -94, -96, -98, -100, -102, -104, -105, -107, -108, -110, -111, -113, -114, -116, -117, -118, -119, -120, -121, -122, -123, -124, -124, -125, -126, -126, -127, -127, -127, -128, -128, -128, -128, -128, -128, -128, -128, -127, -127, -126, -126, -125, -125, -124, -123, -123, -122, -121, -120, -119, -118, -116, -115, -114, -112, -111, -109, -108, -106, -105, -103, -101, -99, -97, -95, -93, -91, -89, -87, -85, -83, -81, -78, -76, -73, -71, -69, -66, -64, -61, -58, -56, -53, -50, -48, -45, -42, -39, -37, -34, -31, -28, -25, -22, -19, -16, -13, -11, -8, -5, }; int D4length = sizeof(D4); char E4[] = { 0, 3, 6, 9, 13, 16, 19, 22, 26, 29, 32, 35, 38, 42, 45, 48, 51, 54, 57, 60, 63, 65, 68, 71, 74, 76, 79, 82, 84, 86, 89, 91, 93, 96, 98, 100, 102, 104, 106, 107, 109, 111, 112, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 124, 125, 126, 126, 126, 127, 127, 127, 127, 127, 127, 127, 126, 126, 125, 125, 124, 123, 122, 122, 121, 119, 118, 117, 116, 114, 113, 111, 110, 108, 106, 104, 103, 101, 99, 96, 94, 92, 90, 87, 85, 82, 80, 77, 75, 72, 69, 66, 64, 61, 58, 55, 52, 49, 46, 43, 40, 36, 33, 30, 27, 24, 20, 17, 14, 11, 7, 4, 1, -3, -6, -9, -13, -16, -19, -22, -26, -29, -32, -35, -38, -42, -45, -48, -51, -54, -57, -60, -63, -65, -68, -71, -74, -76, -79, -82, -84, -87, -89, -91, -94, -96, -98, -100, -102, -104, -106, -108, -110, -111, -113, -114, -116, -117, -118, -120, -121, -122, -123, -124, -125, -125, -126, -126, -127, -127, -128, -128, -128, -128, -128, -128, -128, -127, -127, -126, -126, -125, -125, -124, -123, -122, -121, -120, -119, -117, -116, -114, -113, -111, -110, -108, -106, -104, -102, -100, -98, -96, -94, -91, -89, -87, -84, -82, -79, -77, -74, -71, -68, -66, -63, -60, -57, -54, -51, -48, -45, -42, -39, -35, -32, -29, -26, -22, -19, -16, -13, -9, -6, -3, }; int E4length = sizeof(E4); char G4[] = { 0, 3, 7, 11, 15, 19, 23, 27, 31, 34, 38, 42, 46, 49, 53, 56, 60, 63, 67, 70, 73, 76, 79, 82, 85, 88, 91, 94, 96, 99, 101, 104, 106, 108, 110, 112, 114, 115, 117, 118, 120, 121, 122, 123, 124, 125, 125, 126, 126, 127, 127, 127, 127, 127, 126, 126, 126, 125, 124, 123, 122, 121, 120, 118, 117, 115, 114, 112, 110, 108, 106, 104, 101, 99, 96, 94, 91, 88, 85, 83, 80, 76, 73, 70, 67, 63, 60, 56, 53, 49, 46, 42, 38, 35, 31, 27, 23, 19, 15, 11, 8, 4, 0, -4, -8, -12, -16, -20, -24, -28, -31, -35, -39, -43, -46, -50, -54, -57, -61, -64, -67, -71, -74, -77, -80, -83, -86, -89, -92, -95, -97, -100, -102, -104, -107, -109, -111, -113, -115, -116, -118, -119, -121, -122, -123, -124, -125, -126, -126, -127, -127, -128, -128, -128, -128, -128, -127, -127, -127, -126, -125, -124, -123, -122, -121, -119, -118, -116, -115, -113, -111, -109, -107, -105, -102, -100, -98, -95, -92, -89, -87, -84, -81, -78, -74, -71, -68, -65, -61, -58, -54, -50, -47, -43, -39, -36, -32, -28, -24, -20, -16, -13, -9, -5, }; int G4length = sizeof(G4); char A4[] = { 0, 4, 8, 13, 17, 21, 26, 30, 34, 39, 43, 47, 51, 55, 59, 63, 66, 70, 74, 77, 81, 84, 87, 91, 94, 96, 99, 102, 105, 107, 109, 111, 113, 115, 117, 119, 120, 122, 123, 124, 125, 125, 126, 127, 127, 127, 127, 127, 127, 126, 125, 125, 124, 123, 121, 120, 119, 117, 115, 113, 111, 109, 107, 104, 102, 99, 96, 93, 90, 87, 84, 80, 77, 73, 70, 66, 62, 58, 55, 51, 46, 42, 38, 34, 30, 25, 21, 17, 12, 8, 4, -1, -5, -10, -14, -18, -23, -27, -31, -36, -40, -44, -48, -52, -56, -60, -64, -68, -72, -75, -79, -82, -85, -89, -92, -95, -98, -101, -103, -106, -108, -110, -113, -115, -117, -118, -120, -121, -123, -124, -125, -126, -127, -127, -128, -128, -128, -128, -128, -127, -127, -126, -126, -125, -124, -122, -121, -119, -118, -116, -114, -112, -110, -108, -105, -102, -100, -97, -94, -91, -88, -85, -81, -78, -74, -71, -67, -63, -59, -55, -51, -47, -43, -39, -35, -30, -26, -22, -17, -13, -9, -4, }; int A4length = sizeof(A4); char B4[] = { 0, 4, 9, 14, 19, 24, 29, 34, 38, 43, 48, 52, 57, 61, 65, 70, 74, 78, 81, 85, 89, 92, 96, 99, 102, 105, 107, 110, 112, 115, 117, 118, 120, 122, 123, 124, 125, 126, 126, 127, 127, 127, 127, 126, 126, 125, 124, 123, 122, 120, 118, 117, 115, 112, 110, 107, 105, 102, 99, 96, 92, 89, 85, 81, 78, 74, 70, 65, 61, 57, 52, 48, 43, 38, 34, 29, 24, 19, 14, 9, 4, -1, -5, -10, -15, -20, -25, -30, -35, -39, -44, -49, -53, -58, -62, -66, -71, -75, -79, -82, -86, -90, -93, -97, -100, -103, -106, -108, -111, -113, -116, -118, -119, -121, -123, -124, -125, -126, -127, -127, -128, -128, -128, -128, -127, -127, -126, -125, -124, -123, -121, -119, -118, -115, -113, -111, -108, -106, -103, -100, -97, -93, -90, -86, -82, -79, -75, -70, -66, -62, -58, -53, -49, -44, -39, -35, -30, -25, -20, -15, -10, -5, }; int B4length = sizeof(B4); char C5[] = { 0, 5, 10, 15, 20, 26, 31, 36, 41, 46, 50, 55, 60, 64, 69, 73, 77, 82, 85, 89, 93, 96, 100, 103, 106, 109, 111, 114, 116, 118, 120, 121, 123, 124, 125, 126, 126, 127, 127, 127, 127, 126, 125, 125, 123, 122, 121, 119, 117, 115, 112, 110, 107, 104, 101, 98, 94, 91, 87, 83, 79, 75, 71, 66, 62, 57, 53, 48, 43, 38, 33, 28, 23, 17, 12, 7, 2, -3, -9, -14, -19, -24, -29, -34, -39, -44, -49, -54, -59, -63, -68, -72, -77, -81, -85, -89, -92, -96, -99, -102, -106, -108, -111, -114, -116, -118, -120, -122, -123, -125, -126, -127, -127, -128, -128, -128, -128, -127, -127, -126, -125, -124, -122, -121, -119, -117, -114, -112, -109, -107, -104, -100, -97, -93, -90, -86, -82, -78, -74, -69, -65, -60, -56, -51, -46, -41, -36, -31, -26, -21, -16, -10, -5, }; int C5length = sizeof(C5); char D5[] = { 0, 5, 11, 17, 23, 29, 34, 40, 45, 51, 56, 61, 67, 71, 76, 81, 85, 90, 94, 97, 101, 105, 108, 111, 114, 116, 118, 120, 122, 124, 125, 126, 126, 127, 127, 127, 126, 126, 125, 124, 122, 121, 119, 116, 114, 111, 108, 105, 102, 98, 94, 90, 86, 81, 77, 72, 67, 62, 57, 51, 46, 41, 35, 29, 23, 18, 12, 6, 0, -6, -12, -17, -23, -29, -35, -40, -46, -51, -57, -62, -67, -72, -77, -81, -86, -90, -94, -98, -102, -105, -108, -111, -114, -117, -119, -121, -123, -124, -126, -127, -127, -128, -128, -128, -128, -127, -126, -125, -123, -122, -120, -118, -115, -112, -109, -106, -103, -99, -95, -91, -87, -83, -78, -73, -69, -64, -58, -53, -48, -42, -37, -31, -25, -19, -13, -8, }; int D5length = sizeof(D5); char E5[] = { 0, 6, 13, 19, 26, 32, 38, 45, 51, 57, 63, 68, 74, 79, 84, 89, 93, 98, 102, 106, 109, 112, 115, 118, 120, 122, 124, 125, 126, 127, 127, 127, 127, 126, 125, 123, 122, 119, 117, 114, 111, 108, 104, 101, 96, 92, 87, 82, 77, 72, 66, 61, 55, 49, 43, 36, 30, 24, 17, 11, 4, -3, -9, -16, -22, -29, -35, -42, -48, -54, -60, -65, -71, -76, -82, -87, -91, -96, -100, -104, -108, -111, -114, -117, -120, -122, -124, -125, -126, -127, -128, -128, -128, -127, -126, -125, -124, -122, -120, -117, -114, -111, -108, -104, -100, -96, -91, -87, -82, -77, -71, -66, -60, -54, -48, -42, -35, -29, -23, -16, -9, }; int E5length = sizeof(E5);
the_stack_data/178266523.c
/****************************************************************************/ /* memchr */ /* */ /* Copyright (c) 1993 Texas Instruments Incorporated */ /* http://www.ti.com/ */ /* */ /* 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 Texas Instruments Incorporated nor the names */ /* of its contributors may be used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */ /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */ /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */ /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */ /* 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. */ /* */ /****************************************************************************/ #undef _INLINE #define _STRING_IMPLEMENTATION #define _MEMCHR #include <string.h>
the_stack_data/606172.c
/*Exercise 4 - Functions Implement the three functions minimum(), maximum() and multiply() below the main() function. Do not change the code given in the main() function when you are implementing your solution.*/ #include <stdio.h> //function declaration int minimum(int n1,int n2); int maximum(int n1,int n2); int multiply(int n1,int n2); int main() { int no1, no2; printf("Enter a value for no 1 : "); scanf("%d", &no1); printf("Enter a value for no 2 : "); scanf("%d", &no2); printf("%d ", minimum(no1, no2)); printf("%d ", maximum(no1, no2)); printf("%d ", multiply(no1, no2)); return 0; } //function implementation int minimum(int n1,int n2) { if(n1<n2){ return n1; } else{ return n2; } } int maximum(int n1,int n2) { if(n1>n2){ return n1; } else{ return n2; } } int multiply(int n1,int n2) { return n1 * n2 ; }
the_stack_data/109679.c
#include <stdio.h> #include <stdlib.h> static int calculateMinimumHP(int** dungeon, int dungeonRowSize, int dungeonColSize) { int i, j; int **dp = malloc(dungeonRowSize * sizeof(int *)); for (i = 0; i < dungeonRowSize; i++) { dp[i] = malloc(dungeonColSize * sizeof(int)); } int hp = 1 - dungeon[dungeonRowSize - 1][dungeonColSize - 1]; dp[dungeonRowSize - 1][dungeonColSize - 1] = hp >= 1 ? hp : 1; for (i = dungeonRowSize - 2; i >= 0; i--) { hp = dp[i + 1][dungeonColSize - 1] - dungeon[i][dungeonColSize - 1]; dp[i][dungeonColSize - 1] = hp >= 1 ? hp : 1; } for (i = dungeonColSize - 2; i >= 0; i--) { hp = dp[dungeonRowSize - 1][i + 1] - dungeon[dungeonRowSize - 1][i]; dp[dungeonRowSize - 1][i] = hp >= 1 ? hp : 1; } for (i = dungeonRowSize - 2; i >= 0; i--) { for (j = dungeonColSize - 2; j >= 0; j--) { int hp_r = dp[i][j + 1] - dungeon[i][j]; int hp_d = dp[i + 1][j] - dungeon[i][j]; hp_r = hp_r >= 1 ? hp_r : 1; hp_d = hp_d >= 1 ? hp_d : 1; dp[i][j] = hp_r < hp_d ? hp_r : hp_d; } } return dp[0][0]; } int main(void) { int row_size = 3, col_size = 3; int i, j, **dungeon = malloc(row_size * sizeof(int *)); for (i = 0; i < row_size; i++) { dungeon[i] = malloc(col_size * sizeof(int)); } #if 1 dungeon[0][0] = 1; dungeon[0][1] = -3; dungeon[0][2] = 3; dungeon[1][0] = 0; dungeon[1][1] = -2; dungeon[1][2] = 0; dungeon[2][0] = -3; dungeon[2][1] = -3; dungeon[2][2] = -3; #else dungeon[0][0] = 3; dungeon[0][1] = -20; dungeon[0][2] = 30; dungeon[1][0] = -3; dungeon[1][1] = 4; dungeon[1][2] = 0; #endif printf("dungeon:\n"); for (i = 0; i < row_size; i++) { for (j = 0; j < col_size; j++) { printf("%d ", dungeon[i][j]); } printf("\n"); } printf("%d\n", calculateMinimumHP(dungeon, row_size, col_size)); return 0; }
the_stack_data/31387674.c
long adda(dqln, y1) long dqln, y1; { long dql; dql = (dqln + (y1 >> 2)) & 4095; return(dql); }
the_stack_data/184517503.c
/**************************************************************************** * * Copyright 2016 Samsung Electronics All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific * language governing permissions and limitations under the License. * ****************************************************************************/ /************************************************************************ * libc/math/lib_coshl.c * * This file is a part of NuttX: * * Copyright (C) 2012 Gregory Nutt. All rights reserved. * Ported by: Darcy Gong * * It derives from the Rhombs OS math library by Nick Johnson which has * a compatibile, MIT-style license: * * Copyright (C) 2009-2011 Nick Johnson <nickbjohnson4224 at gmail.com> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * ************************************************************************/ /************************************************************************ * Included Files ************************************************************************/ #include <math.h> /************************************************************************ * Public Functions ************************************************************************/ #ifdef CONFIG_HAVE_LONG_DOUBLE long double coshl(long double x) { x = expl(x); return ((x + (1.0 / x)) / 2.0); } #endif