From 91f3b192cd5858064f52593cc833488b824a637f Mon Sep 17 00:00:00 2001 From: eddyem Date: Thu, 23 Mar 2017 10:35:39 +0300 Subject: [PATCH] some fixes --- Makefile | 17 +- Readme.md | 6 +- cmdlnopts.c | 7 +- imfunctions.c | 16 +- imfunctions.h | 2 +- main.c | 17 +- sbig340.c.tags | 2341 +++++++++++++++++++++++++++++++++++++++--------- socket.c | 3 +- term.c | 8 + 9 files changed, 1971 insertions(+), 446 deletions(-) diff --git a/Makefile b/Makefile index aff98bd..9d5491b 100644 --- a/Makefile +++ b/Makefile @@ -11,24 +11,21 @@ OBJS := $(SRCS:%.c=%.o) CC = gcc CPP = g++ -all : sbig340 daemon client +all : sbig340_standalone sbig340_daemon sbig340_client debayer.o : debayer.cpp @echo -e "\t\tG++ debayer" $(CPP) $(CFLAGS) $(DEFINES) debayer.cpp -c -sbig340 : $(SRCS) debayer.o - @echo -e "\t\tBuild sbig340" +sbig340_standalone : $(SRCS) debayer.o + @echo -e "\t\tBuild standalone" $(CC) $(CFLAGS) -std=gnu99 $(DEFINES) $(LDFLAGS) $(LDIMG) $(SRCS) debayer.o -o $@ -# $(CC) -c $(CFLAGS) -std=gnu99 $(DEFINES) $(SRCS) -# $(CPP) $(LDFLAGS) $(OBJS) debayer.o -o $@ - -daemon : $(SRCS) +sbig340_daemon : $(SRCS) @echo -e "\t\tBuild daemon" $(CC) -DDAEMON $(CFLAGS) -std=gnu99 $(DEFINES) $(LDFLAGS) $(SRCS) -o $@ -client : $(SRCS) debayer.o +sbig340_client : $(SRCS) debayer.o @echo -e "\t\tBuild client" $(CC) -DCLIENT $(CFLAGS) -std=gnu99 $(DEFINES) $(LDFLAGS) $(LDIMG) $(SRCS) debayer.o -o $@ @@ -38,9 +35,9 @@ clean: xclean: clean @echo -e "\t\tRM binaries" - @rm -f sbig340 daemon client + @rm -f sbig340_standalone sbig340_daemon sbig340_client gentags: - CFLAGS="$(CFLAGS) $(DEFINES)" geany -g $(PROGRAM).c.tags *[hc] *.cpp 2>/dev/null + CFLAGS="$(CFLAGS) $(DEFINES)" geany -g sbig340.c.tags *.[hc] *.cpp 2>/dev/null .PHONY: gentags clean xclean diff --git a/Readme.md b/Readme.md index ae67abd..720aeb6 100644 --- a/Readme.md +++ b/Readme.md @@ -3,7 +3,7 @@ SBIG all-sky 340c driving utilite Run `make` to compile three binary files: -* `sbig340` --- standalone utility (no daemon/client) -* `daemon` --- pure grabbing daemon (driven by socket) -* `client` --- pure client (take images from daemon and save locally) +* `sbig340_standalone` --- standalone utility (no daemon/client) +* `sbig340_daemon` --- pure grabbing daemon (driven by socket) +* `sbig340_client` --- pure client (take images from daemon and save locally) diff --git a/cmdlnopts.c b/cmdlnopts.c index 2956a58..1656601 100644 --- a/cmdlnopts.c +++ b/cmdlnopts.c @@ -52,7 +52,7 @@ glob_pars const Gdefault = { .imtype = "l", .imformat = NULL, .imstoretype = NULL, - .outpfname = "output.tiff", + .outpfname = "output.fits", .hostname = NULL, .port = "4444", .once = 0, @@ -77,7 +77,7 @@ myoption cmdlnopts[] = { // not daemon options #ifndef DAEMON {"storetype",NEED_ARG, NULL, 'S', arg_string, APTR(&G.imstoretype),_("'overwrite'/'rewrite' to rewrite existing image, 'enumerate'/'numerate' to use given filename as base for series")}, - {"output", NEED_ARG, NULL, 'o', arg_string, APTR(&G.outpfname), _("output file name (default: output.tiff)")}, + {"output", NEED_ARG, NULL, 'o', arg_string, APTR(&G.outpfname), _("output file name (default: output.fits)")}, {"imformat",NEED_ARG, NULL, 'f', arg_string, APTR(&G.imformat), _("image format: FITS (f), TIFF (t), raw dump with histogram storage (r,d), may be OR'ed; default: FITS or based on output image name")}, #endif // not client options @@ -101,6 +101,9 @@ myoption cmdlnopts[] = { {"timestamp",NO_ARGS, NULL, 't', arg_int, APTR(&G.timestamp), _("add timestamp to filename")}, #endif {"port", NEED_ARG, NULL, 'p', arg_string, APTR(&G.port), _("port to connect (default: 4444)")}, +#endif +// only daemon options +#ifdef DAEMON {"dark-interval",NEED_ARG,NULL, 'D', arg_double, APTR(&G.dark_interval),_("time interval (in seconds) between dark images taken (default: 1800)")}, {"min-dark-exp",NEED_ARG,NULL, 'E', arg_double, APTR(&G.min_dark_exp),_("minimal exposition (in seconds) at which darks would be taken (default: 30)")}, #endif diff --git a/imfunctions.c b/imfunctions.c index c5f7be7..8858186 100644 --- a/imfunctions.c +++ b/imfunctions.c @@ -71,6 +71,7 @@ char *make_filename(imstorage *img, const char *suff){ stm->tm_hour, stm->tm_min, stm->tm_sec); outfile = fnbuf; } + DBG("name: %s", outfile); if(st == STORE_NORMAL || st == STORE_REWRITE){ snprintf(buff, FILENAME_MAX, "%s.%s", outfile, suff); if(stat(buff, &filestat)){ @@ -106,8 +107,9 @@ char *make_filename(imstorage *img, const char *suff){ * @param store (i) - "overwrite" (or "rewrite"), "normal" (or NULL), "enumerate" (or "numerate") * @param format (i) - image format (ft[rd]) */ -imstorage *chk_storeimg(char *filename, char* store, char *format){ +imstorage *chk_storeimg(imstorage *ist, char* store, char *format){ FNAME(); + if(!ist || !ist->imname) return NULL; store_type st = STORE_NORMAL; image_format fmt = FORMAT_FITS; if(store){ // rewrite or enumerate @@ -119,9 +121,7 @@ imstorage *chk_storeimg(char *filename, char* store, char *format){ return NULL; } } - char *nm = strdup(filename); - if(!nm) ERRX("strdup"); - char *pt = strrchr(nm, '.'); + char *pt = strrchr(ist->imname, '.'); DBG("input format: %s", format); image_format fbysuff = FORMAT_NONE; // check if name's suffix is filetype @@ -142,7 +142,6 @@ imstorage *chk_storeimg(char *filename, char* store, char *format){ strchr(format, 'd') || strchr(format, 'D')) fbysuff |= FORMAT_RAW; if(fbysuff == FORMAT_NONE){ WARNX(_("Wrong format string: %s"), format); - free(nm); return NULL; } fmt = fbysuff; @@ -155,17 +154,12 @@ imstorage *chk_storeimg(char *filename, char* store, char *format){ #define FMTSZ (3) image_format formats[FMTSZ] = {FORMAT_FITS, FORMAT_TIFF, FORMAT_RAW}; const char *suffixes[FMTSZ] = {SUFFIX_FITS, SUFFIX_TIFF, SUFFIX_RAW}; - imstorage *ist = MALLOC(imstorage, 1); ist->st = st; ist->imformat = fmt; - ist->imname = strdup(nm); for(size_t i = 0; i < FMTSZ; ++i){ if(!(formats[i] & fmt)) continue; if(!make_filename(ist, suffixes[i])){ WARNX(_("Can't create output file (is it exists?)")); - free(nm); - free(ist->imname); - free(ist); return NULL; } } @@ -424,7 +418,7 @@ int save_histo(FILE *f, imstorage *img){ if(mul > mulmax) mul = mulmax; double E = img->exptime * mul; if(E < 5e-5) E = 5e-5; // too short exposition - else if(E > 300.) E = 300.; // no need to do expositions larger than 5 minutes + else if(E > 90.) E = 90.; // no need to do expositions larger than 1.5 minutes green("Recommended exposition time: %g seconds\n", E); exp_calculated = E; return 0; diff --git a/imfunctions.h b/imfunctions.h index 2d3d855..0c164b2 100644 --- a/imfunctions.h +++ b/imfunctions.h @@ -79,7 +79,7 @@ extern double exp_calculated; #define SUFFIX_JPEG "jpg" char *make_filename(imstorage *img, const char *suff); -imstorage *chk_storeimg(char *filename, char* store, char *format); +imstorage *chk_storeimg(imstorage *img, char* store, char *format); int store_image(imstorage *filename); void print_stat(imstorage *img); #ifndef CLIENT diff --git a/main.c b/main.c index a585445..bf58208 100644 --- a/main.c +++ b/main.c @@ -22,6 +22,7 @@ #include #include #include +#include #ifndef EBUG #include #endif @@ -81,11 +82,15 @@ int main(int argc, char **argv){ G->binning = 0xff; // take subframe } #endif // !CLIENT + img = MALLOC(imstorage, 1); +#ifdef CLIENT + img->once = G->once; + img->timestamp = G->timestamp; +#endif #ifndef DAEMON - img = chk_storeimg(G->outpfname, G->imstoretype, G->imformat); - if(!img) return 1; -#else - img = MALLOC(imstorage, 1); // just allocate empty: all we need in daemon is exposition & binning + img->imname = G->outpfname; + img->exposetime = time(NULL); + if(!chk_storeimg(img, G->imstoretype, G->imformat)) return 1; #endif #ifndef CLIENT if(img){ @@ -115,10 +120,6 @@ int main(int argc, char **argv){ run_terminal(); // non-echo terminal mode } #endif // !defined DAEMON && !defined CLIENT -#ifdef CLIENT - img->once = G->once; - img->timestamp = G->timestamp; -#endif #if defined CLIENT || defined DAEMON #ifdef DAEMON set_darks(G->min_dark_exp, G->dark_interval); diff --git a/sbig340.c.tags b/sbig340.c.tags index c84aa66..d874110 100644 --- a/sbig340.c.tags +++ b/sbig340.c.tags @@ -117,6 +117,10 @@ BC_BASE_MAX BC_DIM_MAXÌ65536Ö0 BC_SCALE_MAXÌ65536Ö0 BC_STRING_MAXÌ65536Ö0 +BGD_DECLAREÌ131072Í(rt)Ö0 +BGD_EXPORT_DATA_IMPLÌ65536Ö0 +BGD_EXPORT_DATA_PROTÌ65536Ö0 +BGD_STDCALLÌ65536Ö0 BIG_ENDIANÌ65536Ö0 BINARY_TBLÌ65536Ö0 BRKINTÌ65536Ö0 @@ -160,6 +164,9 @@ CHAR_BIT CHAR_MAXÌ65536Ö0 CHAR_MINÌ65536Ö0 CHECK_JPEG_YCBCR_SUBSAMPLINGÌ65536Ö0 +CHECK_ORDER_BITÌ131072Í(expected_stage)Ö0 +CHECK_ORDER_HIGHÌ131072Í(expected_stage)Ö0 +CHECK_ORDER_LOWÌ131072Í(expected_stage)Ö0 CIBAUDÌ65536Ö0 CIELABTORGB_TABLE_RANGEÌ65536Ö0 CINTRÌ65536Ö0 @@ -187,6 +194,29 @@ CLOCK_REALTIME_ALARM CLOCK_REALTIME_COARSEÌ65536Ö0 CLOCK_TAIÌ65536Ö0 CLOCK_THREAD_CPUTIME_IDÌ65536Ö0 +CLONE_CHILD_CLEARTIDÌ65536Ö0 +CLONE_CHILD_SETTIDÌ65536Ö0 +CLONE_DETACHEDÌ65536Ö0 +CLONE_FILESÌ65536Ö0 +CLONE_FSÌ65536Ö0 +CLONE_IOÌ65536Ö0 +CLONE_NEWCGROUPÌ65536Ö0 +CLONE_NEWIPCÌ65536Ö0 +CLONE_NEWNETÌ65536Ö0 +CLONE_NEWNSÌ65536Ö0 +CLONE_NEWPIDÌ65536Ö0 +CLONE_NEWUSERÌ65536Ö0 +CLONE_NEWUTSÌ65536Ö0 +CLONE_PARENTÌ65536Ö0 +CLONE_PARENT_SETTIDÌ65536Ö0 +CLONE_PTRACEÌ65536Ö0 +CLONE_SETTLSÌ65536Ö0 +CLONE_SIGHANDÌ65536Ö0 +CLONE_SYSVSEMÌ65536Ö0 +CLONE_THREADÌ65536Ö0 +CLONE_UNTRACEDÌ65536Ö0 +CLONE_VFORKÌ65536Ö0 +CLONE_VMÌ65536Ö0 CMD_ABORT_IMAGEÌ65536Ö0 CMD_CHANGE_BAUDRATEÌ65536Ö0 CMD_COMM_TESTÌ65536Ö0 @@ -246,6 +276,28 @@ COMPRESSION_SGILOG24 COMPRESSION_T43Ì65536Ö0 COMPRESSION_T85Ì65536Ö0 COMPRESSION_THUNDERSCANÌ65536Ö0 +CPU_ALLOCÌ131072Í(count)Ö0 +CPU_ALLOC_SIZEÌ131072Í(count)Ö0 +CPU_ANDÌ131072Í(destset,srcset1,srcset2)Ö0 +CPU_AND_SÌ131072Í(setsize,destset,srcset1,srcset2)Ö0 +CPU_CLRÌ131072Í(cpu,cpusetp)Ö0 +CPU_CLR_SÌ131072Í(cpu,setsize,cpusetp)Ö0 +CPU_COUNTÌ131072Í(cpusetp)Ö0 +CPU_COUNT_SÌ131072Í(setsize,cpusetp)Ö0 +CPU_EQUALÌ131072Í(cpusetp1,cpusetp2)Ö0 +CPU_EQUAL_SÌ131072Í(setsize,cpusetp1,cpusetp2)Ö0 +CPU_FREEÌ131072Í(cpuset)Ö0 +CPU_ISSETÌ131072Í(cpu,cpusetp)Ö0 +CPU_ISSET_SÌ131072Í(cpu,setsize,cpusetp)Ö0 +CPU_ORÌ131072Í(destset,srcset1,srcset2)Ö0 +CPU_OR_SÌ131072Í(setsize,destset,srcset1,srcset2)Ö0 +CPU_SETÌ131072Í(cpu,cpusetp)Ö0 +CPU_SETSIZEÌ65536Ö0 +CPU_SET_SÌ131072Í(cpu,setsize,cpusetp)Ö0 +CPU_XORÌ131072Í(destset,srcset1,srcset2)Ö0 +CPU_XOR_SÌ131072Í(setsize,destset,srcset1,srcset2)Ö0 +CPU_ZEROÌ131072Í(cpusetp)Ö0 +CPU_ZERO_SÌ131072Í(setsize,cpusetp)Ö0 CQUITÌ65536Ö0 CR0Ì65536Ö0 CR1Ì65536Ö0 @@ -261,6 +313,7 @@ CS5 CS6Ì65536Ö0 CS7Ì65536Ö0 CS8Ì65536Ö0 +CSIGNALÌ65536Ö0 CSIZEÌ65536Ö0 CSTARTÌ65536Ö0 CSTATUSÌ65536Ö0 @@ -270,10 +323,10 @@ CSUSP CTIMEÌ65536Ö0 CTRLÌ131072Í(x)Ö0 CWERASEÌ65536Ö0 -Cb_b_tabÌ64Îanon_struct_14Ö0Ïint * -Cb_g_tabÌ64Îanon_struct_14Ö0Ïint32 * -Cr_g_tabÌ64Îanon_struct_14Ö0Ïint32 * -Cr_r_tabÌ64Îanon_struct_14Ö0Ïint * +Cb_b_tabÌ64Îanon_struct_43Ö0Ïint * +Cb_g_tabÌ64Îanon_struct_43Ö0Ïint32 * +Cr_g_tabÌ64Îanon_struct_43Ö0Ïint32 * +Cr_r_tabÌ64Îanon_struct_43Ö0Ïint * D50_X0Ì65536Ö0 D50_Y0Ì65536Ö0 D50_Z0Ì65536Ö0 @@ -308,6 +361,7 @@ DOMAIN DOUBLENULLVALUEÌ65536Ö0 DOUBLE_IMGÌ65536Ö0 DRIVER_INIT_FAILEDÌ65536Ö0 +DllDefÌ65536Ö0 E2BIGÌ65536Ö0 EACCESÌ65536Ö0 EADDRINUSEÌ65536Ö0 @@ -324,7 +378,6 @@ EBADR EBADRQCÌ65536Ö0 EBADSLTÌ65536Ö0 EBFONTÌ65536Ö0 -EBUGÌ65536Ö0 EBUSYÌ65536Ö0 ECANCELEDÌ65536Ö0 ECHILDÌ65536Ö0 @@ -384,7 +437,7 @@ ENAMETOOLONG ENAVAILÌ65536Ö0 END_JUNKÌ65536Ö0 END_OF_FILEÌ65536Ö0 -ENDposÌ64Îanon_struct_19Ö0ÏLONGLONG +ENDposÌ64Îanon_struct_34Ö0ÏLONGLONG ENETDOWNÌ65536Ö0 ENETRESETÌ65536Ö0 ENETUNREACHÌ65536Ö0 @@ -567,7 +620,7 @@ FIONBIO FIONCLEXÌ65536Ö0 FIONREADÌ65536Ö0 FIOQSIZEÌ65536Ö0 -FITSfileÌ4096Ö0Ïanon_struct_19 +FITSfileÌ4096Ö0Ïanon_struct_34 FLEN_CARDÌ65536Ö0 FLEN_COMMENTÌ65536Ö0 FLEN_ERRMSGÌ65536Ö0 @@ -583,10 +636,10 @@ FNAME FNDELAYÌ65536Ö0 FNONBLOCKÌ65536Ö0 FOPEN_MAXÌ65536Ö0 -FORMAT_FITSÌ4Îanon_enum_3Ö0 -FORMAT_NONEÌ4Îanon_enum_3Ö0 -FORMAT_RAWÌ4Îanon_enum_3Ö0 -FORMAT_TIFFÌ4Îanon_enum_3Ö0 +FORMAT_FITSÌ4Îanon_enum_1Ö0 +FORMAT_NONEÌ4Îanon_enum_1Ö0 +FORMAT_RAWÌ4Îanon_enum_1Ö0 +FORMAT_TIFFÌ4Îanon_enum_1Ö0 FPE_FLTDIVÌ65536Ö0 FPE_FLTINVÌ65536Ö0 FPE_FLTOVFÌ65536Ö0 @@ -642,8 +695,42 @@ F_TLOCK F_ULOCKÌ65536Ö0 F_UNLCKÌ65536Ö0 F_WRLCKÌ65536Ö0 -FptrÌ64Îanon_struct_20Ö0ÏFITSfile * +FptrÌ64Îanon_struct_35Ö0ÏFITSfile * GÌ16384Ö0Ïglob_pars +GD2_CHUNKSIZEÌ65536Ö0 +GD2_CHUNKSIZE_MAXÌ65536Ö0 +GD2_CHUNKSIZE_MINÌ65536Ö0 +GD2_FMT_COMPRESSEDÌ65536Ö0 +GD2_FMT_RAWÌ65536Ö0 +GD2_IDÌ65536Ö0 +GD2_VERSÌ65536Ö0 +GDFX_HÌ65536Ö0 +GDXXX_SSTRÌ131072Í(s)Ö0 +GDXXX_STRÌ131072Í(s)Ö0 +GDXXX_VERSION_STRÌ131072Í(mjr,mnr,rev,ext)Ö0 +GD_CMP_BACKGROUNDÌ65536Ö0 +GD_CMP_COLORÌ65536Ö0 +GD_CMP_IMAGEÌ65536Ö0 +GD_CMP_INTERLACEÌ65536Ö0 +GD_CMP_NUM_COLORSÌ65536Ö0 +GD_CMP_SIZE_XÌ65536Ö0 +GD_CMP_SIZE_YÌ65536Ö0 +GD_CMP_TRANSPARENTÌ65536Ö0 +GD_CMP_TRUECOLORÌ65536Ö0 +GD_EPSILONÌ65536Ö0 +GD_EXTRA_VERSIONÌ65536Ö0 +GD_FALSEÌ65536Ö0 +GD_FLIP_BOTHÌ65536Ö0 +GD_FLIP_HORINZONTALÌ65536Ö0 +GD_FLIP_VERTICALÌ65536Ö0 +GD_HÌ65536Ö0 +GD_IO_HÌ65536Ö0 +GD_MAJOR_VERSIONÌ65536Ö0 +GD_MINOR_VERSIONÌ65536Ö0 +GD_RELEASE_VERSIONÌ65536Ö0 +GD_RESOLUTIONÌ65536Ö0 +GD_TRUEÌ65536Ö0 +GD_VERSION_STRINGÌ65536Ö0 GRAYRESPONSEUNIT_100000SÌ65536Ö0 GRAYRESPONSEUNIT_10000SÌ65536Ö0 GRAYRESPONSEUNIT_1000SÌ65536Ö0 @@ -655,6 +742,7 @@ GROUP3OPT_FILLBITS GROUP3OPT_UNCOMPRESSEDÌ65536Ö0 GROUP4OPT_UNCOMPRESSEDÌ65536Ö0 GROUP_NOT_FOUNDÌ65536Ö0 +GTHR_ACTIVE_PROXYÌ65536Ö0 GT_ID_ALLÌ65536Ö0 GT_ID_ALL_URIÌ65536Ö0 GT_ID_POSÌ65536Ö0 @@ -664,16 +752,16 @@ GT_ID_REF_URI GZIP_1Ì65536Ö0 GZIP_2Ì65536Ö0 GdefaultÌ16384Ö0Ïglob_pars const -HÌ64Îanon_struct_6Ö0Ïsize_t +HÌ64Îanon_struct_4Ö0Ïsize_t HAVE_IEEEFPÌ65536Ö0 HCOMPRESS_1Ì65536Ö0 HDU_ALREADY_MEMBERÌ65536Ö0 HDU_ALREADY_TRACKEDÌ65536Ö0 -HDUpositionÌ64Îanon_struct_20Ö0Ïint +HDUpositionÌ64Îanon_struct_35Ö0Ïint HEADER_NOT_EMPTYÌ65536Ö0 -HEATER_LEAVEÌ4Îanon_enum_8Ö0 -HEATER_OFFÌ4Îanon_enum_8Ö0 -HEATER_ONÌ4Îanon_enum_8Ö0 +HEATER_LEAVEÌ4Îanon_enum_27Ö0 +HEATER_OFFÌ4Îanon_enum_27Ö0 +HEATER_ONÌ4Îanon_enum_27Ö0 HOST_BIGENDIANÌ65536Ö0 HOST_FILLORDERÌ65536Ö0 HOST_NAME_MAXÌ65536Ö0 @@ -705,9 +793,9 @@ IMTRANS_CONTINUE IMTRANS_RESENDÌ65536Ö0 IMTRANS_STOPÌ65536Ö0 IMTRANS_TMOUTÌ65536Ö0 -IMTYPE_AUTODARKÌ4Îanon_enum_4Ö0 -IMTYPE_DARKÌ4Îanon_enum_4Ö0 -IMTYPE_LIGHTÌ4Îanon_enum_4Ö0 +IMTYPE_AUTODARKÌ4Îanon_enum_2Ö0 +IMTYPE_DARKÌ4Îanon_enum_2Ö0 +IMTYPE_LIGHTÌ4Îanon_enum_2Ö0 IMWIDTHÌ65536Ö0 IM_CROPWIDTHÌ65536Ö0 INFINITYÌ65536Ö0 @@ -757,6 +845,7 @@ IOCSIZE_SHIFT IOC_INÌ65536Ö0 IOC_INOUTÌ65536Ö0 IOC_OUTÌ65536Ö0 +IOERRORÌ131072Í()Ö0 IOV_MAXÌ65536Ö0 IPTC_SUPPORTÌ65536Ö0 ISIGÌ65536Ö0 @@ -807,6 +896,214 @@ LC_TELEPHONE LC_TELEPHONE_MASKÌ65536Ö0 LC_TIMEÌ65536Ö0 LC_TIME_MASKÌ65536Ö0 +LIBRAW_BAD_CROPÌ4ÎLibRaw_errorsÖ0 +LIBRAW_CANCELLED_BY_CALLBACKÌ4ÎLibRaw_errorsÖ0 +LIBRAW_CAPS_DEMOSAICSGPL2Ì4ÎLibRaw_runtime_capabilitiesÖ0 +LIBRAW_CAPS_DEMOSAICSGPL3Ì4ÎLibRaw_runtime_capabilitiesÖ0 +LIBRAW_CAPS_DNGSDKÌ4ÎLibRaw_runtime_capabilitiesÖ0 +LIBRAW_CAPS_RAWSPEEDÌ4ÎLibRaw_runtime_capabilitiesÖ0 +LIBRAW_CHECK_VERSIONÌ131072Í(major,minor,patch)Ö0 +LIBRAW_COMPILE_CHECK_VERSIONÌ131072Í(major,minor)Ö0 +LIBRAW_COMPILE_CHECK_VERSION_NOTLESSÌ131072Í(major,minor)Ö0 +LIBRAW_DATA_ERRORÌ4ÎLibRaw_errorsÖ0 +LIBRAW_DECODER_ADOBECOPYPIXELÌ4ÎLibRaw_decoder_flagsÖ0 +LIBRAW_DECODER_FIXEDMAXCÌ4ÎLibRaw_decoder_flagsÖ0 +LIBRAW_DECODER_HASCURVEÌ4ÎLibRaw_decoder_flagsÖ0 +LIBRAW_DECODER_LEGACY_WITH_MARGINSÌ4ÎLibRaw_decoder_flagsÖ0 +LIBRAW_DECODER_NOTSETÌ4ÎLibRaw_decoder_flagsÖ0 +LIBRAW_DECODER_OWNALLOCÌ4ÎLibRaw_decoder_flagsÖ0 +LIBRAW_DECODER_SONYARW2Ì4ÎLibRaw_decoder_flagsÖ0 +LIBRAW_DECODER_TRYRAWSPEEDÌ4ÎLibRaw_decoder_flagsÖ0 +LIBRAW_DEFAULT_ADJUST_MAXIMUM_THRESHOLDÌ65536Ö0 +LIBRAW_DEFAULT_AUTO_BRIGHTNESS_THRESHOLDÌ65536Ö0 +LIBRAW_DNG_8BITÌ4ÎLibRaw_dng_processingÖ0 +LIBRAW_DNG_ALLÌ4ÎLibRaw_dng_processingÖ0 +LIBRAW_DNG_DEFAULTÌ4ÎLibRaw_dng_processingÖ0 +LIBRAW_DNG_DEFLATEÌ4ÎLibRaw_dng_processingÖ0 +LIBRAW_DNG_FLOATÌ4ÎLibRaw_dng_processingÖ0 +LIBRAW_DNG_LINEARÌ4ÎLibRaw_dng_processingÖ0 +LIBRAW_DNG_NONEÌ4ÎLibRaw_dng_processingÖ0 +LIBRAW_DNG_OTHERÌ4ÎLibRaw_dng_processingÖ0 +LIBRAW_DNG_XTRANSÌ4ÎLibRaw_dng_processingÖ0 +LIBRAW_EXCEPTION_ALLOCÌ4ÎLibRaw_exceptionsÖ0 +LIBRAW_EXCEPTION_BAD_CROPÌ4ÎLibRaw_exceptionsÖ0 +LIBRAW_EXCEPTION_CANCELLED_BY_CALLBACKÌ4ÎLibRaw_exceptionsÖ0 +LIBRAW_EXCEPTION_DECODE_JPEGÌ4ÎLibRaw_exceptionsÖ0 +LIBRAW_EXCEPTION_DECODE_JPEG2000Ì4ÎLibRaw_exceptionsÖ0 +LIBRAW_EXCEPTION_DECODE_RAWÌ4ÎLibRaw_exceptionsÖ0 +LIBRAW_EXCEPTION_IO_BADFILEÌ4ÎLibRaw_exceptionsÖ0 +LIBRAW_EXCEPTION_IO_CORRUPTÌ4ÎLibRaw_exceptionsÖ0 +LIBRAW_EXCEPTION_IO_EOFÌ4ÎLibRaw_exceptionsÖ0 +LIBRAW_EXCEPTION_NONEÌ4ÎLibRaw_exceptionsÖ0 +LIBRAW_FATAL_ERRORÌ131072Í(ec)Ö0 +LIBRAW_FILE_UNSUPPORTEDÌ4ÎLibRaw_errorsÖ0 +LIBRAW_FORMAT_1INCHÌ4ÎLibRaw_camera_formatsÖ0 +LIBRAW_FORMAT_APSCÌ4ÎLibRaw_camera_formatsÖ0 +LIBRAW_FORMAT_APSHÌ4ÎLibRaw_camera_formatsÖ0 +LIBRAW_FORMAT_FFÌ4ÎLibRaw_camera_formatsÖ0 +LIBRAW_FORMAT_FTÌ4ÎLibRaw_camera_formatsÖ0 +LIBRAW_FORMAT_MFÌ4ÎLibRaw_camera_formatsÖ0 +LIBRAW_HISTOGRAM_SIZEÌ65536Ö0 +LIBRAW_IFD_MAXCOUNTÌ65536Ö0 +LIBRAW_IMAGE_BITMAPÌ4ÎLibRaw_image_formatsÖ0 +LIBRAW_IMAGE_JPEGÌ4ÎLibRaw_image_formatsÖ0 +LIBRAW_INPUT_CLOSEDÌ4ÎLibRaw_errorsÖ0 +LIBRAW_IO_ERRORÌ4ÎLibRaw_errorsÖ0 +LIBRAW_MAJOR_VERSIONÌ65536Ö0 +LIBRAW_MAKE_VERSIONÌ131072Í(major,minor,patch)Ö0 +LIBRAW_MINOR_VERSIONÌ65536Ö0 +LIBRAW_MOUNT_Canon_EFÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Canon_EF_MÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Canon_EF_SÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Contax_NÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_FTÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_FixedLensÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Fuji_XÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Leica_MÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Leica_RÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Leica_SÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Leica_SLÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Leica_TÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Minolta_AÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Nikon_CXÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Nikon_FÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Pentax_645Ì4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Pentax_KÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Pentax_QÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_RicohModuleÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Samsung_NXÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Samsung_NX_MÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Sigma_X3FÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_Sony_EÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_UnknownÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MOUNT_mFTÌ4ÎLibRaw_camera_mountsÖ0 +LIBRAW_MSIZEÌ65536Ö0 +LIBRAW_NOT_IMPLEMENTEDÌ4ÎLibRaw_errorsÖ0 +LIBRAW_NO_THUMBNAILÌ4ÎLibRaw_errorsÖ0 +LIBRAW_OPENBAYER_BGGRÌ4ÎLibRaw_openbayer_patternsÖ0 +LIBRAW_OPENBAYER_GBRGÌ4ÎLibRaw_openbayer_patternsÖ0 +LIBRAW_OPENBAYER_GRBGÌ4ÎLibRaw_openbayer_patternsÖ0 +LIBRAW_OPENBAYER_RGGBÌ4ÎLibRaw_openbayer_patternsÖ0 +LIBRAW_OPIONS_NO_DATAERR_CALLBACKÌ4ÎLibRaw_constructor_flagsÖ0 +LIBRAW_OPIONS_NO_MEMERR_CALLBACKÌ4ÎLibRaw_constructor_flagsÖ0 +LIBRAW_OPTIONS_NONEÌ4ÎLibRaw_constructor_flagsÖ0 +LIBRAW_OUT_OF_ORDER_CALLÌ4ÎLibRaw_errorsÖ0 +LIBRAW_PATCH_VERSIONÌ65536Ö0 +LIBRAW_PROCESSING_CONVERTFLOAT_TO_INTÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_DP2Q_INTERPOLATEAFÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_DP2Q_INTERPOLATERGÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_FORCE_FOVEON_X3FÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_NO_ROTATE_FOR_KODAK_THUMBNAILSÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_PENTAX_PS_ALLFRAMESÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_SONYARW2_ALLFLAGSÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_SONYARW2_BASEONLYÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_SONYARW2_DELTAONLYÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_SONYARW2_DELTATOVALUEÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_SONYARW2_DELTAZEROBASEÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_SONYARW2_NONEÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_SRAW_NO_INTERPOLATEÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROCESSING_SRAW_NO_RGBÌ4ÎLibRaw_processing_optionsÖ0 +LIBRAW_PROGRESS_APPLY_PROFILEÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_BAD_PIXELSÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_CONVERT_RGBÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_DARK_FRAMEÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_FLIPÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_FOVEON_INTERPOLATEÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_FUJI_ROTATEÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_HIGHLIGHTSÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_IDENTIFYÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_INTERPOLATEÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_LOAD_RAWÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_MEDIAN_FILTERÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_MIX_GREENÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_OPENÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_PRE_INTERPOLATEÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_RAW2_IMAGEÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_REMOVE_ZEROESÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_SCALE_COLORSÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_SIZE_ADJUSTÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_STAGE20Ì4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_STAGE21Ì4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_STAGE22Ì4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_STAGE23Ì4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_STAGE24Ì4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_STAGE25Ì4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_STAGE26Ì4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_STAGE27Ì4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_STARTÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_STRETCHÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_THUMB_LOADÌ4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_THUMB_MASKÌ65536Ö0 +LIBRAW_PROGRESS_TRESERVED1Ì4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_TRESERVED2Ì4ÎLibRaw_progressÖ0 +LIBRAW_PROGRESS_TRESERVED3Ì4ÎLibRaw_progressÖ0 +LIBRAW_REQUEST_FOR_NONEXISTENT_IMAGEÌ4ÎLibRaw_errorsÖ0 +LIBRAW_RUNTIME_CHECK_VERSION_EXACTÌ131072Í()Ö0 +LIBRAW_RUNTIME_CHECK_VERSION_NOTLESSÌ131072Í()Ö0 +LIBRAW_SHLIB_AGEÌ65536Ö0 +LIBRAW_SHLIB_CURRENTÌ65536Ö0 +LIBRAW_SHLIB_REVISIONÌ65536Ö0 +LIBRAW_SONY_DSCÌ4ÎLibRaw_sony_cameratypesÖ0 +LIBRAW_SONY_DSLRÌ4ÎLibRaw_sony_cameratypesÖ0 +LIBRAW_SONY_ILCAÌ4ÎLibRaw_sony_cameratypesÖ0 +LIBRAW_SONY_ILCEÌ4ÎLibRaw_sony_cameratypesÖ0 +LIBRAW_SONY_NEXÌ4ÎLibRaw_sony_cameratypesÖ0 +LIBRAW_SONY_SLTÌ4ÎLibRaw_sony_cameratypesÖ0 +LIBRAW_SUCCESSÌ4ÎLibRaw_errorsÖ0 +LIBRAW_THUMBNAIL_BITMAPÌ4ÎLibRaw_thumbnail_formatsÖ0 +LIBRAW_THUMBNAIL_JPEGÌ4ÎLibRaw_thumbnail_formatsÖ0 +LIBRAW_THUMBNAIL_LAYERÌ4ÎLibRaw_thumbnail_formatsÖ0 +LIBRAW_THUMBNAIL_ROLLEIÌ4ÎLibRaw_thumbnail_formatsÖ0 +LIBRAW_THUMBNAIL_UNKNOWNÌ4ÎLibRaw_thumbnail_formatsÖ0 +LIBRAW_UNSPECIFIED_ERRORÌ4ÎLibRaw_errorsÖ0 +LIBRAW_UNSUFFICIENT_MEMORYÌ4ÎLibRaw_errorsÖ0 +LIBRAW_UNSUPPORTED_THUMBNAILÌ4ÎLibRaw_errorsÖ0 +LIBRAW_USE_STREAMS_DATASTREAM_MAXSIZEÌ65536Ö0 +LIBRAW_VERSIONÌ65536Ö0 +LIBRAW_VERSION_MAKEÌ131072Í(a,b,c,d)Ö0 +LIBRAW_VERSION_STRÌ65536Ö0 +LIBRAW_VERSION_TAILÌ65536Ö0 +LIBRAW_WARN_BAD_CAMERA_WBÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_BAD_DARKFRAME_DIMÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_BAD_DARKFRAME_FILEÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_BAD_OUTPUT_PROFILEÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_FALLBACK_TO_AHDÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_FOVEON_INVALIDWBÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_FOVEON_NOMATRIXÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_NONEÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_NO_BADPIXELMAPÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_NO_EMBEDDED_PROFILEÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_NO_INPUT_PROFILEÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_NO_JASPERÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_NO_JPEGLIBÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_NO_METADATAÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_RAWSPEED_PROBLEMÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_RAWSPEED_PROCESSEDÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WARN_RAWSPEED_UNSUPPORTEDÌ4ÎLibRaw_warningsÖ0 +LIBRAW_WBI_CloudyÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_D50Ì4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_D55Ì4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_D65Ì4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_D75Ì4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_DaylightÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_FL_DÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_FL_LÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_FL_NÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_FL_WÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_FL_WWÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_FineWeatherÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_FlashÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_FluorescentÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_Ill_AÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_Ill_BÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_Ill_CÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_OtherÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_ShadeÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_StudioTungstenÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_SunsetÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_TungstenÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_WBI_UnknownÌ4ÎLibRaw_whitebalance_codeÖ0 +LIBRAW_XTRANSÌ65536Ö0 LINE_MAXÌ65536Ö0 LINK_MAXÌ65536Ö0 LITTLE_ENDIANÌ65536Ö0 @@ -834,6 +1131,7 @@ LONG_LONG_MAX LONG_LONG_MINÌ65536Ö0 LONG_MAXÌ65536Ö0 LONG_MINÌ65536Ö0 +LT_OBJDIRÌ65536Ö0 LZW_SUPPORTÌ65536Ö0 L_INCRÌ65536Ö0 L_SETÌ65536Ö0 @@ -841,11 +1139,31 @@ L_XTND L_ctermidÌ65536Ö0 L_cuseridÌ65536Ö0 L_tmpnamÌ65536Ö0 +LibRawBigEndianÌ65536Ö0 +LibRaw_bit_bufferÌ16384Ö0Ïclass +LibRaw_buffer_datastreamÌ16384Ö0Ïclass +LibRaw_camera_formatsÌ2Ö0 +LibRaw_camera_mountsÌ2Ö0 +LibRaw_constructor_flagsÌ2Ö0 +LibRaw_decoder_flagsÌ2Ö0 +LibRaw_dng_processingÌ2Ö0 +LibRaw_errorsÌ2Ö0 +LibRaw_exceptionsÌ2Ö0 +LibRaw_image_formatsÌ2Ö0 +LibRaw_openbayer_patternsÌ2Ö0 +LibRaw_processing_optionsÌ2Ö0 +LibRaw_progressÌ2Ö0 +LibRaw_runtime_capabilitiesÌ2Ö0 +LibRaw_sony_cameratypesÌ2Ö0 +LibRaw_thumbnail_formatsÌ2Ö0 +LibRaw_warningsÌ2Ö0 +LibRaw_whitebalance_codeÌ2Ö0 MADV_DODUMPÌ65536Ö0 MADV_DOFORKÌ65536Ö0 MADV_DONTDUMPÌ65536Ö0 MADV_DONTFORKÌ65536Ö0 MADV_DONTNEEDÌ65536Ö0 +MADV_FREEÌ65536Ö0 MADV_HUGEPAGEÌ65536Ö0 MADV_HWPOISONÌ65536Ö0 MADV_MERGEABLEÌ65536Ö0 @@ -879,7 +1197,7 @@ MAP_STACK MAP_TYPEÌ65536Ö0 MATH_ERREXCEPTÌ65536Ö0 MATH_ERRNOÌ65536Ö0 -MAXHDUÌ64Îanon_struct_19Ö0Ïint +MAXHDUÌ64Îanon_struct_34Ö0Ïint MAX_CANONÌ65536Ö0 MAX_COMPRESS_DIMÌ65536Ö0 MAX_EXPTIME_100Ì65536Ö0 @@ -914,7 +1232,7 @@ MREMAP_MAYMOVE MS_ASYNCÌ65536Ö0 MS_INVALIDATEÌ65536Ö0 MS_SYNCÌ65536Ö0 -MULT_PARÌ4Îanon_enum_24Ö0 +MULT_PARÌ4Îanon_enum_29Ö0 M_1_PIÌ65536Ö0 M_1_PIlÌ65536Ö0 M_2_PIÌ65536Ö0 @@ -950,7 +1268,7 @@ NAME_MAX NANÌ65536Ö0 NCCÌ65536Ö0 NCCSÌ65536Ö0 -NEED_ARGÌ4Îanon_enum_24Ö0 +NEED_ARGÌ4Îanon_enum_29Ö0 NEG_AXISÌ65536Ö0 NEG_BYTESÌ65536Ö0 NEG_FILE_POSÌ65536Ö0 @@ -993,13 +1311,14 @@ NOT_LOGICAL_COL NOT_POS_INTÌ65536Ö0 NOT_TABLEÌ65536Ö0 NOT_VARI_LENÌ65536Ö0 -NO_ARGSÌ4Îanon_enum_24Ö0 +NO_ARGSÌ4Îanon_enum_29Ö0 NO_BITPIXÌ65536Ö0 NO_CLOSE_ERRORÌ65536Ö0 NO_COMPRESSED_TILEÌ65536Ö0 NO_DITHERÌ65536Ö0 NO_ENDÌ65536Ö0 NO_GCOUNTÌ65536Ö0 +NO_LCMSÌ65536Ö0 NO_MATCHING_DRIVERÌ65536Ö0 NO_NAXESÌ65536Ö0 NO_NAXISÌ65536Ö0 @@ -1051,7 +1370,7 @@ ONOCR OPEN_DISK_FILEÌ65536Ö0 OPEN_MAXÌ65536Ö0 OPOSTÌ65536Ö0 -OPT_ARGÌ4Îanon_enum_24Ö0 +OPT_ARGÌ4Îanon_enum_29Ö0 OPT_CMT_MBRÌ65536Ö0 OPT_CMT_MBR_DELÌ65536Ö0 OPT_GCP_ALLÌ65536Ö0 @@ -1165,6 +1484,90 @@ PREDICTOR_FLOATINGPOINT PREDICTOR_HORIZONTALÌ65536Ö0 PREDICTOR_NONEÌ65536Ö0 PREPEND_PRIMARYÌ65536Ö0 +PRIX16Ì65536Ö0 +PRIX32Ì65536Ö0 +PRIX64Ì65536Ö0 +PRIX8Ì65536Ö0 +PRIXFAST16Ì65536Ö0 +PRIXFAST32Ì65536Ö0 +PRIXFAST64Ì65536Ö0 +PRIXFAST8Ì65536Ö0 +PRIXLEAST16Ì65536Ö0 +PRIXLEAST32Ì65536Ö0 +PRIXLEAST64Ì65536Ö0 +PRIXLEAST8Ì65536Ö0 +PRIXMAXÌ65536Ö0 +PRIXPTRÌ65536Ö0 +PRId16Ì65536Ö0 +PRId32Ì65536Ö0 +PRId64Ì65536Ö0 +PRId8Ì65536Ö0 +PRIdFAST16Ì65536Ö0 +PRIdFAST32Ì65536Ö0 +PRIdFAST64Ì65536Ö0 +PRIdFAST8Ì65536Ö0 +PRIdLEAST16Ì65536Ö0 +PRIdLEAST32Ì65536Ö0 +PRIdLEAST64Ì65536Ö0 +PRIdLEAST8Ì65536Ö0 +PRIdMAXÌ65536Ö0 +PRIdPTRÌ65536Ö0 +PRIi16Ì65536Ö0 +PRIi32Ì65536Ö0 +PRIi64Ì65536Ö0 +PRIi8Ì65536Ö0 +PRIiFAST16Ì65536Ö0 +PRIiFAST32Ì65536Ö0 +PRIiFAST64Ì65536Ö0 +PRIiFAST8Ì65536Ö0 +PRIiLEAST16Ì65536Ö0 +PRIiLEAST32Ì65536Ö0 +PRIiLEAST64Ì65536Ö0 +PRIiLEAST8Ì65536Ö0 +PRIiMAXÌ65536Ö0 +PRIiPTRÌ65536Ö0 +PRIo16Ì65536Ö0 +PRIo32Ì65536Ö0 +PRIo64Ì65536Ö0 +PRIo8Ì65536Ö0 +PRIoFAST16Ì65536Ö0 +PRIoFAST32Ì65536Ö0 +PRIoFAST64Ì65536Ö0 +PRIoFAST8Ì65536Ö0 +PRIoLEAST16Ì65536Ö0 +PRIoLEAST32Ì65536Ö0 +PRIoLEAST64Ì65536Ö0 +PRIoLEAST8Ì65536Ö0 +PRIoMAXÌ65536Ö0 +PRIoPTRÌ65536Ö0 +PRIu16Ì65536Ö0 +PRIu32Ì65536Ö0 +PRIu64Ì65536Ö0 +PRIu8Ì65536Ö0 +PRIuFAST16Ì65536Ö0 +PRIuFAST32Ì65536Ö0 +PRIuFAST64Ì65536Ö0 +PRIuFAST8Ì65536Ö0 +PRIuLEAST16Ì65536Ö0 +PRIuLEAST32Ì65536Ö0 +PRIuLEAST64Ì65536Ö0 +PRIuLEAST8Ì65536Ö0 +PRIuMAXÌ65536Ö0 +PRIuPTRÌ65536Ö0 +PRIx16Ì65536Ö0 +PRIx32Ì65536Ö0 +PRIx64Ì65536Ö0 +PRIx8Ì65536Ö0 +PRIxFAST16Ì65536Ö0 +PRIxFAST32Ì65536Ö0 +PRIxFAST64Ì65536Ö0 +PRIxFAST8Ì65536Ö0 +PRIxLEAST16Ì65536Ö0 +PRIxLEAST32Ì65536Ö0 +PRIxLEAST64Ì65536Ö0 +PRIxLEAST8Ì65536Ö0 +PRIxMAXÌ65536Ö0 +PRIxPTRÌ65536Ö0 PROFILETYPE_G3_FAXÌ65536Ö0 PROFILETYPE_UNSPECIFIEDÌ65536Ö0 PROT_EXECÌ65536Ö0 @@ -1173,8 +1576,156 @@ PROT_GROWSUP PROT_NONEÌ65536Ö0 PROT_READÌ65536Ö0 PROT_WRITEÌ65536Ö0 +PR_CAPBSET_DROPÌ65536Ö0 +PR_CAPBSET_READÌ65536Ö0 +PR_CAP_AMBIENTÌ65536Ö0 +PR_CAP_AMBIENT_CLEAR_ALLÌ65536Ö0 +PR_CAP_AMBIENT_IS_SETÌ65536Ö0 +PR_CAP_AMBIENT_LOWERÌ65536Ö0 +PR_CAP_AMBIENT_RAISEÌ65536Ö0 +PR_ENDIAN_BIGÌ65536Ö0 +PR_ENDIAN_LITTLEÌ65536Ö0 +PR_ENDIAN_PPC_LITTLEÌ65536Ö0 +PR_FPEMU_NOPRINTÌ65536Ö0 +PR_FPEMU_SIGFPEÌ65536Ö0 +PR_FP_EXC_ASYNCÌ65536Ö0 +PR_FP_EXC_DISABLEDÌ65536Ö0 +PR_FP_EXC_DIVÌ65536Ö0 +PR_FP_EXC_INVÌ65536Ö0 +PR_FP_EXC_NONRECOVÌ65536Ö0 +PR_FP_EXC_OVFÌ65536Ö0 +PR_FP_EXC_PRECISEÌ65536Ö0 +PR_FP_EXC_RESÌ65536Ö0 +PR_FP_EXC_SW_ENABLEÌ65536Ö0 +PR_FP_EXC_UNDÌ65536Ö0 +PR_FP_MODE_FRÌ65536Ö0 +PR_FP_MODE_FREÌ65536Ö0 +PR_GET_CHILD_SUBREAPERÌ65536Ö0 +PR_GET_DUMPABLEÌ65536Ö0 +PR_GET_ENDIANÌ65536Ö0 +PR_GET_FPEMUÌ65536Ö0 +PR_GET_FPEXCÌ65536Ö0 +PR_GET_FP_MODEÌ65536Ö0 +PR_GET_KEEPCAPSÌ65536Ö0 +PR_GET_NAMEÌ65536Ö0 +PR_GET_NO_NEW_PRIVSÌ65536Ö0 +PR_GET_PDEATHSIGÌ65536Ö0 +PR_GET_SECCOMPÌ65536Ö0 +PR_GET_SECUREBITSÌ65536Ö0 +PR_GET_THP_DISABLEÌ65536Ö0 +PR_GET_TID_ADDRESSÌ65536Ö0 +PR_GET_TIMERSLACKÌ65536Ö0 +PR_GET_TIMINGÌ65536Ö0 +PR_GET_TSCÌ65536Ö0 +PR_GET_UNALIGNÌ65536Ö0 +PR_MCE_KILLÌ65536Ö0 +PR_MCE_KILL_CLEARÌ65536Ö0 +PR_MCE_KILL_DEFAULTÌ65536Ö0 +PR_MCE_KILL_EARLYÌ65536Ö0 +PR_MCE_KILL_GETÌ65536Ö0 +PR_MCE_KILL_LATEÌ65536Ö0 +PR_MCE_KILL_SETÌ65536Ö0 +PR_MPX_DISABLE_MANAGEMENTÌ65536Ö0 +PR_MPX_ENABLE_MANAGEMENTÌ65536Ö0 +PR_SET_CHILD_SUBREAPERÌ65536Ö0 +PR_SET_DUMPABLEÌ65536Ö0 +PR_SET_ENDIANÌ65536Ö0 +PR_SET_FPEMUÌ65536Ö0 +PR_SET_FPEXCÌ65536Ö0 +PR_SET_FP_MODEÌ65536Ö0 +PR_SET_KEEPCAPSÌ65536Ö0 +PR_SET_MMÌ65536Ö0 +PR_SET_MM_ARG_ENDÌ65536Ö0 +PR_SET_MM_ARG_STARTÌ65536Ö0 +PR_SET_MM_AUXVÌ65536Ö0 +PR_SET_MM_BRKÌ65536Ö0 +PR_SET_MM_END_CODEÌ65536Ö0 +PR_SET_MM_END_DATAÌ65536Ö0 +PR_SET_MM_ENV_ENDÌ65536Ö0 +PR_SET_MM_ENV_STARTÌ65536Ö0 +PR_SET_MM_EXE_FILEÌ65536Ö0 +PR_SET_MM_MAPÌ65536Ö0 +PR_SET_MM_MAP_SIZEÌ65536Ö0 +PR_SET_MM_START_BRKÌ65536Ö0 +PR_SET_MM_START_CODEÌ65536Ö0 +PR_SET_MM_START_DATAÌ65536Ö0 +PR_SET_MM_START_STACKÌ65536Ö0 +PR_SET_NAMEÌ65536Ö0 +PR_SET_NO_NEW_PRIVSÌ65536Ö0 +PR_SET_PDEATHSIGÌ65536Ö0 +PR_SET_PTRACERÌ65536Ö0 +PR_SET_PTRACER_ANYÌ65536Ö0 +PR_SET_SECCOMPÌ65536Ö0 +PR_SET_SECUREBITSÌ65536Ö0 +PR_SET_THP_DISABLEÌ65536Ö0 +PR_SET_TIMERSLACKÌ65536Ö0 +PR_SET_TIMINGÌ65536Ö0 +PR_SET_TSCÌ65536Ö0 +PR_SET_UNALIGNÌ65536Ö0 +PR_TASK_PERF_EVENTS_DISABLEÌ65536Ö0 +PR_TASK_PERF_EVENTS_ENABLEÌ65536Ö0 +PR_TIMING_STATISTICALÌ65536Ö0 +PR_TIMING_TIMESTAMPÌ65536Ö0 +PR_TSC_ENABLEÌ65536Ö0 +PR_TSC_SIGSEGVÌ65536Ö0 +PR_UNALIGN_NOPRINTÌ65536Ö0 +PR_UNALIGN_SIGBUSÌ65536Ö0 +PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NPÌ65536Ö0 +PTHREAD_BARRIER_SERIAL_THREADÌ65536Ö0 +PTHREAD_CANCELEDÌ65536Ö0 +PTHREAD_CANCEL_ASYNCHRONOUSÌ4Îanon_enum_15Ö0 +PTHREAD_CANCEL_ASYNCHRONOUSÌ65536Ö0 +PTHREAD_CANCEL_DEFERREDÌ4Îanon_enum_15Ö0 +PTHREAD_CANCEL_DEFERREDÌ65536Ö0 +PTHREAD_CANCEL_DISABLEÌ4Îanon_enum_14Ö0 +PTHREAD_CANCEL_DISABLEÌ65536Ö0 +PTHREAD_CANCEL_ENABLEÌ4Îanon_enum_14Ö0 +PTHREAD_CANCEL_ENABLEÌ65536Ö0 +PTHREAD_COND_INITIALIZERÌ65536Ö0 +PTHREAD_CREATE_DETACHEDÌ4Îanon_enum_6Ö0 +PTHREAD_CREATE_DETACHEDÌ65536Ö0 +PTHREAD_CREATE_JOINABLEÌ4Îanon_enum_6Ö0 +PTHREAD_CREATE_JOINABLEÌ65536Ö0 PTHREAD_DESTRUCTOR_ITERATIONSÌ65536Ö0 +PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NPÌ65536Ö0 +PTHREAD_EXPLICIT_SCHEDÌ4Îanon_enum_11Ö0 +PTHREAD_EXPLICIT_SCHEDÌ65536Ö0 +PTHREAD_INHERIT_SCHEDÌ4Îanon_enum_11Ö0 +PTHREAD_INHERIT_SCHEDÌ65536Ö0 PTHREAD_KEYS_MAXÌ65536Ö0 +PTHREAD_MUTEX_ADAPTIVE_NPÌ4Îanon_enum_7Ö0 +PTHREAD_MUTEX_DEFAULTÌ4Îanon_enum_7Ö0 +PTHREAD_MUTEX_ERRORCHECKÌ4Îanon_enum_7Ö0 +PTHREAD_MUTEX_ERRORCHECK_NPÌ4Îanon_enum_7Ö0 +PTHREAD_MUTEX_FAST_NPÌ4Îanon_enum_7Ö0 +PTHREAD_MUTEX_INITIALIZERÌ65536Ö0 +PTHREAD_MUTEX_NORMALÌ4Îanon_enum_7Ö0 +PTHREAD_MUTEX_RECURSIVEÌ4Îanon_enum_7Ö0 +PTHREAD_MUTEX_RECURSIVE_NPÌ4Îanon_enum_7Ö0 +PTHREAD_MUTEX_ROBUSTÌ4Îanon_enum_8Ö0 +PTHREAD_MUTEX_ROBUST_NPÌ4Îanon_enum_8Ö0 +PTHREAD_MUTEX_STALLEDÌ4Îanon_enum_8Ö0 +PTHREAD_MUTEX_STALLED_NPÌ4Îanon_enum_8Ö0 +PTHREAD_MUTEX_TIMED_NPÌ4Îanon_enum_7Ö0 +PTHREAD_ONCE_INITÌ65536Ö0 +PTHREAD_PRIO_INHERITÌ4Îanon_enum_9Ö0 +PTHREAD_PRIO_NONEÌ4Îanon_enum_9Ö0 +PTHREAD_PRIO_PROTECTÌ4Îanon_enum_9Ö0 +PTHREAD_PROCESS_PRIVATEÌ4Îanon_enum_13Ö0 +PTHREAD_PROCESS_PRIVATEÌ65536Ö0 +PTHREAD_PROCESS_SHAREDÌ4Îanon_enum_13Ö0 +PTHREAD_PROCESS_SHAREDÌ65536Ö0 +PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NPÌ65536Ö0 +PTHREAD_RWLOCK_DEFAULT_NPÌ4Îanon_enum_10Ö0 +PTHREAD_RWLOCK_INITIALIZERÌ65536Ö0 +PTHREAD_RWLOCK_PREFER_READER_NPÌ4Îanon_enum_10Ö0 +PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NPÌ4Îanon_enum_10Ö0 +PTHREAD_RWLOCK_PREFER_WRITER_NPÌ4Îanon_enum_10Ö0 +PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NPÌ65536Ö0 +PTHREAD_SCOPE_PROCESSÌ4Îanon_enum_12Ö0 +PTHREAD_SCOPE_PROCESSÌ65536Ö0 +PTHREAD_SCOPE_SYSTEMÌ4Îanon_enum_12Ö0 +PTHREAD_SCOPE_SYSTEMÌ65536Ö0 PTHREAD_STACK_MINÌ65536Ö0 PTHREAD_THREADS_MAXÌ65536Ö0 PTRDIFF_MAXÌ65536Ö0 @@ -1238,6 +1789,82 @@ SA_STACK SBYTE_IMGÌ65536Ö0 SCHAR_MAXÌ65536Ö0 SCHAR_MINÌ65536Ö0 +SCHED_BATCHÌ65536Ö0 +SCHED_FIFOÌ65536Ö0 +SCHED_IDLEÌ65536Ö0 +SCHED_OTHERÌ65536Ö0 +SCHED_RESET_ON_FORKÌ65536Ö0 +SCHED_RRÌ65536Ö0 +SCNd16Ì65536Ö0 +SCNd32Ì65536Ö0 +SCNd64Ì65536Ö0 +SCNd8Ì65536Ö0 +SCNdFAST16Ì65536Ö0 +SCNdFAST32Ì65536Ö0 +SCNdFAST64Ì65536Ö0 +SCNdFAST8Ì65536Ö0 +SCNdLEAST16Ì65536Ö0 +SCNdLEAST32Ì65536Ö0 +SCNdLEAST64Ì65536Ö0 +SCNdLEAST8Ì65536Ö0 +SCNdMAXÌ65536Ö0 +SCNdPTRÌ65536Ö0 +SCNi16Ì65536Ö0 +SCNi32Ì65536Ö0 +SCNi64Ì65536Ö0 +SCNi8Ì65536Ö0 +SCNiFAST16Ì65536Ö0 +SCNiFAST32Ì65536Ö0 +SCNiFAST64Ì65536Ö0 +SCNiFAST8Ì65536Ö0 +SCNiLEAST16Ì65536Ö0 +SCNiLEAST32Ì65536Ö0 +SCNiLEAST64Ì65536Ö0 +SCNiLEAST8Ì65536Ö0 +SCNiMAXÌ65536Ö0 +SCNiPTRÌ65536Ö0 +SCNo16Ì65536Ö0 +SCNo32Ì65536Ö0 +SCNo64Ì65536Ö0 +SCNo8Ì65536Ö0 +SCNoFAST16Ì65536Ö0 +SCNoFAST32Ì65536Ö0 +SCNoFAST64Ì65536Ö0 +SCNoFAST8Ì65536Ö0 +SCNoLEAST16Ì65536Ö0 +SCNoLEAST32Ì65536Ö0 +SCNoLEAST64Ì65536Ö0 +SCNoLEAST8Ì65536Ö0 +SCNoMAXÌ65536Ö0 +SCNoPTRÌ65536Ö0 +SCNu16Ì65536Ö0 +SCNu32Ì65536Ö0 +SCNu64Ì65536Ö0 +SCNu8Ì65536Ö0 +SCNuFAST16Ì65536Ö0 +SCNuFAST32Ì65536Ö0 +SCNuFAST64Ì65536Ö0 +SCNuFAST8Ì65536Ö0 +SCNuLEAST16Ì65536Ö0 +SCNuLEAST32Ì65536Ö0 +SCNuLEAST64Ì65536Ö0 +SCNuLEAST8Ì65536Ö0 +SCNuMAXÌ65536Ö0 +SCNuPTRÌ65536Ö0 +SCNx16Ì65536Ö0 +SCNx32Ì65536Ö0 +SCNx64Ì65536Ö0 +SCNx8Ì65536Ö0 +SCNxFAST16Ì65536Ö0 +SCNxFAST32Ì65536Ö0 +SCNxFAST64Ì65536Ö0 +SCNxFAST8Ì65536Ö0 +SCNxLEAST16Ì65536Ö0 +SCNxLEAST32Ì65536Ö0 +SCNxLEAST64Ì65536Ö0 +SCNxLEAST8Ì65536Ö0 +SCNxMAXÌ65536Ö0 +SCNxPTRÌ65536Ö0 SEEK_CURÌ65536Ö0 SEEK_DATAÌ65536Ö0 SEEK_ENDÌ65536Ö0 @@ -1247,6 +1874,7 @@ SEEK_SET SEGV_ACCERRÌ65536Ö0 SEGV_MAPERRÌ65536Ö0 SEM_VALUE_MAXÌ65536Ö0 +SET_PROC_FLAGÌ131072Í(stage)Ö0 SGILOGDATAFMT_16BITÌ65536Ö0 SGILOGDATAFMT_8BITÌ65536Ö0 SGILOGDATAFMT_FLOATÌ65536Ö0 @@ -1409,17 +2037,19 @@ STA_PPSTIME STA_PPSWANDERÌ65536Ö0 STA_RONLYÌ65536Ö0 STA_UNSYNCÌ65536Ö0 +STDC_HEADERSÌ65536Ö0 STDERR_FILENOÌ65536Ö0 STDIN_FILENOÌ65536Ö0 STDOUT_FILENOÌ65536Ö0 -STORE_NEXTNUMÌ4Îanon_enum_2Ö0 -STORE_NORMALÌ4Îanon_enum_2Ö0 -STORE_REWRITEÌ4Îanon_enum_2Ö0 +STORE_NEXTNUMÌ4Îanon_enum_0Ö0 +STORE_NORMALÌ4Îanon_enum_0Ö0 +STORE_REWRITEÌ4Îanon_enum_0Ö0 STRIPCHOP_DEFAULTÌ65536Ö0 SUBIFD_SUPPORTÌ65536Ö0 SUBTRACTIVE_DITHER_1Ì65536Ö0 SUBTRACTIVE_DITHER_2Ì65536Ö0 SUFFIX_FITSÌ65536Ö0 +SUFFIX_JPEGÌ65536Ö0 SUFFIX_RAWÌ65536Ö0 SUFFIX_TIFFÌ65536Ö0 SYNC_FILE_RANGE_WAIT_AFTERÌ65536Ö0 @@ -1509,17 +2139,17 @@ THRESHHOLD_ERRORDIFFUSE THRESHHOLD_HALFTONEÌ65536Ö0 THUNDER_SUPPORTÌ65536Ö0 TIFFÌ4096Ö0Ïtiff -TIFFCIELabToRGBÌ4096Ö0Ïanon_struct_15 -TIFFCodecÌ4096Ö0Ïanon_struct_17 -TIFFDataTypeÌ4096Ö0Ïanon_enum_12 -TIFFDisplayÌ4096Ö0Ïanon_struct_13 +TIFFCIELabToRGBÌ4096Ö0Ïanon_struct_44 +TIFFCodecÌ4096Ö0Ïanon_struct_46 +TIFFDataTypeÌ4096Ö0Ïanon_enum_41 +TIFFDisplayÌ4096Ö0Ïanon_struct_42 TIFFGetAÌ131072Í(abgr)Ö0 TIFFGetBÌ131072Í(abgr)Ö0 TIFFGetGÌ131072Í(abgr)Ö0 TIFFGetRÌ131072Í(abgr)Ö0 -TIFFHeaderBigÌ4096Ö0Ïanon_struct_11 -TIFFHeaderClassicÌ4096Ö0Ïanon_struct_10 -TIFFHeaderCommonÌ4096Ö0Ïanon_struct_9 +TIFFHeaderBigÌ4096Ö0Ïanon_struct_40 +TIFFHeaderClassicÌ4096Ö0Ïanon_struct_39 +TIFFHeaderCommonÌ4096Ö0Ïanon_struct_38 TIFFInitMethodÌ4096Ö0Ïtypedef int TIFFLIB_VERSIONÌ65536Ö0 TIFFLIB_VERSION_STRÌ65536Ö0 @@ -1749,38 +2379,38 @@ TIFFTAG_YCLIPPATHUNITS TIFFTAG_YPOSITIONÌ65536Ö0 TIFFTAG_YRESOLUTIONÌ65536Ö0 TIFFTAG_ZIPQUALITYÌ65536Ö0 -TIFFYCbCrToRGBÌ4096Ö0Ïanon_struct_14 +TIFFYCbCrToRGBÌ4096Ö0Ïanon_struct_43 TIFF_ANYÌ65536Ö0 -TIFF_ASCIIÌ4Îanon_enum_12Ö0 +TIFF_ASCIIÌ4Îanon_enum_41Ö0 TIFF_BIGENDIANÌ65536Ö0 -TIFF_BYTEÌ4Îanon_enum_12Ö0 -TIFF_DOUBLEÌ4Îanon_enum_12Ö0 -TIFF_FLOATÌ4Îanon_enum_12Ö0 -TIFF_IFDÌ4Îanon_enum_12Ö0 -TIFF_IFD8Ì4Îanon_enum_12Ö0 +TIFF_BYTEÌ4Îanon_enum_41Ö0 +TIFF_DOUBLEÌ4Îanon_enum_41Ö0 +TIFF_FLOATÌ4Îanon_enum_41Ö0 +TIFF_IFDÌ4Îanon_enum_41Ö0 +TIFF_IFD8Ì4Îanon_enum_41Ö0 TIFF_INT16_TÌ65536Ö0 TIFF_INT32_TÌ65536Ö0 TIFF_INT64_TÌ65536Ö0 TIFF_INT8_TÌ65536Ö0 TIFF_LITTLEENDIANÌ65536Ö0 -TIFF_LONGÌ4Îanon_enum_12Ö0 -TIFF_LONG8Ì4Îanon_enum_12Ö0 -TIFF_NOTYPEÌ4Îanon_enum_12Ö0 +TIFF_LONGÌ4Îanon_enum_41Ö0 +TIFF_LONG8Ì4Îanon_enum_41Ö0 +TIFF_NOTYPEÌ4Îanon_enum_41Ö0 TIFF_PTRDIFF_TÌ65536Ö0 -TIFF_RATIONALÌ4Îanon_enum_12Ö0 -TIFF_SBYTEÌ4Îanon_enum_12Ö0 -TIFF_SHORTÌ4Îanon_enum_12Ö0 -TIFF_SLONGÌ4Îanon_enum_12Ö0 -TIFF_SLONG8Ì4Îanon_enum_12Ö0 +TIFF_RATIONALÌ4Îanon_enum_41Ö0 +TIFF_SBYTEÌ4Îanon_enum_41Ö0 +TIFF_SHORTÌ4Îanon_enum_41Ö0 +TIFF_SLONGÌ4Îanon_enum_41Ö0 +TIFF_SLONG8Ì4Îanon_enum_41Ö0 TIFF_SPPÌ65536Ö0 -TIFF_SRATIONALÌ4Îanon_enum_12Ö0 -TIFF_SSHORTÌ4Îanon_enum_12Ö0 +TIFF_SRATIONALÌ4Îanon_enum_41Ö0 +TIFF_SSHORTÌ4Îanon_enum_41Ö0 TIFF_SSIZE_TÌ65536Ö0 TIFF_UINT16_TÌ65536Ö0 TIFF_UINT32_TÌ65536Ö0 TIFF_UINT64_TÌ65536Ö0 TIFF_UINT8_TÌ65536Ö0 -TIFF_UNDEFINEDÌ4Îanon_enum_12Ö0 +TIFF_UNDEFINEDÌ4Îanon_enum_41Ö0 TIFF_VARIABLEÌ65536Ö0 TIFF_VARIABLE2Ì65536Ö0 TIFF_VERSION_BIGÌ65536Ö0 @@ -1868,12 +2498,12 @@ TOO_MANY_DRIVERS TOO_MANY_FILESÌ65536Ö0 TOO_MANY_HDUS_TRACKEDÌ65536Ö0 TOSTOPÌ65536Ö0 -TRANS_BADCHSUMÌ4Îanon_enum_7Ö0 -TRANS_BUSYÌ4Îanon_enum_7Ö0 -TRANS_ERRORÌ4Îanon_enum_7Ö0 -TRANS_SUCCEEDÌ4Îanon_enum_7Ö0 -TRANS_TIMEOUTÌ4Îanon_enum_7Ö0 -TRANS_TRYAGAINÌ4Îanon_enum_7Ö0 +TRANS_BADCHSUMÌ4Îanon_enum_26Ö0 +TRANS_BUSYÌ4Îanon_enum_26Ö0 +TRANS_ERRORÌ4Îanon_enum_26Ö0 +TRANS_SUCCEEDÌ4Îanon_enum_26Ö0 +TRANS_TIMEOUTÌ4Îanon_enum_26Ö0 +TRANS_TRYAGAINÌ4Îanon_enum_26Ö0 TRAP_BRKPTÌ65536Ö0 TRAP_TRACEÌ65536Ö0 TRUEÌ65536Ö0 @@ -1967,15 +2597,20 @@ VTDLY VTIMEÌ65536Ö0 VWERASEÌ65536Ö0 V_NEUÌ65536Ö0 -WÌ64Îanon_struct_6Ö0Ïsize_t +WÌ64Îanon_struct_4Ö0Ïsize_t +WAIT_ANYÌ65536Ö0 +WAIT_MYPGRPÌ65536Ö0 WAIT_TMOUTÌ65536Ö0 WARNÌ131072Í(...)Ö0 WARNXÌ131072Í(...)Ö0 WCHAR_MAXÌ65536Ö0 WCHAR_MINÌ65536Ö0 WCONTINUEDÌ65536Ö0 +WCOREDUMPÌ131072Í(status)Ö0 +WCOREFLAGÌ65536Ö0 WCSLIB_GETWCSTABÌ65536Ö0 WCS_ERRORÌ65536Ö0 +WEOFÌ65536Ö0 WEXITEDÌ65536Ö0 WEXITSTATUSÌ131072Í(status)Ö0 WIFCONTINUEDÌ131072Í(status)Ö0 @@ -1993,8 +2628,10 @@ WSTOPPED WSTOPSIGÌ131072Í(status)Ö0 WTERMSIGÌ131072Í(status)Ö0 WUNTRACEDÌ65536Ö0 +W_EXITCODEÌ131072Í(ret,sig)Ö0 W_OKÌ65536Ö0 -X0Ì64Îanon_struct_15Ö0Ïfloat +W_STOPCODEÌ131072Í(sig)Ö0 +X0Ì64Îanon_struct_44Ö0Ïfloat XATTR_LIST_MAXÌ65536Ö0 XATTR_NAME_MAXÌ65536Ö0 XATTR_SIZE_MAXÌ65536Ö0 @@ -2002,27 +2639,39 @@ XCASE XTABSÌ65536Ö0 X_OKÌ65536Ö0 X_TLOSSÌ65536Ö0 -XstartÌ64Îanon_struct_5Ö0Ïuint16_t -Y0Ì64Îanon_struct_15Ö0Ïfloat +XstartÌ64Îanon_struct_3Ö0Ïuint16_t +Y0Ì64Îanon_struct_44Ö0Ïfloat YCBCRPOSITION_CENTEREDÌ65536Ö0 YCBCRPOSITION_COSITEDÌ65536Ö0 YCBCR_SUPPORTÌ65536Ö0 -Y_tabÌ64Îanon_struct_14Ö0Ïint32 * -Yb2bÌ64Îanon_struct_15Ö0Ïfloat -Yg2gÌ64Îanon_struct_15Ö0Ïfloat -Yr2rÌ64Îanon_struct_15Ö0Ïfloat -YstartÌ64Îanon_struct_5Ö0Ïuint16_t -Z0Ì64Îanon_struct_15Ö0Ïfloat +Y_tabÌ64Îanon_struct_43Ö0Ïint32 * +Yb2bÌ64Îanon_struct_44Ö0Ïfloat +Yg2gÌ64Îanon_struct_44Ö0Ïfloat +Yr2rÌ64Îanon_struct_44Ö0Ïfloat +YstartÌ64Îanon_struct_3Ö0Ïuint16_t +Z0Ì64Îanon_struct_44Ö0Ïfloat ZERO_SCALEÌ65536Ö0 ZIP_SUPPORTÌ65536Ö0 _Ì131072Í(String)Ö0 +_ALLOCATOR_HÌ65536Ö0 _ALLOCA_HÌ65536Ö0 _ANSI_STDARG_H_Ì65536Ö0 _ASM_GENERIC_ERRNO_BASE_HÌ65536Ö0 _ASM_GENERIC_ERRNO_HÌ65536Ö0 +_ASM_GENERIC_INT_LL64_HÌ65536Ö0 _ASM_GENERIC_IOCTL_HÌ65536Ö0 +_ASM_GENERIC_TYPES_HÌ65536Ö0 +_ASM_X86_POSIX_TYPES_64_HÌ65536Ö0 +_ASM_X86_TYPES_HÌ65536Ö0 _ASSERT_HÌ65536Ö0 _ATFILE_SOURCEÌ65536Ö0 +_Atomic_wordÌ4096Ö0Ïint +_BACKWARD_AUTO_PTR_HÌ65536Ö0 +_BACKWARD_BINDERS_HÌ65536Ö0 +_BASIC_IOS_HÌ65536Ö0 +_BASIC_IOS_TCCÌ65536Ö0 +_BASIC_STRING_HÌ65536Ö0 +_BASIC_STRING_TCCÌ65536Ö0 _BITS_BYTESWAP_HÌ65536Ö0 _BITS_LIBM_SIMD_DECL_STUBS_HÌ65536Ö0 _BITS_LOCALE_HÌ65536Ö0 @@ -2030,6 +2679,7 @@ _BITS_POSIX1_LIM_H _BITS_POSIX2_LIM_HÌ65536Ö0 _BITS_POSIX_OPT_HÌ65536Ö0 _BITS_PTHREADTYPES_HÌ65536Ö0 +_BITS_SETJMP_HÌ65536Ö0 _BITS_SIGCONTEXT_HÌ65536Ö0 _BITS_SIGTHREAD_HÌ65536Ö0 _BITS_STAT_HÌ65536Ö0 @@ -2043,6 +2693,10 @@ _BSD_SIZE_T_ _BSD_SIZE_T_DEFINED_Ì65536Ö0 _BSD_WCHAR_T_Ì65536Ö0 _BoolÌ65536Ö0 +_CHAR_TRAITS_HÌ65536Ö0 +_CODECVT_HÌ65536Ö0 +_CONCEPT_CHECK_HÌ65536Ö0 +_CPP_TYPE_TRAITS_HÌ65536Ö0 _CS_GNU_LIBC_VERSIONÌ65536Ö0 _CS_GNU_LIBPTHREAD_VERSIONÌ65536Ö0 _CS_LFS64_CFLAGSÌ65536Ö0 @@ -2111,22 +2765,320 @@ _CS_XBS5_LPBIG_OFFBIG_LDFLAGS _CS_XBS5_LPBIG_OFFBIG_LIBSÌ65536Ö0 _CS_XBS5_LPBIG_OFFBIG_LINTFLAGSÌ65536Ö0 _CTYPE_HÌ65536Ö0 +_CXXABI_FORCED_HÌ65536Ö0 _DEFAULT_SOURCEÌ65536Ö0 _ENDIAN_HÌ65536Ö0 _ERRNO_HÌ65536Ö0 _ERR_HÌ65536Ö0 +_EXCEPTION_DEFINES_HÌ65536Ö0 _EXTERN_INLINEÌ65536Ö0 +_EXT_ALLOC_TRAITS_HÌ65536Ö0 +_EXT_NUMERIC_TRAITSÌ65536Ö0 +_EXT_TYPE_TRAITSÌ65536Ö0 _FCNTL_HÌ65536Ö0 _FEATURES_HÌ65536Ö0 +_FILE_OFFSET_BITSÌ65536Ö0 _FITSIO_HÌ65536Ö0 _FORTIFY_SOURCEÌ65536Ö0 +_FSTREAM_TCCÌ65536Ö0 +_FUNCTEXCEPT_HÌ65536Ö0 _GCC_LIMITS_H_Ì65536Ö0 _GCC_NEXT_LIMITS_HÌ65536Ö0 _GCC_SIZE_TÌ65536Ö0 _GCC_WCHAR_TÌ65536Ö0 _GCC_WRAP_STDINT_HÌ65536Ö0 _GETOPT_HÌ65536Ö0 +_GLIBCXX14_CONSTEXPRÌ65536Ö0 +_GLIBCXX_ABI_TAG_CXX11Ì65536Ö0 +_GLIBCXX_ATOMICITY_HÌ65536Ö0 +_GLIBCXX_ATOMIC_BUILTINSÌ65536Ö0 +_GLIBCXX_ATOMIC_LOCK_FREE_HÌ65536Ö0 +_GLIBCXX_ATOMIC_WORD_HÌ65536Ö0 +_GLIBCXX_BASIC_FILE_STDIO_HÌ65536Ö0 +_GLIBCXX_BEGIN_EXTERN_CÌ65536Ö0 +_GLIBCXX_BEGIN_NAMESPACE_ALGOÌ65536Ö0 +_GLIBCXX_BEGIN_NAMESPACE_CONTAINERÌ65536Ö0 +_GLIBCXX_BEGIN_NAMESPACE_CXX11Ì65536Ö0 +_GLIBCXX_BEGIN_NAMESPACE_LDBLÌ65536Ö0 +_GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11Ì65536Ö0 +_GLIBCXX_BEGIN_NAMESPACE_VERSIONÌ65536Ö0 +_GLIBCXX_CCTYPEÌ65536Ö0 +_GLIBCXX_CLOCALEÌ65536Ö0 +_GLIBCXX_CONSTÌ65536Ö0 +_GLIBCXX_CONSTEXPRÌ65536Ö0 +_GLIBCXX_CPU_DEFINESÌ65536Ö0 +_GLIBCXX_CSTDIOÌ65536Ö0 +_GLIBCXX_CWCHARÌ65536Ö0 +_GLIBCXX_CWCTYPEÌ65536Ö0 +_GLIBCXX_CXX_ALLOCATOR_HÌ65536Ö0 +_GLIBCXX_CXX_CONFIG_HÌ65536Ö0 +_GLIBCXX_CXX_IO_HÌ65536Ö0 +_GLIBCXX_CXX_LOCALE_HÌ65536Ö0 +_GLIBCXX_C_LOCALE_GNUÌ65536Ö0 +_GLIBCXX_DEBUG_ASSERTÌ131072Í(_Condition)Ö0 +_GLIBCXX_DEBUG_MACRO_SWITCH_HÌ65536Ö0 +_GLIBCXX_DEBUG_ONLYÌ131072Í(_Statement)Ö0 +_GLIBCXX_DEBUG_PEDASSERTÌ131072Í(_Condition)Ö0 +_GLIBCXX_DEFAULT_ABI_TAGÌ65536Ö0 +_GLIBCXX_DEPRECATEDÌ65536Ö0 +_GLIBCXX_END_EXTERN_CÌ65536Ö0 +_GLIBCXX_END_NAMESPACE_ALGOÌ65536Ö0 +_GLIBCXX_END_NAMESPACE_CONTAINERÌ65536Ö0 +_GLIBCXX_END_NAMESPACE_CXX11Ì65536Ö0 +_GLIBCXX_END_NAMESPACE_LDBLÌ65536Ö0 +_GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11Ì65536Ö0 +_GLIBCXX_END_NAMESPACE_VERSIONÌ65536Ö0 +_GLIBCXX_EXTERN_TEMPLATEÌ65536Ö0 +_GLIBCXX_FAST_MATHÌ65536Ö0 +_GLIBCXX_FORWARDÌ131072Í(_Tp,__val)Ö0 +_GLIBCXX_FSTREAMÌ65536Ö0 +_GLIBCXX_FULLY_DYNAMIC_STRINGÌ65536Ö0 +_GLIBCXX_GCC_GTHR_HÌ65536Ö0 +_GLIBCXX_GCC_GTHR_POSIX_HÌ65536Ö0 +_GLIBCXX_GTHREAD_USE_WEAKÌ65536Ö0 +_GLIBCXX_HAS_GTHREADSÌ65536Ö0 +_GLIBCXX_HAVE_ACOSFÌ65536Ö0 +_GLIBCXX_HAVE_ACOSLÌ65536Ö0 +_GLIBCXX_HAVE_ASINFÌ65536Ö0 +_GLIBCXX_HAVE_ASINLÌ65536Ö0 +_GLIBCXX_HAVE_AS_SYMVER_DIRECTIVEÌ65536Ö0 +_GLIBCXX_HAVE_ATAN2FÌ65536Ö0 +_GLIBCXX_HAVE_ATAN2LÌ65536Ö0 +_GLIBCXX_HAVE_ATANFÌ65536Ö0 +_GLIBCXX_HAVE_ATANLÌ65536Ö0 +_GLIBCXX_HAVE_ATTRIBUTE_VISIBILITYÌ65536Ö0 +_GLIBCXX_HAVE_AT_QUICK_EXITÌ65536Ö0 +_GLIBCXX_HAVE_CEILFÌ65536Ö0 +_GLIBCXX_HAVE_CEILLÌ65536Ö0 +_GLIBCXX_HAVE_COMPLEX_HÌ65536Ö0 +_GLIBCXX_HAVE_COSFÌ65536Ö0 +_GLIBCXX_HAVE_COSHFÌ65536Ö0 +_GLIBCXX_HAVE_COSHLÌ65536Ö0 +_GLIBCXX_HAVE_COSLÌ65536Ö0 +_GLIBCXX_HAVE_DIRENT_HÌ65536Ö0 +_GLIBCXX_HAVE_DLFCN_HÌ65536Ö0 +_GLIBCXX_HAVE_EBADMSGÌ65536Ö0 +_GLIBCXX_HAVE_ECANCELEDÌ65536Ö0 +_GLIBCXX_HAVE_ECHILDÌ65536Ö0 +_GLIBCXX_HAVE_EIDRMÌ65536Ö0 +_GLIBCXX_HAVE_ENDIAN_HÌ65536Ö0 +_GLIBCXX_HAVE_ENODATAÌ65536Ö0 +_GLIBCXX_HAVE_ENOLINKÌ65536Ö0 +_GLIBCXX_HAVE_ENOSPCÌ65536Ö0 +_GLIBCXX_HAVE_ENOSRÌ65536Ö0 +_GLIBCXX_HAVE_ENOSTRÌ65536Ö0 +_GLIBCXX_HAVE_ENOTRECOVERABLEÌ65536Ö0 +_GLIBCXX_HAVE_ENOTSUPÌ65536Ö0 +_GLIBCXX_HAVE_EOVERFLOWÌ65536Ö0 +_GLIBCXX_HAVE_EOWNERDEADÌ65536Ö0 +_GLIBCXX_HAVE_EPERMÌ65536Ö0 +_GLIBCXX_HAVE_EPROTOÌ65536Ö0 +_GLIBCXX_HAVE_ETIMEÌ65536Ö0 +_GLIBCXX_HAVE_ETIMEDOUTÌ65536Ö0 +_GLIBCXX_HAVE_ETXTBSYÌ65536Ö0 +_GLIBCXX_HAVE_EWOULDBLOCKÌ65536Ö0 +_GLIBCXX_HAVE_EXECINFO_HÌ65536Ö0 +_GLIBCXX_HAVE_EXPFÌ65536Ö0 +_GLIBCXX_HAVE_EXPLÌ65536Ö0 +_GLIBCXX_HAVE_FABSFÌ65536Ö0 +_GLIBCXX_HAVE_FABSLÌ65536Ö0 +_GLIBCXX_HAVE_FCNTL_HÌ65536Ö0 +_GLIBCXX_HAVE_FENV_HÌ65536Ö0 +_GLIBCXX_HAVE_FINITEÌ65536Ö0 +_GLIBCXX_HAVE_FINITEFÌ65536Ö0 +_GLIBCXX_HAVE_FINITELÌ65536Ö0 +_GLIBCXX_HAVE_FLOAT_HÌ65536Ö0 +_GLIBCXX_HAVE_FLOORFÌ65536Ö0 +_GLIBCXX_HAVE_FLOORLÌ65536Ö0 +_GLIBCXX_HAVE_FMODFÌ65536Ö0 +_GLIBCXX_HAVE_FMODLÌ65536Ö0 +_GLIBCXX_HAVE_FREXPFÌ65536Ö0 +_GLIBCXX_HAVE_FREXPLÌ65536Ö0 +_GLIBCXX_HAVE_GETIPINFOÌ65536Ö0 +_GLIBCXX_HAVE_GETSÌ65536Ö0 +_GLIBCXX_HAVE_HYPOTÌ65536Ö0 +_GLIBCXX_HAVE_HYPOTFÌ65536Ö0 +_GLIBCXX_HAVE_HYPOTLÌ65536Ö0 +_GLIBCXX_HAVE_ICONVÌ65536Ö0 +_GLIBCXX_HAVE_INT64_TÌ65536Ö0 +_GLIBCXX_HAVE_INT64_T_LONGÌ65536Ö0 +_GLIBCXX_HAVE_INTTYPES_HÌ65536Ö0 +_GLIBCXX_HAVE_ISINFFÌ65536Ö0 +_GLIBCXX_HAVE_ISINFLÌ65536Ö0 +_GLIBCXX_HAVE_ISNANFÌ65536Ö0 +_GLIBCXX_HAVE_ISNANLÌ65536Ö0 +_GLIBCXX_HAVE_ISWBLANKÌ65536Ö0 +_GLIBCXX_HAVE_LC_MESSAGESÌ65536Ö0 +_GLIBCXX_HAVE_LDEXPFÌ65536Ö0 +_GLIBCXX_HAVE_LDEXPLÌ65536Ö0 +_GLIBCXX_HAVE_LIBINTL_HÌ65536Ö0 +_GLIBCXX_HAVE_LIMIT_ASÌ65536Ö0 +_GLIBCXX_HAVE_LIMIT_DATAÌ65536Ö0 +_GLIBCXX_HAVE_LIMIT_FSIZEÌ65536Ö0 +_GLIBCXX_HAVE_LIMIT_RSSÌ65536Ö0 +_GLIBCXX_HAVE_LIMIT_VMEMÌ65536Ö0 +_GLIBCXX_HAVE_LINUX_FUTEXÌ65536Ö0 +_GLIBCXX_HAVE_LOCALE_HÌ65536Ö0 +_GLIBCXX_HAVE_LOG10FÌ65536Ö0 +_GLIBCXX_HAVE_LOG10LÌ65536Ö0 +_GLIBCXX_HAVE_LOGFÌ65536Ö0 +_GLIBCXX_HAVE_LOGLÌ65536Ö0 +_GLIBCXX_HAVE_MBSTATE_TÌ65536Ö0 +_GLIBCXX_HAVE_MEMORY_HÌ65536Ö0 +_GLIBCXX_HAVE_MODFÌ65536Ö0 +_GLIBCXX_HAVE_MODFFÌ65536Ö0 +_GLIBCXX_HAVE_MODFLÌ65536Ö0 +_GLIBCXX_HAVE_POLLÌ65536Ö0 +_GLIBCXX_HAVE_POWFÌ65536Ö0 +_GLIBCXX_HAVE_POWLÌ65536Ö0 +_GLIBCXX_HAVE_QUICK_EXITÌ65536Ö0 +_GLIBCXX_HAVE_SETENVÌ65536Ö0 +_GLIBCXX_HAVE_SINCOSÌ65536Ö0 +_GLIBCXX_HAVE_SINCOSFÌ65536Ö0 +_GLIBCXX_HAVE_SINCOSLÌ65536Ö0 +_GLIBCXX_HAVE_SINFÌ65536Ö0 +_GLIBCXX_HAVE_SINHFÌ65536Ö0 +_GLIBCXX_HAVE_SINHLÌ65536Ö0 +_GLIBCXX_HAVE_SINLÌ65536Ö0 +_GLIBCXX_HAVE_SQRTFÌ65536Ö0 +_GLIBCXX_HAVE_SQRTLÌ65536Ö0 +_GLIBCXX_HAVE_STDALIGN_HÌ65536Ö0 +_GLIBCXX_HAVE_STDBOOL_HÌ65536Ö0 +_GLIBCXX_HAVE_STDINT_HÌ65536Ö0 +_GLIBCXX_HAVE_STDLIB_HÌ65536Ö0 +_GLIBCXX_HAVE_STRERROR_LÌ65536Ö0 +_GLIBCXX_HAVE_STRERROR_RÌ65536Ö0 +_GLIBCXX_HAVE_STRINGS_HÌ65536Ö0 +_GLIBCXX_HAVE_STRING_HÌ65536Ö0 +_GLIBCXX_HAVE_STRTOFÌ65536Ö0 +_GLIBCXX_HAVE_STRTOLDÌ65536Ö0 +_GLIBCXX_HAVE_STRUCT_DIRENT_D_TYPEÌ65536Ö0 +_GLIBCXX_HAVE_STRXFRM_LÌ65536Ö0 +_GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORTÌ65536Ö0 +_GLIBCXX_HAVE_SYS_IOCTL_HÌ65536Ö0 +_GLIBCXX_HAVE_SYS_IPC_HÌ65536Ö0 +_GLIBCXX_HAVE_SYS_PARAM_HÌ65536Ö0 +_GLIBCXX_HAVE_SYS_RESOURCE_HÌ65536Ö0 +_GLIBCXX_HAVE_SYS_SEM_HÌ65536Ö0 +_GLIBCXX_HAVE_SYS_STATVFS_HÌ65536Ö0 +_GLIBCXX_HAVE_SYS_STAT_HÌ65536Ö0 +_GLIBCXX_HAVE_SYS_SYSINFO_HÌ65536Ö0 +_GLIBCXX_HAVE_SYS_TIME_HÌ65536Ö0 +_GLIBCXX_HAVE_SYS_TYPES_HÌ65536Ö0 +_GLIBCXX_HAVE_SYS_UIO_HÌ65536Ö0 +_GLIBCXX_HAVE_S_ISREGÌ65536Ö0 +_GLIBCXX_HAVE_TANFÌ65536Ö0 +_GLIBCXX_HAVE_TANHFÌ65536Ö0 +_GLIBCXX_HAVE_TANHLÌ65536Ö0 +_GLIBCXX_HAVE_TANLÌ65536Ö0 +_GLIBCXX_HAVE_TGMATH_HÌ65536Ö0 +_GLIBCXX_HAVE_TLSÌ65536Ö0 +_GLIBCXX_HAVE_UNISTD_HÌ65536Ö0 +_GLIBCXX_HAVE_UTIME_HÌ65536Ö0 +_GLIBCXX_HAVE_VFWSCANFÌ65536Ö0 +_GLIBCXX_HAVE_VSWSCANFÌ65536Ö0 +_GLIBCXX_HAVE_VWSCANFÌ65536Ö0 +_GLIBCXX_HAVE_WCHAR_HÌ65536Ö0 +_GLIBCXX_HAVE_WCSTOFÌ65536Ö0 +_GLIBCXX_HAVE_WCTYPE_HÌ65536Ö0 +_GLIBCXX_HAVE_WRITEVÌ65536Ö0 +_GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPLÌ65536Ö0 +_GLIBCXX_HOSTEDÌ65536Ö0 +_GLIBCXX_ICONV_CONSTÌ65536Ö0 +_GLIBCXX_INLINE_VERSIONÌ65536Ö0 +_GLIBCXX_IOSÌ65536Ö0 +_GLIBCXX_IOSFWDÌ65536Ö0 +_GLIBCXX_ISTREAMÌ65536Ö0 +_GLIBCXX_LONG_DOUBLE_COMPATÌ65536Ö0 +_GLIBCXX_MAKE_MOVE_IF_NOEXCEPT_ITERATORÌ131072Í(_Iter)Ö0 +_GLIBCXX_MAKE_MOVE_ITERATORÌ131072Í(_Iter)Ö0 +_GLIBCXX_MEMORYÌ65536Ö0 +_GLIBCXX_MOVEÌ131072Í(__val)Ö0 +_GLIBCXX_MOVE3Ì131072Í(_Tp,_Up,_Vp)Ö0 +_GLIBCXX_MOVE_BACKWARD3Ì131072Í(_Tp,_Up,_Vp)Ö0 +_GLIBCXX_NAMESPACE_CXX11Ì65536Ö0 +_GLIBCXX_NAMESPACE_LDBLÌ65536Ö0 +_GLIBCXX_NAMESPACE_LDBL_OR_CXX11Ì65536Ö0 +_GLIBCXX_NOEXCEPTÌ65536Ö0 +_GLIBCXX_NORETURNÌ65536Ö0 +_GLIBCXX_NOTHROWÌ65536Ö0 +_GLIBCXX_NUM_CATEGORIESÌ65536Ö0 +_GLIBCXX_NUM_CXX11_FACETSÌ65536Ö0 +_GLIBCXX_NUM_FACETSÌ65536Ö0 +_GLIBCXX_NUM_UNICODE_FACETSÌ65536Ö0 +_GLIBCXX_OSTREAMÌ65536Ö0 +_GLIBCXX_OS_DEFINESÌ65536Ö0 +_GLIBCXX_PACKAGE_BUGREPORTÌ65536Ö0 +_GLIBCXX_PACKAGE_NAMEÌ65536Ö0 +_GLIBCXX_PACKAGE_STRINGÌ65536Ö0 +_GLIBCXX_PACKAGE_TARNAMEÌ65536Ö0 +_GLIBCXX_PACKAGE_URLÌ65536Ö0 +_GLIBCXX_PACKAGE__GLIBCXX_VERSIONÌ65536Ö0 +_GLIBCXX_POSTYPES_HÌ65536Ö0 +_GLIBCXX_PREDEFINED_OPS_HÌ65536Ö0 +_GLIBCXX_PSEUDO_VISIBILITYÌ131072Í(V)Ö0 +_GLIBCXX_PUREÌ65536Ö0 +_GLIBCXX_RANGE_ACCESS_HÌ65536Ö0 +_GLIBCXX_READ_MEM_BARRIERÌ65536Ö0 +_GLIBCXX_RES_LIMITSÌ65536Ö0 +_GLIBCXX_STDEXCEPTÌ65536Ö0 +_GLIBCXX_STDIO_EOFÌ65536Ö0 +_GLIBCXX_STDIO_SEEK_CURÌ65536Ö0 +_GLIBCXX_STDIO_SEEK_ENDÌ65536Ö0 +_GLIBCXX_STD_AÌ65536Ö0 +_GLIBCXX_STD_CÌ65536Ö0 +_GLIBCXX_STRINGÌ65536Ö0 +_GLIBCXX_SYMVERÌ65536Ö0 +_GLIBCXX_SYMVER_GNUÌ65536Ö0 +_GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTERÌ131072Í(A)Ö0 +_GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFOREÌ131072Í(A)Ö0 +_GLIBCXX_THROWÌ131072Í(_EXC)Ö0 +_GLIBCXX_THROW_OR_ABORTÌ131072Í(_EXC)Ö0 +_GLIBCXX_USE_C99Ì65536Ö0 +_GLIBCXX_USE_C99_COMPLEXÌ65536Ö0 +_GLIBCXX_USE_C99_COMPLEX_TR1Ì65536Ö0 +_GLIBCXX_USE_C99_CTYPE_TR1Ì65536Ö0 +_GLIBCXX_USE_C99_FENV_TR1Ì65536Ö0 +_GLIBCXX_USE_C99_INTTYPES_TR1Ì65536Ö0 +_GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1Ì65536Ö0 +_GLIBCXX_USE_C99_MATHÌ65536Ö0 +_GLIBCXX_USE_C99_MATH_TR1Ì65536Ö0 +_GLIBCXX_USE_C99_STDINT_TR1Ì65536Ö0 +_GLIBCXX_USE_CLOCK_MONOTONICÌ65536Ö0 +_GLIBCXX_USE_CLOCK_REALTIMEÌ65536Ö0 +_GLIBCXX_USE_CONSTEXPRÌ65536Ö0 +_GLIBCXX_USE_CXX11_ABIÌ65536Ö0 +_GLIBCXX_USE_DECIMAL_FLOATÌ65536Ö0 +_GLIBCXX_USE_DEPRECATEDÌ65536Ö0 +_GLIBCXX_USE_DUAL_ABIÌ65536Ö0 +_GLIBCXX_USE_FCHMODÌ65536Ö0 +_GLIBCXX_USE_FCHMODATÌ65536Ö0 +_GLIBCXX_USE_FLOAT128Ì65536Ö0 +_GLIBCXX_USE_GETTIMEOFDAYÌ65536Ö0 +_GLIBCXX_USE_GET_NPROCSÌ65536Ö0 +_GLIBCXX_USE_INT128Ì65536Ö0 +_GLIBCXX_USE_LFSÌ65536Ö0 +_GLIBCXX_USE_LONG_LONGÌ65536Ö0 +_GLIBCXX_USE_NANOSLEEPÌ65536Ö0 +_GLIBCXX_USE_NLSÌ65536Ö0 +_GLIBCXX_USE_NOEXCEPTÌ65536Ö0 +_GLIBCXX_USE_PTHREAD_RWLOCK_TÌ65536Ö0 +_GLIBCXX_USE_RANDOM_TR1Ì65536Ö0 +_GLIBCXX_USE_REALPATHÌ65536Ö0 +_GLIBCXX_USE_SCHED_YIELDÌ65536Ö0 +_GLIBCXX_USE_SC_NPROCESSORS_ONLNÌ65536Ö0 +_GLIBCXX_USE_ST_MTIMÌ65536Ö0 +_GLIBCXX_USE_TMPNAMÌ65536Ö0 +_GLIBCXX_USE_UTIMENSATÌ65536Ö0 +_GLIBCXX_USE_WCHAR_TÌ65536Ö0 +_GLIBCXX_VERBOSEÌ65536Ö0 +_GLIBCXX_VISIBILITYÌ131072Í(V)Ö0 +_GLIBCXX_WEAK_DEFINITIONÌ65536Ö0 +_GLIBCXX_WRITE_MEM_BARRIERÌ65536Ö0 +_GLIBCXX_X86_RDRANDÌ65536Ö0 +_GLIBXX_STREAMBUFÌ65536Ö0 _GNU_SOURCEÌ65536Ö0 +_GTHREAD_USE_MUTEX_TIMEDLOCKÌ65536Ö0 _G_BUFSIZÌ65536Ö0 _G_HAVE_MMAPÌ65536Ö0 _G_HAVE_MREMAPÌ65536Ö0 @@ -2136,6 +3088,7 @@ _G_config_h _G_va_listÌ65536Ö0 _HAVE_STRUCT_TERMIOS_C_ISPEEDÌ65536Ö0 _HAVE_STRUCT_TERMIOS_C_OSPEEDÌ65536Ö0 +_INTTYPES_HÌ65536Ö0 _IOÌ131072Í(type,nr)Ö0 _IOCÌ131072Í(dir,type,nr,size)Ö0 _IOC_DIRÌ131072Í(nr)Ö0 @@ -2165,6 +3118,7 @@ _IOR _IOR_BADÌ131072Í(type,nr,size)Ö0 _IOS_APPENDÌ65536Ö0 _IOS_ATENDÌ65536Ö0 +_IOS_BASE_HÌ65536Ö0 _IOS_BINÌ65536Ö0 _IOS_INPUTÌ65536Ö0 _IOS_NOCREATEÌ65536Ö0 @@ -2249,7 +3203,21 @@ _IO_wint_t _ISOC11_SOURCEÌ65536Ö0 _ISOC95_SOURCEÌ65536Ö0 _ISOC99_SOURCEÌ65536Ö0 +_ISTREAM_TCCÌ65536Ö0 _ISbitÌ131072Í(bit)Ö0 +_ISwalnumÌ4Îanon_enum_16Ö0 +_ISwalphaÌ4Îanon_enum_16Ö0 +_ISwbitÌ131072Í(bit)Ö0 +_ISwblankÌ4Îanon_enum_16Ö0 +_ISwcntrlÌ4Îanon_enum_16Ö0 +_ISwdigitÌ4Îanon_enum_16Ö0 +_ISwgraphÌ4Îanon_enum_16Ö0 +_ISwlowerÌ4Îanon_enum_16Ö0 +_ISwprintÌ4Îanon_enum_16Ö0 +_ISwpunctÌ4Îanon_enum_16Ö0 +_ISwspaceÌ4Îanon_enum_16Ö0 +_ISwupperÌ4Îanon_enum_16Ö0 +_ISwxdigitÌ4Îanon_enum_16Ö0 _LARGEFILE64_SOURCEÌ65536Ö0 _LARGEFILE_SOURCEÌ65536Ö0 _LFS64_ASYNCHRONOUS_IOÌ65536Ö0 @@ -2260,23 +3228,43 @@ _LFS_LARGEFILE _LIBC_LIMITS_H_Ì65536Ö0 _LIBGEN_HÌ65536Ö0 _LIBINTL_HÌ65536Ö0 +_LIBRAW_CLASS_HÌ65536Ö0 +_LIBRAW_ERRORS_HÌ65536Ö0 +_LIBRAW_INTERNAL_TYPES_HÌ65536Ö0 +_LIBRAW_TYPES_HÌ65536Ö0 +_LIBRAW_VERSION_MAKEÌ131072Í(a,b,c,d)Ö0 _LIMITS_H___Ì65536Ö0 _LINUX_IOCTL_HÌ65536Ö0 _LINUX_LIMITS_HÌ65536Ö0 +_LINUX_POSIX_TYPES_HÌ65536Ö0 +_LINUX_PRCTL_HÌ65536Ö0 +_LINUX_TYPES_HÌ65536Ö0 +_LOCALE_CLASSES_HÌ65536Ö0 +_LOCALE_CLASSES_TCCÌ65536Ö0 +_LOCALE_FACETS_HÌ65536Ö0 +_LOCALE_FACETS_TCCÌ65536Ö0 +_LOCALE_FWD_HÌ65536Ö0 _LOCALE_HÌ65536Ö0 _LONGNAME_HÌ65536Ö0 _LP64Ì65536Ö0 _MATH_HÌ65536Ö0 _MATH_H_MATHDEFÌ65536Ö0 +_MEMORYFWD_HÌ65536Ö0 +_MEMORY_HÌ65536Ö0 _MKNOD_VERÌ65536Ö0 _MKNOD_VER_LINUXÌ65536Ö0 +_MOVE_HÌ65536Ö0 _Mdouble_Ì65536Ö0 _Mdouble_BEGIN_NAMESPACEÌ65536Ö0 _Mdouble_END_NAMESPACEÌ65536Ö0 _Mfloat_Ì65536Ö0 _Mlong_double_Ì65536Ö0 +_NEWÌ65536Ö0 +_NEW_ALLOCATOR_HÌ65536Ö0 _NSIGÌ65536Ö0 _OLD_STDIO_MAGICÌ65536Ö0 +_OSTREAM_INSERT_HÌ65536Ö0 +_OSTREAM_TCCÌ65536Ö0 _PC_2_SYMLINKSÌ65536Ö0 _PC_ALLOC_SIZE_MINÌ65536Ö0 _PC_ASYNC_IOÌ65536Ö0 @@ -2410,6 +3398,9 @@ _POSIX_V7_LP64_OFF64 _POSIX_V7_LPBIG_OFFBIGÌ65536Ö0 _POSIX_VDISABLEÌ65536Ö0 _POSIX_VERSIONÌ65536Ö0 +_PTHREAD_HÌ65536Ö0 +_PTR_TRAITS_HÌ65536Ö0 +_SCHED_HÌ65536Ö0 _SC_2_CHAR_TERMÌ65536Ö0 _SC_2_C_BINDÌ65536Ö0 _SC_2_C_DEVÌ65536Ö0 @@ -2649,12 +3640,26 @@ _STDINT_H _STDIO_HÌ65536Ö0 _STDIO_USES_IOSTREAMÌ65536Ö0 _STDLIB_HÌ65536Ö0 +_STL_ALGOBASE_HÌ65536Ö0 +_STL_CONSTRUCT_HÌ65536Ö0 +_STL_FUNCTION_HÌ65536Ö0 +_STL_ITERATOR_BASE_FUNCS_HÌ65536Ö0 +_STL_ITERATOR_BASE_TYPES_HÌ65536Ö0 +_STL_ITERATOR_HÌ65536Ö0 +_STL_PAIR_HÌ65536Ö0 +_STL_RAW_STORAGE_ITERATOR_HÌ65536Ö0 +_STL_TEMPBUF_HÌ65536Ö0 +_STL_UNINITIALIZED_HÌ65536Ö0 +_STREAMBUF_ITERATOR_HÌ65536Ö0 +_STREAMBUF_TCCÌ65536Ö0 +_STRINGFWD_HÌ65536Ö0 _STRINGS_HÌ65536Ö0 _STRING_HÌ65536Ö0 _STRUCT_TIMEVALÌ65536Ö0 _SYS_CDEFS_HÌ65536Ö0 _SYS_IOCTL_HÌ65536Ö0 _SYS_MMAN_HÌ65536Ö0 +_SYS_PRCTL_HÌ65536Ö0 _SYS_SELECT_HÌ65536Ö0 _SYS_SIZE_T_HÌ65536Ö0 _SYS_STAT_HÌ65536Ö0 @@ -2663,6 +3668,7 @@ _SYS_TIME_H _SYS_TTYDEFAULTS_H_Ì65536Ö0 _SYS_TYPES_HÌ65536Ö0 _SYS_UCONTEXT_HÌ65536Ö0 +_SYS_WAIT_HÌ65536Ö0 _TERMIOS_HÌ65536Ö0 _TIFFCONF_Ì65536Ö0 _TIFFIO_Ì65536Ö0 @@ -2680,12 +3686,15 @@ _VA_LIST_ _VA_LIST_DEFINEDÌ65536Ö0 _VA_LIST_T_HÌ65536Ö0 _WARNÌ1024Í(const char *fmt, ...)Ö0Ïint +_WCHAR_HÌ65536Ö0 _WCHAR_TÌ65536Ö0 _WCHAR_T_Ì65536Ö0 _WCHAR_T_DECLAREDÌ65536Ö0 _WCHAR_T_DEFINEDÌ65536Ö0 _WCHAR_T_DEFINED_Ì65536Ö0 _WCHAR_T_HÌ65536Ö0 +_WCTYPE_HÌ65536Ö0 +_WINT_TÌ65536Ö0 _XBS5_LP64_OFF64Ì65536Ö0 _XBS5_LPBIG_OFFBIGÌ65536Ö0 _XLOCALE_HÌ65536Ö0 @@ -2707,7 +3716,10 @@ _XOPEN_XPG3 _XOPEN_XPG4Ì65536Ö0 __ASMNAMEÌ131072Í(cname)Ö0 __ASMNAME2Ì131072Í(prefix,cname)Ö0 +__ASM_GENERIC_BITS_PER_LONGÌ65536Ö0 __ASM_GENERIC_IOCTLS_HÌ65536Ö0 +__ASM_GENERIC_POSIX_TYPES_HÌ65536Ö0 +__ASM_X86_BITSPERLONG_HÌ65536Ö0 __ASSERT_FUNCTIONÌ65536Ö0 __ASSERT_VOID_CASTÌ65536Ö0 __ATOMIC_ACQUIREÌ65536Ö0 @@ -2723,6 +3735,7 @@ __BEGIN_NAMESPACE_C99 __BEGIN_NAMESPACE_STDÌ65536Ö0 __BIGGEST_ALIGNMENT__Ì65536Ö0 __BIG_ENDIANÌ65536Ö0 +__BITS_PER_LONGÌ65536Ö0 __BIT_TYPES_DEFINED__Ì65536Ö0 __BLKCNT64_T_TYPEÌ65536Ö0 __BLKCNT_T_TYPEÌ65536Ö0 @@ -2738,7 +3751,21 @@ __CMDLNOPTS_H__ __COMPAR_FN_TÌ65536Ö0 __CONCATÌ131072Í(x,y)Ö0 __CORRECT_ISO_CPP_STRING_H_PROTOÌ65536Ö0 +__CORRECT_ISO_CPP_WCHAR_H_PROTOÌ65536Ö0 +__CPUELTÌ131072Í(cpu)Ö0 +__CPUMASKÌ131072Í(cpu)Ö0 +__CPU_ALLOCÌ131072Í(count)Ö0 +__CPU_ALLOC_SIZEÌ131072Í(count)Ö0 +__CPU_CLR_SÌ131072Í(cpu,setsize,cpusetp)Ö0 +__CPU_COUNT_SÌ131072Í(setsize,cpusetp)Ö0 +__CPU_EQUAL_SÌ131072Í(setsize,cpusetp1,cpusetp2)Ö0 +__CPU_FREEÌ131072Í(cpuset)Ö0 +__CPU_ISSET_SÌ131072Í(cpu,setsize,cpusetp)Ö0 __CPU_MASK_TYPEÌ65536Ö0 +__CPU_OP_SÌ131072Í(setsize,destset,srcset1,srcset2,op)Ö0 +__CPU_SETSIZEÌ65536Ö0 +__CPU_SET_SÌ131072Í(cpu,setsize,cpusetp)Ö0 +__CPU_ZERO_SÌ131072Í(setsize,cpusetp)Ö0 __DADDR_T_TYPEÌ65536Ö0 __DBL_DECIMAL_DIG__Ì65536Ö0 __DBL_DENORM_MIN__Ì65536Ö0 @@ -2754,6 +3781,7 @@ __DBL_MAX__ __DBL_MIN_10_EXP__Ì65536Ö0 __DBL_MIN_EXP__Ì65536Ö0 __DBL_MIN__Ì65536Ö0 +__DEBAYER_H__Ì65536Ö0 __DEC128_EPSILON__Ì65536Ö0 __DEC128_MANT_DIG__Ì65536Ö0 __DEC128_MAX_EXP__Ì65536Ö0 @@ -2803,6 +3831,7 @@ __END_DECLS __END_NAMESPACE_C99Ì65536Ö0 __END_NAMESPACE_STDÌ65536Ö0 __EXCEPTIONSÌ65536Ö0 +__EXCEPTION__Ì65536Ö0 __FDS_BITSÌ131072Í(set)Ö0 __FD_CLRÌ131072Í(d,set)Ö0 __FD_ELTÌ65536Ö0 @@ -2867,6 +3896,7 @@ __GCC_IEC_559_COMPLEX __GID_T_TYPEÌ65536Ö0 __GLIBCXX_BITSIZE_INT_N_0Ì65536Ö0 __GLIBCXX_TYPE_INT_N_0Ì65536Ö0 +__GLIBCXX__Ì65536Ö0 __GLIBC_MINOR__Ì65536Ö0 __GLIBC_PREREQÌ131072Í(maj,min)Ö0 __GLIBC__Ì65536Ö0 @@ -2879,6 +3909,15 @@ __GNUC__ __GNUG__Ì65536Ö0 __GNU_GETTEXT_SUPPORTED_REVISIONÌ131072Í(major)Ö0 __GNU_LIBRARY__Ì65536Ö0 +__GTHREADSÌ65536Ö0 +__GTHREADS_CXX0XÌ65536Ö0 +__GTHREAD_COND_INITÌ65536Ö0 +__GTHREAD_HAS_CONDÌ65536Ö0 +__GTHREAD_MUTEX_INITÌ65536Ö0 +__GTHREAD_MUTEX_INIT_FUNCTIONÌ65536Ö0 +__GTHREAD_ONCE_INITÌ65536Ö0 +__GTHREAD_RECURSIVE_MUTEX_INITÌ65536Ö0 +__GTHREAD_TIME_INITÌ65536Ö0 __GXX_ABI_VERSIONÌ65536Ö0 __GXX_RTTIÌ65536Ö0 __GXX_WEAK__Ì65536Ö0 @@ -2926,7 +3965,21 @@ __INT_LEAST64_TYPE__ __INT_LEAST8_MAX__Ì65536Ö0 __INT_LEAST8_TYPE__Ì65536Ö0 __INT_MAX__Ì65536Ö0 +__INT_NÌ65536Ö0 +__INT_NÌ131072Í(TYPE)Ö0 __INT_WCHAR_T_HÌ65536Ö0 +__ISwalnumÌ4Îanon_enum_16Ö0 +__ISwalphaÌ4Îanon_enum_16Ö0 +__ISwblankÌ4Îanon_enum_16Ö0 +__ISwcntrlÌ4Îanon_enum_16Ö0 +__ISwdigitÌ4Îanon_enum_16Ö0 +__ISwgraphÌ4Îanon_enum_16Ö0 +__ISwlowerÌ4Îanon_enum_16Ö0 +__ISwprintÌ4Îanon_enum_16Ö0 +__ISwpunctÌ4Îanon_enum_16Ö0 +__ISwspaceÌ4Îanon_enum_16Ö0 +__ISwupperÌ4Îanon_enum_16Ö0 +__ISwxdigitÌ4Îanon_enum_16Ö0 __KERNEL_STRICT_NAMESÌ65536Ö0 __KEY_T_TYPEÌ65536Ö0 __LC_ADDRESSÌ65536Ö0 @@ -2962,6 +4015,8 @@ __LDBL_REDIR_DECL __LDBL_REDIR_NTHÌ131072Í(name,proto)Ö0 __LEAFÌ65536Ö0 __LEAF_ATTRÌ65536Ö0 +__LIBRAW_ALLOC_HÌ65536Ö0 +__LIBRAW_DATASTREAM_HÌ65536Ö0 __LITTLE_ENDIANÌ65536Ö0 __LONG_LONG_MAX__Ì65536Ö0 __LONG_LONG_PAIRÌ131072Í(HI,LO)Ö0 @@ -2987,8 +4042,11 @@ __MATH_PRECNAME __MAX_BAUDÌ65536Ö0 __MMX__Ì65536Ö0 __MODE_T_TYPEÌ65536Ö0 +__NÌ131072Í(msgid)Ö0 +__NCPUBITSÌ65536Ö0 __NFDBITSÌ65536Ö0 __NLINK_T_TYPEÌ65536Ö0 +__NO_CTYPEÌ65536Ö0 __NTHÌ131072Í(fct)Ö0 __OFF64_T_TYPEÌ65536Ö0 __OFF_T_MATCHES_OFF64_TÌ65536Ö0 @@ -3018,6 +4076,8 @@ __POSIX2_THIS_VERSION __POSIX_FADV_DONTNEEDÌ65536Ö0 __POSIX_FADV_NOREUSEÌ65536Ö0 __PRAGMA_REDEFINE_EXTNAMEÌ65536Ö0 +__PRI64_PREFIXÌ65536Ö0 +__PRIPTR_PREFIXÌ65536Ö0 __PTHREAD_MUTEX_HAVE_PREVÌ65536Ö0 __PTHREAD_RWLOCK_ELISION_EXTRAÌ65536Ö0 __PTHREAD_RWLOCK_INT_FLAGS_SHAREDÌ65536Ö0 @@ -3080,6 +4140,7 @@ __SI_MAX_SIZE __SI_PAD_SIZEÌ65536Ö0 __SLONG32_TYPEÌ65536Ö0 __SLONGWORD_TYPEÌ65536Ö0 +__SOCKET_H__Ì65536Ö0 __SQUAD_TYPEÌ65536Ö0 __SSE2_MATH__Ì65536Ö0 __SSE2__Ì65536Ö0 @@ -3196,13 +4257,12 @@ __USE_XOPEN_EXTENDED __USING_NAMESPACE_C99Ì131072Í(name)Ö0 __USING_NAMESPACE_STDÌ131072Í(name)Ö0 __UWORD_TYPEÌ65536Ö0 +__VERSION_HÌ65536Ö0 __VERSION__Ì65536Ö0 -__WAIT_INTÌ131072Í(status)Ö0 -__WAIT_STATUSÌ65536Ö0 -__WAIT_STATUS_DEFNÌ65536Ö0 __WALLÌ65536Ö0 __WCHAR_MAXÌ65536Ö0 __WCHAR_MAX__Ì65536Ö0 +__WCHAR_MB_LEN_MAXÌ65536Ö0 __WCHAR_MINÌ65536Ö0 __WCHAR_MIN__Ì65536Ö0 __WCHAR_TÌ65536Ö0 @@ -3228,12 +4288,18 @@ __W_CONTINUED __W_EXITCODEÌ131072Í(ret,sig)Ö0 __W_STOPCODEÌ131072Í(sig)Ö0 ____FILE_definedÌ65536Ö0 +____gwchar_t_definedÌ65536Ö0 ____mbstate_t_definedÌ65536Ö0 ___int_size_t_hÌ65536Ö0 ___int_wchar_t_hÌ65536Ö0 +__aligned_be64Ì65536Ö0 +__aligned_le64Ì65536Ö0 +__aligned_u64Ì65536Ö0 +__allocator_baseÌ65536Ö0 __always_inlineÌ65536Ö0 __amd64Ì65536Ö0 __amd64__Ì65536Ö0 +__argÌ64Î_pthread_cleanup_bufferÖ0Ïvoid * __attribute_alloc_size__Ì131072Í(params)Ö0 __attribute_artificial__Ì65536Ö0 __attribute_const__Ì65536Ö0 @@ -3245,10 +4311,13 @@ __attribute_noinline__ __attribute_pure__Ì65536Ö0 __attribute_used__Ì65536Ö0 __attribute_warn_unused_result__Ì65536Ö0 -__blkcnt64_tÌ4096Ö0Ïlong int -__blkcnt_tÌ4096Ö0Ïlong int +__be16Ì4096Ö0Ï__u16 +__be32Ì4096Ö0Ï__u32 +__be64Ì4096Ö0Ï__u64 +__bitsÌ64Îanon_struct_5Ö0Ï__cpu_mask +__bitwiseÌ65536Ö0 +__bitwise__Ì65536Ö0 __blkcnt_t_definedÌ65536Ö0 -__blksize_tÌ4096Ö0Ïlong int __blksize_t_definedÌ65536Ö0 __bool_true_false_are_definedÌ65536Ö0 __bosÌ131072Í(ptr)Ö0 @@ -3257,10 +4326,10 @@ __bswap_16 __bswap_constant_16Ì131072Í(x)Ö0 __bswap_constant_32Ì131072Í(x)Ö0 __bswap_constant_64Ì131072Í(x)Ö0 -__caddr_tÌ4096Ö0Ïchar * -__clock_tÌ4096Ö0Ïlong int +__canceltypeÌ64Î_pthread_cleanup_bufferÖ0Ïint +__catchÌ131072Í(X)Ö0 +__cleanup_fct_attributeÌ65536Ö0 __clock_t_definedÌ65536Ö0 -__clockid_tÌ4096Ö0Ïint __clockid_t_definedÌ65536Ö0 __clockid_time_tÌ65536Ö0 __code_model_small__Ì65536Ö0 @@ -3269,9 +4338,10 @@ __cpp_binary_literals __cpp_exceptionsÌ65536Ö0 __cpp_rttiÌ65536Ö0 __cpp_runtime_arraysÌ65536Ö0 -__daddr_tÌ4096Ö0Ïint +__cpu_maskÌ4096Ö0Ïunsigned long int +__cpu_set_t_definedÌ65536Ö0 __daddr_t_definedÌ65536Ö0 -__dev_tÌ4096Ö0Ïunsigned long int +__defined_schedparamÌ65536Ö0 __dev_t_definedÌ65536Ö0 __error_t_definedÌ65536Ö0 __errordeclÌ131072Í(name,msg)Ö0 @@ -3281,70 +4351,158 @@ __extern_always_inline __extern_inlineÌ65536Ö0 __flexarrÌ65536Ö0 __fortify_functionÌ65536Ö0 -__fsblkcnt64_tÌ4096Ö0Ïunsigned long int -__fsblkcnt_tÌ4096Ö0Ïunsigned long int __fsblkcnt_t_definedÌ65536Ö0 -__fsfilcnt64_tÌ4096Ö0Ïunsigned long int -__fsfilcnt_tÌ4096Ö0Ïunsigned long int __fsfilcnt_t_definedÌ65536Ö0 -__fsid_tÌ4096Ö0Ïanon_struct_0 -__fsword_tÌ4096Ö0Ïlong int -__gid_tÌ4096Ö0Ïunsigned int __gid_t_definedÌ65536Ö0 __glibc_likelyÌ131072Í(cond)Ö0 __glibc_unlikelyÌ131072Í(cond)Ö0 +__glibcxx_assertÌ131072Í(_Condition)Ö0 +__glibcxx_class_requiresÌ131072Í(_a,_b)Ö0 +__glibcxx_class_requires2Ì131072Í(_a,_b,_c)Ö0 +__glibcxx_class_requires3Ì131072Í(_a,_b,_c,_d)Ö0 +__glibcxx_class_requires4Ì131072Í(_a,_b,_c,_d,_e)Ö0 +__glibcxx_digitsÌ65536Ö0 +__glibcxx_digitsÌ131072Í(_Tp)Ö0 +__glibcxx_digits10Ì65536Ö0 +__glibcxx_digits10Ì131072Í(_Tp)Ö0 +__glibcxx_floatingÌ65536Ö0 +__glibcxx_floatingÌ131072Í(_Tp,_Fval,_Dval,_LDval)Ö0 +__glibcxx_function_requiresÌ131072Í(...)Ö0 +__glibcxx_maxÌ65536Ö0 +__glibcxx_maxÌ131072Í(_Tp)Ö0 +__glibcxx_max_digits10Ì65536Ö0 +__glibcxx_max_digits10Ì131072Í(_Tp)Ö0 +__glibcxx_max_exponent10Ì65536Ö0 +__glibcxx_max_exponent10Ì131072Í(_Tp)Ö0 +__glibcxx_minÌ65536Ö0 +__glibcxx_minÌ131072Í(_Tp)Ö0 +__glibcxx_requires_condÌ131072Í(_Cond,_Msg)Ö0 +__glibcxx_requires_heapÌ131072Í(_First,_Last)Ö0 +__glibcxx_requires_heap_predÌ131072Í(_First,_Last,_Pred)Ö0 +__glibcxx_requires_non_empty_rangeÌ131072Í(_First,_Last)Ö0 +__glibcxx_requires_nonemptyÌ131072Í()Ö0 +__glibcxx_requires_partitioned_lowerÌ131072Í(_First,_Last,_Value)Ö0 +__glibcxx_requires_partitioned_lower_predÌ131072Í(_First,_Last,_Value,_Pred)Ö0 +__glibcxx_requires_partitioned_upperÌ131072Í(_First,_Last,_Value)Ö0 +__glibcxx_requires_partitioned_upper_predÌ131072Í(_First,_Last,_Value,_Pred)Ö0 +__glibcxx_requires_sortedÌ131072Í(_First,_Last)Ö0 +__glibcxx_requires_sorted_predÌ131072Í(_First,_Last,_Pred)Ö0 +__glibcxx_requires_sorted_setÌ131072Í(_First1,_Last1,_First2)Ö0 +__glibcxx_requires_sorted_set_predÌ131072Í(_First1,_Last1,_First2,_Pred)Ö0 +__glibcxx_requires_stringÌ131072Í(_String)Ö0 +__glibcxx_requires_string_lenÌ131072Í(_String,_Len)Ö0 +__glibcxx_requires_subscriptÌ131072Í(_N)Ö0 +__glibcxx_requires_valid_rangeÌ131072Í(_First,_Last)Ö0 +__glibcxx_signedÌ65536Ö0 +__glibcxx_signedÌ131072Í(_Tp)Ö0 __gnu_linux__Ì65536Ö0 +__gthread_active_pÌ16Í(void)Ö0Ïinline int +__gthread_cond_broadcastÌ16Í(__gthread_cond_t *__cond)Ö0Ïinline int +__gthread_cond_destroyÌ16Í(__gthread_cond_t* __cond)Ö0Ïinline int +__gthread_cond_signalÌ16Í(__gthread_cond_t *__cond)Ö0Ïinline int +__gthread_cond_tÌ4096Ö0Ïpthread_cond_t +__gthread_cond_timedwaitÌ16Í(__gthread_cond_t *__cond, __gthread_mutex_t *__mutex, const __gthread_time_t *__abs_timeout)Ö0Ïinline int +__gthread_cond_waitÌ16Í(__gthread_cond_t *__cond, __gthread_mutex_t *__mutex)Ö0Ïinline int +__gthread_cond_wait_recursiveÌ16Í(__gthread_cond_t *__cond, __gthread_recursive_mutex_t *__mutex)Ö0Ïinline int +__gthread_createÌ16Í(__gthread_t *__threadid, void *(*__func) (void*), void *__args)Ö0Ïinline int +__gthread_detachÌ16Í(__gthread_t __threadid)Ö0Ïinline int +__gthread_equalÌ16Í(__gthread_t __t1, __gthread_t __t2)Ö0Ïinline int +__gthread_getspecificÌ16Í(__gthread_key_t __key)Ö0Ïinline void * +__gthread_joinÌ16Í(__gthread_t __threadid, void **__value_ptr)Ö0Ïinline int +__gthread_key_createÌ16Í(__gthread_key_t *__key, void (*__dtor) (void *))Ö0Ïinline int +__gthread_key_deleteÌ16Í(__gthread_key_t __key)Ö0Ïinline int +__gthread_key_tÌ4096Ö0Ïpthread_key_t +__gthread_mutex_destroyÌ16Í(__gthread_mutex_t *__mutex)Ö0Ïinline int +__gthread_mutex_init_functionÌ16Í(__gthread_mutex_t *__mutex)Ö0Ïinline void +__gthread_mutex_lockÌ16Í(__gthread_mutex_t *__mutex)Ö0Ïinline int +__gthread_mutex_tÌ4096Ö0Ïpthread_mutex_t +__gthread_mutex_timedlockÌ16Í(__gthread_mutex_t *__mutex, const __gthread_time_t *__abs_timeout)Ö0Ïinline int +__gthread_mutex_trylockÌ16Í(__gthread_mutex_t *__mutex)Ö0Ïinline int +__gthread_mutex_unlockÌ16Í(__gthread_mutex_t *__mutex)Ö0Ïinline int +__gthread_onceÌ16Í(__gthread_once_t *__once, void (*__func) (void))Ö0Ïinline int +__gthread_once_tÌ4096Ö0Ïpthread_once_t +__gthread_recursive_mutex_destroyÌ16Í(__gthread_recursive_mutex_t *__mutex)Ö0Ïinline int +__gthread_recursive_mutex_lockÌ16Í(__gthread_recursive_mutex_t *__mutex)Ö0Ïinline int +__gthread_recursive_mutex_tÌ4096Ö0Ïpthread_mutex_t +__gthread_recursive_mutex_timedlockÌ16Í(__gthread_recursive_mutex_t *__mutex, const __gthread_time_t *__abs_timeout)Ö0Ïinline int +__gthread_recursive_mutex_trylockÌ16Í(__gthread_recursive_mutex_t *__mutex)Ö0Ïinline int +__gthread_recursive_mutex_unlockÌ16Í(__gthread_recursive_mutex_t *__mutex)Ö0Ïinline int +__gthread_selfÌ16Í(void)Ö0Ïinline +__gthread_setspecificÌ16Í(__gthread_key_t __key, const void *__ptr)Ö0Ïinline int +__gthread_tÌ4096Ö0Ïpthread_t +__gthread_time_tÌ4096Ö0Ïtimespec +__gthread_yieldÌ16Í(void)Ö0Ïinline int +__gthrwÌ131072Í(name)Ö0 +__gthrw2Ì131072Í(name,name2,type)Ö0 +__gthrw_Ì131072Í(name)Ö0 +__gthrw_pragmaÌ131072Í(pragma)Ö0 +__gwchar_tÌ65536Ö0 __has_includeÌ131072Í(STR)Ö0 __has_include_nextÌ131072Í(STR)Ö0 __have_pthread_attr_tÌ65536Ö0 __have_sigevent_tÌ65536Ö0 __have_siginfo_tÌ65536Ö0 __have_sigval_tÌ65536Ö0 -__id_tÌ4096Ö0Ïunsigned int __id_t_definedÌ65536Ö0 -__ino64_tÌ4096Ö0Ïunsigned long int __ino64_t_definedÌ65536Ö0 -__ino_tÌ4096Ö0Ïunsigned long int __ino_t_definedÌ65536Ö0 -__int16_tÌ4096Ö0Ïsigned short int -__int32_tÌ4096Ö0Ïsigned int -__int64_tÌ4096Ö0Ïsigned long int -__int8_tÌ4096Ö0Ïsigned char __int8_t_definedÌ65536Ö0 __intN_tÌ131072Í(N,MODE)Ö0 -__intptr_tÌ4096Ö0Ïlong int __intptr_t_definedÌ65536Ö0 -__isalnum_lÌ131072Í(c,l)Ö0 -__isalpha_lÌ131072Í(c,l)Ö0 __isasciiÌ131072Í(c)Ö0 -__isascii_lÌ131072Í(c,l)Ö0 -__isblank_lÌ131072Í(c,l)Ö0 -__iscntrl_lÌ131072Í(c,l)Ö0 __isctype_fÌ131072Í(type)Ö0 __isctype_lÌ131072Í(c,type,locale)Ö0 -__isdigit_lÌ131072Í(c,l)Ö0 -__isgraph_lÌ131072Í(c,l)Ö0 __isleapÌ131072Í(year)Ö0 -__islower_lÌ131072Í(c,l)Ö0 -__isprint_lÌ131072Í(c,l)Ö0 -__ispunct_lÌ131072Í(c,l)Ö0 -__isspace_lÌ131072Í(c,l)Ö0 -__isupper_lÌ131072Í(c,l)Ö0 -__isxdigit_lÌ131072Í(c,l)Ö0 +__iswxxx_definedÌ65536Ö0 +__jmp_bufÌ4096Ö0Ïlong int __k8Ì65536Ö0 __k8__Ì65536Ö0 -__key_tÌ4096Ö0Ïint +__kernel_caddr_tÌ4096Ö0Ïchar * +__kernel_clock_tÌ4096Ö0Ï__kernel_long_t +__kernel_clockid_tÌ4096Ö0Ïint +__kernel_daddr_tÌ4096Ö0Ïint +__kernel_fd_setÌ4096Ö0Ïanon_struct_24 +__kernel_fsid_tÌ4096Ö0Ïanon_struct_25 +__kernel_gid16_tÌ4096Ö0Ïunsigned short +__kernel_gid32_tÌ4096Ö0Ïunsigned int +__kernel_gid_tÌ4096Ö0Ïunsigned int +__kernel_ino_tÌ4096Ö0Ï__kernel_ulong_t +__kernel_ipc_pid_tÌ4096Ö0Ïint +__kernel_key_tÌ4096Ö0Ïint +__kernel_loff_tÌ4096Ö0Ïlong long +__kernel_long_tÌ4096Ö0Ïlong +__kernel_mode_tÌ4096Ö0Ïunsigned int +__kernel_mqd_tÌ4096Ö0Ïint +__kernel_off_tÌ4096Ö0Ï__kernel_long_t +__kernel_old_dev_tÌ4096Ö0Ïunsigned long +__kernel_old_dev_tÌ65536Ö0 +__kernel_old_gid_tÌ4096Ö0Ïunsigned short +__kernel_old_uid_tÌ4096Ö0Ïunsigned short +__kernel_old_uid_tÌ65536Ö0 +__kernel_pid_tÌ4096Ö0Ïint +__kernel_ptrdiff_tÌ4096Ö0Ï__kernel_long_t +__kernel_sighandler_tÌ4096Ö0Ïtypedef void +__kernel_size_tÌ4096Ö0Ï__kernel_ulong_t +__kernel_ssize_tÌ4096Ö0Ï__kernel_long_t +__kernel_suseconds_tÌ4096Ö0Ï__kernel_long_t +__kernel_time_tÌ4096Ö0Ï__kernel_long_t +__kernel_timer_tÌ4096Ö0Ïint +__kernel_uid16_tÌ4096Ö0Ïunsigned short +__kernel_uid32_tÌ4096Ö0Ïunsigned int +__kernel_uid_tÌ4096Ö0Ïunsigned int +__kernel_ulong_tÌ4096Ö0Ïunsigned long __key_t_definedÌ65536Ö0 __ldiv_t_definedÌ65536Ö0 +__le16Ì4096Ö0Ï__u16 +__le32Ì4096Ö0Ï__u32 +__le64Ì4096Ö0Ï__u64 __linuxÌ65536Ö0 __linux__Ì65536Ö0 __lldiv_t_definedÌ65536Ö0 -__loff_tÌ4096Ö0Ï__off64_t __long_double_tÌ65536Ö0 __malloc_and_calloc_definedÌ65536Ö0 -__mempcpyÌ65536Ö0 +__mbstate_t_definedÌ65536Ö0 __mempcpyÌ131072Í(dest,src,n)Ö0 -__mode_tÌ4096Ö0Ïunsigned int __mode_t_definedÌ65536Ö0 __need_EmathÌ65536Ö0 __need_FILEÌ65536Ö0 @@ -3356,8 +4514,10 @@ __need_clock_t __need_clockid_tÌ65536Ö0 __need_error_tÌ65536Ö0 __need_getoptÌ65536Ö0 +__need_iswxxxÌ65536Ö0 __need_malloc_and_callocÌ65536Ö0 __need_mbstate_tÌ65536Ö0 +__need_schedparamÌ65536Ö0 __need_sig_atomic_tÌ65536Ö0 __need_siginfo_tÌ65536Ö0 __need_sigset_tÌ65536Ö0 @@ -3368,22 +4528,23 @@ __need_timespec __need_timevalÌ65536Ö0 __need_wchar_tÌ65536Ö0 __need_wint_tÌ65536Ö0 -__nlink_tÌ4096Ö0Ïunsigned long int __nlink_t_definedÌ65536Ö0 __nonnullÌ131072Í(params)Ö0 -__off64_tÌ4096Ö0Ïlong int __off64_t_definedÌ65536Ö0 -__off_tÌ4096Ö0Ïlong int __off_t_definedÌ65536Ö0 -__pid_tÌ4096Ö0Ïint __pid_t_definedÌ65536Ö0 +__prevÌ64Î_pthread_cleanup_bufferÖ0Ï_pthread_cleanup_buffer __prognameÌ32768Ö0Ïconst char * __ptr_tÌ65536Ö0 -__qaddr_tÌ4096Ö0Ï__quad_t * -__quad_tÌ4096Ö0Ïlong int __restrict_arrÌ65536Ö0 -__rlim64_tÌ4096Ö0Ïunsigned long int -__rlim_tÌ4096Ö0Ïunsigned long int +__routineÌ1024Í(void *)Î_pthread_cleanup_bufferÖ0Ïvoid +__s16Ì4096Ö0Ï__signed__short +__s32Ì4096Ö0Ï__signed__int +__s64Ì4096Ö0Ï__extension__ +__s8Ì4096Ö0Ï__signed__char +__sched_paramÌ2048Ö0 +__sched_priorityÌ64Î__sched_paramÖ0Ïint +__sched_priorityÌ64Îsched_paramÖ0Ïint __sig_atomic_t_definedÌ65536Ö0 __sigandsetÌ131072Í(dest,left,right)Ö0 __sigemptysetÌ131072Í(set)Ö0 @@ -3395,9 +4556,7 @@ __sigset_t_defined __sigwordÌ131072Í(sig)Ö0 __size_tÌ65536Ö0 __size_t__Ì65536Ö0 -__socklen_tÌ4096Ö0Ïunsigned int __socklen_t_definedÌ65536Ö0 -__ssize_tÌ4096Ö0Ïlong int __ssize_t_definedÌ65536Ö0 __stub___compat_bdflushÌ65536Ö0 __stub_chflagsÌ65536Ö0 @@ -3413,194 +4572,270 @@ __stub_setlogin __stub_sigreturnÌ65536Ö0 __stub_sstkÌ65536Ö0 __stub_sttyÌ65536Ö0 -__suseconds_tÌ4096Ö0Ïlong int +__sum16Ì4096Ö0Ï__u16 __suseconds_t_definedÌ65536Ö0 -__syscall_slong_tÌ4096Ö0Ïlong int -__syscall_ulong_tÌ4096Ö0Ïunsigned long int -__time_tÌ4096Ö0Ïlong int +__throw_exception_againÌ65536Ö0 __time_t_definedÌ65536Ö0 -__timer_tÌ4096Ö0Ïvoid * __timer_t_definedÌ65536Ö0 __timespec_definedÌ65536Ö0 __toasciiÌ131072Í(c)Ö0 -__toascii_lÌ131072Í(c,l)Ö0 __tobodyÌ131072Í(c,f,a,args)Ö0 -__u_charÌ4096Ö0Ïunsigned char +__tryÌ65536Ö0 +__typeofÌ1024Í(pthread_once)Ö0 +__typeofÌ1024Í(pthread_getspecific)Ö0 +__typeofÌ1024Í(pthread_setspecific)Ö0 +__typeofÌ1024Í(pthread_create)Ö0 +__typeofÌ1024Í(pthread_join)Ö0 +__typeofÌ1024Í(pthread_equal)Ö0 +__typeofÌ1024Í(pthread_self)Ö0 +__typeofÌ1024Í(pthread_detach)Ö0 +__typeofÌ1024Í(pthread_cancel)Ö0 +__typeofÌ1024Í(sched_yield)Ö0 +__typeofÌ1024Í(pthread_mutex_lock)Ö0 +__typeofÌ1024Í(pthread_mutex_trylock)Ö0 +__typeofÌ1024Í(pthread_mutex_timedlock)Ö0 +__typeofÌ1024Í(pthread_mutex_unlock)Ö0 +__typeofÌ1024Í(pthread_mutex_init)Ö0 +__typeofÌ1024Í(pthread_mutex_destroy)Ö0 +__typeofÌ1024Í(pthread_cond_init)Ö0 +__typeofÌ1024Í(pthread_cond_broadcast)Ö0 +__typeofÌ1024Í(pthread_cond_signal)Ö0 +__typeofÌ1024Í(pthread_cond_wait)Ö0 +__typeofÌ1024Í(pthread_cond_timedwait)Ö0 +__typeofÌ1024Í(pthread_cond_destroy)Ö0 +__typeofÌ1024Í(pthread_key_create)Ö0 +__typeofÌ1024Í(pthread_key_delete)Ö0 +__typeofÌ1024Í(pthread_mutexattr_init)Ö0 +__typeofÌ1024Í(pthread_mutexattr_settype)Ö0 +__typeofÌ1024Í(pthread_mutexattr_destroy)Ö0 +__typeofÌ1024Í(pthread_key_create)Ö0 +__u16Ì4096Ö0Ïunsigned short +__u32Ì4096Ö0Ïunsigned int +__u64Ì4096Ö0Ï__extension__unsigned long long +__u8Ì4096Ö0Ïunsigned char __u_char_definedÌ65536Ö0 -__u_intÌ4096Ö0Ïunsigned int __u_intN_tÌ131072Í(N,MODE)Ö0 -__u_longÌ4096Ö0Ïunsigned long int -__u_quad_tÌ4096Ö0Ïunsigned long int -__u_shortÌ4096Ö0Ïunsigned short int -__uid_tÌ4096Ö0Ïunsigned int __uid_t_definedÌ65536Ö0 -__uint16_tÌ4096Ö0Ïunsigned short int -__uint32_tÌ4096Ö0Ïunsigned int __uint32_t_definedÌ65536Ö0 -__uint64_tÌ4096Ö0Ïunsigned long int -__uint8_tÌ4096Ö0Ïunsigned char __undef_ARG_MAXÌ65536Ö0 __undef_LINK_MAXÌ65536Ö0 __undef_NR_OPENÌ65536Ö0 __undef_OPEN_MAXÌ65536Ö0 __unixÌ65536Ö0 __unix__Ì65536Ö0 -__useconds_tÌ4096Ö0Ïunsigned int __useconds_t_definedÌ65536Ö0 __va_arg_packÌ131072Í()Ö0 __va_arg_pack_lenÌ131072Í()Ö0 __va_copyÌ131072Í(d,s)Ö0 __va_list__Ì65536Ö0 -__valÌ64Îanon_struct_0Ö0Ïint __warnattrÌ131072Í(msg)Ö0 __warndeclÌ131072Í(name,msg)Ö0 __wchar_t__Ì65536Ö0 +__wsumÌ4096Ö0Ï__u32 __wurÌ65536Ö0 __x86_64Ì65536Ö0 __x86_64__Ì65536Ö0 -_tolowerÌ131072Í(c)Ö0 -_toupperÌ131072Í(c)Ö0 +_pthread_cleanup_bufferÌ2048Ö0 abort_imageÌ16Í()Ö0Ïvoid abort_imageÌ1024Í()Ö0Ïvoid -ageindexÌ64Îanon_struct_19Ö0Ïint +ageindexÌ64Îanon_struct_34Ö0Ïint +algoÌ64ÎjheadÖ0Ïint allocaÌ65536Ö0 allocaÌ131072Í(size)Ö0 alphaÌ64Î_TIFFRGBAImageÖ0Ïint +anon_enum_0Ì2Ö0 +anon_enum_1Ì2Ö0 +anon_enum_10Ì2Ö0 +anon_enum_11Ì2Ö0 anon_enum_12Ì2Ö0 +anon_enum_13Ì2Ö0 +anon_enum_14Ì2Ö0 +anon_enum_15Ì2Ö0 +anon_enum_16Ì2Ö0 anon_enum_2Ì2Ö0 -anon_enum_23Ì2Ö0 -anon_enum_24Ì2Ö0 -anon_enum_3Ì2Ö0 -anon_enum_4Ì2Ö0 +anon_enum_26Ì2Ö0 +anon_enum_27Ì2Ö0 +anon_enum_28Ì2Ö0 +anon_enum_29Ì2Ö0 +anon_enum_41Ì2Ö0 +anon_enum_6Ì2Ö0 anon_enum_7Ì2Ö0 anon_enum_8Ì2Ö0 -anon_struct_0Ì2048Ö0 -anon_struct_1Ì2048Ö0 -anon_struct_10Ì2048Ö0 -anon_struct_11Ì2048Ö0 -anon_struct_13Ì2048Ö0 -anon_struct_14Ì2048Ö0 -anon_struct_15Ì2048Ö0 +anon_enum_9Ì2Ö0 anon_struct_17Ì2048Ö0 anon_struct_18Ì2048Ö0 anon_struct_19Ì2048Ö0 anon_struct_20Ì2048Ö0 anon_struct_21Ì2048Ö0 -anon_struct_22Ì2048Ö0 +anon_struct_23Ì2048Ö0 +anon_struct_24Ì2048Ö0 anon_struct_25Ì2048Ö0 -anon_struct_26Ì2048Ö0 -anon_struct_27Ì2048Ö0 +anon_struct_3Ì2048Ö0 +anon_struct_30Ì2048Ö0 +anon_struct_31Ì2048Ö0 +anon_struct_32Ì2048Ö0 +anon_struct_33Ì2048Ö0 +anon_struct_34Ì2048Ö0 +anon_struct_35Ì2048Ö0 +anon_struct_36Ì2048Ö0 +anon_struct_37Ì2048Ö0 +anon_struct_38Ì2048Ö0 +anon_struct_39Ì2048Ö0 +anon_struct_4Ì2048Ö0 +anon_struct_40Ì2048Ö0 +anon_struct_42Ì2048Ö0 +anon_struct_43Ì2048Ö0 +anon_struct_44Ì2048Ö0 +anon_struct_46Ì2048Ö0 anon_struct_5Ì2048Ö0 -anon_struct_6Ì2048Ö0 -anon_struct_9Ì2048Ö0 -anon_union_16Ì8192Î_TIFFRGBAImageÖ0 -anyÌ1024Í(TIFFRGBAImage*)Î_TIFFRGBAImage::anon_union_16Ö0Ïvoid -arg_doubleÌ4Îanon_enum_23Ö0 -arg_floatÌ4Îanon_enum_23Ö0 -arg_functionÌ4Îanon_enum_23Ö0 -arg_intÌ4Îanon_enum_23Ö0 -arg_longlongÌ4Îanon_enum_23Ö0 -arg_noneÌ4Îanon_enum_23Ö0 -arg_stringÌ4Îanon_enum_23Ö0 +anon_union_22Ì8192Îtiff_tagÖ0 +anon_union_45Ì8192Î_TIFFRGBAImageÖ0 +anyÌ1024Í(TIFFRGBAImage*)Î_TIFFRGBAImage::anon_union_45Ö0Ïvoid +arg_doubleÌ4Îanon_enum_28Ö0 +arg_endÌ64Îprctl_mm_mapÖ0Ï__u64 +arg_floatÌ4Îanon_enum_28Ö0 +arg_functionÌ4Îanon_enum_28Ö0 +arg_intÌ4Îanon_enum_28Ö0 +arg_longlongÌ4Îanon_enum_28Ö0 +arg_noneÌ4Îanon_enum_28Ö0 +arg_startÌ64Îprctl_mm_mapÖ0Ï__u64 +arg_stringÌ4Îanon_enum_28Ö0 argfnÌ4096Ö0Ïtypedef bool -argptrÌ64Îanon_struct_25Ö0Ïvoid * -argptrÌ64Îanon_struct_26Ö0Ïvoid * +argptrÌ64Îanon_struct_30Ö0Ïvoid * +argptrÌ64Îanon_struct_31Ö0Ïvoid * argsortÌ16Í(const void *a1, const void *a2)Ö0Ïint -argtypeÌ4096Ö0Ïanon_enum_23 -arrayÌ64Îanon_struct_21Ö0Ïvoid * -arraypÌ64Îanon_struct_22Ö0Ïdouble * * +argtypeÌ4096Ö0Ïanon_enum_28 +arrayÌ64Îanon_struct_36Ö0Ïvoid * +arraypÌ64Îanon_struct_37Ö0Ïdouble * * assertÌ65536Ö0 assertÌ131072Í(expr)Ö0 assert_perrorÌ65536Ö0 assert_perrorÌ131072Í(errnum)Ö0 +auxvÌ64Îprctl_mm_mapÖ0Ï__u64 * +auxv_sizeÌ64Îprctl_mm_mapÖ0Ï__u32 basenameÌ65536Ö0 be16tohÌ131072Í(x)Ö0 be32tohÌ131072Í(x)Ö0 be64tohÌ131072Í(x)Ö0 -binningÌ64Îanon_struct_27Ö0Ïint -binningÌ64Îanon_struct_6Ö0Ïint +binningÌ64Îanon_struct_32Ö0Ïint +binningÌ64Îanon_struct_4Ö0Ïint +bitsÌ64ÎjheadÖ0Ïint bitspersampleÌ64Î_TIFFRGBAImageÖ0Ïuint16 -blkcnt_tÌ4096Ö0Ï__blkcnt_t -blksize_tÌ4096Ö0Ï__blksize_t bluecmapÌ64Î_TIFFRGBAImageÖ0Ïuint16 * boolÌ65536Ö0 -bstepÌ64Îanon_struct_15Ö0Ïfloat -bufrecnumÌ64Îanon_struct_19Ö0Ïlong -byteposÌ64Îanon_struct_19Ö0ÏLONGLONG +bpsÌ64Îtiff_hdrÖ0Ïshort +bpsÌ64Îtiff_ifd_tÖ0Ïint +branchÌ64ÎdecodeÖ0Ïdecode +brkÌ64Îprctl_mm_mapÖ0Ï__u64 +bstepÌ64Îanon_struct_44Ö0Ïfloat +btowcÌ65536Ö0 +bufrecnumÌ64Îanon_struct_34Ö0Ïlong +byteposÌ64Îanon_struct_34Ö0ÏLONGLONG +bytesÌ64Îtiff_ifd_tÖ0Ïint +cÌ64Îtiff_tag::anon_union_22Ö0Ïchar change_helpstringÌ16Í(char *s)Ö0Ïvoid change_helpstringÌ1024Í(char *s)Ö0Ïvoid chk_storeimgÌ16Í(char *filename, char* store, char *format)Ö0Ïimstorage * chk_storeimgÌ1024Í(char *filename, char* store, char *format)Ö0Ïimstorage * chkspeedÌ16Í(int speed)Ö0Ïint cielabÌ64Î_TIFFRGBAImageÖ0ÏTIFFCIELabToRGB * -clamptabÌ64Îanon_struct_14Ö0ÏTIFFRGBValue * +clamptabÌ64Îanon_struct_43Ö0ÏTIFFRGBValue * +clearerrÌ65536Ö0 +clrsÌ64ÎjheadÖ0Ïint cmdlnoptsÌ16384Ö0Ïmyoption -cn_actual_bzeroÌ64Îanon_struct_19Ö0Ïdouble -cn_bscaleÌ64Îanon_struct_19Ö0Ïdouble -cn_bzeroÌ64Îanon_struct_19Ö0Ïdouble -cn_compressedÌ64Îanon_struct_19Ö0Ïint -cn_gzip_dataÌ64Îanon_struct_19Ö0Ïint -cn_uncompressedÌ64Îanon_struct_19Ö0Ïint -cn_zblankÌ64Îanon_struct_19Ö0Ïint -cn_zscaleÌ64Îanon_struct_19Ö0Ïint -cn_zzeroÌ64Îanon_struct_19Ö0Ïint +cn_actual_bzeroÌ64Îanon_struct_34Ö0Ïdouble +cn_bscaleÌ64Îanon_struct_34Ö0Ïdouble +cn_bzeroÌ64Îanon_struct_34Ö0Ïdouble +cn_compressedÌ64Îanon_struct_34Ö0Ïint +cn_gzip_dataÌ64Îanon_struct_34Ö0Ïint +cn_uncompressedÌ64Îanon_struct_34Ö0Ïint +cn_zblankÌ64Îanon_struct_34Ö0Ïint +cn_zscaleÌ64Îanon_struct_34Ö0Ïint +cn_zzeroÌ64Îanon_struct_34Ö0Ïint col_offsetÌ64Î_TIFFRGBAImageÖ0Ïint -colnameÌ64Îanon_struct_21Ö0Ïchar -colnumÌ64Îanon_struct_21Ö0Ïint +colnameÌ64Îanon_struct_36Ö0Ïchar +colnumÌ64Îanon_struct_36Ö0Ïint comfdÌ16384Ö0Ïint -compress_typeÌ64Îanon_struct_19Ö0Ïint -compressimgÌ64Îanon_struct_19Ö0Ïint +compÌ64Îtiff_ifd_tÖ0Ïint +compress_typeÌ64Îanon_struct_34Ö0Ïint +compressimgÌ64Îanon_struct_34Ö0Ïint console_changedÌ16384Ö0Ïint -contigÌ64Î_TIFFRGBAImage::anon_union_16Ö0ÏtileContigRoutine -curbufÌ64Îanon_struct_19Ö0Ïint -curhduÌ64Îanon_struct_19Ö0Ïint +contigÌ64Î_TIFFRGBAImage::anon_union_45Ö0ÏtileContigRoutine +countÌ64Îtiff_tagÖ0Ïint +cpu_set_tÌ4096Ö0Ïanon_struct_5 +cr2_sliceÌ64Îanon_struct_20Ö0Ïushort +curbufÌ64Îanon_struct_34Ö0Ïint +curhduÌ64Îanon_struct_34Ö0Ïint curspdÌ16384Ö0Ïint -d_VrwbÌ64Îanon_struct_13Ö0Ïuint32 -d_VrwgÌ64Îanon_struct_13Ö0Ïuint32 -d_VrwrÌ64Îanon_struct_13Ö0Ïuint32 -d_Y0BÌ64Îanon_struct_13Ö0Ïfloat -d_Y0GÌ64Îanon_struct_13Ö0Ïfloat -d_Y0RÌ64Îanon_struct_13Ö0Ïfloat -d_YCBÌ64Îanon_struct_13Ö0Ïfloat -d_YCGÌ64Îanon_struct_13Ö0Ïfloat -d_YCRÌ64Îanon_struct_13Ö0Ïfloat -d_gammaBÌ64Îanon_struct_13Ö0Ïfloat -d_gammaGÌ64Îanon_struct_13Ö0Ïfloat -d_gammaRÌ64Îanon_struct_13Ö0Ïfloat -d_matÌ64Îanon_struct_13Ö0Ïfloat -daemonÌ64Îanon_struct_27Ö0Ïint -daemonizeÌ16Í()Ö0Ïvoid -daemonizeÌ1024Í()Ö0Ïvoid -dataÌ64Îanon_struct_1Ö0Ïchar * -datastartÌ64Îanon_struct_19Ö0ÏLONGLONG -datatypeÌ64Îanon_struct_21Ö0Ïint +d_VrwbÌ64Îanon_struct_42Ö0Ïuint32 +d_VrwgÌ64Îanon_struct_42Ö0Ïuint32 +d_VrwrÌ64Îanon_struct_42Ö0Ïuint32 +d_Y0BÌ64Îanon_struct_42Ö0Ïfloat +d_Y0GÌ64Îanon_struct_42Ö0Ïfloat +d_Y0RÌ64Îanon_struct_42Ö0Ïfloat +d_YCBÌ64Îanon_struct_42Ö0Ïfloat +d_YCGÌ64Îanon_struct_42Ö0Ïfloat +d_YCRÌ64Îanon_struct_42Ö0Ïfloat +d_gammaBÌ64Îanon_struct_42Ö0Ïfloat +d_gammaGÌ64Îanon_struct_42Ö0Ïfloat +d_gammaRÌ64Îanon_struct_42Ö0Ïfloat +d_matÌ64Îanon_struct_42Ö0Ïfloat +daemonizeÌ1024Í(imstorage *img, char *hostname, char *port)Ö0Ïvoid +dark_intervalÌ64Îanon_struct_32Ö0Ïdouble +dataÌ64Îanon_struct_23Ö0Ïchar * +data_errorÌ64Îanon_struct_20Ö0 +data_offsetÌ64Îanon_struct_20Ö0ÏINT64 +data_sizeÌ64Îanon_struct_20Ö0 +datastartÌ64Îanon_struct_34Ö0ÏLONGLONG +datatypeÌ64Îanon_struct_36Ö0Ïint +dateÌ64Îtiff_hdrÖ0Ïchar +decodeÌ2048Ö0 define_subframeÌ16Í(char *parm)Ö0Ïimsubframe * define_subframeÌ1024Í(char *parm)Ö0Ïimsubframe * -dev_tÌ4096Ö0Ï__dev_t -deviceÌ64Îanon_struct_27Ö0Ïchar * -dimlenÌ64Îanon_struct_22Ö0Ïint * -dirtyÌ64Îanon_struct_19Ö0Ïint -displayÌ64Îanon_struct_15Ö0ÏTIFFDisplay -dither_seedÌ64Îanon_struct_19Ö0Ïint +deviceÌ64Îanon_struct_32Ö0Ïchar * +dimlenÌ64Îanon_struct_37Ö0Ïint * +dirtyÌ64Îanon_struct_34Ö0Ïint +displayÌ64Îanon_struct_44Ö0ÏTIFFDisplay +dither_seedÌ64Îanon_struct_34Ö0Ïint +dng_colorÌ64Îtiff_ifd_tÖ0Ïlibraw_dng_color_t +dng_levelsÌ64Îtiff_ifd_tÖ0Ïlibraw_dng_levels_t download_in_progressÌ16384Ö0Ïint -driverÌ64Îanon_struct_19Ö0Ïint +driverÌ64Îanon_struct_34Ö0Ïint dtimeÌ16Í()Ö0Ïdouble dtimeÌ1024Í()Ö0Ïdouble +end_codeÌ64Îprctl_mm_mapÖ0Ï__u64 +end_dataÌ64Îprctl_mm_mapÖ0Ï__u64 end_optionÌ65536Ö0 end_suboptionÌ65536Ö0 +env_endÌ64Îprctl_mm_mapÖ0Ï__u64 +env_startÌ64Îprctl_mm_mapÖ0Ï__u64 errnoÌ65536Ö0 error_tÌ4096Ö0Ïint -exposetimeÌ64Îanon_struct_6Ö0Ïtime_t -exptimeÌ64Îanon_struct_27Ö0Ïdouble -exptimeÌ64Îanon_struct_6Ö0Ïdouble -extlevÌ64Îanon_struct_22Ö0Ïint -extnamÌ64Îanon_struct_22Ö0Ïchar -extverÌ64Îanon_struct_22Ö0Ïint +exe_fdÌ64Îprctl_mm_mapÖ0Ï__u32 +exifÌ64Îtiff_hdrÖ0Ïtiff_tag +exp_calculatedÌ16384Ö0Ïdouble +exp_calculatedÌ32768Ö0Ïdouble +exposetimeÌ64Îanon_struct_4Ö0Ïtime_t +exptimeÌ64Îanon_struct_32Ö0Ïdouble +exptimeÌ64Îanon_struct_4Ö0Ïdouble +extlevÌ64Îanon_struct_37Ö0Ïint +extnamÌ64Îanon_struct_37Ö0Ïchar +extverÌ64Îanon_struct_37Ö0Ïint falseÌ65536Ö0 +fcloseÌ65536Ö0 +fds_bitsÌ64Îanon_struct_24Ö0Ïunsigned long +feofÌ65536Ö0 +ferrorÌ65536Ö0 ffcpimgÌ65536Ö0 -filehandleÌ64Îanon_struct_19Ö0Ïint -filenameÌ64Îanon_struct_19Ö0Ïchar * -filesizeÌ64Îanon_struct_19Ö0ÏLONGLONG +fflushÌ65536Ö0 +fgetcÌ65536Ö0 +fgetposÌ65536Ö0 +fgetsÌ65536Ö0 +fgetwcÌ65536Ö0 +fgetwsÌ65536Ö0 +filehandleÌ64Îanon_struct_34Ö0Ïint +filenameÌ64Îanon_struct_34Ö0Ïchar * +filesizeÌ64Îanon_struct_34Ö0ÏLONGLONG fits_add_group_memberÌ65536Ö0 fits_ascii_tformÌ65536Ö0 fits_binary_tformÌ65536Ö0 @@ -4137,12 +5372,92 @@ fits_write_tblbytes fits_write_tdimÌ65536Ö0 fits_write_tdimllÌ65536Ö0 fits_write_theapÌ65536Ö0 -fitsfileÌ4096Ö0Ïanon_struct_20 -flagÌ64Îanon_struct_25Ö0Ïint * +fitsfileÌ4096Ö0Ïanon_struct_35 +flagÌ64Îanon_struct_30Ö0Ïint * +fopenÌ65536Ö0 fpclassifyÌ131072Í(x)Ö0 -fptrÌ64Îanon_struct_21Ö0Ïfitsfile * +fprintfÌ65536Ö0 +fptrÌ64Îanon_struct_36Ö0Ïfitsfile * +fputcÌ65536Ö0 +fputsÌ65536Ö0 +fputwcÌ65536Ö0 +fputwsÌ65536Ö0 +freadÌ65536Ö0 fread_unlockedÌ65536Ö0 +freeÌ64ÎjheadÖ0Ï * +freopenÌ65536Ö0 +fscanfÌ65536Ö0 +fseekÌ65536Ö0 +fsetposÌ65536Ö0 +ftellÌ65536Ö0 +fuji_bitsÌ64Îanon_struct_20Ö0Ïint +fuji_block_widthÌ64Îanon_struct_20Ö0Ïint +fuji_layoutÌ64Îanon_struct_20Ö0 +fuji_raw_typeÌ64Îanon_struct_20Ö0Ïint +fuji_total_blocksÌ64Îanon_struct_20Ö0Ïint +fuji_total_linesÌ64Îanon_struct_20Ö0Ïint +fwideÌ65536Ö0 +fwprintfÌ65536Ö0 +fwriteÌ65536Ö0 +fwscanfÌ65536Ö0 g_pr_Ì16Í(const char *fmt, ...)Ö0Ïint +gdAlphaMaxÌ65536Ö0 +gdAlphaOpaqueÌ65536Ö0 +gdAlphaTransparentÌ65536Ö0 +gdAntiAliasedÌ65536Ö0 +gdArcÌ65536Ö0 +gdBlueMaxÌ65536Ö0 +gdBrushedÌ65536Ö0 +gdChordÌ65536Ö0 +gdDashSizeÌ65536Ö0 +gdEdgedÌ65536Ö0 +gdEffectAlphaBlendÌ65536Ö0 +gdEffectMultiplyÌ65536Ö0 +gdEffectNormalÌ65536Ö0 +gdEffectOverlayÌ65536Ö0 +gdEffectReplaceÌ65536Ö0 +gdFTEX_Adobe_CustomÌ65536Ö0 +gdFTEX_Big5Ì65536Ö0 +gdFTEX_CHARMAPÌ65536Ö0 +gdFTEX_DISABLE_KERNINGÌ65536Ö0 +gdFTEX_FONTCONFIGÌ65536Ö0 +gdFTEX_FONTPATHNAMEÌ65536Ö0 +gdFTEX_LINESPACEÌ65536Ö0 +gdFTEX_RESOLUTIONÌ65536Ö0 +gdFTEX_RETURNFONTPATHNAMEÌ65536Ö0 +gdFTEX_Shift_JISÌ65536Ö0 +gdFTEX_UnicodeÌ65536Ö0 +gdFTEX_XSHOWÌ65536Ö0 +gdGreenMaxÌ65536Ö0 +gdImageAlphaÌ131072Í(im,c)Ö0 +gdImageBlueÌ131072Í(im,c)Ö0 +gdImageColorsTotalÌ131072Í(im)Ö0 +gdImageCreatePaletteÌ65536Ö0 +gdImageGetInterlacedÌ131072Í(im)Ö0 +gdImageGetTransparentÌ131072Í(im)Ö0 +gdImageGreenÌ131072Í(im,c)Ö0 +gdImagePalettePixelÌ131072Í(im,x,y)Ö0 +gdImageRedÌ131072Í(im,c)Ö0 +gdImageResolutionXÌ131072Í(im)Ö0 +gdImageResolutionYÌ131072Í(im)Ö0 +gdImageSXÌ131072Í(im)Ö0 +gdImageSYÌ131072Í(im)Ö0 +gdImageTrueColorÌ131072Í(im)Ö0 +gdImageTrueColorPixelÌ131072Í(im,x,y)Ö0 +gdMaxColorsÌ65536Ö0 +gdNoFillÌ65536Ö0 +gdPieÌ65536Ö0 +gdRedMaxÌ65536Ö0 +gdStyledÌ65536Ö0 +gdStyledBrushedÌ65536Ö0 +gdTiledÌ65536Ö0 +gdTransparentÌ65536Ö0 +gdTrueColorÌ131072Í(r,g,b)Ö0 +gdTrueColorAlphaÌ131072Í(r,g,b,a)Ö0 +gdTrueColorGetAlphaÌ131072Í(c)Ö0 +gdTrueColorGetBlueÌ131072Í(c)Ö0 +gdTrueColorGetGreenÌ131072Í(c)Ö0 +gdTrueColorGetRedÌ131072Í(c)Ö0 getÌ1024Í(TIFFRGBAImage*, uint32*, uint32, uint32)Î_TIFFRGBAImageÖ0Ïint get_aptrÌ16Í(void *paptr, argtype type)Ö0Ïvoid * get_curspeedÌ16Í()Ö0Ïint @@ -4156,65 +5471,86 @@ get_imdata get_optindÌ16Í(int opt, myoption *options)Ö0Ïint get_suboptionÌ16Í(char *str, mysuboption *opt)Ö0Ïbool get_suboptionÌ1024Í(char *str, mysuboption *opt)Ö0Ïbool +getcÌ65536Ö0 getcÌ131072Í(_fp)Ö0 -gid_tÌ4096Ö0Ï__gid_t +getcharÌ65536Ö0 +getsÌ65536Ö0 +getwcÌ65536Ö0 +getwcharÌ65536Ö0 globErrÌ16384Ö0Ïint globErrÌ32768Ö0Ïint glob_avrÌ16384Ö0Ïuint16_t glob_maxÌ16384Ö0Ïuint16_t glob_minÌ16384Ö0Ïuint16_t -glob_parsÌ4096Ö0Ïanon_struct_27 +glob_parsÌ4096Ö0Ïanon_struct_32 glob_stdÌ16384Ö0Ïuint16_t +gpsÌ64Îtiff_hdrÖ0 +gpstÌ64Îtiff_hdrÖ0Ïtiff_tag greenÌ1024Í(const char *fmt, ...)Ö0Ïint greencmapÌ64Î_TIFFRGBAImageÖ0Ïuint16 * -gstepÌ64Îanon_struct_15Ö0Ïfloat -has_argÌ64Îanon_struct_25Ö0Ïhasarg -has_argÌ64Îanon_struct_26Ö0Ïhasarg -hasargÌ4096Ö0Ïanon_enum_24 -hcomp_scaleÌ64Îanon_struct_19Ö0Ïfloat -hcomp_smoothÌ64Îanon_struct_19Ö0Ïint -hdutypeÌ64Îanon_struct_19Ö0Ïint -headendÌ64Îanon_struct_19Ö0ÏLONGLONG -headstartÌ64Îanon_struct_19Ö0ÏLONGLONG * -heapsizeÌ64Îanon_struct_19Ö0ÏLONGLONG -heapstartÌ64Îanon_struct_19Ö0ÏLONGLONG +gstepÌ64Îanon_struct_44Ö0Ïfloat +has_argÌ64Îanon_struct_30Ö0Ïhasarg +has_argÌ64Îanon_struct_31Ö0Ïhasarg +hasargÌ4096Ö0Ïanon_enum_29 +hasselblad_parser_flagÌ64Îanon_struct_20Ö0Ïint +hcomp_scaleÌ64Îanon_struct_34Ö0Ïfloat +hcomp_smoothÌ64Îanon_struct_34Ö0Ïint +hdutypeÌ64Îanon_struct_34Ö0Ïint +headendÌ64Îanon_struct_34Ö0ÏLONGLONG +headstartÌ64Îanon_struct_34Ö0ÏLONGLONG * +heapsizeÌ64Îanon_struct_34Ö0ÏLONGLONG +heapstartÌ64Îanon_struct_34Ö0ÏLONGLONG heaterÌ16Í(heater_cmd cmd)Ö0Ïvoid -heaterÌ64Îanon_struct_27Ö0Ïheater_cmd +heaterÌ64Îanon_struct_32Ö0Ïheater_cmd heaterÌ1024Í(heater_cmd cmd)Ö0Ïvoid -heater_cmdÌ4096Ö0Ïanon_enum_8 +heater_cmdÌ4096Ö0Ïanon_enum_27 heightÌ64Î_TIFFRGBAImageÖ0Ïuint32 -helpÌ64Îanon_struct_25Ö0Ïconst char * +helpÌ64Îanon_struct_30Ö0Ïconst char * helpÌ16384Ö0Ïint helpstringÌ16384Ö0Ïchar * +highÌ64ÎjheadÖ0Ïint +histogramÌ64Îanon_struct_18Ö0Ïint +hostnameÌ64Îanon_struct_32Ö0Ïchar * htobe16Ì131072Í(x)Ö0 htobe32Ì131072Í(x)Ö0 htobe64Ì131072Í(x)Ö0 htole16Ì131072Í(x)Ö0 htole32Ì131072Í(x)Ö0 htole64Ì131072Í(x)Ö0 -iÌ64Îanon_struct_22Ö0Ïint -image_formatÌ4096Ö0Ïanon_enum_3 -image_typeÌ4096Ö0Ïanon_enum_4 -imdataÌ64Îanon_struct_6Ö0Ïuint16_t * -imformatÌ64Îanon_struct_27Ö0Ïchar * -imformatÌ64Îanon_struct_6Ö0Ïimage_format -imgdimÌ64Îanon_struct_19Ö0Ïint -imgnaxisÌ64Îanon_struct_19Ö0ÏLONGLONG -imnameÌ64Îanon_struct_6Ö0Ïchar * -imstorageÌ4096Ö0Ïanon_struct_6 -imstoretypeÌ64Îanon_struct_27Ö0Ïchar * -imsubframeÌ4096Ö0Ïanon_struct_5 -imtypeÌ64Îanon_struct_27Ö0Ïchar * -imtypeÌ64Îanon_struct_6Ö0Ïimage_type +huffÌ64ÎjheadÖ0Ï * +iÌ64Îanon_struct_37Ö0Ïint +iÌ64Îtiff_tag::anon_union_22Ö0Ïint +idctÌ64ÎjheadÖ0Ïushort +identify_dataÌ64Îanon_struct_21Ö0Ïidentify_data_t +identify_data_tÌ4096Ö0Ïanon_struct_19 +ifdÌ64Îtiff_hdrÖ0Ïint +image_formatÌ4096Ö0Ïanon_enum_1 +image_typeÌ4096Ö0Ïanon_enum_2 +imdataÌ64Îanon_struct_4Ö0Ïuint16_t * +imformatÌ64Îanon_struct_32Ö0Ïchar * +imformatÌ64Îanon_struct_4Ö0Ïimage_format +imgdimÌ64Îanon_struct_34Ö0Ïint +imgnaxisÌ64Îanon_struct_34Ö0ÏLONGLONG +imnameÌ64Îanon_struct_4Ö0Ïchar * +imstorageÌ4096Ö0Ïanon_struct_4 +imstoretypeÌ64Îanon_struct_32Ö0Ïchar * +imsubframeÌ4096Ö0Ïanon_struct_3 +imtypeÌ64Îanon_struct_32Ö0Ïchar * +imtypeÌ64Îanon_struct_4Ö0Ïimage_type indiÌ16384Ö0Ïchar -initÌ64Îanon_struct_17Ö0ÏTIFFInitMethod +initÌ64Îanon_struct_46Ö0ÏTIFFInitMethod initial_setupÌ16Í()Ö0Ïvoid initial_setupÌ1024Í()Ö0Ïvoid -ino_tÌ4096Ö0Ï__ino_t +inputÌ64Îanon_struct_17Ö0ÏLibRaw_abstract_datastream * +input_internalÌ64Îanon_struct_17Ö0Ïint int16Ì4096Ö0Ïsigned short +int16_tÌ4096Ö0Ïshort int int32Ì4096Ö0Ïsigned int +int32_tÌ4096Ö0Ïint int64Ì4096Ö0Ïsigned long +int64_tÌ4096Ö0Ïlong int int8Ì4096Ö0Ïsigned char +int8_tÌ4096Ö0Ïsigned char int_fast16_tÌ4096Ö0Ïlong int int_fast32_tÌ4096Ö0Ïlong int int_fast64_tÌ4096Ö0Ïlong int @@ -4223,62 +5559,96 @@ int_least16_t int_least32_tÌ4096Ö0Ïint int_least64_tÌ4096Ö0Ïlong int int_least8_tÌ4096Ö0Ïsigned char +internal_dataÌ64Îanon_struct_21Ö0Ïinternal_data_t +internal_data_tÌ4096Ö0Ïanon_struct_17 +internal_output_paramsÌ64Îanon_struct_21Ö0Ïlibraw_internal_output_params_t intmax_tÌ4096Ö0Ïlong int -io_posÌ64Îanon_struct_19Ö0ÏLONGLONG -iobufferÌ64Îanon_struct_19Ö0Ïchar * -iotypeÌ64Îanon_struct_21Ö0Ïint +intptr_tÌ4096Ö0Ïlong int +io_posÌ64Îanon_struct_34Ö0ÏLONGLONG +iobufferÌ64Îanon_struct_34Ö0Ïchar * +iotypeÌ64Îanon_struct_36Ö0Ïint isContigÌ64Î_TIFFRGBAImageÖ0Ïint -isalnum_lÌ131072Í(c,l)Ö0 -isalpha_lÌ131072Í(c,l)Ö0 -isasciiÌ131072Í(c)Ö0 -isascii_lÌ131072Í(c,l)Ö0 -isblank_lÌ131072Í(c,l)Ö0 -iscntrl_lÌ131072Í(c,l)Ö0 -isdigit_lÌ131072Í(c,l)Ö0 +isalnumÌ65536Ö0 +isalphaÌ65536Ö0 +iscntrlÌ65536Ö0 +isdigitÌ65536Ö0 isfiniteÌ131072Í(x)Ö0 -isgraph_lÌ131072Í(c,l)Ö0 +isgraphÌ65536Ö0 isgreaterÌ131072Í(x,y)Ö0 isgreaterequalÌ131072Í(x,y)Ö0 isinfÌ131072Í(x)Ö0 islessÌ131072Í(x,y)Ö0 islessequalÌ131072Í(x,y)Ö0 islessgreaterÌ131072Í(x,y)Ö0 -islower_lÌ131072Í(c,l)Ö0 +islowerÌ65536Ö0 isnanÌ131072Í(x)Ö0 isnormalÌ131072Í(x)Ö0 -isprint_lÌ131072Í(c,l)Ö0 -ispunct_lÌ131072Í(c,l)Ö0 +isprintÌ65536Ö0 +ispunctÌ65536Ö0 issignalingÌ131072Í(x)Ö0 -isspace_lÌ131072Í(c,l)Ö0 +isspaceÌ65536Ö0 isunorderedÌ131072Í(u,v)Ö0 -isupper_lÌ131072Í(c,l)Ö0 -isxdigit_lÌ131072Í(c,l)Ö0 -iteratorColÌ4096Ö0Ïanon_struct_21 -kindÌ64Îanon_struct_22Ö0Ïint +isupperÌ65536Ö0 +iswalnumÌ65536Ö0 +iswalphaÌ65536Ö0 +iswblankÌ65536Ö0 +iswcntrlÌ65536Ö0 +iswctypeÌ65536Ö0 +iswdigitÌ65536Ö0 +iswgraphÌ65536Ö0 +iswlowerÌ65536Ö0 +iswprintÌ65536Ö0 +iswpunctÌ65536Ö0 +iswspaceÌ65536Ö0 +iswupperÌ65536Ö0 +iswxdigitÌ65536Ö0 +isxdigitÌ65536Ö0 +iteratorColÌ4096Ö0Ïanon_struct_36 +jheadÌ2048Ö0 +kindÌ64Îanon_struct_37Ö0Ïint +kodak_cbppÌ64Îanon_struct_20Ö0 last_chksumÌ16384Ö0Ïuint8_t -lasthduÌ64Îanon_struct_19Ö0Ïint +lasthduÌ64Îanon_struct_34Ö0Ïint le16tohÌ131072Í(x)Ö0 le32tohÌ131072Í(x)Ö0 le64tohÌ131072Í(x)Ö0 -lenÌ64Îanon_struct_1Ö0Ïsize_t +leafÌ64ÎdecodeÖ0Ïint +lenÌ64Îanon_struct_23Ö0Ïsize_t +lenRAFDataÌ64Îanon_struct_20Ö0 +libraw_internal_data_tÌ4096Ö0Ïanon_struct_21 +lineartable_lenÌ64Îtiff_ifd_tÖ0Ïint +lineartable_offsetÌ64Îtiff_ifd_tÖ0ÏINT64 linuxÌ65536Ö0 list_speedsÌ16Í()Ö0Ïvoid list_speedsÌ1024Í()Ö0Ïvoid -logfilesizeÌ64Îanon_struct_19Ö0ÏLONGLONG -mÌ64Îanon_struct_22Ö0Ïint +load_flagsÌ64Îanon_struct_20Ö0Ïtile_width +localeconvÌ65536Ö0 +logfilesizeÌ64Îanon_struct_34Ö0ÏLONGLONG +mÌ64Îanon_struct_37Ö0Ïint +magicÌ64Îtiff_hdrÖ0Ïushort mainÌ16Í(int argc, char **argv)Ö0Ïint majorÌ131072Í(dev)Ö0 -make_filenameÌ16Í(const char *outfile, const char *suff, store_type st)Ö0Ïchar * +make_filenameÌ16Í(imstorage *img, const char *suff)Ö0Ïchar * +make_filenameÌ1024Í(imstorage *img, const char *suff)Ö0Ïchar * makedevÌ131072Í(maj,min)Ö0 math_errhandlingÌ65536Ö0 -maxelemÌ64Îanon_struct_19Ö0Ïlong -maxhduÌ64Îanon_struct_19Ö0Ïint -maxtilelenÌ64Îanon_struct_19Ö0Ïlong -mempcpyÌ65536Ö0 +maxÌ65536Ö0 +maxelemÌ64Îanon_struct_34Ö0Ïlong +maxhduÌ64Îanon_struct_34Ö0Ïint +maxtilelenÌ64Îanon_struct_34Ö0Ïlong +mbrlenÌ65536Ö0 +mbrtowcÌ65536Ö0 +mbsinitÌ65536Ö0 +mbsrtowcsÌ65536Ö0 +mbstate_tÌ4096Ö0Ï__mbstate_t mempcpyÌ131072Í(dest,src,n)Ö0 +meta_dataÌ64Îanon_struct_17Ö0Ïchar * +meta_lengthÌ64Îanon_struct_20Ö0 +meta_offsetÌ64Îanon_struct_20Ö0ÏINT64 +minÌ65536Ö0 +min_dark_expÌ64Îanon_struct_32Ö0Ïdouble minorÌ131072Í(dev)Ö0 -mmapbufÌ4096Ö0Ïanon_struct_1 -mode_tÌ4096Ö0Ï__mode_t +mmapbufÌ4096Ö0Ïanon_struct_23 modifytimestampÌ16Í(char *filename, imstorage *img)Ö0Ïvoid my_allocÌ16Í(size_t N, size_t S)Ö0Ïvoid * my_allocÌ1024Í(size_t N, size_t S)Ö0Ïvoid * @@ -4286,43 +5656,79 @@ myatod myatollÌ16Í(void *num, char *str, argtype t)Ö0Ïbool mygetcharÌ16Í()Ö0Ïint mygetcharÌ1024Í()Ö0Ïint -myoptionÌ4096Ö0Ïanon_struct_25 -mysuboptionÌ4096Ö0Ïanon_struct_26 -nameÌ64Îanon_struct_17Ö0Ïchar * -nameÌ64Îanon_struct_25Ö0Ïconst char * -nameÌ64Îanon_struct_26Ö0Ïconst char * -ndimÌ64Îanon_struct_22Ö0Ïint -newspeedÌ64Îanon_struct_27Ö0Ïint +myoptionÌ4096Ö0Ïanon_struct_30 +mysuboptionÌ4096Ö0Ïanon_struct_31 +nameÌ64Îanon_struct_30Ö0Ïconst char * +nameÌ64Îanon_struct_31Ö0Ïconst char * +nameÌ64Îanon_struct_46Ö0Ïchar * +ndimÌ64Îanon_struct_37Ö0Ïint +newspeedÌ64Îanon_struct_32Ö0Ïint newtÌ16384Ö0Ïtermios -nextkeyÌ64Îanon_struct_19Ö0ÏLONGLONG -nlink_tÌ4096Ö0Ï__nlink_t +nexifÌ64Îtiff_hdrÖ0Ïushort +nextifdÌ64Îtiff_hdrÖ0Ïint +nextkeyÌ64Îanon_struct_34Ö0ÏLONGLONG +ngpsÌ64Îtiff_hdrÖ0Ïushort no_argumentÌ65536Ö0 -numrowsÌ64Îanon_struct_19Ö0ÏLONGLONG -off_tÌ4096Ö0Ï__off_t +ntagÌ64Îtiff_hdrÖ0Ïushort +numrowsÌ64Îanon_struct_34Ö0ÏLONGLONG +offsetÌ64Îtiff_ifd_tÖ0Ïint oldtÌ16384Ö0Ïtermios oldttyÌ16384Ö0Ïtermio -only_oneÌ64Îanon_struct_19Ö0Ïint -open_countÌ64Îanon_struct_19Ö0Ïint +olympus_exif_cfaÌ64Îanon_struct_19Ö0 +onceÌ64Îanon_struct_32Ö0Ïint +onceÌ64Îanon_struct_4Ö0Ïint +only_oneÌ64Îanon_struct_34Ö0Ïint +opcode2_offsetÌ64Îtiff_ifd_tÖ0ÏINT64 +open_countÌ64Îanon_struct_34Ö0Ïint open_serialÌ1024Í(char *dev)Ö0Ïint +oprofÌ64Îanon_struct_18Ö0 optional_argumentÌ65536Ö0 +orderÌ64Îanon_struct_20Ö0Ïshort orientationÌ64Î_TIFFRGBAImageÖ0Ïuint16 -origrowsÌ64Îanon_struct_19Ö0ÏLONGLONG -outpfnameÌ64Îanon_struct_27Ö0Ïchar * +origrowsÌ64Îanon_struct_34Ö0ÏLONGLONG +outpfnameÌ64Îanon_struct_32Ö0Ïchar * +outputÌ64Îanon_struct_17Ö0ÏFILE * +output_dataÌ64Îanon_struct_21Ö0Ïoutput_data_t +output_data_tÌ4096Ö0Ïanon_struct_18 +padÌ64Îtiff_hdrÖ0Ïushort +pad2Ì64Îtiff_hdrÖ0Ïushort +pad3Ì64Îtiff_hdrÖ0Ïushort +pana_blackÌ64Îanon_struct_17Ö0 parse_argsÌ16Í(int argc, char **argv)Ö0Ïglob_pars * parse_argsÌ1024Í(int argc, char **argv)Ö0Ïglob_pars * parseargsÌ16Í(int *argc, char ***argv, myoption *options)Ö0Ïvoid parseargsÌ1024Í(int *argc, char ***argv, myoption *options)Ö0Ïvoid +perrorÌ65536Ö0 +phintÌ64Îtiff_ifd_tÖ0Ïint photometricÌ64Î_TIFFRGBAImageÖ0Ïuint16 +portÌ64Îanon_struct_32Ö0Ïchar * +posRAFDataÌ64Îanon_struct_20Ö0Ïlong long +prctl_mm_mapÌ2048Ö0 +predictorÌ64Îtiff_ifd_tÖ0Ïint print_statÌ16Í(imstorage *img)Ö0Ïvoid print_statÌ1024Í(imstorage *img)Ö0Ïvoid -putÌ64Î_TIFFRGBAImageÖ0Ïanon_union_16 +printfÌ65536Ö0 +profile_offsetÌ64Îanon_struct_17Ö0ÏINT64 +psvÌ64ÎjheadÖ0Ïint +pthread_cleanup_popÌ131072Í(execute)Ö0 +pthread_cleanup_pop_restore_npÌ131072Í(execute)Ö0 +pthread_cleanup_pushÌ131072Í(routine,arg)Ö0 +pthread_cleanup_push_defer_npÌ131072Í(routine,arg)Ö0 +putÌ64Î_TIFFRGBAImageÖ0Ïanon_union_45 +putcÌ65536Ö0 putcÌ131072Í(_ch,_fp)Ö0 -quantize_levelÌ64Îanon_struct_19Ö0Ïfloat -quantize_methodÌ64Îanon_struct_19Ö0Ïint +putcharÌ65536Ö0 +putsÌ65536Ö0 +putwcÌ65536Ö0 +putwcharÌ65536Ö0 +quantÌ64ÎjheadÖ0Ïushort +quantize_levelÌ64Îanon_struct_34Ö0Ïfloat +quantize_methodÌ64Îanon_struct_34Ö0Ïint r_WARNÌ16Í(const char *fmt, ...)Ö0Ïint r_pr_Ì16Í(const char *fmt, ...)Ö0Ïint r_pr_nottyÌ16Í(const char *fmt, ...)Ö0Ïint -rangeÌ64Îanon_struct_15Ö0Ïint +rangeÌ64Îanon_struct_44Ö0Ïint +ratÌ64Îtiff_hdrÖ0Ïint read_consoleÌ16Í()Ö0Ïint read_consoleÌ1024Í()Ö0Ïint read_stringÌ16Í(uint8_t *str, int L)Ö0Ïsize_t @@ -4330,49 +5736,63 @@ read_tty read_ttyÌ1024Í(uint8_t *buff, size_t length)Ö0Ïsize_t redÌ1024Í(const char *fmt, ...)Ö0Ïint redcmapÌ64Î_TIFFRGBAImageÖ0Ïuint16 * -repeatÌ64Îanon_struct_21Ö0Ïlong +removeÌ65536Ö0 +renameÌ65536Ö0 +repeatÌ64Îanon_struct_36Ö0Ïlong req_orientationÌ64Î_TIFFRGBAImageÖ0Ïuint16 -request_compress_typeÌ64Îanon_struct_19Ö0Ïint -request_dither_seedÌ64Îanon_struct_19Ö0Ïint -request_hcomp_scaleÌ64Îanon_struct_19Ö0Ïfloat -request_hcomp_smoothÌ64Îanon_struct_19Ö0Ïint -request_huge_hduÌ64Îanon_struct_19Ö0Ïint -request_lossy_int_compressÌ64Îanon_struct_19Ö0Ïint -request_quantize_levelÌ64Îanon_struct_19Ö0Ïfloat -request_quantize_methodÌ64Îanon_struct_19Ö0Ïint -request_tilesizeÌ64Îanon_struct_19Ö0Ïlong +request_compress_typeÌ64Îanon_struct_34Ö0Ïint +request_dither_seedÌ64Îanon_struct_34Ö0Ïint +request_hcomp_scaleÌ64Îanon_struct_34Ö0Ïfloat +request_hcomp_smoothÌ64Îanon_struct_34Ö0Ïint +request_huge_hduÌ64Îanon_struct_34Ö0Ïint +request_lossy_int_compressÌ64Îanon_struct_34Ö0Ïint +request_quantize_levelÌ64Îanon_struct_34Ö0Ïfloat +request_quantize_methodÌ64Îanon_struct_34Ö0Ïint +request_tilesizeÌ64Îanon_struct_34Ö0Ïlong required_argumentÌ65536Ö0 -rest_parsÌ64Îanon_struct_27Ö0Ïchar * * -rest_pars_numÌ64Îanon_struct_27Ö0Ïint +rest_parsÌ64Îanon_struct_32Ö0Ïchar * * +rest_pars_numÌ64Îanon_struct_32Ö0Ïint +restartÌ64ÎjheadÖ0Ïint restore_consoleÌ16Í()Ö0Ïvoid restore_consoleÌ1024Í()Ö0Ïvoid restore_ttyÌ16Í()Ö0Ïvoid restore_ttyÌ1024Í()Ö0Ïvoid -rewrite_ifexistsÌ16384Ö0Ïint -rewrite_ifexistsÌ32768Ö0Ïint -rice_blocksizeÌ64Îanon_struct_19Ö0Ïint -rice_bytepixÌ64Îanon_struct_19Ö0Ïint -rowÌ64Îanon_struct_22Ö0Ïlong +rewindÌ65536Ö0 +rice_blocksizeÌ64Îanon_struct_34Ö0Ïint +rice_bytepixÌ64Îanon_struct_34Ö0Ïint +rowÌ64Îanon_struct_37Ö0Ïlong +rowÌ64ÎjheadÖ0Ï * row_offsetÌ64Î_TIFFRGBAImageÖ0Ïint -rowlengthÌ64Îanon_struct_19Ö0ÏLONGLONG -rstepÌ64Îanon_struct_15Ö0Ïfloat +rowlengthÌ64Îanon_struct_34Ö0ÏLONGLONG +rows_per_stripÌ64Îtiff_ifd_tÖ0Ïint +rstepÌ64Îanon_struct_44Ö0Ïfloat run_terminalÌ16Í()Ö0Ïvoid run_terminalÌ1024Í()Ö0Ïvoid +sÌ64Îtiff_tag::anon_union_22Ö0Ïshort s_WARNÌ16Í(const char *fmt, ...)Ö0Ïint sa_handlerÌ65536Ö0 sa_sigactionÌ65536Ö0 +sample_formatÌ64Îtiff_ifd_tÖ0Ïint +samplesÌ64Îtiff_ifd_tÖ0Ïint samplesperpixelÌ64Î_TIFFRGBAImageÖ0Ïuint16 save_histoÌ16Í(FILE *f, imstorage *img)Ö0Ïint -schemeÌ64Îanon_struct_17Ö0Ïuint16 +save_histoÌ1024Í(FILE *f, imstorage *img)Ö0Ïint +scanfÌ65536Ö0 +sched_paramÌ2048Ö0 +sched_priorityÌ65536Ö0 +schemeÌ64Îanon_struct_46Ö0Ïuint16 send_cmdÌ16Í(uint8_t cmd)Ö0Ïint send_cmd_csÌ16Í(uint8_t cmd)Ö0Ïtrans_status send_dataÌ16Í(uint8_t *buf, int len)Ö0Ïint -separateÌ64Î_TIFFRGBAImage::anon_union_16Ö0ÏtileSeparateRoutine +separateÌ64Î_TIFFRGBAImage::anon_union_45Ö0ÏtileSeparateRoutine +setbufÌ65536Ö0 +setlocaleÌ65536Ö0 setup_conÌ16Í()Ö0Ïvoid setup_conÌ1024Í()Ö0Ïvoid +setvbufÌ65536Ö0 showhelpÌ16Í(int oindex, myoption *options)Ö0Ïvoid showhelpÌ1024Í(int oindex, myoption *options)Ö0Ïvoid -shutter_cmdÌ64Îanon_struct_27Ö0Ïchar * +shutter_cmdÌ64Îanon_struct_32Ö0Ïchar * shutter_commandÌ16Í(char *cmd)Ö0Ïint shutter_commandÌ1024Í(char *cmd)Ö0Ïint si_addrÌ65536Ö0 @@ -4400,88 +5820,135 @@ sigmask signalsÌ16Í(int signo)Ö0Ïvoid signalsÌ1024Í(int sig)Ö0Ïvoid signbitÌ131072Í(x)Ö0 -sizeÌ64Îanon_struct_5Ö0Ïuint8_t -speedÌ64Îanon_struct_27Ö0Ïint +sizeÌ64Îanon_struct_3Ö0Ïuint8_t +snprintfÌ65536Ö0 +softÌ64Îtiff_hdrÖ0Ïchar +speedÌ64Îanon_struct_32Ö0Ïint speedsÌ16384Ö0Ïint speedssizeÌ16384Ö0Ïconst int -splistÌ64Îanon_struct_27Ö0Ïint -stÌ64Îanon_struct_6Ö0Ïstore_type +splistÌ64Îanon_struct_32Ö0Ïint +sprintfÌ65536Ö0 +srawÌ64ÎjheadÖ0Ïint +sraw_mulÌ64Îanon_struct_20Ö0Ïushort +sscanfÌ65536Ö0 +stÌ64Îanon_struct_4Ö0Ïstore_type st_atimeÌ65536Ö0 st_ctimeÌ65536Ö0 st_mtimeÌ65536Ö0 starsÌ16384Ö0Ïconst char +start_brkÌ64Îprctl_mm_mapÖ0Ï__u64 +start_codeÌ64Îprctl_mm_mapÖ0Ï__u64 +start_dataÌ64Îprctl_mm_mapÖ0Ï__u64 start_expositionÌ16Í(imstorage *im, char *imtype)Ö0Ïint start_expositionÌ1024Í(imstorage *im, char *imtype)Ö0Ïint -startcolÌ64Îanon_struct_19Ö0Ïint +start_stackÌ64Îprctl_mm_mapÖ0Ï__u64 +startcolÌ64Îanon_struct_34Ö0Ïint stderrÌ65536Ö0 stdinÌ65536Ö0 stdoutÌ65536Ö0 stoponerrÌ64Î_TIFFRGBAImageÖ0Ïint store_imageÌ16Í(imstorage *img)Ö0Ïint store_imageÌ1024Í(imstorage *filename)Ö0Ïint -store_typeÌ4096Ö0Ïanon_enum_2 +store_typeÌ4096Ö0Ïanon_enum_0 str2doubleÌ16Í(double *num, const char *str)Ö0Ïint str2doubleÌ1024Í(double *num, const char *str)Ö0Ïint strdupaÌ131072Í(s)Ö0 +strip_byte_countsÌ64Îtiff_ifd_tÖ0Ïint * +strip_byte_counts_countÌ64Îtiff_ifd_tÖ0Ïint +strip_offsetÌ64Îanon_struct_20Ö0ÏINT64 +strip_offsetsÌ64Îtiff_ifd_tÖ0Ïint * +strip_offsets_countÌ64Îtiff_ifd_tÖ0Ïint strndupaÌ131072Í(s,n)Ö0 -strnullÌ64Îanon_struct_18Ö0Ïchar -subframeÌ64Îanon_struct_27Ö0Ïchar * -subframeÌ64Îanon_struct_6Ö0Ïimsubframe * -tableptrÌ64Îanon_struct_19Ö0Ïtcolumn * -takeimgÌ64Îanon_struct_27Ö0Ïint -tbcolÌ64Îanon_struct_18Ö0ÏLONGLONG -tcolumnÌ4096Ö0Ïanon_struct_18 +strnullÌ64Îanon_struct_33Ö0Ïchar +subframeÌ64Îanon_struct_32Ö0Ïchar * +subframeÌ64Îanon_struct_4Ö0Ïimsubframe * +swprintfÌ65536Ö0 +swscanfÌ65536Ö0 +t_artistÌ64Îtiff_hdrÖ0Ïchar +t_descÌ64Îtiff_hdrÖ0Ïchar +t_flipÌ64Îtiff_ifd_tÖ0Ïint +t_heightÌ64Îtiff_ifd_tÖ0Ïint +t_makeÌ64Îtiff_hdrÖ0Ïchar +t_modelÌ64Îtiff_hdrÖ0Ïchar +t_orderÌ64Îtiff_hdrÖ0Ïushort +t_shutterÌ64Îtiff_ifd_tÖ0Ïfloat +t_tile_lengthÌ64Îtiff_ifd_tÖ0Ïint +t_tile_widthÌ64Îtiff_ifd_tÖ0Ïint +t_widthÌ64Îtiff_ifd_tÖ0Ïint +tableptrÌ64Îanon_struct_34Ö0Ïtcolumn * +tagÌ64Îtiff_hdrÖ0Ïtiff_tag +tagÌ64Îtiff_tagÖ0Ïushort +takeimgÌ64Îanon_struct_32Ö0Ïint +tbcolÌ64Îanon_struct_33Ö0ÏLONGLONG +tcolumnÌ4096Ö0Ïanon_struct_33 tdata_tÌ4096Ö0Ïvoid * -tdatatypeÌ64Îanon_struct_18Ö0Ïint +tdatatypeÌ64Îanon_struct_33Ö0Ïint tdir_tÌ4096Ö0Ïuint16 -tdispÌ64Îanon_struct_21Ö0Ïchar +tdispÌ64Îanon_struct_36Ö0Ïchar term_setspeedÌ16Í(int speed)Ö0Ïint term_setspeedÌ1024Í(int speed)Ö0Ïint -terminalÌ64Îanon_struct_27Ö0Ïint -tfieldÌ64Îanon_struct_19Ö0Ïint -tformÌ64Îanon_struct_18Ö0Ïchar +terminalÌ64Îanon_struct_32Ö0Ïint +tfieldÌ64Îanon_struct_34Ö0Ïint +tformÌ64Îanon_struct_33Ö0Ïchar thandle_tÌ4096Ö0Ïvoid * +thumb_miscÌ64Îanon_struct_20Ö0 tifÌ64Î_TIFFRGBAImageÖ0ÏTIFF * -tiff_diroffÌ64Îanon_struct_10Ö0Ïuint32 -tiff_diroffÌ64Îanon_struct_11Ö0Ïuint64 -tiff_magicÌ64Îanon_struct_10Ö0Ïuint16 -tiff_magicÌ64Îanon_struct_11Ö0Ïuint16 -tiff_magicÌ64Îanon_struct_9Ö0Ïuint16 -tiff_offsetsizeÌ64Îanon_struct_11Ö0Ïuint16 -tiff_unusedÌ64Îanon_struct_11Ö0Ïuint16 -tiff_versionÌ64Îanon_struct_10Ö0Ïuint16 -tiff_versionÌ64Îanon_struct_11Ö0Ïuint16 -tiff_versionÌ64Îanon_struct_9Ö0Ïuint16 +tiff_bpsÌ64Îanon_struct_20Ö0 +tiff_compressÌ64Îanon_struct_20Ö0 +tiff_diroffÌ64Îanon_struct_39Ö0Ïuint32 +tiff_diroffÌ64Îanon_struct_40Ö0Ïuint64 +tiff_flipÌ64Îanon_struct_19Ö0Ïint +tiff_hdrÌ2048Ö0 +tiff_ifd_tÌ2048Ö0 +tiff_magicÌ64Îanon_struct_38Ö0Ïuint16 +tiff_magicÌ64Îanon_struct_39Ö0Ïuint16 +tiff_magicÌ64Îanon_struct_40Ö0Ïuint16 +tiff_nifdsÌ64Îanon_struct_19Ö0 +tiff_offsetsizeÌ64Îanon_struct_40Ö0Ïuint16 +tiff_samplesÌ64Îanon_struct_20Ö0 +tiff_tagÌ2048Ö0 +tiff_unusedÌ64Îanon_struct_40Ö0Ïuint16 +tiff_versionÌ64Îanon_struct_38Ö0Ïuint16 +tiff_versionÌ64Îanon_struct_39Ö0Ïuint16 +tiff_versionÌ64Îanon_struct_40Ö0Ïuint16 tileContigRoutineÌ4096Ö0Ïtypedef void tileSeparateRoutineÌ4096Ö0Ïtypedef void -tileanynullÌ64Îanon_struct_19Ö0Ïint * -tiledataÌ64Îanon_struct_19Ö0Ïvoid * * -tiledatasizeÌ64Îanon_struct_19Ö0Ïlong * -tilenullarrayÌ64Îanon_struct_19Ö0Ïvoid * * -tilerowÌ64Îanon_struct_19Ö0Ïint * -tilesizeÌ64Îanon_struct_19Ö0Ïlong -tiletypeÌ64Îanon_struct_19Ö0Ïint * -time_tÌ4096Ö0Ï__time_t +tile_lengthÌ64Îanon_struct_20Ö0Ïtile_width +tile_widthÌ64Îanon_struct_20Ö0 +tileanynullÌ64Îanon_struct_34Ö0Ïint * +tiledataÌ64Îanon_struct_34Ö0Ïvoid * * +tiledatasizeÌ64Îanon_struct_34Ö0Ïlong * +tilenullarrayÌ64Îanon_struct_34Ö0Ïvoid * * +tilerowÌ64Îanon_struct_34Ö0Ïint * +tilesizeÌ64Îanon_struct_34Ö0Ïlong +tiletypeÌ64Îanon_struct_34Ö0Ïint * timeraddÌ131072Í(a,b,result)Ö0 timerclearÌ131072Í(tvp)Ö0 timercmpÌ131072Í(a,b,CMP)Ö0 timerissetÌ131072Í(tvp)Ö0 timersubÌ131072Í(a,b,result)Ö0 -timespecÌ2048Ö0 -tlmaxÌ64Îanon_struct_21Ö0Ïlong -tlminÌ64Îanon_struct_21Ö0Ïlong +timestampÌ64Îanon_struct_32Ö0Ïint +timestampÌ64Îanon_struct_4Ö0Ïint +tlmaxÌ64Îanon_struct_36Ö0Ïlong +tlminÌ64Îanon_struct_36Ö0Ïlong +tmpfileÌ65536Ö0 +tmpnamÌ65536Ö0 tmsize_tÌ4096Ö0Ïsigned long -tnullÌ64Îanon_struct_18Ö0ÏLONGLONG -toasciiÌ131072Í(c)Ö0 -toascii_lÌ131072Í(c,l)Ö0 +tnullÌ64Îanon_struct_33Ö0ÏLONGLONG toff_tÌ4096Ö0Ïuint64 -trans_statusÌ4096Ö0Ïanon_enum_7 -trepeatÌ64Îanon_struct_18Ö0ÏLONGLONG +toffsetÌ64Îanon_struct_17Ö0ÏINT64 +tolowerÌ65536Ö0 +toupperÌ65536Ö0 +towctransÌ65536Ö0 +towlowerÌ65536Ö0 +towupperÌ65536Ö0 +trans_statusÌ4096Ö0Ïanon_enum_26 +trepeatÌ64Îanon_struct_33Ö0ÏLONGLONG trueÌ65536Ö0 try_connectÌ16Í(char *device, int speed)Ö0Ïint try_connectÌ1024Í(char *device, int speed)Ö0Ïint tsample_tÌ4096Ö0Ïuint16 -tscaleÌ64Îanon_struct_18Ö0Ïdouble +tscaleÌ64Îanon_struct_33Ö0Ïdouble tsize_tÌ4096Ö0Ïtmsize_t tstrile_tÌ4096Ö0Ïuint32 tstrip_tÌ4096Ö0Ïtstrile_t @@ -4490,16 +5957,14 @@ ttile_t ttyÌ16384Ö0Ïtermio tty_initÌ16Í(char *comdev, tcflag_t speed)Ö0Ïvoid tty_initÌ1024Í(char *comdev, tcflag_t speed)Ö0Ïvoid -ttypeÌ64Îanon_struct_18Ö0Ïchar -ttypeÌ64Îanon_struct_22Ö0Ïchar -tunitÌ64Îanon_struct_21Ö0Ïchar -tv_nsecÌ64ÎtimespecÖ0Ï__syscall_slong_t -tv_secÌ64ÎtimespecÖ0Ï__time_t -twidthÌ64Îanon_struct_18Ö0Ïlong -typeÌ64Îanon_struct_25Ö0Ïargtype -typeÌ64Îanon_struct_26Ö0Ïargtype -tzeroÌ64Îanon_struct_18Ö0Ïdouble -uid_tÌ4096Ö0Ï__uid_t +ttypeÌ64Îanon_struct_33Ö0Ïchar +ttypeÌ64Îanon_struct_37Ö0Ïchar +tunitÌ64Îanon_struct_36Ö0Ïchar +twidthÌ64Îanon_struct_33Ö0Ïlong +typeÌ64Îanon_struct_30Ö0Ïargtype +typeÌ64Îanon_struct_31Ö0Ïargtype +typeÌ64Îtiff_tagÖ0Ïushort +tzeroÌ64Îanon_struct_33Ö0Ïdouble uint16Ì4096Ö0Ïunsigned short uint16_tÌ4096Ö0Ïunsigned short int uint16_vapÌ4096Ö0Ïint @@ -4519,37 +5984,93 @@ uint_least64_t uint_least8_tÌ4096Ö0Ïunsigned char uintmax_tÌ4096Ö0Ïunsigned long int uintptr_tÌ4096Ö0Ïunsigned long int +ungetcÌ65536Ö0 +ungetwcÌ65536Ö0 +unique_idÌ64Îanon_struct_19Ö0 unixÌ65536Ö0 +unpacker_dataÌ64Îanon_struct_21Ö0Ïunpacker_data_t +unpacker_data_tÌ4096Ö0Ïanon_struct_20 va_argÌ131072Í(v,l)Ö0 va_copyÌ131072Í(d,s)Ö0 va_endÌ131072Í(v)Ö0 va_startÌ131072Í(v,l)Ö0 valÌ64Îanon_struct_25Ö0Ïint -validcodeÌ64Îanon_struct_19Ö0Ïint -verboseÌ16384Ö0Ïint -verboseÌ32768Ö0Ïint -w_coredumpÌ65536Ö0 -w_retcodeÌ65536Ö0 -w_stopsigÌ65536Ö0 -w_stopvalÌ65536Ö0 -w_termsigÌ65536Ö0 +valÌ64Îanon_struct_30Ö0Ïint +valÌ64Îtiff_tagÖ0Ïanon_union_22 +validcodeÌ64Îanon_struct_34Ö0Ïint +vfprintfÌ65536Ö0 +vfscanfÌ65536Ö0 +vfwprintfÌ65536Ö0 +vfwscanfÌ65536Ö0 +vpredÌ64ÎjheadÖ0Ïint +vprintfÌ65536Ö0 +vscanfÌ65536Ö0 +vsnprintfÌ65536Ö0 +vsprintfÌ65536Ö0 +vsscanfÌ65536Ö0 +vswprintfÌ65536Ö0 +vswscanfÌ65536Ö0 +vwprintfÌ65536Ö0 +vwscanfÌ65536Ö0 wait4answerÌ16Í(uint8_t **rdata, int *rdlen)Ö0Ïtrans_status wait4imageÌ16Í()Ö0Ïint wait4imageÌ1024Í()Ö0Ïint wait_checksumÌ16Í()Ö0Ïtrans_status +wcrtombÌ65536Ö0 +wcscatÌ65536Ö0 +wcschrÌ65536Ö0 +wcscmpÌ65536Ö0 +wcscollÌ65536Ö0 +wcscpyÌ65536Ö0 +wcscspnÌ65536Ö0 +wcsftimeÌ65536Ö0 +wcslenÌ65536Ö0 +wcsncatÌ65536Ö0 +wcsncmpÌ65536Ö0 +wcsncpyÌ65536Ö0 +wcspbrkÌ65536Ö0 +wcsrchrÌ65536Ö0 +wcsrtombsÌ65536Ö0 +wcsspnÌ65536Ö0 +wcsstrÌ65536Ö0 +wcstodÌ65536Ö0 +wcstofÌ65536Ö0 +wcstokÌ65536Ö0 +wcstolÌ65536Ö0 +wcstoldÌ65536Ö0 +wcstollÌ65536Ö0 +wcstoulÌ65536Ö0 +wcstoullÌ65536Ö0 +wcsxfrmÌ65536Ö0 +wctobÌ65536Ö0 +wctransÌ65536Ö0 +wctypeÌ65536Ö0 +wctype_tÌ4096Ö0Ïunsigned long int +wideÌ64ÎjheadÖ0Ïint widthÌ64Î_TIFFRGBAImageÖ0Ïuint32 +wint_tÌ4096Ö0Ïunsigned int +wmemchrÌ65536Ö0 +wmemcmpÌ65536Ö0 +wmemcpyÌ65536Ö0 +wmemmoveÌ65536Ö0 +wmemsetÌ65536Ö0 +wprintfÌ65536Ö0 +write_debayerÌ16Í(imstorage *img, uint16_t black)Ö0Ïint +write_jpegÌ16Í(const char *fname, const uint8_t *data, imstorage *img)Ö0Ïint write_ttyÌ16Í(const uint8_t *buff, size_t length)Ö0Ïint write_ttyÌ1024Í(const uint8_t *buff, size_t length)Ö0Ïint writedumpÌ16Í(imstorage *img)Ö0Ïint writefitsÌ16Í(imstorage *img)Ö0Ïint -writemodeÌ64Îanon_struct_19Ö0Ïint +writemodeÌ64Îanon_struct_34Ö0Ïint writetiffÌ16Í(imstorage *img)Ö0Ïint -wtbarrÌ4096Ö0Ïanon_struct_22 +wscanfÌ65536Ö0 +wtbarrÌ4096Ö0Ïanon_struct_37 ycbcrÌ64Î_TIFFRGBAImageÖ0ÏTIFFYCbCrToRGB * -zbitpixÌ64Îanon_struct_19Ö0Ïint -zblankÌ64Îanon_struct_19Ö0Ïint -zcmptypeÌ64Îanon_struct_19Ö0Ïchar -znaxisÌ64Îanon_struct_19Ö0Ïlong -zndimÌ64Îanon_struct_19Ö0Ïint -zscaleÌ64Îanon_struct_19Ö0Ïdouble -zzeroÌ64Îanon_struct_19Ö0Ïdouble +zbitpixÌ64Îanon_struct_34Ö0Ïint +zblankÌ64Îanon_struct_34Ö0Ïint +zcmptypeÌ64Îanon_struct_34Ö0Ïchar +zero_after_ffÌ64Îanon_struct_20Ö0 +znaxisÌ64Îanon_struct_34Ö0Ïlong +zndimÌ64Îanon_struct_34Ö0Ïint +zscaleÌ64Îanon_struct_34Ö0Ïdouble +zzeroÌ64Îanon_struct_34Ö0Ïdouble diff --git a/socket.c b/socket.c index 1ff6e39..fb49991 100644 --- a/socket.c +++ b/socket.c @@ -334,7 +334,8 @@ static void daemon_(imstorage *img, int sock){ pthread_mutex_lock(&mutex); if(copyima(img)){ ++imctr; - save_histo(NULL, img); // calculate next optimal exposition + if(img->imtype != IMTYPE_DARK) + save_histo(NULL, img); // calculate next optimal exposition } pthread_mutex_unlock(&mutex); } diff --git a/term.c b/term.c index 2a70749..00df651 100644 --- a/term.c +++ b/term.c @@ -500,6 +500,14 @@ int start_exposition(imstorage *im, char *imtype){ b = bngs[binning]; }else b = "subframe"; cmd[4] = binning; + if(!imtype){ + it = im->imtype; + switch(im->imtype){ + case IMTYPE_DARK: imtype = "dark"; break; + case IMTYPE_AUTODARK: imtype = "autodark"; break; + case IMTYPE_LIGHT: default: imtype = "light"; + } + } // and now check image type if(imtype){ int L = strlen(imtype);