#include "zlib.h"
#include "pngconf.h"
Go to the source code of this file.
#define PNG_AFTER_IDAT 0x08 |
Definition at line 2718 of file png.h.
Referenced by png_handle_IEND(), png_handle_tEXt(), png_handle_tIME(), png_handle_unknown(), png_handle_zTXt(), png_process_IDAT_data(), png_push_read_chunk(), png_push_read_IDAT(), png_read_finish_row(), png_read_info(), and png_read_row().
#define PNG_ALL_FILTERS |
#define PNG_ALL_MNG_FEATURES 0x05 |
#define PNG_BACKGROUND_GAMMA_FILE 2 |
#define PNG_BACKGROUND_GAMMA_SCREEN 1 |
#define PNG_BACKGROUND_GAMMA_UNIQUE 3 |
#define PNG_BACKGROUND_GAMMA_UNKNOWN 0 |
#define png_bytep_NULL (png_bytep)NULL |
Definition at line 467 of file png.h.
Referenced by png_push_process_row(), png_read_image(), png_read_rows(), and png_write_IEND().
#define png_bytepp_NULL (png_bytepp)NULL |
#define PNG_COLOR_MASK_ALPHA 4 |
Definition at line 966 of file png.h.
Referenced by png2ASImage_int(), png_do_background(), png_do_read_transformations(), png_do_unshift(), png_read_transform_info(), png_set_gamma(), png_set_IHDR(), and png_write_sBIT().
#define PNG_COLOR_MASK_COLOR 2 |
Definition at line 965 of file png.h.
Referenced by png_do_bgr(), png_do_gray_to_rgb(), png_do_read_intrapixel(), png_do_rgb_to_gray(), png_do_shift(), png_do_unshift(), png_do_write_intrapixel(), png_handle_bKGD(), png_handle_PLTE(), png_handle_sBIT(), png_init_read_transformations(), png_read_transform_info(), png_set_IHDR(), png_write_bKGD(), png_write_PLTE(), and png_write_sBIT().
#define PNG_COLOR_TYPE_GRAY 0 |
Definition at line 969 of file png.h.
Referenced by ASImage2png_int(), png2ASImage_int(), png_do_background(), png_do_expand(), png_do_gamma(), png_do_gray_to_rgb(), png_do_invert(), png_do_read_filler(), png_do_strip_filler(), png_handle_IHDR(), png_handle_tRNS(), png_read_start_row(), png_read_transform_info(), png_set_filler(), png_write_IHDR(), and png_write_tRNS().
#define PNG_COLOR_TYPE_GRAY_ALPHA (PNG_COLOR_MASK_ALPHA) |
Definition at line 973 of file png.h.
Referenced by ASImage2png_int(), png2ASImage_int(), png_do_expand(), png_do_gamma(), png_do_gray_to_rgb(), png_do_invert(), png_do_read_invert_alpha(), png_do_read_swap_alpha(), png_do_strip_filler(), png_do_write_invert_alpha(), png_do_write_swap_alpha(), png_handle_IHDR(), png_read_start_row(), png_set_IHDR(), and png_write_IHDR().
#define PNG_COLOR_TYPE_PALETTE (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE) |
Definition at line 970 of file png.h.
Referenced by png2ASImage_int(), png_do_background(), png_do_dither(), png_do_expand_palette(), png_do_read_transformations(), png_do_shift(), png_do_unshift(), png_get_tRNS(), png_handle_bKGD(), png_handle_IHDR(), png_handle_PLTE(), png_handle_sBIT(), png_handle_tRNS(), png_init_read_transformations(), png_push_read_chunk(), png_read_info(), png_read_png(), png_read_start_row(), png_read_transform_info(), png_set_gamma(), png_set_IHDR(), png_set_PLTE(), png_set_rgb_to_gray_fixed(), png_write_bKGD(), png_write_IHDR(), png_write_info(), png_write_PLTE(), png_write_sBIT(), and png_write_tRNS().
#define PNG_COLOR_TYPE_RGB (PNG_COLOR_MASK_COLOR) |
Definition at line 971 of file png.h.
Referenced by ASImage2png_int(), png2ASImage_int(), png_do_bgr(), png_do_dither(), png_do_gamma(), png_do_read_intrapixel(), png_do_rgb_to_gray(), png_do_strip_filler(), png_do_write_intrapixel(), png_handle_IHDR(), png_handle_tRNS(), png_read_start_row(), png_read_transform_info(), png_set_filler(), png_set_IHDR(), png_write_IHDR(), and png_write_tRNS().
#define PNG_COLOR_TYPE_RGB_ALPHA (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA) |
Definition at line 972 of file png.h.
Referenced by ASImage2png_int(), png_do_bgr(), png_do_dither(), png_do_gamma(), png_do_read_intrapixel(), png_do_read_invert_alpha(), png_do_read_swap_alpha(), png_do_strip_filler(), png_do_write_intrapixel(), png_do_write_invert_alpha(), png_do_write_swap_alpha(), png_handle_IHDR(), png_read_start_row(), png_read_transform_info(), png_set_IHDR(), and png_write_IHDR().
#define png_composite | ( | composite, | |||
fg, | |||||
alpha, | |||||
bg | ) |
Value:
{ png_uint_16 temp = (png_uint_16)((png_uint_16)(fg) * (png_uint_16)(alpha) \ + (png_uint_16)(bg)*(png_uint_16)(255 - \ (png_uint_16)(alpha)) + (png_uint_16)128); \ (composite) = (png_byte)((temp + (temp >> 8)) >> 8); }
#define png_composite_16 | ( | composite, | |||
fg, | |||||
alpha, | |||||
bg | ) |
Value:
{ png_uint_32 temp = (png_uint_32)((png_uint_32)(fg) * (png_uint_32)(alpha) \ + (png_uint_32)(bg)*(png_uint_32)(65535L - \ (png_uint_32)(alpha)) + (png_uint_32)32768L); \ (composite) = (png_uint_16)((temp + (temp >> 16)) >> 16); }
#define PNG_COMPRESSION_TYPE_BASE 0 |
Definition at line 979 of file png.h.
Referenced by png_decompress_chunk(), png_set_IHDR(), png_write_iCCP(), png_write_IDAT(), png_write_IHDR(), and png_write_info_before_PLTE().
#define PNG_COMPRESSION_TYPE_DEFAULT PNG_COMPRESSION_TYPE_BASE |
#define PNG_CRC_DEFAULT 0 |
#define PNG_CRC_ERROR_QUIT 1 |
#define PNG_CRC_NO_CHANGE 5 |
#define PNG_CRC_QUIET_USE 4 |
#define PNG_CRC_WARN_DISCARD 2 |
#define PNG_CRC_WARN_USE 3 |
Definition at line 2513 of file png.h.
Referenced by png_build_gamma_table(), png_build_grayscale_palette(), png_check_chunk_name(), png_check_keyword(), png_combine_row(), png_convert_from_struct_tm(), png_convert_from_time_t(), png_create_info_struct(), png_create_read_struct_2(), png_create_write_struct_2(), png_data_freer(), png_destroy_info_struct(), png_destroy_read_struct(), png_destroy_write_struct(), png_do_background(), png_do_bgr(), png_do_chop(), png_do_dither(), png_do_expand(), png_do_expand_palette(), png_do_gamma(), png_do_gray_to_rgb(), png_do_invert(), png_do_pack(), png_do_packswap(), png_do_read_filler(), png_do_read_interlace(), png_do_read_intrapixel(), png_do_read_invert_alpha(), png_do_read_swap_alpha(), png_do_read_transformations(), png_do_rgb_to_gray(), png_do_shift(), png_do_strip_filler(), png_do_swap(), png_do_unpack(), png_do_unshift(), png_do_write_interlace(), png_do_write_intrapixel(), png_do_write_invert_alpha(), png_do_write_swap_alpha(), png_do_write_transformations(), png_free_data(), png_handle_bKGD(), png_handle_cHRM(), png_handle_gAMA(), png_handle_hIST(), png_handle_iCCP(), png_handle_IEND(), png_handle_IHDR(), png_handle_oFFs(), png_handle_pCAL(), png_handle_pHYs(), png_handle_PLTE(), png_handle_sBIT(), png_handle_sCAL(), png_handle_sPLT(), png_handle_sRGB(), png_handle_tEXt(), png_handle_tIME(), png_handle_tRNS(), png_handle_unknown(), png_handle_zTXt(), png_info_destroy(), png_info_init_3(), png_init_io(), png_init_read_transformations(), png_permit_empty_plte(), png_permit_mng_features(), png_read_destroy(), png_read_end(), png_read_filter_row(), png_read_finish_row(), png_read_image(), png_read_info(), png_read_init_3(), png_read_rows(), png_read_start_row(), png_read_transform_info(), png_read_update_info(), png_set_add_alpha(), png_set_background(), png_set_bgr(), png_set_compression_level(), png_set_compression_mem_level(), png_set_compression_method(), png_set_compression_strategy(), png_set_crc_action(), png_set_dither(), png_set_expand(), png_set_expand_gray_1_2_4_to_8(), png_set_filler(), png_set_filter(), png_set_filter_heuristics(), png_set_flush(), png_set_gamma(), png_set_gray_1_2_4_to_8(), png_set_gray_to_rgb(), png_set_interlace_handling(), png_set_invert_alpha(), png_set_invert_mono(), png_set_packing(), png_set_packswap(), png_set_palette_to_rgb(), png_set_pCAL(), png_set_read_user_chunk_fn(), png_set_read_user_transform_fn(), png_set_rgb_to_gray_fixed(), png_set_shift(), png_set_sig_bytes(), png_set_strip_16(), png_set_strip_alpha(), png_set_swap(), png_set_swap_alpha(), png_set_tRNS_to_alpha(), png_set_user_transform_info(), png_set_write_user_transform_fn(), png_start_read_image(), png_write_bKGD(), png_write_cHRM(), png_write_cHRM_fixed(), png_write_destroy(), png_write_end(), png_write_filtered_row(), png_write_find_filter(), png_write_finish_row(), png_write_flush(), png_write_gAMA(), png_write_gAMA_fixed(), png_write_hIST(), png_write_iCCP(), png_write_IDAT(), png_write_IEND(), png_write_IHDR(), png_write_image(), png_write_info(), png_write_info_before_PLTE(), png_write_init_3(), png_write_oFFs(), png_write_pHYs(), png_write_PLTE(), png_write_rows(), png_write_sBIT(), png_write_sCAL(), png_write_sPLT(), png_write_sRGB(), png_write_start_row(), png_write_tEXt(), png_write_tIME(), png_write_tRNS(), and png_write_zTXt().
Definition at line 2516 of file png.h.
Referenced by png_check_keyword(), png_get_bKGD(), png_get_cHRM(), png_get_cHRM_fixed(), png_get_gAMA(), png_get_gAMA_fixed(), png_get_hIST(), png_get_iCCP(), png_get_IHDR(), png_get_oFFs(), png_get_pCAL(), png_get_pHYs(), png_get_pixel_aspect_ratio(), png_get_pixels_per_meter(), png_get_PLTE(), png_get_sBIT(), png_get_sRGB(), png_get_text(), png_get_tIME(), png_get_tRNS(), png_get_x_offset_microns(), png_get_x_offset_pixels(), png_get_x_pixels_per_meter(), png_get_y_offset_microns(), png_get_y_offset_pixels(), png_get_y_pixels_per_meter(), png_handle_IHDR(), png_handle_pCAL(), png_handle_sCAL(), png_read_data(), png_read_end(), png_read_start_row(), png_set_bKGD(), png_set_cHRM(), png_set_cHRM_fixed(), png_set_gAMA(), png_set_gAMA_fixed(), png_set_hIST(), png_set_iCCP(), png_set_IHDR(), png_set_oFFs(), png_set_pCAL(), png_set_pHYs(), png_set_PLTE(), png_set_rows(), png_set_sBIT(), png_set_sCAL(), png_set_sRGB(), png_set_sRGB_gAMA_and_cHRM(), png_set_text_2(), png_set_tIME(), png_set_tRNS(), png_write_filtered_row(), png_write_pCAL(), png_write_PLTE(), png_write_row(), and png_write_sCAL().
Definition at line 2519 of file png.h.
Referenced by png_read_filter_row(), png_read_info(), png_read_row(), png_set_pCAL(), png_set_text_2(), png_write_chunk_start(), png_write_end(), png_write_hIST(), png_write_info(), png_write_pCAL(), and png_write_row().
#define PNG_DESTROY_WILL_FREE_DATA 1 |
#define png_doublep_NULL (png_doublep)NULL |
Definition at line 469 of file png.h.
Referenced by png_create_write_struct_2(), and png_write_init_3().
#define PNG_EQUATION_ARBITRARY 2 |
#define PNG_EQUATION_BASE_E 1 |
#define PNG_EQUATION_HYPERBOLIC 3 |
#define PNG_EQUATION_LAST 4 |
#define PNG_EQUATION_LINEAR 0 |
#define PNG_FILLER_AFTER 1 |
#define PNG_FILLER_BEFORE 0 |
#define PNG_FILTER_AVG 0x40 |
#define PNG_FILTER_HEURISTIC_DEFAULT 0 |
Definition at line 1870 of file png.h.
Referenced by png_create_write_struct_2(), png_set_filter_heuristics(), and png_write_init_3().
#define PNG_FILTER_HEURISTIC_LAST 3 |
#define PNG_FILTER_HEURISTIC_UNWEIGHTED 1 |
#define PNG_FILTER_HEURISTIC_WEIGHTED 2 |
#define PNG_FILTER_NONE 0x08 |
Definition at line 1813 of file png.h.
Referenced by png_set_filter(), png_write_find_filter(), and png_write_IHDR().
#define PNG_FILTER_PAETH 0x80 |
#define PNG_FILTER_SUB 0x10 |
#define PNG_FILTER_TYPE_BASE 0 |
Definition at line 983 of file png.h.
Referenced by png_set_filter(), png_set_IHDR(), and png_write_IHDR().
#define PNG_FILTER_TYPE_DEFAULT PNG_FILTER_TYPE_BASE |
#define PNG_FILTER_UP 0x20 |
#define PNG_FILTER_VALUE_AVG 3 |
Definition at line 1827 of file png.h.
Referenced by png_read_filter_row(), png_set_filter(), and png_write_start_row().
#define PNG_FILTER_VALUE_NONE 0 |
Definition at line 1824 of file png.h.
Referenced by png_read_filter_row(), png_set_filter(), png_write_find_filter(), and png_write_start_row().
#define PNG_FILTER_VALUE_PAETH 4 |
Definition at line 1828 of file png.h.
Referenced by png_read_filter_row(), png_set_filter(), and png_write_start_row().
#define PNG_FILTER_VALUE_SUB 1 |
Definition at line 1825 of file png.h.
Referenced by png_read_filter_row(), png_set_filter(), and png_write_start_row().
#define PNG_FILTER_VALUE_UP 2 |
Definition at line 1826 of file png.h.
Referenced by png_read_filter_row(), png_set_filter(), and png_write_start_row().
#define PNG_FLAG_MNG_EMPTY_PLTE 0x01 |
Definition at line 1121 of file png.h.
Referenced by png_permit_empty_plte(), png_write_bKGD(), and png_write_PLTE().
#define PNG_FLAG_MNG_FILTER_64 0x04 |
Definition at line 1122 of file png.h.
Referenced by png_set_filter(), png_set_IHDR(), png_write_IHDR(), and png_write_row().
#define png_flush_ptr_NULL (png_flush_ptr)NULL |
Definition at line 471 of file png.h.
Referenced by png_create_write_struct_2(), and png_write_init_3().
#define PNG_FREE_ALL 0x7fff |
Definition at line 2056 of file png.h.
Referenced by png_destroy_write_struct(), and png_info_destroy().
#define PNG_FREE_HIST 0x0008 |
Definition at line 2045 of file png.h.
Referenced by png_free_data(), png_read_destroy(), and png_set_hIST().
#define PNG_FREE_ICCP 0x0010 |
#define PNG_FREE_LIST 0x0400 |
#define PNG_FREE_MUL 0x4220 |
#define PNG_FREE_PCAL 0x0080 |
#define PNG_FREE_PLTE 0x1000 |
Definition at line 2053 of file png.h.
Referenced by png_free_data(), png_read_destroy(), and png_set_PLTE().
#define png_free_ptr_NULL (png_free_ptr)NULL |
Definition at line 472 of file png.h.
Referenced by png_create_read_struct(), png_create_write_struct(), and png_destroy_struct().
#define PNG_FREE_ROWS 0x0040 |
Definition at line 2048 of file png.h.
Referenced by png_free_data(), png_read_png(), and png_set_rows().
#define PNG_FREE_SCAL 0x0100 |
#define PNG_FREE_SPLT 0x0020 |
#define PNG_FREE_TEXT 0x4000 |
Definition at line 2055 of file png.h.
Referenced by png_destroy_read_struct(), png_free_data(), and png_set_text_2().
#define PNG_FREE_TRNS 0x2000 |
Definition at line 2054 of file png.h.
Referenced by png_free_data(), png_read_destroy(), and png_set_tRNS().
#define PNG_FREE_UNKN 0x0200 |
#define PNG_HANDLE_CHUNK_ALWAYS 3 |
Definition at line 2536 of file png.h.
Referenced by png_handle_unknown(), png_push_handle_unknown(), png_set_keep_unknown_chunks(), and png_write_info_before_PLTE().
#define PNG_HANDLE_CHUNK_IF_SAFE 2 |
#define PNG_HANDLE_CHUNK_NEVER 1 |
#define PNG_HAVE_IDAT 0x04 |
Definition at line 2717 of file png.h.
Referenced by png_handle_bKGD(), png_handle_cHRM(), png_handle_gAMA(), png_handle_hIST(), png_handle_iCCP(), png_handle_IEND(), png_handle_oFFs(), png_handle_pCAL(), png_handle_pHYs(), png_handle_PLTE(), png_handle_sBIT(), png_handle_sCAL(), png_handle_sPLT(), png_handle_sRGB(), png_handle_tEXt(), png_handle_tIME(), png_handle_tRNS(), png_handle_unknown(), png_handle_zTXt(), png_push_read_chunk(), png_read_info(), png_read_row(), png_write_end(), png_write_IDAT(), and png_write_info_before_PLTE().
#define PNG_HAVE_IEND 0x10 |
Definition at line 2719 of file png.h.
Referenced by png_handle_IEND(), png_push_handle_tEXt(), png_push_handle_zTXt(), png_read_end(), and png_write_IEND().
#define PNG_HAVE_IHDR 0x01 |
Definition at line 2715 of file png.h.
Referenced by png_handle_bKGD(), png_handle_cHRM(), png_handle_gAMA(), png_handle_hIST(), png_handle_iCCP(), png_handle_IEND(), png_handle_IHDR(), png_handle_oFFs(), png_handle_pCAL(), png_handle_pHYs(), png_handle_PLTE(), png_handle_sBIT(), png_handle_sCAL(), png_handle_sPLT(), png_handle_sRGB(), png_handle_tEXt(), png_handle_tIME(), png_handle_tRNS(), png_handle_zTXt(), png_push_handle_tEXt(), png_push_handle_zTXt(), png_push_read_chunk(), png_read_info(), and png_write_IHDR().
#define PNG_HAVE_PLTE 0x02 |
Definition at line 2716 of file png.h.
Referenced by png_handle_bKGD(), png_handle_cHRM(), png_handle_gAMA(), png_handle_hIST(), png_handle_iCCP(), png_handle_PLTE(), png_handle_sBIT(), png_handle_sRGB(), png_handle_tRNS(), png_push_read_chunk(), png_read_end(), png_read_info(), png_write_info_before_PLTE(), and png_write_PLTE().
#define PNG_INFO_bKGD 0x0020 |
Definition at line 1038 of file png.h.
Referenced by png_get_bKGD(), png_handle_bKGD(), png_set_bKGD(), and png_write_info().
#define PNG_INFO_cHRM 0x0004 |
Definition at line 1035 of file png.h.
Referenced by png_get_cHRM(), png_get_cHRM_fixed(), png_handle_cHRM(), png_handle_sRGB(), png_set_cHRM(), png_set_cHRM_fixed(), and png_write_info_before_PLTE().
#define PNG_INFO_gAMA 0x0001 |
Definition at line 1033 of file png.h.
Referenced by png_get_gAMA(), png_get_gAMA_fixed(), png_handle_gAMA(), png_handle_sRGB(), png_set_gAMA(), png_set_gAMA_fixed(), and png_write_info_before_PLTE().
#define PNG_INFO_hIST 0x0040 |
Definition at line 1039 of file png.h.
Referenced by png_free_data(), png_get_hIST(), png_handle_hIST(), png_set_hIST(), and png_write_info().
#define PNG_INFO_iCCP 0x1000 |
Definition at line 1045 of file png.h.
Referenced by png_free_data(), png_get_iCCP(), png_handle_iCCP(), png_set_iCCP(), and png_write_info_before_PLTE().
#define PNG_INFO_IDAT 0x8000L |
Definition at line 1048 of file png.h.
Referenced by png_free_data(), png_read_png(), png_set_rows(), and png_write_png().
#define png_info_init | ( | info_ptr | ) |
#define PNG_INFO_oFFs 0x0100 |
Definition at line 1041 of file png.h.
Referenced by png_get_oFFs(), png_get_x_offset_microns(), png_get_x_offset_pixels(), png_get_y_offset_microns(), png_get_y_offset_pixels(), png_handle_oFFs(), png_set_oFFs(), and png_write_info().
#define PNG_INFO_pCAL 0x0400 |
Definition at line 1043 of file png.h.
Referenced by png_free_data(), png_get_pCAL(), png_handle_pCAL(), png_set_pCAL(), and png_write_info().
#define PNG_INFO_pHYs 0x0080 |
Definition at line 1040 of file png.h.
Referenced by png_get_pHYs(), png_get_pixel_aspect_ratio(), png_get_pixels_per_meter(), png_get_x_pixels_per_meter(), png_get_y_pixels_per_meter(), png_handle_pHYs(), png_set_pHYs(), and png_write_info().
#define PNG_INFO_PLTE 0x0008 |
Definition at line 1036 of file png.h.
Referenced by png_free_data(), png_get_PLTE(), png_set_PLTE(), and png_write_info().
#define PNG_INFO_sBIT 0x0002 |
Definition at line 1034 of file png.h.
Referenced by png_get_sBIT(), png_handle_sBIT(), png_read_png(), png_set_sBIT(), png_write_info_before_PLTE(), and png_write_png().
#define PNG_INFO_sCAL 0x4000 |
Definition at line 1047 of file png.h.
Referenced by png_free_data(), png_get_sCAL(), png_handle_sCAL(), png_set_sCAL(), and png_write_info().
#define PNG_INFO_sPLT 0x2000 |
#define PNG_INFO_sRGB 0x0800 |
Definition at line 1044 of file png.h.
Referenced by png_get_sRGB(), png_handle_cHRM(), png_handle_gAMA(), png_handle_sRGB(), png_set_sRGB(), and png_write_info_before_PLTE().
#define PNG_INFO_tIME 0x0200 |
Definition at line 1042 of file png.h.
Referenced by png_get_tIME(), png_handle_tIME(), png_set_tIME(), png_write_end(), and png_write_info().
#define PNG_INFO_tRNS 0x0010 |
Definition at line 1037 of file png.h.
Referenced by png2ASImage_int(), png_free_data(), png_get_tRNS(), png_handle_PLTE(), png_handle_tRNS(), png_read_png(), png_set_tRNS(), and png_write_info().
#define png_infopp_NULL (png_infopp)NULL |
#define PNG_INTERLACE_ADAM7 1 |
#define PNG_INTERLACE_LAST 2 |
#define PNG_INTERLACE_NONE 0 |
#define PNG_INTRAPIXEL_DIFFERENCING 64 |
Definition at line 984 of file png.h.
Referenced by png_set_filter(), png_set_IHDR(), png_write_IHDR(), and png_write_row().
#define PNG_ITXT_COMPRESSION_NONE 1 |
#define PNG_LIBPNG_VER 10223 |
#define PNG_LIBPNG_VER_STRING "1.2.23" |
Definition at line 378 of file png.h.
Referenced by ASImage2png_int(), png2ASImage_int(), png_get_header_ver(), and png_get_libpng_ver().
#define png_malloc_ptr_NULL (png_malloc_ptr)NULL |
Definition at line 474 of file png.h.
Referenced by png_create_read_struct(), png_create_struct(), and png_create_write_struct().
#define PNG_MAX_PALETTE_LENGTH 256 |
Definition at line 1026 of file png.h.
Referenced by png_handle_hIST(), png_handle_PLTE(), png_handle_tRNS(), png_set_hIST(), png_set_PLTE(), and png_set_tRNS().
#define PNG_MMX_FLAGS |
#define PNG_MMX_READ_FLAGS |
#define PNG_NO_FILTERS 0x00 |
#define PNG_OFFSET_LAST 2 |
#define PNG_OFFSET_MICROMETER 1 |
Definition at line 994 of file png.h.
Referenced by png_get_x_offset_microns(), and png_get_y_offset_microns().
#define PNG_OFFSET_PIXEL 0 |
Definition at line 993 of file png.h.
Referenced by png_get_x_offset_pixels(), and png_get_y_offset_pixels().
#define PNG_RESOLUTION_LAST 2 |
#define PNG_RESOLUTION_METER 1 |
Definition at line 1012 of file png.h.
Referenced by png_get_pixels_per_meter(), png_get_x_pixels_per_meter(), and png_get_y_pixels_per_meter().
#define png_rw_ptr_NULL (png_rw_ptr)NULL |
Definition at line 476 of file png.h.
Referenced by png_create_read_struct_2(), png_create_write_struct_2(), png_read_init_3(), and png_write_init_3().
#define PNG_SIZE_MAX ((png_size_t)(-1)) |
Definition at line 956 of file png.h.
Referenced by png_handle_sPLT(), png_push_save_buffer(), and png_read_start_row().
#define PNG_sRGB_INTENT_LAST 4 |
#define png_structp_NULL (png_structp)NULL |
#define PNG_TEXT_COMPRESSION_LAST 3 |
#define PNG_TEXT_COMPRESSION_NONE -1 |
Definition at line 628 of file png.h.
Referenced by png_handle_tEXt(), png_push_read_tEXt(), png_set_text_2(), png_text_compress(), png_write_end(), and png_write_zTXt().
#define PNG_TEXT_COMPRESSION_NONE_WR -3 |
#define PNG_TEXT_COMPRESSION_zTXt 0 |
Definition at line 629 of file png.h.
Referenced by png_handle_zTXt(), png_push_read_zTXt(), png_write_end(), and png_write_info().
#define PNG_TEXT_COMPRESSION_zTXt_WR -2 |
#define PNG_TRANSFORM_BGR 0x0080 |
#define PNG_TRANSFORM_EXPAND 0x0010 |
#define PNG_TRANSFORM_INVERT_ALPHA 0x0400 |
#define PNG_TRANSFORM_INVERT_MONO 0x0020 |
#define PNG_TRANSFORM_PACKING 0x0004 |
#define PNG_TRANSFORM_PACKSWAP 0x0008 |
#define PNG_TRANSFORM_SHIFT 0x0040 |
#define PNG_TRANSFORM_STRIP_16 0x0001 |
#define PNG_TRANSFORM_STRIP_ALPHA 0x0002 |
#define PNG_TRANSFORM_STRIP_FILLER 0x0800 |
#define PNG_TRANSFORM_SWAP_ALPHA 0x0100 |
#define PNG_TRANSFORM_SWAP_ENDIAN 0x0200 |
#define png_uint_16p_NULL (png_uint_16p)NULL |
#define PNG_UINT_31_MAX ((png_uint_32)0x7fffffffL) |
Definition at line 954 of file png.h.
Referenced by png_get_IHDR(), png_get_uint_31(), png_set_cHRM_fixed(), png_set_gAMA_fixed(), and png_set_IHDR().
#define PNG_UINT_32_MAX ((png_uint_32)(-1)) |
Definition at line 955 of file png.h.
Referenced by png_get_IHDR(), png_read_png(), png_set_IHDR(), and png_zalloc().
#define PNG_USER_WILL_FREE_DATA 2 |
#define png_voidp_NULL (png_voidp)NULL |
Definition at line 479 of file png.h.
Referenced by png_create_read_struct(), png_create_read_struct_2(), png_create_struct(), png_create_write_struct(), png_create_write_struct_2(), png_destroy_struct(), png_read_init_3(), and png_write_init_3().
typedef struct png_color_struct png_color |
typedef struct png_color_16_struct png_color_16 |
typedef png_color_16 FAR* png_color_16p |
typedef png_color_16 FAR* FAR* png_color_16pp |
typedef struct png_color_8_struct png_color_8 |
typedef png_color_8 FAR* png_color_8p |
typedef png_color_8 FAR* FAR* png_color_8pp |
typedef png_color FAR* png_colorp |
typedef png_color FAR* FAR* png_colorpp |
typedef struct png_info_struct png_info |
typedef png_info FAR* FAR* png_infopp |
typedef struct png_row_info_struct png_row_info |
typedef png_row_info FAR* png_row_infop |
typedef png_row_info FAR* FAR* png_row_infopp |
typedef struct png_sPLT_entry_struct png_sPLT_entry |
typedef png_sPLT_entry FAR* png_sPLT_entryp |
typedef png_sPLT_entry FAR* FAR* png_sPLT_entrypp |
typedef struct png_sPLT_struct png_sPLT_t |
typedef png_sPLT_t FAR* png_sPLT_tp |
typedef png_sPLT_t FAR* FAR* png_sPLT_tpp |
typedef struct png_struct_def png_struct |
typedef png_struct FAR* png_structp |
typedef png_struct FAR* FAR* png_structpp |
typedef struct png_text_struct png_text |
typedef png_text FAR* FAR* png_textpp |
typedef struct png_time_struct png_time |
typedef png_time FAR* FAR* png_timepp |
typedef struct png_unknown_chunk_t png_unknown_chunk |
typedef png_unknown_chunk FAR* png_unknown_chunkp |
typedef png_unknown_chunk FAR* FAR* png_unknown_chunkpp |
typedef void png_free_ptr PNGARG((png_structp, png_voidp)) |
typedef png_voidp png_malloc_ptr PNGARG((png_structp, png_size_t)) |
typedef png_structp version_1_2_23 |
typedef int | ( | PNGAPI * | png_user_chunk_ptr | ) |
PNG_EXPORT | ( | void | , | |
png_save_uint_16 | ||||
) |
PNG_EXPORT | ( | void | , | |
png_save_int_32 | ||||
) |
PNG_EXPORT | ( | void | , | |
png_save_uint_32 | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_uint_31 | ||||
) |
PNG_EXPORT | ( | png_int_32 | , | |
png_get_int_32 | ||||
) |
PNG_EXPORT | ( | png_uint_16 | , | |
png_get_uint_16 | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_uint_32 | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_user_height_max | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_user_width_max | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_user_limits | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_strip_error_numbers | ||||
) |
PNG_EXPORT | ( | int | , | |
png_mmx_support | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_mmx_thresholds | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_asm_flags | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_mmx_rowbytes_threshold | ||||
) |
PNG_EXPORT | ( | png_byte | , | |
png_get_mmx_bitdepth_threshold | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_asm_flags | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_asm_flagmask | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_mmx_flagmask | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_permit_mng_features | ||||
) |
PNG_EXPORT | ( | png_charp | , | |
png_get_libpng_ver | ||||
) |
PNG_EXPORT | ( | png_charp | , | |
png_get_header_version | ||||
) |
PNG_EXPORT | ( | png_charp | , | |
png_get_header_ver | ||||
) |
PNG_EXPORT | ( | png_charp | , | |
png_get_copyright | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_png | ||||
) |
PNG_EXPORT | ( | void | , | |
png_read_png | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_invalid | ||||
) |
PNG_EXPORT | ( | int | , | |
png_handle_as_unknown | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_unknown_chunks | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_unknown_chunk_location | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_unknown_chunks | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_keep_unknown_chunks | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_sCAL | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_sCAL | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_tRNS | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_tRNS | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_tIME | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_tIME | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_text | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_text | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_sPLT | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_sPLT | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_iCCP | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_iCCP | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_sRGB_gAMA_and_cHRM | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_sRGB | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_sRGB | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_sBIT | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_sBIT | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_PLTE | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_PLTE | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_pHYs | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_pHYs | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_pCAL | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_pCAL | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_oFFs | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_oFFs | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_IHDR | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_IHDR | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_hIST | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_hIST | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_gAMA_fixed | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_gAMA | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_gAMA_fixed | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_gAMA | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_cHRM_fixed | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_cHRM | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_cHRM_fixed | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_cHRM | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_bKGD | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_bKGD | ||||
) |
PNG_EXPORT | ( | png_bytep | , | |
png_get_signature | ||||
) |
PNG_EXPORT | ( | png_int_32 | , | |
png_get_y_offset_microns | ||||
) |
PNG_EXPORT | ( | png_int_32 | , | |
png_get_x_offset_microns | ||||
) |
PNG_EXPORT | ( | png_int_32 | , | |
png_get_y_offset_pixels | ||||
) |
PNG_EXPORT | ( | png_int_32 | , | |
png_get_x_offset_pixels | ||||
) |
PNG_EXPORT | ( | float | , | |
png_get_pixel_aspect_ratio | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_y_pixels_per_meter | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_x_pixels_per_meter | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_pixels_per_meter | ||||
) |
PNG_EXPORT | ( | png_byte | , | |
png_get_compression_type | ||||
) |
PNG_EXPORT | ( | png_byte | , | |
png_get_interlace_type | ||||
) |
PNG_EXPORT | ( | png_byte | , | |
png_get_filter_type | ||||
) |
PNG_EXPORT | ( | png_byte | , | |
png_get_color_type | ||||
) |
PNG_EXPORT | ( | png_byte | , | |
png_get_bit_depth | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_image_height | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_image_width | ||||
) |
PNG_EXPORT | ( | png_byte | , | |
png_get_channels | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_rows | ||||
) |
PNG_EXPORT | ( | png_bytepp | , | |
png_get_rows | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_rowbytes | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_valid | ||||
) |
PNG_EXPORT | ( | void | , | |
png_chunk_warning | ||||
) |
PNG_EXPORT | ( | void | , | |
png_warning | ||||
) |
PNG_EXPORT | ( | void | , | |
png_chunk_error | ||||
) |
PNG_EXPORT | ( | void | , | |
png_error | ||||
) |
PNG_EXPORT | ( | png_voidp | , | |
png_memset_check | ||||
) |
PNG_EXPORT | ( | png_voidp | , | |
png_memcpy_check | ||||
) |
PNG_EXPORT | ( | void | , | |
png_free_default | ||||
) |
PNG_EXPORT | ( | png_voidp | , | |
png_malloc_default | ||||
) |
PNG_EXPORT | ( | void | , | |
png_data_freer | ||||
) |
PNG_EXPORT | ( | void | , | |
png_free_data | ||||
) |
PNG_EXPORT | ( | void | , | |
png_free | ||||
) |
PNG_EXPORT | ( | png_voidp | , | |
png_malloc_warn | ||||
) |
PNG_EXPORT | ( | png_voidp | , | |
png_malloc | ||||
) |
PNG_EXPORT | ( | void | , | |
png_progressive_combine_row | ||||
) |
PNG_EXPORT | ( | void | , | |
png_process_data | ||||
) |
PNG_EXPORT | ( | png_voidp | , | |
png_get_progressive_ptr | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_progressive_read_fn | ||||
) |
PNG_EXPORT | ( | png_voidp | , | |
png_get_user_chunk_ptr | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_read_user_chunk_fn | ||||
) |
PNG_EXPORT | ( | png_voidp | , | |
png_get_user_transform_ptr | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_user_transform_info | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_write_user_transform_fn | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_read_user_transform_fn | ||||
) |
PNG_EXPORT | ( | png_voidp | , | |
png_get_mem_ptr | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_mem_fn | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_write_status_fn | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_read_status_fn | ||||
) |
PNG_EXPORT | ( | png_voidp | , | |
png_get_io_ptr | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_read_fn | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_write_fn | ||||
) |
PNG_EXPORT | ( | png_voidp | , | |
png_get_error_ptr | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_error_fn | ||||
) |
PNG_EXPORT | ( | void | , | |
png_init_io | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_compression_method | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_compression_window_bits | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_compression_strategy | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_compression_mem_level | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_compression_level | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_filter_heuristics | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_filter | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_crc_action | ||||
) |
PNG_EXPORT | ( | void | , | |
png_destroy_write_struct | ||||
) |
PNG_EXPORT | ( | void | , | |
png_destroy_read_struct | ||||
) |
PNG_EXPORT | ( | void | , | |
png_destroy_info_struct | ||||
) |
PNG_EXPORT | ( | void | , | |
png_read_end | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_end | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_image | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_rows | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_row | ||||
) |
PNG_EXPORT | ( | void | , | |
png_read_image | ||||
) |
PNG_EXPORT | ( | void | , | |
png_read_row | ||||
) |
PNG_EXPORT | ( | void | , | |
png_read_rows | ||||
) |
PNG_EXPORT | ( | void | , | |
png_read_update_info | ||||
) |
PNG_EXPORT | ( | void | , | |
png_start_read_image | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_flush | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_flush | ||||
) |
PNG_EXPORT | ( | void | , | |
png_permit_empty_plte | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_gamma | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_dither | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_strip_16 | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_background | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_invert_mono | ||||
) |
PNG_EXPORT | ( | int | , | |
png_set_interlace_handling | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_shift | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_packswap | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_packing | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_swap | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_add_alpha | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_filler | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_invert_alpha | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_swap_alpha | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_strip_alpha | ||||
) |
PNG_EXPORT | ( | void | , | |
png_build_grayscale_palette | ||||
) |
PNG_EXPORT | ( | png_byte | , | |
png_get_rgb_to_gray_status | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_rgb_to_gray_fixed | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_rgb_to_gray | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_gray_to_rgb | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_bgr | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_gray_1_2_4_to_8 | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_tRNS_to_alpha | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_palette_to_rgb | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_expand_gray_1_2_4_to_8 | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_expand | ||||
) |
PNG_EXPORT | ( | void | , | |
png_convert_from_time_t | ||||
) |
PNG_EXPORT | ( | void | , | |
png_convert_from_struct_tm | ||||
) |
PNG_EXPORT | ( | png_charp | , | |
png_convert_to_rfc1123 | ||||
) |
PNG_EXPORT | ( | void | , | |
png_read_info | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_info | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_info_before_PLTE | ||||
) |
PNG_EXPORT | ( | void | , | |
png_info_init_3 | ||||
) |
PNG_EXPORT | ( | void | , | |
png_info_init | ||||
) |
PNG_EXPORT | ( | png_infop | , | |
png_create_info_struct | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_chunk_end | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_chunk_data | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_chunk_start | ||||
) |
PNG_EXPORT | ( | void | , | |
png_write_chunk | ||||
) |
PNG_EXPORT | ( | png_structp | , | |
png_create_write_struct_2 | ||||
) |
PNG_EXPORT | ( | png_structp | , | |
png_create_read_struct_2 | ||||
) |
PNG_EXPORT | ( | int | , | |
png_reset_zstream | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_compression_buffer_size | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_get_compression_buffer_size | ||||
) |
PNG_EXPORT | ( | png_structp | , | |
png_create_write_struct | ||||
) |
PNG_EXPORT | ( | png_structp | , | |
png_create_read_struct | ||||
) |
PNG_EXPORT | ( | int | , | |
png_check_sig | ||||
) |
PNG_EXPORT | ( | int | , | |
png_sig_cmp | ||||
) |
PNG_EXPORT | ( | void | , | |
png_set_sig_bytes | ||||
) |
PNG_EXPORT | ( | png_uint_32 | , | |
png_access_version_number | ||||
) |
PNG_EXPORT_VAR | ( | PNG_CONST int | FARDATA | ) |
PNG_EXPORT_VAR | ( | PNG_CONST | char | ) |
void png_write_destroy PNGARG | ( | (png_structp png_ptr) | ) |
void png_read_destroy PNGARG | ( | (png_structp png_ptr, png_infop info_ptr, png_infop end_info_ptr) | ) |
typedef void | ( | PNGAPI * | png_error_ptr | ) |
int int ancil_action |
png_infop png_color_16p background |
png_infop png_color_16p* background |
Definition at line 2198 of file png.h.
Referenced by Boost(), Boost2(), fitFunction(), fithist(), FittingDemo(), ftotal(), TRolke::GetBackground(), TRolke::GetCriticalNumber(), TRolke::GetLimitsML(), TRolke::GetLimitsQuantile(), TRolke::GetSensitivity(), limit(), main(), mlpHiggs(), PlotDecisionBoundary(), png_do_background(), UnitTesting::MethodUnitTestWithROCLimits::run(), TSpectrum::Search(), TSpectrum2::Search(), TMVA::Factory::SetInputTrees(), TMVAClassification(), and TMVAClassificationCategory().
png_color_16p int int double background_gamma |
Definition at line 2209 of file png.h.
Referenced by png_handle_cHRM(), and png_set_sRGB_gAMA_and_cHRM().
Definition at line 2209 of file png.h.
Referenced by png_handle_cHRM(), and png_set_sRGB_gAMA_and_cHRM().
Definition at line 2685 of file png.h.
Referenced by _bdf_readstream(), TXNetSystem::AccessPathName(), RooFactoryWSTool::add(), RooFactoryWSTool::addfunc(), TSqlRawBuffer::AddLine(), XrdSecProtocolgsi::AddSerialized(), XrdSecProtocolpwd::AddSerialized(), RooCategory::addToRange(), XrdMonDecSink::addVersion(), TQtWidget::AdjustBufferSize(), TAlienSystem::AlienFilestat(), RooAbsCollection::allInRange(), RooFactoryWSTool::amplAdd(), TLatex::Analyse(), asim_png_read_data(), ASImage2tiff(), assert_bits_by_char(), assert_bits_by_int(), assert_bits_by_short(), XrdSecProtocolpwd::Authenticate(), XrdSecProtocolkrb5::Authenticate(), RooWorkspace::CodeRepo::autoImportClass(), bmp2ASImage(), XrdProofdProofServ::BroadcastPriority(), XrdSutPFile::Browse(), buffer_get(), TSessionViewer::Build(), build_keypress_event(), build_keyrelease_event(), TProofProgressMemoryPlot::BuildLogList(), TProofProgressLog::BuildLogList(), RooSimPdfBuilder::buildPdf(), BWMToken_WaitFor(), check_asimage_alpha(), TLatex::CheckLatexSyntax(), TAuthenticate::CheckNetrc(), TMacro::Checksum(), ClassImp(), RooAbsArg::cleanBranchName(), XrdProofdAdmin::CleanupSessions(), XrdCpMthrQueue::Clear(), colorize_asimage_vector(), commit_xml_image_built(), RooWorkspace::CodeRepo::compileClasses(), XrdMonDecUserInfo::convert2string(), XrdMonDecStageInfo::convert2string(), convert_argb2ASImage(), TStreamerInfoActions::ConvertBasicType(), TBufferXML::ConvertFromXMLAny(), TSqlRegistry::ConvertPoolValues(), TODBCStatement::ConvertToString(), TBufferXML::ConvertToXML(), TH1::Copy(), XrdClient::Copy(), TUnixSystem::CopyFile(), XrdProofdAdmin::CpFile(), RooCustomizer::CustIFace::create(), TXSocket::Create(), XrdProofdProofServMgr::Create(), RooAbsData::createHistogram(), RooAbsReal::createHistogram(), TTableDescriptor::CreateLeafList(), RooAbsPdf::createNLL(), TASImage::CreateThumbnail(), DNDMainFrame::DataDropped(), DebugPrint(), XrdMonHeader::decode(), decode_key_lparam(), decode_xcf_tile(), decode_xcf_tile_rle(), TGHtml::DecodeBaseIndex(), XrdMonDecPacketDecoder::decodeTracePacket(), XrdSecProtocolgsi::Decrypt(), RooWorkspace::defineSet(), DIB2ASImage(), dib_data_to_scanline(), TSystem::DirName(), do_crypt(), doCp_loc2xrd(), doCp_xrd2loc(), doCp_xrd2xrd(), TTreeViewer::DoError(), XrdClientConn::DoLogin(), TGHProgressBar::DoRedraw(), TTripleSliderDemo::DoSlider(), TestSliders::DoSlider(), TGFont::DrawCharsExp(), TXSockPipe::DumpReadySock(), EGifPutComment(), TXMLPlayer::ElementGetter(), XrdSecProtocolgsi::Encrypt(), TTable::EntryLoop(), XrdSutPFile::Err(), PyROOT::Utility::ErrMsgCallback(), ROOT::Error(), TProofServ::ErrorHandler(), TApplicationServer::ErrorHandler(), ErrorHandler(), ROOT::ErrorInfo(), XrdProofdAdmin::ExecCmd(), XrdClientAdmin::ExistDirs(), XrdClientAdmin::ExistFiles(), XrdProofdProofServ::ExportBuf(), XrdProofdClient::ExportSessions(), ExpPuk(), RooWorkspace::extendSet(), fetch_data(), fetch_data32(), TASPluginGS::File2ASImage(), TMD5::FileChecksum(), TBranch::Fill(), THtml::TFileSysDB::Fill(), THnSparse::FillExMap(), TDirectory::FillFullPath(), RooAbsData::fillHistogram(), RooCmdConfig::filterCmdList(), TDataSetIter::Find(), TZIPFile::FindEndHeader(), fix_xcf_image_line(), XrdMonDecSink::flushClosedDicts(), XrdMonDecSink::flushTCache(), XrdMonDecSink::flushUserCache(), XrdOucString::form(), Format(), PyROOT::TCStringConverter::FromMemory(), G__ManualBase4__0_211(), G__ManualBase4__0_212(), gdk_event_translate(), gdk_pixmap_read_string(), generateTimestamp(), TStreamerInfoActions::GenericAction(), TStreamerInfoActions::GenericAssocCollectionAction(), TStreamerInfoActions::GenericCollectionAction(), TStreamerInfoActions::GenericLooper(), TStreamerInfoActions::GenericVectorAction(), TStreamerInfoActions::GenericVectorPtrAction(), TAuthenticate::GenRSAKeys(), TZIPFile::Get(), XrdNetDNS::getAddrName(), XrdSutRndm::GetBuffer(), TEveGeoPolyShape::GetBuffer3D(), RooAbsArg::getCloningAncestors(), TSqlRegistry::GetCmdsBuffer(), GetCygwinRootDir(), TBranch::GetEntry(), TBranch::GetEntryExport(), GetExePath(), XrdProofdAdmin::GetFile(), TXProofMgr::GetFile(), TFTP::GetFile(), TRemoteObject::GetFileStat(), TGFontPool::GetFontFromAttributes(), XrdProofdAux::GetGroupInfo(), TMVA::Reader::GetMethodTypeFromFile(), TDirectory::GetPath(), TGFALSystem::GetPathInfo(), TUnixSystem::GetPathInfo(), TFTP::GetPathInfo(), TRFIOSystem::GetPathInfo(), TSystem::GetPathInfo(), TWebSystem::GetPathInfo(), TDCacheSystem::GetPathInfo(), THDFSSystem::GetPathInfo(), TXNetSystem::GetPathInfo(), TAlienSystem::GetPathInfo(), TWinNTSystem::GetPathInfo(), TNetSystem::GetPathInfo(), XrdProofdAux::GetProcesses(), XrdProofdNetMgr::GetProofConn(), TAuthenticate::GetRandString(), TString::Gets(), XrdClientConn::GetSessionID(), TFile::GetStreamerInfoList(), XrdSutRndm::GetString(), XrdClientInputBuffer::GetSyncObjOrMakeOne(), XrdClientUrlInfo::GetUrl(), XrdProofdAux::GetUserInfo(), XrdProofdAdmin::GetWorkers(), gl2psPrintf(), globus_l_gfs_file_partition_path(), globus_l_gfs_posix_cksm_adler32(), GlobusAuthenticate(), gnu_special(), TGTextView::HandleDNDDrop(), TRootEmbeddedCanvas::HandleDNDDrop(), TRootCanvas::HandleDNDDrop(), TSessionViewer::HandleTimer(), XrdOucString::hardreset(), ico2ASImage(), RooWorkspace::import(), TGNumberEntryField::IncreaseNumber(), inflateSync(), Info(), TWebFile::Init(), TDataSetManagerFile::Init(), TSlave::Init(), TSqlRegistry::InsertToNormalTable(), TSqlRegistry::InsertToNormalTableOracle(), TAutoInspector::Inspect(), RooSimWSTool::BuildConfig::internalAddPdf(), IntToHexStr(), XrdClientAdmin::IsFileOnline(), RooArgSet::isInRange(), issymbolic(), IsTextFile(), joinStrings(), jpeg2ASImage(), TGText::Load(), load_glyph_freetype(), load_tga_truecolor(), XrdMonDecSink::loadActiveDictInfo(), TGText::LoadBuffer(), XrdMonDecSink::loadUniqueIdsAndSeq(), TSQLStructure::LocateElementColumn(), XrdProofConn::Login(), XrdProofdClientMgr::Login(), TProof::LogMessage(), XrdMonCtrWriter::logName(), XrdClient::LowOpen(), main(), make_funny_pointers(), make_X11_default_glyph(), TSQLStructure::MakeArrayIndex(), TEveGeoPolyShape::MakeBuffer3D(), RooClassFactory::makeClass(), TGFontPool::MakeFont(), RooStats::ToyMCSamplerOld::MakeName(), TRegexp::MakeWildcard(), map_init_emacs(), map_init_meta(), mkdirIfNecessary(), ROOT::Minuit2::MnUserTransformation::MnUserTransformation(), TBasket::MoveEntries(), TEveTrans::MultLeft(), TEveTrans::MultRight(), OBJ_txt2obj_fix(), ObjectProxyExpand(), PyROOT::TTreeSetBranchAddress::operator()(), PyROOT::TTreeBranch::operator()(), operator<<(), operator>>(), TQtWidget::paintEvent(), XrdSecProtocolpwd::ParseCrypto(), XrdMonDecArgParser::parsePath(), pclient(), TSQLStructure::PerformConversion(), XrdProofdProtocol::Ping(), RooAbsReal::plotOn(), RooSimultaneous::plotOn(), png2ASImage_int(), png_handle_bKGD(), png_handle_cHRM(), png_handle_gAMA(), png_handle_hIST(), png_handle_IHDR(), png_handle_oFFs(), png_handle_pCAL(), png_handle_pHYs(), png_handle_PLTE(), png_handle_sBIT(), png_handle_sRGB(), png_handle_tIME(), png_handle_tRNS(), png_write_bKGD(), png_write_cHRM(), png_write_cHRM_fixed(), png_write_chunk_end(), png_write_chunk_start(), png_write_gAMA(), png_write_gAMA_fixed(), png_write_hIST(), png_write_IHDR(), png_write_oFFs(), png_write_pCAL(), png_write_PLTE(), png_write_sBIT(), png_write_sCAL(), png_write_sRGB(), png_write_tRNS(), png_write_zTXt(), PNGBuff2ASimage(), TXSocket::PopUpSpare(), XrdProofdPipe::Post(), XrdProofdProtocol::PostSession(), ppm2ASImage(), pr(), TXNetSystem::Prepare(), XrdClientAdmin::Prepare(), XrdMonDecPacketDecoder::prepareTimestamp(), TStreamerInfoActions::TConfiguredAction::PrintDebug(), TStreamerInfoActions::TConfiguration::PrintDebug(), RooAbsCollection::printLatex(), XrdMonTimer::printOne(), TProof::Process(), RooFactoryWSTool::process(), RooFactoryWSTool::processCompositeExpression(), RooFactoryWSTool::processListExpression(), TGFileDialog::ProcessMessage(), TestSliders::ProcessMessage(), TGLSelectBuffer::ProcessResult(), RooFactoryWSTool::processSingleExpression(), RooFactoryWSTool::prod(), TSQLFile::ProduceClassSelectQuery(), TXMLPlayer::ProduceSTLstreamer(), TSessionQueryFrame::Progress(), TProofProgressDialog::Progress(), TProofStartupDialog::Progress(), TSessionQueryFrame::ProgressLocal(), TAuthenticate::PromptPasswd(), ProofdExec(), TSessionFrame::ProofInfos(), XrdClientAdmin::Protocol(), pserv(), TXProofMgr::PutFile(), TFTP::PutFile(), XrdProofdAdmin::QueryLogPaths(), XrdProofdAdmin::QueryWorkers(), raw2scanline(), RooPlot::DrawOpt::rawOpt(), XSElement::Read(), read_bmp_image(), read_preread(), read_xcf_hierarchy(), TStreamerInfoActions::ReadArraySTLMemberWiseChangedClass(), TStreamerInfoActions::ReadArraySTLMemberWiseSameClass(), TStreamerInfoActions::ReadBasicType(), TStreamerInfoActions::ReadBasicType_NoFactor(), TStreamerInfoActions::ReadBasicType_WithFactor(), TStreamerInfoActions::ReadBasicTypeGenericLoop(), TStreamerInfoActions::ReadBasicTypeVectorLoop(), TStreamerInfoActions::ReadBasicTypeVectorPtrLoop(), TXProofMgr::ReadBuffer(), XrdProofdNetMgr::ReadBuffer(), TProofMgrLite::ReadBuffer(), XrdProofdNetMgr::ReadBufferLocal(), XrdProofdNetMgr::ReadBufferRemote(), TBufferXML::ReadCharP(), TBufferSQL2::ReadCharP(), TMD5::ReadChecksum(), ReadContributors(), TZIPFile::ReadDirectory(), TZIPFile::ReadEndHeader(), ReaderThread_loc(), ReaderThread_xrd(), ReaderThread_xrd_xtreme(), TBufferSQL2::ReadFastArray(), TBufferXML::ReadFastArray(), XSElement::ReadLine(), XrdProofdNetMgr::ReadLogPaths(), TZIPFile::ReadMemberHeader(), XrdProofdAux::ReadMsg(), TMVA::Configurable::ReadOptionsFromStream(), ReadRemote(), ReadRemoteImage(), ReadSize(), TMVA::MethodBase::ReadStateFromStream(), TXMLPlayer::ReadSTLarg(), TStreamerInfoActions::ReadSTLMemberWiseChangedClass(), TStreamerInfoActions::ReadSTLMemberWiseSameClass(), TStreamerInfoActions::ReadSTLObjectWiseFastArray(), TStreamerInfoActions::ReadSTLObjectWiseFastArrayV2(), TStreamerInfoActions::ReadSTLObjectWiseStreamer(), TStreamerInfoActions::ReadSTLObjectWiseStreamerV2(), TStreamerInfoActions::ReadTNamed(), TStreamerInfoActions::ReadTObject(), TMVA::VariableDecorrTransform::ReadTransformationFromStream(), TMVA::VariableNormalizeTransform::ReadTransformationFromStream(), TMVA::VariablePCATransform::ReadTransformationFromStream(), TMVA::VariableGaussTransform::ReadTransformationFromStream(), TStreamerInfoActions::ReadTString(), TStreamerInfoActions::ReadVectorBase(), TStreamerInfoActions::ReadVectorWrapping(), RooProdPdf::rearrangeProduct(), TApplicationServer::ReceiveFile(), TProofServ::ReceiveFile(), THtml::TFileSysDir::Recurse(), TSocket::Recv(), XrdProofdPipe::Recv(), TPSocket::Recv(), TXSocket::Recv(), RecvHostAuth(), TProof::RecvLogFile(), TApplicationRemote::RecvLogFile(), ROOT::Recvn(), XrdProofdProtocol::Recycle(), XrdMonDecSink::registerXrdRestart(), XrdOucString::reset(), TSessionQueryFrame::ResetProgressDialog(), TProofProgressDialog::ResetProgressDialog(), rl_complete_internal(), RootdGet(), RootdGetFile(), RootdParallel(), RootdPut(), RootdPutFile(), ROOT::rpdmemset(), rsa_decode(), rsa_encode(), SavePasswd(), TASImage::SavePrimitive(), scanline2raw(), TGListTree::Search(), XrdSecProtocolssl::secClient(), RooAbsCollection::selectByName(), TGRootIDE::Selected(), TGHtmlBrowser::Selected(), TSocket::Send(), XrdProofdNetMgr::Send(), TPSocket::Send(), XrdProofdProofServ::SendClusterInfo(), TXSocket::SendCoordinator(), XrdProofdProtocol::SendData(), XrdProofdProtocol::SendDataN(), TApplicationRemote::SendFile(), TProof::SendFile(), SendHostAuth(), TProofServ::SendLogFile(), TApplicationServer::SendLogFile(), TXProofMgr::SendMsgToUsers(), ROOT::Sendn(), XrdClientUrlInfo::SetAddrFromHost(), TOracleStatement::SetBinary(), TQtWidget::SetBuffer(), TBranch::SetBufferAddress(), TBufferFile::SetByteCount(), TMD5::SetDigest(), XrdProofdAdmin::SetGroupProperties(), TASImage::SetJpegDpi(), TMessage::SetLength(), XrdProofdAdmin::SetROOTVersion(), TGNumberEntryField::SetText(), RooSuperCategory::setType(), TXSlave::SetupServ(), TSlave::SetupServ(), TSlaveLite::SetupServ(), TEnv::SetValue(), TMessage::SetWhat(), TQtWidget::showEvent(), TSystem::ShowOutput(), XrdSecProtocolgsi::Sign(), RooFactoryWSTool::simul(), SlowFormat(), TH2::Smooth(), XrdClientSock::Socks4Handshake(), TSQLFile::SQLTestTable(), TBufferSQL2::SqlWriteBasic(), TAuthenticate::SshAuth(), TUnixSystem::StackTrace(), stlLoader(), TSQLStructure::StoreElementInNormalForm(), ROOT::streamer_CpuInfo_t(), ROOT::streamer_MemInfo_t(), ROOT::streamer_memstatcLcLTMemStatMng(), ROOT::streamer_ProcInfo_t(), ROOT::streamer_RooAbsBinning(), ROOT::streamer_RooBinning(), ROOT::streamer_RooCategory(), ROOT::streamer_RooCFunction1ReflEdoublecOdoublegR(), ROOT::streamer_RooCFunction1ReflEdoublecOintgR(), ROOT::streamer_RooCFunction2ReflEdoublecOdoublecOdoublegR(), ROOT::streamer_RooCFunction2ReflEdoublecOdoublecOintgR(), ROOT::streamer_RooCFunction2ReflEdoublecOintcOdoublegR(), ROOT::streamer_RooCFunction2ReflEdoublecOintcOintgR(), ROOT::streamer_RooCFunction2ReflEdoublecOunsignedsPintcOdoublegR(), ROOT::streamer_RooCFunction3ReflEdoublecOdoublecOdoublecOboolgR(), ROOT::streamer_RooCFunction3ReflEdoublecOdoublecOdoublecOdoublegR(), ROOT::streamer_RooCFunction3ReflEdoublecOdoublecOintcOintgR(), ROOT::streamer_RooCFunction3ReflEdoublecOunsignedsPintcOdoublecOdoublegR(), ROOT::streamer_RooCFunction3ReflEdoublecOunsignedsPintcOdoublecOunsignedsPintgR(), ROOT::streamer_RooCFunction3ReflEdoublecOunsignedsPintcOunsignedsPintcOdoublegR(), ROOT::streamer_RooCFunction4ReflEdoublecOdoublecOdoublecOdoublecOboolgR(), ROOT::streamer_RooCFunction4ReflEdoublecOdoublecOdoublecOdoublecOdoublegR(), ROOT::streamer_RooCFunction4ReflEdoublecOdoublecOdoublecOdoublecOintgR(), ROOT::streamer_RooDataHist(), ROOT::streamer_RooDataSet(), ROOT::streamer_RooFitResult(), ROOT::streamer_RooLinkedList(), ROOT::streamer_RooMappedCategorycLcLEntry(), ROOT::streamer_RooPlot(), ROOT::streamer_RooRealVar(), ROOT::streamer_ROOTcLcLTBranchProxyClassDescriptor(), ROOT::streamer_ROOTcLcLTBranchProxyDescriptor(), ROOT::streamer_ROOTcLcLTFriendProxyDescriptor(), ROOT::streamer_ROOTcLcLTSchemaRuleSet(), ROOT::streamer_RooTreeDataStore(), ROOT::streamer_RooWorkspace(), ROOT::streamer_RooWorkspacecLcLCodeRepo(), ROOT::streamer_SysInfo_t(), ROOT::streamer_TAdvancedGraphicsDialog(), ROOT::streamer_TApplication(), ROOT::streamer_TApplicationImp(), ROOT::streamer_TApplicationRemote(), ROOT::streamer_TApplicationServer(), ROOT::streamer_TArcBall(), ROOT::streamer_TArray(), ROOT::streamer_TArrayC(), ROOT::streamer_TArrayD(), ROOT::streamer_TArrayF(), ROOT::streamer_TArrayI(), ROOT::streamer_TArrayL(), ROOT::streamer_TArrayL64(), ROOT::streamer_TArrayS(), ROOT::streamer_TArrowEditor(), ROOT::streamer_TASImage(), ROOT::streamer_TASImagePlugin(), ROOT::streamer_TASPaletteEditor(), ROOT::streamer_TASPluginGS(), ROOT::streamer_TAttAxis(), ROOT::streamer_TAttFillEditor(), ROOT::streamer_TAttImage(), ROOT::streamer_TAttLineEditor(), ROOT::streamer_TAttMarkerEditor(), ROOT::streamer_TAttPad(), ROOT::streamer_TAttTextEditor(), ROOT::streamer_TAuthenticate(), ROOT::streamer_TAxis(), ROOT::streamer_TAxisEditor(), ROOT::streamer_TBase64(), ROOT::streamer_TBaseClass(), ROOT::streamer_TBasket(), ROOT::streamer_TBox(), ROOT::streamer_TBranch(), ROOT::streamer_TBranchClones(), ROOT::streamer_TBranchElement(), ROOT::streamer_TBranchObject(), ROOT::streamer_TBrowserPlugin(), ROOT::streamer_TBtree(), ROOT::streamer_TBtreeIter(), ROOT::streamer_TBuffer(), ROOT::streamer_TBuffer3D(), ROOT::streamer_TBufferFile(), ROOT::streamer_TBufferSQL2(), ROOT::streamer_TBufferXML(), ROOT::streamer_TCanvas(), ROOT::streamer_TCanvasImp(), ROOT::streamer_TChain(), ROOT::streamer_TChainElement(), ROOT::streamer_TCL(), ROOT::streamer_TClarens(), ROOT::streamer_TClass(), ROOT::streamer_TClassDocInfo(), ROOT::streamer_TClassDocOutput(), ROOT::streamer_TClassMenuItem(), ROOT::streamer_TClassTable(), ROOT::streamer_TClassTree(), ROOT::streamer_TClonesArray(), ROOT::streamer_TClProxy(), ROOT::streamer_TClSession(), ROOT::streamer_TCollection(), ROOT::streamer_TColumnView(), ROOT::streamer_TCondition(), ROOT::streamer_TConditionImp(), ROOT::streamer_TCTUB(), ROOT::streamer_TCurlyArcEditor(), ROOT::streamer_TCurlyLineEditor(), ROOT::streamer_TCutG(), ROOT::streamer_TDataMember(), ROOT::streamer_TDataSetIter(), ROOT::streamer_TDataSetManager(), ROOT::streamer_TDataSetManagerFile(), ROOT::streamer_TDataType(), ROOT::streamer_TDatime(), ROOT::streamer_TDictionary(), ROOT::streamer_TDirectory(), ROOT::streamer_TDirectoryFile(), ROOT::streamer_TDNDData(), ROOT::streamer_TDocDirective(), ROOT::streamer_TDocHtmlDirective(), ROOT::streamer_TDocLatexDirective(), ROOT::streamer_TDocMacroDirective(), ROOT::streamer_TDocOutput(), ROOT::streamer_TDocParser(), ROOT::streamer_TDOMParser(), ROOT::streamer_TDSet(), ROOT::streamer_TDSetElement(), ROOT::streamer_TEcho(), ROOT::streamer_TEllipse(), ROOT::streamer_TEmulatedCollectionProxy(), ROOT::streamer_TEmulatedMapProxy(), ROOT::streamer_TEveCaloDataVec(), ROOT::streamer_TEventList(), ROOT::streamer_TEveParamList(), ROOT::streamer_TEveTrans(), ROOT::streamer_TExMap(), ROOT::streamer_TExMapIter(), ROOT::streamer_TF1(), ROOT::streamer_TF1Editor(), ROOT::streamer_TF2(), ROOT::streamer_TF3(), ROOT::streamer_TFcnAdapter(), ROOT::streamer_TFile(), ROOT::streamer_TFileIter(), ROOT::streamer_TFileStager(), ROOT::streamer_TFitEditor(), ROOT::streamer_TFitParametersDialog(), ROOT::streamer_TFitterFumili(), ROOT::streamer_TFitterMinuit(), ROOT::streamer_TFormula(), ROOT::streamer_TFrameEditor(), ROOT::streamer_TFree(), ROOT::streamer_TFTP(), ROOT::streamer_TFumili(), ROOT::streamer_TFumiliMinimizer(), ROOT::streamer_TFunction(), ROOT::streamer_TFunctionParametersDialog(), ROOT::streamer_TG16ColorSelector(), ROOT::streamer_TGApplication(), ROOT::streamer_TGaxis(), ROOT::streamer_TGButton(), ROOT::streamer_TGButtonGroup(), ROOT::streamer_TGCanvas(), ROOT::streamer_TGCheckButton(), ROOT::streamer_TGClient(), ROOT::streamer_TGColorDialog(), ROOT::streamer_TGColorFrame(), ROOT::streamer_TGColorPalette(), ROOT::streamer_TGColorPick(), ROOT::streamer_TGColorPopup(), ROOT::streamer_TGColorSelect(), ROOT::streamer_TGColumnLayout(), ROOT::streamer_TGComboBox(), ROOT::streamer_TGComboBoxPopup(), ROOT::streamer_TGCommandPlugin(), ROOT::streamer_TGCompositeFrame(), ROOT::streamer_TGContainer(), ROOT::streamer_TGDimension(), ROOT::streamer_TGDNDManager(), ROOT::streamer_TGDockableFrame(), ROOT::streamer_TGDockButton(), ROOT::streamer_TGDockHideButton(), ROOT::streamer_TGDoubleHSlider(), ROOT::streamer_TGDoubleSlider(), ROOT::streamer_TGDoubleVSlider(), ROOT::streamer_TGDragWindow(), ROOT::streamer_TGedEditor(), ROOT::streamer_TGedFrame(), ROOT::streamer_TGedMarkerPopup(), ROOT::streamer_TGedMarkerSelect(), ROOT::streamer_TGedNameFrame(), ROOT::streamer_TGedPatternFrame(), ROOT::streamer_TGedPatternPopup(), ROOT::streamer_TGedPatternSelect(), ROOT::streamer_TGedPatternSelector(), ROOT::streamer_TGedPopup(), ROOT::streamer_TGedSelect(), ROOT::streamer_TGenCollectionProxy(), ROOT::streamer_TGenericTable(), ROOT::streamer_TGeoArb8(), ROOT::streamer_TGeoBBoxEditor(), ROOT::streamer_TGeoBuilder(), ROOT::streamer_TGeoCombiTransEditor(), ROOT::streamer_TGeoConeEditor(), ROOT::streamer_TGeoConeSegEditor(), ROOT::streamer_TGeoCtubEditor(), ROOT::streamer_TGeoEltuEditor(), ROOT::streamer_TGeoGedFrame(), ROOT::streamer_TGeoGlobalMagField(), ROOT::streamer_TGeoGtraEditor(), ROOT::streamer_TGeoHypeEditor(), ROOT::streamer_TGeoIterator(), ROOT::streamer_TGeoIteratorPlugin(), ROOT::streamer_TGeoManager(), ROOT::streamer_TGeoManagerEditor(), ROOT::streamer_TGeoMaterialDialog(), ROOT::streamer_TGeoMaterialEditor(), ROOT::streamer_TGeoMatrixDialog(), ROOT::streamer_TGeoMediumDialog(), ROOT::streamer_TGeoMediumEditor(), ROOT::streamer_TGeometry(), ROOT::streamer_TGeoMixtureEditor(), ROOT::streamer_TGeoNodeEditor(), ROOT::streamer_TGeoParaEditor(), ROOT::streamer_TGeoPconEditor(), ROOT::streamer_TGeoPconSection(), ROOT::streamer_TGeoPgonEditor(), ROOT::streamer_TGeoRotationEditor(), ROOT::streamer_TGeoShapeDialog(), ROOT::streamer_TGeoSphereEditor(), ROOT::streamer_TGeoTabManager(), ROOT::streamer_TGeoTorusEditor(), ROOT::streamer_TGeoTransientPanel(), ROOT::streamer_TGeoTranslationEditor(), ROOT::streamer_TGeoTrapEditor(), ROOT::streamer_TGeoTrd1Editor(), ROOT::streamer_TGeoTrd2Editor(), ROOT::streamer_TGeoTreeDialog(), ROOT::streamer_TGeoTubeEditor(), ROOT::streamer_TGeoTubeSegEditor(), ROOT::streamer_TGeoVolume(), ROOT::streamer_TGeoVolumeDialog(), ROOT::streamer_TGeoVolumeEditor(), ROOT::streamer_TGeoVoxelFinder(), ROOT::streamer_TGeoXtru(), ROOT::streamer_TGEventHandler(), ROOT::streamer_TGFileBrowser(), ROOT::streamer_TGFileContainer(), ROOT::streamer_TGFileDialog(), ROOT::streamer_TGFileItem(), ROOT::streamer_TGFont(), ROOT::streamer_TGFontDialog(), ROOT::streamer_TGFontPool(), ROOT::streamer_TGFontTypeComboBox(), ROOT::streamer_TGFrame(), ROOT::streamer_TGFrameElement(), ROOT::streamer_TGFrameElementPack(), ROOT::streamer_TGFSComboBox(), ROOT::streamer_TGGC(), ROOT::streamer_TGGCPool(), ROOT::streamer_TGGotoDialog(), ROOT::streamer_TGGroupFrame(), ROOT::streamer_TGHButtonGroup(), ROOT::streamer_TGHeaderFrame(), ROOT::streamer_TGHorizontal3DLine(), ROOT::streamer_TGHorizontalFrame(), ROOT::streamer_TGHorizontalLayout(), ROOT::streamer_TGHotString(), ROOT::streamer_TGHProgressBar(), ROOT::streamer_TGHScrollBar(), ROOT::streamer_TGHSlider(), ROOT::streamer_TGHSplitter(), ROOT::streamer_TGHtml(), ROOT::streamer_TGHtmlBrowser(), ROOT::streamer_TGIcon(), ROOT::streamer_TGIconLBEntry(), ROOT::streamer_TGIdleHandler(), ROOT::streamer_TGImageMap(), ROOT::streamer_TGInputDialog(), ROOT::streamer_TGInsets(), ROOT::streamer_TGL5DDataSet(), ROOT::streamer_TGL5DDataSetEditor(), ROOT::streamer_TGLabel(), ROOT::streamer_TGLAdapter(), ROOT::streamer_TGLAxis(), ROOT::streamer_TGLayoutHints(), ROOT::streamer_TGLayoutManager(), ROOT::streamer_TGLBContainer(), ROOT::streamer_TGLBEntry(), ROOT::streamer_TGLBoundingBox(), ROOT::streamer_TGLBoxCut(), ROOT::streamer_TGLBoxPainter(), ROOT::streamer_TGLCamera(), ROOT::streamer_TGLCameraGuide(), ROOT::streamer_TGLCameraOverlay(), ROOT::streamer_TGLColor(), ROOT::streamer_TGLColorSet(), ROOT::streamer_TGLContext(), ROOT::streamer_TGLContextIdentity(), ROOT::streamer_TGLCylinder(), ROOT::streamer_TGLEmbeddedViewer(), ROOT::streamer_TGLEventHandler(), ROOT::streamer_TGLFaceSet(), ROOT::streamer_TGLFont(), ROOT::streamer_TGLFontManager(), ROOT::streamer_TGLFormat(), ROOT::streamer_TGLH2PolyPainter(), ROOT::streamer_TGLHistPainter(), ROOT::streamer_TGLineLBEntry(), ROOT::streamer_TGLineStyleComboBox(), ROOT::streamer_TGLineWidthComboBox(), ROOT::streamer_TGLIsoPainter(), ROOT::streamer_TGListBox(), ROOT::streamer_TGListDetailsLayout(), ROOT::streamer_TGListLayout(), ROOT::streamer_TGListTree(), ROOT::streamer_TGListTreeItem(), ROOT::streamer_TGListTreeItemStd(), ROOT::streamer_TGListView(), ROOT::streamer_TGLLegoPainter(), ROOT::streamer_TGLLine3(), ROOT::streamer_TGLLockable(), ROOT::streamer_TGLLogicalShape(), ROOT::streamer_TGLManager(), ROOT::streamer_TGLManip(), ROOT::streamer_TGLManipSet(), ROOT::streamer_TGLMatrix(), ROOT::streamer_TGlobal(), ROOT::streamer_TGLongPosition(), ROOT::streamer_TGLOrthoCamera(), ROOT::streamer_TGLOutput(), ROOT::streamer_TGLPadPainter(), ROOT::streamer_TGLPaintDevice(), ROOT::streamer_TGLParametricEquation(), ROOT::streamer_TGLParametricEquationGL(), ROOT::streamer_TGLParametricPlot(), ROOT::streamer_TGLPerspectiveCamera(), ROOT::streamer_TGLPhysicalShape(), ROOT::streamer_TGLPlane(), ROOT::streamer_TGLPlotBox(), ROOT::streamer_TGLPlotCoordinates(), ROOT::streamer_TGLPlotPainter(), ROOT::streamer_TGLPolyLine(), ROOT::streamer_TGLPolyMarker(), ROOT::streamer_TGLQuadric(), ROOT::streamer_TGLRect(), ROOT::streamer_TGLRotateManip(), ROOT::streamer_TGLSAFrame(), ROOT::streamer_TGLSAViewer(), ROOT::streamer_TGLScaleManip(), ROOT::streamer_TGLSelectionBuffer(), ROOT::streamer_TGLSphere(), ROOT::streamer_TGLStopwatch(), ROOT::streamer_TGLSurfacePainter(), ROOT::streamer_TGLText(), ROOT::streamer_TGLTF3Painter(), ROOT::streamer_TGLTH3Composition(), ROOT::streamer_TGLTH3CompositionPainter(), ROOT::streamer_TGLTH3Slice(), ROOT::streamer_TGLTransManip(), ROOT::streamer_TGLUtil(), ROOT::streamer_TGLUtilcLcLTColorLocker(), ROOT::streamer_TGLUtilcLcLTDrawQualityModifier(), ROOT::streamer_TGLUtilcLcLTDrawQualityScaler(), ROOT::streamer_TGLVContainer(), ROOT::streamer_TGLVector3(), ROOT::streamer_TGLVEntry(), ROOT::streamer_TGLVertex3(), ROOT::streamer_TGLWidget(), ROOT::streamer_TGM(), ROOT::streamer_TGMainFrame(), ROOT::streamer_TGMatrixLayout(), ROOT::streamer_TGMcLcLTFileParams(), ROOT::streamer_TGMdiButtons(), ROOT::streamer_TGMdiContainer(), ROOT::streamer_TGMdiCornerWinResizer(), ROOT::streamer_TGMdiDecorFrame(), ROOT::streamer_TGMdiFrame(), ROOT::streamer_TGMdiFrameList(), ROOT::streamer_TGMdiGeometry(), ROOT::streamer_TGMdiHorizontalWinResizer(), ROOT::streamer_TGMdiMainFrame(), ROOT::streamer_TGMdiMenuBar(), ROOT::streamer_TGMdiTitleBar(), ROOT::streamer_TGMdiTitleIcon(), ROOT::streamer_TGMdiVerticalWinResizer(), ROOT::streamer_TGMdiWinResizer(), ROOT::streamer_TGMenuBar(), ROOT::streamer_TGMenuEntry(), ROOT::streamer_TGMenuTitle(), ROOT::streamer_TGMimeTypes(), ROOT::streamer_TGMsgBox(), ROOT::streamer_TGNumberEntry(), ROOT::streamer_TGNumberEntryField(), ROOT::streamer_TGNumberEntryLayout(), ROOT::streamer_TGNumberFormat(), ROOT::streamer_TGObject(), ROOT::streamer_TGPack(), ROOT::streamer_TGPasswdDialog(), ROOT::streamer_TGPicture(), ROOT::streamer_TGPictureButton(), ROOT::streamer_TGPicturePool(), ROOT::streamer_TGPopupMenu(), ROOT::streamer_TGPosition(), ROOT::streamer_TGPrintDialog(), ROOT::streamer_TGProgressBar(), ROOT::streamer_TGRadioButton(), ROOT::streamer_TGraph(), ROOT::streamer_TGraph2D(), ROOT::streamer_TGraph2DErrors(), ROOT::streamer_TGraph2DPainter(), ROOT::streamer_TGraphAsymmErrors(), ROOT::streamer_TGraphEditor(), ROOT::streamer_TGraphErrors(), ROOT::streamer_TGraphPainter(), ROOT::streamer_TGRecorder(), ROOT::streamer_TGRectangle(), ROOT::streamer_TGRectMap(), ROOT::streamer_TGRedirectOutputGuard(), ROOT::streamer_TGRegion(), ROOT::streamer_TGRegionWithId(), ROOT::streamer_TGResourcePool(), ROOT::streamer_TGrid(), ROOT::streamer_TGRowLayout(), ROOT::streamer_TGScrollBar(), ROOT::streamer_TGScrollBarElement(), ROOT::streamer_TGSearchDialog(), ROOT::streamer_TGSelectedPicture(), ROOT::streamer_TGShapedFrame(), ROOT::streamer_TGShutter(), ROOT::streamer_TGShutterItem(), ROOT::streamer_TGSimpleTable(), ROOT::streamer_TGSimpleTableInterface(), ROOT::streamer_TGSlider(), ROOT::streamer_TGSpeedo(), ROOT::streamer_TGSplitButton(), ROOT::streamer_TGSplitFrame(), ROOT::streamer_TGSplitter(), ROOT::streamer_TGSplitTool(), ROOT::streamer_TGStatusBar(), ROOT::streamer_TGString(), ROOT::streamer_TGTab(), ROOT::streamer_TGTabElement(), ROOT::streamer_TGTabLayout(), ROOT::streamer_TGTable(), ROOT::streamer_TGTableCell(), ROOT::streamer_TGTableFrame(), ROOT::streamer_TGTableHeader(), ROOT::streamer_TGTableHeaderFrame(), ROOT::streamer_TGTableLayout(), ROOT::streamer_TGTableLayoutHints(), ROOT::streamer_TGText(), ROOT::streamer_TGTextBuffer(), ROOT::streamer_TGTextButton(), ROOT::streamer_TGTextEdit(), ROOT::streamer_TGTextEditor(), ROOT::streamer_TGTextEntry(), ROOT::streamer_TGTextLayout(), ROOT::streamer_TGTextLBEntry(), ROOT::streamer_TGTextLine(), ROOT::streamer_TGTextView(), ROOT::streamer_TGTileLayout(), ROOT::streamer_TGToolBar(), ROOT::streamer_TGToolTip(), ROOT::streamer_TGTransientFrame(), ROOT::streamer_TGTreeLBEntry(), ROOT::streamer_TGTreeTable(), ROOT::streamer_TGTripleHSlider(), ROOT::streamer_TGTripleVSlider(), ROOT::streamer_TGuiBldAction(), ROOT::streamer_TGuiBldDragManager(), ROOT::streamer_TGuiBldEditor(), ROOT::streamer_TGuiBldGeometryFrame(), ROOT::streamer_TGuiBldHintsButton(), ROOT::streamer_TGuiBldHintsEditor(), ROOT::streamer_TGuiBldNameFrame(), ROOT::streamer_TGuiBuilder(), ROOT::streamer_TGuiFactory(), ROOT::streamer_TGUndockedFrame(), ROOT::streamer_TGUnknownWindowHandler(), ROOT::streamer_TGVButtonGroup(), ROOT::streamer_TGVertical3DLine(), ROOT::streamer_TGVerticalFrame(), ROOT::streamer_TGVerticalLayout(), ROOT::streamer_TGVFileSplitter(), ROOT::streamer_TGView(), ROOT::streamer_TGViewFrame(), ROOT::streamer_TGViewPort(), ROOT::streamer_TGVProgressBar(), ROOT::streamer_TGVScrollBar(), ROOT::streamer_TGVSlider(), ROOT::streamer_TGVSplitter(), ROOT::streamer_TGWidget(), ROOT::streamer_TGWindow(), ROOT::streamer_TGX11(), ROOT::streamer_TGX11TTF(), ROOT::streamer_TGXYLayout(), ROOT::streamer_TGXYLayoutHints(), ROOT::streamer_TH1(), ROOT::streamer_TH1Editor(), ROOT::streamer_TH2(), ROOT::streamer_TH2C(), ROOT::streamer_TH2D(), ROOT::streamer_TH2Editor(), ROOT::streamer_TH2F(), ROOT::streamer_TH2S(), ROOT::streamer_TH3(), ROOT::streamer_TH3C(), ROOT::streamer_TH3D(), ROOT::streamer_TH3F(), ROOT::streamer_TH3S(), ROOT::streamer_THashList(), ROOT::streamer_THashTable(), ROOT::streamer_THashTableIter(), ROOT::streamer_THelix(), ROOT::streamer_THistPainter(), ROOT::streamer_THostAuth(), ROOT::streamer_THtml(), ROOT::streamer_THtmlcLcLTFileDefinition(), ROOT::streamer_THtmlcLcLTFileSysDB(), ROOT::streamer_THtmlcLcLTFileSysDir(), ROOT::streamer_THtmlcLcLTFileSysEntry(), ROOT::streamer_THtmlcLcLTFileSysRoot(), ROOT::streamer_THtmlcLcLTHelperBase(), ROOT::streamer_THtmlcLcLTModuleDefinition(), ROOT::streamer_THtmlcLcLTPathDefinition(), ROOT::streamer_TImage(), ROOT::streamer_TImagePalette(), ROOT::streamer_TImagePlugin(), ROOT::streamer_TIndexTable(), ROOT::streamer_TInetAddress(), ROOT::streamer_TInterpreter(), ROOT::streamer_TIter(), ROOT::streamer_TIterator(), ROOT::streamer_TKey(), ROOT::streamer_TKeyMapFile(), ROOT::streamer_TKeySQL(), ROOT::streamer_TKeyXML(), ROOT::streamer_TKSocket(), ROOT::streamer_TLeaf(), ROOT::streamer_TLeafObject(), ROOT::streamer_TLibraryDocInfo(), ROOT::streamer_TLine(), ROOT::streamer_TLinearFitter(), ROOT::streamer_TLineEditor(), ROOT::streamer_TList(), ROOT::streamer_TListIter(), ROOT::streamer_TLM(), ROOT::streamer_TLMcLcLTSlaveParams(), ROOT::streamer_TLockFile(), ROOT::streamer_TLockGuard(), ROOT::streamer_TLorentzVector(), ROOT::streamer_TMap(), ROOT::streamer_TMapFile(), ROOT::streamer_TMapIter(), ROOT::streamer_TMarker(), ROOT::streamer_TMarker3DBox(), ROOT::streamer_TMaterial(), ROOT::streamer_TMatrixTBaselEdoublegR(), ROOT::streamer_TMatrixTBaselEfloatgR(), ROOT::streamer_TMatrixTColumn_constlEdoublegR(), ROOT::streamer_TMatrixTColumn_constlEfloatgR(), ROOT::streamer_TMatrixTColumnlEdoublegR(), ROOT::streamer_TMatrixTColumnlEfloatgR(), ROOT::streamer_TMatrixTDiag_constlEdoublegR(), ROOT::streamer_TMatrixTDiag_constlEfloatgR(), ROOT::streamer_TMatrixTDiaglEdoublegR(), ROOT::streamer_TMatrixTDiaglEfloatgR(), ROOT::streamer_TMatrixTFlat_constlEdoublegR(), ROOT::streamer_TMatrixTFlat_constlEfloatgR(), ROOT::streamer_TMatrixTFlatlEdoublegR(), ROOT::streamer_TMatrixTFlatlEfloatgR(), ROOT::streamer_TMatrixTlEdoublegR(), ROOT::streamer_TMatrixTlEfloatgR(), ROOT::streamer_TMatrixTRow_constlEdoublegR(), ROOT::streamer_TMatrixTRow_constlEfloatgR(), ROOT::streamer_TMatrixTRowlEdoublegR(), ROOT::streamer_TMatrixTRowlEfloatgR(), ROOT::streamer_TMatrixTSparseDiag_constlEdoublegR(), ROOT::streamer_TMatrixTSparseDiag_constlEfloatgR(), ROOT::streamer_TMatrixTSparseDiaglEdoublegR(), ROOT::streamer_TMatrixTSparseDiaglEfloatgR(), ROOT::streamer_TMatrixTSparselEdoublegR(), ROOT::streamer_TMatrixTSparselEfloatgR(), ROOT::streamer_TMatrixTSparseRow_constlEdoublegR(), ROOT::streamer_TMatrixTSparseRow_constlEfloatgR(), ROOT::streamer_TMatrixTSparseRowlEdoublegR(), ROOT::streamer_TMatrixTSparseRowlEfloatgR(), ROOT::streamer_TMatrixTSub_constlEdoublegR(), ROOT::streamer_TMatrixTSub_constlEfloatgR(), ROOT::streamer_TMatrixTSublEdoublegR(), ROOT::streamer_TMatrixTSublEfloatgR(), ROOT::streamer_TMatrixTSymlEdoublegR(), ROOT::streamer_TMatrixTSymlEfloatgR(), ROOT::streamer_TMemberInspector(), ROOT::streamer_TMemStat(), ROOT::streamer_TMemStatShow(), ROOT::streamer_TMergerInfo(), ROOT::streamer_TMessage(), ROOT::streamer_TMethod(), ROOT::streamer_TMethodArg(), ROOT::streamer_TMethodCall(), ROOT::streamer_TMixture(), ROOT::streamer_TModuleDocInfo(), ROOT::streamer_TMonitor(), ROOT::streamer_TMutex(), ROOT::streamer_TMutexImp(), ROOT::streamer_TNetFile(), ROOT::streamer_TNetSystem(), ROOT::streamer_TNode(), ROOT::streamer_TNtuple(), ROOT::streamer_TNtupleD(), ROOT::streamer_TObjArray(), ROOT::streamer_TObjArrayIter(), ROOT::streamer_TObject(), ROOT::streamer_TObjectRefSpy(), ROOT::streamer_TObjectSpy(), ROOT::streamer_TObjectTable(), ROOT::streamer_TOrdCollection(), ROOT::streamer_TOrdCollectionIter(), ROOT::streamer_TPad(), ROOT::streamer_TPadEditor(), ROOT::streamer_TPadPainter(), ROOT::streamer_TPainter3dAlgorithms(), ROOT::streamer_TPair(), ROOT::streamer_TPaletteEditor(), ROOT::streamer_TParallelCoordEditor(), ROOT::streamer_TParticle(), ROOT::streamer_TPave(), ROOT::streamer_TPaveStats(), ROOT::streamer_TPaveStatsEditor(), ROOT::streamer_TPaveText(), ROOT::streamer_TPCON(), ROOT::streamer_TPEAC(), ROOT::streamer_TPerfStats(), ROOT::streamer_TPieEditor(), ROOT::streamer_TPieSliceEditor(), ROOT::streamer_TPluginHandler(), ROOT::streamer_TPluginManager(), ROOT::streamer_TPMERegexp(), ROOT::streamer_TPoints3DABC(), ROOT::streamer_TPointsArray3D(), ROOT::streamer_TPointSet3D(), ROOT::streamer_TPolyLine(), ROOT::streamer_TPolyLine3D(), ROOT::streamer_TPolyMarker(), ROOT::streamer_TPolyMarker3D(), ROOT::streamer_TPosixCondition(), ROOT::streamer_TPosixMutex(), ROOT::streamer_TPosixThread(), ROOT::streamer_TPosixThreadFactory(), ROOT::streamer_TPRegexp(), ROOT::streamer_TProcessEventTimer(), ROOT::streamer_TProfile(), ROOT::streamer_TProfile2D(), ROOT::streamer_TProof(), ROOT::streamer_TProofCondor(), ROOT::streamer_TProofDesc(), ROOT::streamer_TProofLimitsFinder(), ROOT::streamer_TProofLite(), ROOT::streamer_TProofLog(), ROOT::streamer_TProofLogElem(), ROOT::streamer_TProofMgr(), ROOT::streamer_TProofMgrLite(), ROOT::streamer_TProofNodeInfo(), ROOT::streamer_TProofPEAC(), ROOT::streamer_TProofProgressInfo(), ROOT::streamer_TProofProgressStatus(), ROOT::streamer_TProofResources(), ROOT::streamer_TProofResourcesStatic(), ROOT::streamer_TProofServ(), ROOT::streamer_TProofServLite(), ROOT::streamer_TProofStartupDialog(), ROOT::streamer_TProofSuperMaster(), ROOT::streamer_TPServerSocket(), ROOT::streamer_TPSocket(), ROOT::streamer_TQClass(), ROOT::streamer_TQCommand(), ROOT::streamer_TQConnection(), ROOT::streamer_TQObject(), ROOT::streamer_TQObjSender(), ROOT::streamer_TQUndoManager(), ROOT::streamer_TRandom3(), ROOT::streamer_TRecCmdEvent(), ROOT::streamer_TRecEvent(), ROOT::streamer_TRecExtraEvent(), ROOT::streamer_TRecGuiEvent(), ROOT::streamer_TRecorder(), ROOT::streamer_TRecorderInactive(), ROOT::streamer_TRecorderPaused(), ROOT::streamer_TRecorderRecording(), ROOT::streamer_TRecorderReplaying(), ROOT::streamer_TRecorderState(), ROOT::streamer_TRecWinPair(), ROOT::streamer_TRedirectOutputGuard(), ROOT::streamer_TRef(), ROOT::streamer_TRefArray(), ROOT::streamer_TRefArrayIter(), ROOT::streamer_TRefTable(), ROOT::streamer_TRegexp(), ROOT::streamer_TRemoteObject(), ROOT::streamer_TResponseTable(), ROOT::streamer_TRint(), ROOT::streamer_TROOT(), ROOT::streamer_TRootApplication(), ROOT::streamer_TRootAuth(), ROOT::streamer_TRootBrowser(), ROOT::streamer_TRootBrowserLite(), ROOT::streamer_TRootCanvas(), ROOT::streamer_TRootContextMenu(), ROOT::streamer_TRootControlBar(), ROOT::streamer_TRootDialog(), ROOT::streamer_TRootEmbeddedCanvas(), ROOT::streamer_TRootGuiBuilder(), ROOT::streamer_TRootGuiFactory(), ROOT::streamer_TRootHelpDialog(), ROOT::streamer_TRootSecContext(), ROOT::streamer_TRotMatrix(), ROOT::streamer_TRWLock(), ROOT::streamer_TSAM(), ROOT::streamer_TSAXParser(), ROOT::streamer_TSecContext(), ROOT::streamer_TSecContextCleanup(), ROOT::streamer_TSelectorDraw(), ROOT::streamer_TSelectorEntries(), ROOT::streamer_TSemaphore(), ROOT::streamer_TSeqCollection(), ROOT::streamer_TServerSocket(), ROOT::streamer_TShape(), ROOT::streamer_TSignalHandler(), ROOT::streamer_TSlave(), ROOT::streamer_TSlaveLite(), ROOT::streamer_TSocket(), ROOT::streamer_TSortedList(), ROOT::streamer_TSpectrum2Painter(), ROOT::streamer_TSPHE(), ROOT::streamer_TSpiderEditor(), ROOT::streamer_TSpline(), ROOT::streamer_TSpline3(), ROOT::streamer_TSpline5(), ROOT::streamer_TSQLClassColumnInfo(), ROOT::streamer_TSQLClassInfo(), ROOT::streamer_TSQLColumnData(), ROOT::streamer_TSQLColumnInfo(), ROOT::streamer_TSQLFile(), ROOT::streamer_TSQLMonitoringWriter(), ROOT::streamer_TSQLObjectData(), ROOT::streamer_TSQLObjectDataPool(), ROOT::streamer_TSQLObjectInfo(), ROOT::streamer_TSQLResult(), ROOT::streamer_TSQLRow(), ROOT::streamer_TSQLServer(), ROOT::streamer_TSQLStatement(), ROOT::streamer_TSQLStructure(), ROOT::streamer_TSQLTableData(), ROOT::streamer_TSQLTableInfo(), ROOT::streamer_TStdExceptionHandler(), ROOT::streamer_TStorage(), ROOT::streamer_TStreamerArtificial(), ROOT::streamer_TStreamerBase(), ROOT::streamer_TStreamerBasicPointer(), ROOT::streamer_TStreamerBasicType(), ROOT::streamer_TStreamerElement(), ROOT::streamer_TStreamerInfo(), ROOT::streamer_TStreamerLoop(), ROOT::streamer_TStreamerObject(), ROOT::streamer_TStreamerObjectAny(), ROOT::streamer_TStreamerObjectAnyPointer(), ROOT::streamer_TStreamerObjectPointer(), ROOT::streamer_TStreamerSTL(), ROOT::streamer_TStreamerSTLstring(), ROOT::streamer_TStreamerString(), ROOT::streamer_TString(), ROOT::streamer_TStringLong(), ROOT::streamer_TStringToken(), ROOT::streamer_TStructNode(), ROOT::streamer_TStructNodeEditor(), ROOT::streamer_TStructNodeProperty(), ROOT::streamer_TStructViewer(), ROOT::streamer_TStructViewerGUI(), ROOT::streamer_TStyleDialog(), ROOT::streamer_TStyleManager(), ROOT::streamer_TStylePreview(), ROOT::streamer_TSysEvtHandler(), ROOT::streamer_TTabCom(), ROOT::streamer_TTable(), ROOT::streamer_TTableDescriptor(), ROOT::streamer_TTableIter(), ROOT::streamer_TTableMap(), ROOT::streamer_TTableRange(), ROOT::streamer_TTableSorter(), ROOT::streamer_TText(), ROOT::streamer_TTF(), ROOT::streamer_TThread(), ROOT::streamer_TThreadFactory(), ROOT::streamer_TThreadImp(), ROOT::streamer_TTime(), ROOT::streamer_TTimer(), ROOT::streamer_TToggle(), ROOT::streamer_TToggleGroup(), ROOT::streamer_TTree(), ROOT::streamer_TTreeFormula(), ROOT::streamer_TTreeFormulaManager(), ROOT::streamer_TTreeFriendLeafIter(), ROOT::streamer_TTreeIndex(), ROOT::streamer_TTreeInput(), ROOT::streamer_TTreeRow(), ROOT::streamer_TTreeTableInterface(), ROOT::streamer_TTUBE(), ROOT::streamer_TUnixSystem(), ROOT::streamer_TUri(), ROOT::streamer_TUrl(), ROOT::streamer_TVector2(), ROOT::streamer_TVector3(), ROOT::streamer_TVectorTlEdoublegR(), ROOT::streamer_TVectorTlEfloatgR(), ROOT::streamer_TView3D(), ROOT::streamer_TViewer3DPad(), ROOT::streamer_TViewerX3D(), ROOT::streamer_TVirtualAuth(), ROOT::streamer_TVirtualDragManager(), ROOT::streamer_TVirtualFFT(), ROOT::streamer_TVirtualGLManip(), ROOT::streamer_TVirtualGLPainter(), ROOT::streamer_TVirtualMonitoringReader(), ROOT::streamer_TVirtualMonitoringWriter(), ROOT::streamer_TVirtualMutex(), ROOT::streamer_TVirtualPad(), ROOT::streamer_TVirtualPadEditor(), ROOT::streamer_TVirtualPadPainter(), ROOT::streamer_TVirtualPerfStats(), ROOT::streamer_TVirtualPS(), ROOT::streamer_TVirtualStreamerInfo(), ROOT::streamer_TVirtualTreePlayer(), ROOT::streamer_TVirtualViewer3D(), ROOT::streamer_TVolumePosition(), ROOT::streamer_TVolumeViewIter(), ROOT::streamer_TWebFile(), ROOT::streamer_TWebSystem(), ROOT::streamer_TX11GLManager(), ROOT::streamer_TXMLAttr(), ROOT::streamer_TXMLDocument(), ROOT::streamer_TXMLEngine(), ROOT::streamer_TXMLFile(), ROOT::streamer_TXMLNode(), ROOT::streamer_TXMLParser(), ROOT::streamer_TXMLPlayer(), ROOT::streamer_TXmlRpc(), ROOT::streamer_TXMLSetup(), TSQLFile::StreamKeysForDirectory(), Strip(), RooCmdConfig::stripCmdList(), StrToReal(), TGHtml::TableText(), TAFS::TAFS(), TApplicationRemote::TApplicationRemote(), term_echotc(), term_set(), XrdProofdClientMgr::TerminateSessions(), XrdProofdClient::TerminateSessions(), TestBigComment(), tga2ASImage(), threshold_stored_data(), PyROOT::TVoidArrayConverter::ToMemory(), TGTextLayout::ToPostscript(), ROOT::Math::Util::ToString(), TranslateToNum(), TTripleSliderDemo::TTripleSliderDemo(), TWinNTSystem::TWinNTSystem(), RooWorkspace::unExport(), TUnixSystem::UnixFilestat(), TUnixSystem::UnixRecv(), TUnixSystem::UnixSend(), TSQLStructure::UnpackTObject(), TSQLStructure::UnpackTString(), TGMdiMainFrame::UpdateWinListMenu(), XrdProofdProtocol::Urgent(), RooSimWSTool::validateConfig(), TStreamerInfoActions::VectorLooper(), TStreamerInfoActions::VectorPtrLooper(), XrdSecProtocolgsi::Verify(), XrdProofdProofServ::VerifyProofServ(), WinNTRecv(), WinNTSend(), TBufferXML::WriteFastArray(), TBufferSQL2::WriteFastArray(), XrdMonDecUserInfo::writeRT2Buffer(), XrdMonDecStageInfo::writeRT2Buffer(), TBufferXML::XmlWriteBasic(), XpdMsg::XpdMsg(), XrdClientConn::XrdClientConn(), XrdCryptolocalCipher::XrdCryptolocalCipher(), XrdCryptosslCipher::XrdCryptosslCipher(), XrdCryptosslX509Crl::XrdCryptosslX509Crl(), XrdFfsWcache_create(), XrdFfsWcache_destroy(), XrdFfsWcache_flush(), XrdMonDecStageInfo::XrdMonDecStageInfo(), XrdMonDecUserInfo::XrdMonDecUserInfo(), XrdProofdClientCron(), XrdProofSchedCron(), and XrdSutMemSet().
Definition at line 2444 of file png.h.
Referenced by THnSparse::AddBinContent(), THnSparse::AddChunk(), TGTextLayout::CharBbox(), TGFont::ComputeTextLayout(), TGTextLayout::DistanceToText(), TGTextLayout::DrawText(), TGString::DrawWrapped(), TGHotString::DrawWrapped(), THnSparse::Fill(), THnSparse::FillExMap(), THnSparse::GetBinContent(), THnSparse::GetBinError(), THnSparse::GetBinIndexForCurrentBin(), TGString::GetLines(), TGTextLayout::IntersectText(), TGFont::NewChunk(), TGTextLayout::PointToChar(), Read3DChunk(), ReadColor(), ReadMainChunk(), ReadMaterialChunk(), ReadMeshChunk(), ReadObjectChunk(), ReadTransparency(), THnSparse::SetBinContent(), THnSparse::SetBinError(), THnSparse::Sumw2(), and TGTextLayout::ToPostscript().
int png_bytep chunk_list |
png_infop png_uint_32 png_uint_32 int int color_type |
png_infop png_uint_32 png_uint_32 int int* color_type |
int* compilerID |
png_infop png_uint_32 png_uint_32 int int int int compression_method |
png_infop png_uint_32 png_uint_32 int int int int* compression_method |
int crit_action |
Definition at line 2353 of file png.h.
Referenced by TH1::Add(), add_colormap_items(), Build_Timing_Tree(), XrdCpWorkLst::BuildWorkList_xrd(), TMVA::VariablePCATransform::CalculatePrincipalComponents(), ClassImp(), RooStats::HypoTestResult::CLbError(), RooStats::HypoTestResult::CLsplusbError(), TMVA::Tools::ComputeStat(), XrdClientAdmin::DirList(), XrdClientAdmin::DirList_low(), TH3::DoProject1D(), TH3::DoProject2D(), TH2::DoProjection(), TH3::DoProjectProfile2D(), TTreeCacheUnzip::FillBuffer(), TTreeCache::FillBuffer(), free_colors(), G__G__RooFitCore2_311_0_13(), TVirtualPacketizer::GetEntries(), TDSet::GetEntries(), TMVA::DataInputHandler::GetEntries(), TGFontPool::GetFontFamilies(), TProofLite::GetTreeHeader(), TProofPlayerSlave::HandleGetTreeHeader(), TProofServ::HandleSocketInput(), TProofProgressStatus::IncEntries(), TH1::LabelsOption(), TRecorderInactive::ListCmd(), TRecorderInactive::ListGui(), TMemStat::MakeGraph(), TMemStat::MakeHisMemoryStamp(), RooStats::HypoTestResult::NullPValueError(), png_write_sPLT(), TGraph2D::Project(), TH1::Rebin(), TH2::Rebin2D(), TMemStat::SelectCode(), TMemStat::SelectStack(), TParallelCoord::SetCurrentEntries(), TParallelCoord::SetInitEntries(), TMemStat::SortCode(), TMemStat::SortStack(), TMVA::MethodBase::Statistics(), HistAction::toScan(), TDSet::Validate(), TDSetElement::Validate(), TPacketizer::ValidateFiles(), TPacketizerAdaptive::ValidateFiles(), and XrdDirList().
int error_action |
int error_action |
Definition at line 2080 of file png.h.
Referenced by TKSocket::BlockRead(), TKSocket::BlockWrite(), TKSocket::Connect(), GetAFSErrorString(), Krb5Authenticate(), Krb5CheckCred(), and ROOT::RpdKrb5Auth().
Definition at line 2240 of file png.h.
Referenced by png_handle_gAMA(), and png_set_sRGB_gAMA_and_cHRM().
int int png_doublep png_doublep filter_costs |
png_infop png_uint_32 png_uint_32 int int int int int filter_method |
png_infop png_uint_32 png_uint_32 int int int int int* filter_method |
int int png_doublep filter_weights |
int int filters |
Definition at line 1804 of file png.h.
Referenced by TGFileBrowser::ApplyFilter(), TGRootIDE::ApplyFilter(), and gdk_event_translate().
Definition at line 2116 of file png.h.
Referenced by TH2Poly::AddBin(), RooCmdConfig::allowUndefined(), asimage2alpha_ximage(), TGWin32::ChangeWindowAttributes(), TKDTree< Index, Value >::CookBoundaries(), RooStats::NeymanConstruction::CreateConfBelt(), RooStats::FeldmanCousins::CreateConfBelt(), TAxisEditor::DoMoreLog(), RooRealMPFE::evaluate(), TFumili::ExecuteCommand(), TVirtualFFT::FFT(), TSpectrum2Fit::FitAwmi(), TSpectrumFit::FitAwmi(), TSpectrumFit::FitStiefel(), TSpectrum2Fit::FitStiefel(), TDataSetIter::Flag(), RooStats::FeldmanCousins::FluctuateNumDataEntries(), RooAbsReal::forceNumInt(), gdk_event_translate(), TGeoVoxelFinder::GetIndices(), gl2psParseFeedbackBuffer(), gl2psSplitPrimitive2D(), GRSTgaclAclTestexclUser(), GRSTgaclAclTestUser(), RooHistPdf::importWorkspaceHook(), ROOT::Math::Cephes::incbet(), interpolate_green_diff(), TGeoPainter::Lock(), main(), TSpectrum2Painter::Paint(), TQtWidget::paintFlag(), RooPoisson::protectNegativeMean(), R__compress_block(), TWinNTSystem::RecvRaw(), TUnixSystem::RecvRaw(), TGeoPatternFinder::Reflect(), THostAuth::ReOrder(), rs_numberCountingCombination(), RooStats::FeldmanCousins::SaveBeltToFile(), RooStats::NeymanConstruction::SaveBeltToFile(), TGXYLayoutHints::SavePrimitive(), TUnixSystem::SendRaw(), TWinNTSystem::SendRaw(), RooRealMPFE::serverLoop(), TGeoVolume::SetActiveDaughters(), TGeoAtt::SetActiveDaughters(), TGeoVolume::SetActivity(), TGeoAtt::SetActivity(), TGeoPhysicalNode::SetAligned(), TGeoManager::SetAnimateTracks(), TGeoNavigator::SetCheckingOverlaps(), TGeoManager::SetCheckingOverlaps(), TGeoManager::SetClipping(), TGeoPolygon::SetConvex(), TGeoVolume::SetCylVoxels(), TGeoElement::SetDefined(), TGeoManager::SetDrawExtraPaths(), TetrisBoard::SetDropped(), TGTextEntry::SetEdited(), TROOT::SetEditHistograms(), TGSlider::SetEnabled(), TGTextEntry::SetEnabled(), TROOT::SetEscape(), TROOT::SetExecutingMacro(), TROOT::SetFromPopUp(), TROOT::SetInterrupt(), TGeoVoxelFinder::SetInvalid(), TGeoOverlap::SetIsExtrusion(), TGeoOverlap::SetIsOverlap(), TGeoPhysicalNode::SetIsVolAtt(), TGeoManager::SetLoopVolumes(), TGeoManager::SetMatrixReflection(), TGLayoutManager::SetModified(), TROOT::SetMustClean(), TGeoVoxelFinder::SetNeedRebuild(), TGeoManager::SetNodeSelectable(), RooPoisson::setNoRounding(), RooStats::ProfileLikelihoodTestStat::SetOneSided(), TGeoManager::SetOutside(), TGeoNavigator::SetOutside(), TGeoNode::SetOverlapping(), PiecewiseInterpolation::setPositiveDefinite(), RooMinuit::setProfile(), RooMinimizer::setProfile(), TGeoPainter::SetRaytracing(), TROOT::SetReadingObject(), TGeoShape::SetRuntime(), TGeoManager::SetStartSafe(), TGeoNavigator::SetStartSafe(), TGeoMaterial::SetUsed(), TGeoElement::SetUsed(), RooMinuit::setVerbose(), RooMinimizerFcn::SetVerbose(), RooMinimizer::setVerbose(), TView3D::SetViewChanged(), TGeoPhysicalNode::SetVisibility(), TGeoPhysicalNode::SetVisibleFull(), TGeoAtt::SetVisRaytrace(), TVirtualFFT::SineCosine(), TGeoVoxelFinder::SortCrossedVoxels(), TT_Load_Simple_Glyph(), RooStats::NeymanConstruction::UseAdaptiveSampling(), RooStats::FeldmanCousins::UseAdaptiveSampling(), and RooProdPdf::useDefaultGen().
png_uint_32 int flags |
png_uint_32 int flags |
Definition at line 1908 of file png.h.
Referenced by _bdf_add_property(), _bdf_list_join(), TMatrixTBase< Element >::Abs(), TVectorT< Element >::Abs(), XrdXrootdFileTable::Add(), TVectorT< Element >::AddSomeConstant(), AnalysePS(), TWinNTSystem::AnnounceUnixService(), TGText::Append(), asim_load_binary_file(), TGSpeedo::Build(), cernbuild(), check_image_type(), XrdProofdProofServMgr::CleanupProofServ(), XrdPosixXrootd::Close(), TMatrixTBase< Element >::ColNorm(), TMatrixTSparse< Element >::ColNorm(), XrdOssSys::Config_Display(), XrdOssSys::ConfigMio(), XrdFrmConfig::ConfigMP(), XrdOssSys::ConfigSpace(), XrdOssSys::ConfigStage(), TGeoMaterial::Coulomb(), XrdProofdAdmin::CpFile(), XrdXrootdFileTable::Del(), XrdXrootdProtocol::do_Close(), XrdXrootdProtocol::do_Open(), XrdXrootdProtocol::do_Qfh(), XrdXrootdProtocol::do_Sync(), XrdXrootdProtocol::do_Truncate(), TGSpeedo::DoRedraw(), Rgl::DrawAxes(), TGSpeedo::DrawText(), TMemHashTable::Dump(), TMatrixTBase< Element >::E2Norm(), XrdPosixXrootd::endPoint(), XrdProofdAdmin::ExecCmd(), TPython::ExecScript(), XrdPosixXrootd::Fault(), XrdPosixXrootd::findFP(), XrdPosixXrootd::Fstat(), XrdPosixXrootd::Fsync(), XrdPosixXrootd::Ftruncate(), GetMacroTitle(), XrdProofdAux::GetNumCPUs(), TAlienCollection::GetOutputFileName(), XrdProofdAux::GetProcesses(), getXrootdPid(), gif2ASImage(), Gl_histadd(), Gl_histinit(), Graph2DFitChisquare(), GRSTgaclAclSave(), GRSTx509ChainLoadCheck(), GRSTx509MakeProxyCert(), GRSTx509MakeProxyRequest(), GRSTx509ProxyGetTimes(), GRSTx509VerifyVomsSig(), GRSTxacmlAclSave(), history_save(), TGeoElementTable::ImportElementsRN(), TVectorT< Element >::Invert(), key_kprint(), langaus(), TGText::Load(), load_asimage_list_entry_data(), TGTextView::LoadFile(), TFITSHDU::LoadHDU(), XrdXrootdFileLock1::Lock(), XrdPosixXrootd::Lseek(), main(), main_orig(), TTreePlayer::MakeClass(), TTreePlayer::MakeCode(), TFile::MakeProject(), TVectorT< Element >::MatchesNonZeroPattern(), TVectorT< Element >::NonZeros(), TMatrixTBase< Element >::NonZeros(), TVectorT< Element >::Norm1(), TVectorT< Element >::Norm2Sqr(), TVectorT< Element >::NormInf(), XrdXrootdFileLock1::numLocks(), XrdPosixXrootd::Open(), open_image_file(), open_writeable_image_file(), XrdPosixXrootd::OpenCB(), TMatrixTFlat< Element >::operator *=(), TVectorT< Element >::operator *=(), TVectorT< Element >::operator!=(), TMatrixTBase< Element >::operator!=(), TMatrixTFlat< Element >::operator+=(), TVectorT< Element >::operator+=(), TVectorT< Element >::operator-=(), TMatrixTBase< Element >::operator<(), TVectorT< Element >::operator<(), TMatrixTBase< Element >::operator<=(), TVectorT< Element >::operator<=(), TMatrixTFlat< Element >::operator=(), TVectorT< Element >::operator=(), TVectorT< Element >::operator==(), TMatrixTBase< Element >::operator==(), TMatrixTBase< Element >::operator>(), TVectorT< Element >::operator>(), TVectorT< Element >::operator>=(), TMatrixTBase< Element >::operator>=(), png2ASImage(), XrdPosixXrootd::Pread(), GoFTStress::PrintBenchmark(), TFITSHDU::PrintFileMetadata(), XrdPosixXrootd::Pwrite(), TVectorT< Element >::Randomize(), TMatrixTBase< Element >::Randomize(), XrdPosixXrootd::Read(), XrdProofdNetMgr::ReadBufferLocal(), TROOT::ReadSvnInfo(), TGShapedToolTip::Refresh(), TGLFontManager::RegisterFont(), remove_dotdot(), rose_image(), TMatrixTSparse< Element >::RowNorm(), TMatrixTBase< Element >::RowNorm(), ROOT::RpdCheckDaemon(), ROOT::RpdCheckSshd(), TGText::Save(), TQMimeTypes::SaveMimes(), TGMimeTypes::SaveMimes(), XrdSecProtocolssl::secClient(), TVectorT< Element >::SelectNonZeros(), TASImage::SetJpegDpi(), TMatrixTSparse< Element >::SetMatrixArray(), XrdCmsSecurity::setSystemID(), TVectorT< Element >::SomePositive(), sqlcreatedb(), TMatrixTBase< Element >::Sqr(), TVectorT< Element >::Sqr(), TVectorT< Element >::Sqrt(), TMatrixTBase< Element >::Sqrt(), TPEAC::StartSession(), stress16(), stress5(), TMatrixTBase< Element >::Sum(), TVectorT< Element >::Sum(), TUnixSystem::TempFileName(), TWinNTSystem::TempFileName(), TGraph2D::TGraph2D(), TASImage::TypeFromMagicNumber(), XrdXrootdFileLock1::Unlock(), XrdROOTMgr::Validate(), XrdProofdAux::VerifyProcessByID(), TWinNTSystem::WinNTUnixConnect(), XrdPosixXrootd::Write(), x3d_main(), XrdCryptosslX509ChainToFile(), XrdSecgsiGMAPFun(), XrdSslgsiX509CreateProxy(), and XrdXrootdFile::XrdXrootdFile().
Definition at line 1487 of file png.h.
Referenced by png_destroy_read_struct(), png_destroy_write_struct(), png_read_destroy(), and png_write_destroy().
png_colorp int int png_uint_16p int full_dither |
Definition at line 1585 of file png.h.
Referenced by calculate_green_diff(), colormap_asimage(), TSpectrum2Painter::ColorModel(), TColor::CreateColorWheel(), EightBitSetColors(), encode_image_scanline_argb32(), fill_asimage(), gdk_color_context_query_colors(), TTermManip::GetColorIndex(), gl2psPrintPostScriptPixmap(), interpolate_from_green_diff(), make_12bpp_colormap(), make_6bpp_colormap(), make_9bpp_colormap(), TGX11::MakeOpaqueColors(), TGWin32::MakeOpaqueColors(), OneBitSetColors(), SplitGLView::OnViewerActivated(), TGLAxis::PaintGLAxisBody(), parse_color(), png_do_rgb_to_gray(), png_write_sPLT(), TGX11::ReadGIF(), TColor::SetPalette(), TestMsgBox::TestMsgBox(), TImagePalette::TImagePalette(), TrueColorSetColors(), and TGX11::WriteGIF().
Definition at line 2209 of file png.h.
Referenced by png_handle_cHRM(), and png_set_sRGB_gAMA_and_cHRM().
Definition at line 2209 of file png.h.
Referenced by png_handle_cHRM(), and png_set_sRGB_gAMA_and_cHRM().
Definition at line 2266 of file png.h.
Referenced by _gdk_pixmap_create_from_xpm(), TLatex::Analyse(), apply_asdraw_context(), ASImage2xpm(), BDF_Size_Request(), bdtcontrolplots(), TGHtml::BlockDraw(), blur_asimage_gauss(), boostcontrolplots(), boxset_cones(), TGuiBldMenuDialog::Build(), build_image_from_xml(), ClassImp(), compute_glyph_metrics(), TGHtml::ControlSize(), copy_asimage_lines(), correlationscatters(), correlationscattersMultiClass(), TGColorPick::CreateImages(), DIB2ASImage(), TStructViewerGUI::Divide(), TGListTree::Draw(), TFITSHDU::Draw(), draw_layer_labels(), draw_text_internal(), TGListTree::DrawChildren(), RooStats::MCMCIntervalPlot::DrawHistInterval(), TGListTree::DrawItem(), RooStats::MCMCIntervalPlot::DrawKeysPdfInterval(), TGHtml::DrawRect(), TGHtml::DrawSelectionBackground(), TASImage::DrawText(), elliptic_boxset_cones(), EntryTestDlg::EntryTestDlg(), TText::ExecuteEvent(), TASPluginGS::File2ASImage(), find_useable_visual(), TGListTree::FindItem(), TGTableLayout::FindRowColSizesMultiplyAttached(), TGX11::FindUsableVisual(), FNT_Size_Request(), ft_bitmap_assure_buffer(), ft_raster1_render(), ft_smooth_render_generic(), ft_synthesize_vertical_metrics(), gdk_cursor_new_from_pixmap(), gdk_image_get_pixel(), gdk_image_put_pixel(), gdk_window_init(), gdk_window_new(), get_asimage_chanmask(), get_asimage_channel_rects(), get_dpy_window_position(), TGWin32::GetBackground(), TGX11TTF::GetBackground(), TGX11::GetGeometry(), TGWin32::GetGeometry(), TGTable::GetRHdrHeight(), gif2ASImage(), gl2psGetRGB(), gl2psPrintPostScriptPixmap(), gl2psPrintSVGHeader(), handle_asxml_tag_composite(), handle_asxml_tag_img(), TGSplitFrame::HSplit(), InitDisplay(), TGColorPick::InitImages(), InputDialog::InputDialog(), TGX11TTF::IsVisible(), TGWin32::IsVisible(), likelihoodrefs(), TGListTree::LineDown(), TGListTree::LineUp(), load_X11_glyph_range(), SplitGLView::LoadConfig(), make_gradient_diag_height(), make_gradient_top2bottom(), make_X11_default_glyph(), TPDF::NewPage(), PCF_Size_Request(), picture_ximage2asimage(), TGMsgBox::PMsgBox(), png2ASImage_int(), png_handle_IHDR(), png_handle_sCAL(), TGuiBldMenuDialog::Popup(), TRootDialog::Popup(), ppm2ASImage(), TFITSHDU::ReadAsImage(), TFITSHDU::ReadAsMatrix(), TGX11::ReadGIF(), TGWin32::ReadGIF(), rulevisCorr(), rulevisHists(), TGLViewer::SavePictureWidth(), scale_asimage(), TGListTree::SearchChildren(), TGTable::SetEvenRowBackground(), TGTable::SetHeaderBackground(), TGTable::SetOddRowBackground(), TGColorPick::SetSliderColor(), TGLVContainer::SetViewMode(), TetrisBox::SetY(), TAdvancedGraphicsDialog::TAdvancedGraphicsDialog(), test_images(), test_one_rectangle_on_drawable(), test_pixmaps(), test_points(), test_some_arcs_on_drawable(), test_temp_windows(), TGXYLayout::TGXYLayout(), tiff2ASImage(), TQRootCanvas::TQRootCanvas(), translate_tag_size(), tt_sbit_decoder_alloc_bitmap(), tt_sbit_decoder_load_bit_aligned(), tt_sbit_decoder_load_byte_aligned(), TGTextLayout::UnderlineChar(), variables(), variablesMultiClass(), xml2ASImage(), XRotCreateTextItem(), XRotDrawHorizontalString(), and XRotTextExtents().
int heuristic_method |
Definition at line 2257 of file png.h.
Referenced by RooStats::ConfidenceBelt::AddAcceptanceRegion(), TEveCaloDataHist::AddHistogram(), TMVA::MethodBoost::AddMonitoringHist(), RooNumRunningInt::RICacheElem::addPoint(), RooPlot::addTH1(), RooFactoryWSTool::asDHIST(), TSelectorDraw::Begin(), TPad::BuildLegend(), TMVA::PDF::BuildPDF(), RooIntegralMorph::MorphCacheElem::calculate(), RooNumRunningInt::RICacheElem::calculate(), RooCurve::chiSquare(), RooPlot::chiSquare(), ClassApplication(), ClassImp(), HistAction::clearScan(), THnSparse::CreateHist(), ROOT::TBranchProxyDirector::CreateHistogram(), TMVA::MethodANNBase::CreateWeightMonitoringHists(), TGDocument::DataChanged(), TEveCaloDataHist::DataChanged(), TFitEditor::DoFit(), RooStats::MCMCIntervalPlot::DrawHistInterval(), TMultiLayerPerceptron::DrawResult(), RooStats::MCMCIntervalPlot::DrawTailFractionInterval(), TTreeViewer::ExecuteDraw(), RooFFTConvPdf::FFTCacheElem::FFTCacheElem(), RooAbsReal::fillDataHist(), RooAbsData::fillHistogram(), RooAbsReal::fillHistogram(), FindAxisRange(), FITS_tutorial1(), FitUsingRooFit(), RooAbsPdf::generateBinned(), RooStats::ConfidenceBelt::GetAcceptanceRegion(), RooStats::MarkovChain::GetAsDataHist(), TEveCaloDataHist::GetCellData(), TMVA::MethodLikelihood::GetMvaValue(), RooStats::PointSetInterval::IsInInterval(), TGeoChecker::LegoPlot(), TGeoVolume::LegoPlot(), length(), main(), makeEventSample(), RooHist::makeResidHist(), mvasMulticlass(), MyApplication::MyApplication(), TMVA::PDF::PDF(), plot_efficiencies(), RooAbsData::plotOn(), HistAction::processBoxB(), THnSparse::ProjectionAny(), TMVA::Tools::projNormTH1F(), PT_CheckSimple(), RooPlot::residHist(), RooNumRunningInt::RICacheElem::RICacheElem(), RooDataHist::RooDataHist(), RooDataHistSliceIter::RooDataHistSliceIter(), rs401c_FeldmanCousins(), rs401d_FeldmanCousins(), RooFFTConvPdf::scanPdf(), TGShapedToolTip::SetHisto(), TTreeViewer::SetHistogramTitle(), TFitEditor::SetObjectType(), TGLPlotCoordinates::SetRanges(), TGLPlotCoordinates::SetRangesCartesian(), TGLPlotCoordinates::SetRangesCylindrical(), TGLPlotCoordinates::SetRangesPolar(), TGLPlotCoordinates::SetRangesSpherical(), TGShapedToolTip::Show(), showEventSample(), TProofDrawHist::SlaveBegin(), TSpectrum2::StaticBackground(), TSpectrum::StaticBackground(), TSpectrum::StaticSearch(), TSpectrum2::StaticSearch(), TProofDrawListOfPolyMarkers3D::Terminate(), TProofDrawListOfGraphs::Terminate(), TProofDrawPolyMarker3D::Terminate(), TProofDrawGraph::Terminate(), TMVA::MethodBase::TestRegression(), TGL5DDataSet::TGL5DDataSet(), THStack::THStack(), TMVAClassificationCategoryApplication(), HistAction::toScan(), RooPlot::updateFitRangeNorm(), TFitEditor::UpdateGUI(), TMVA::GeneticPopulation::VariableDistribution(), variablesMultiClass(), vavilov(), and Roo2DKeysPdf::writeHistToFile().
png_colorp int int png_uint_16p histogram |
Definition at line 1677 of file png.h.
Referenced by compute_color(), RooDataSet::createHistogram(), RooAbsRealLValue::createHistogram(), fill_inverse_cmap(), pass2_fs_dither(), pass2_no_dither(), prescan_quantize(), start_pass_2_quant(), and update_box().
Definition at line 2691 of file png.h.
Referenced by stdext::__gnu_cxx_hash_obj(), __mmalloc_free(), _bdf_list_join(), _bdf_list_shift(), _bdf_parse_glyphs(), _bdf_parse_start(), _gdk_windowing_init_check(), _glewStrCLen(), _glewStrLen(), _glewStrSame(), _glewStrSame1(), _glewStrSame2(), _glewStrSame3(), _lookup_string(), _pcre_ord2utf8(), TFITSHDU::_release_resources(), _tt_check_patents_in_table(), XrdOuca2x::a2sp(), a_div(), a_div2(), a_mult(), TClonesArray::AbsorbObjects(), TPServerSocket::Accept(), TProofServ::AcceptResults(), TEveSelection::ActivateSelection(), RooMsgService::activeStream(), RooFormula::actualDependents(), TMVA::MethodCommittee::AdaBoost(), TBtLeafNode::Add(), Add(), TLinearFitter::Add(), XrdCmsRTable::Add(), ROOT::Fit::BinData::Add(), TEventList::Add(), XrdCmsManager::Add(), XrdSutCache::Add(), TH1::Add(), TProfileHelper::Add(), TEntryList::Add(), ROOT::Minuit2::MnUserParameterState::Add(), ROOT::Fit::UnBinData::Add(), XrdCnsXref::Add(), XrdCmsRespQ::Add(), TChain::Add(), TestVector< Vector >::Add(), RooDataHist::add(), TGeoTranslation::Add(), TMultiGraph::Add(), XrdXrootdFileTable::Add(), TestVector< Vector >::Add2(), XrdMonDecPreProcess::add2TempBuf(), XrdSecServer::add2token(), add_blobs(), add_component(), add_scanlines(), add_storage_slots(), TRefArray::AddAtFree(), TObjArray::AddAtFree(), TMVA::DecisionTreeNode::AddAttributesToNode(), TBranch::AddBasket(), TH2Poly::AddBinToPartition(), XrdXrootdAioReq::addBlock(), XrdXrootdAio::addBlock(), TTreeCache::AddBranch(), XrdXrootdJob2Do::addClient(), TRobustEstimator::AddColumn(), RooTreeDataStore::addColumn(), RooTreeDataStore::addColumns(), TMVA::BinarySearchTreeNode::AddContentToNode(), RooStats::NumberCountingPdfFactory::AddData(), RooStats::NumberCountingPdfFactory::AddDataWithSideband(), TEveSelection::AddElement(), TGeoMixture::AddElement(), TBtInnerNode::AddElt(), UnitTesting::utFactory::addEventsToFactoryByHand(), RooStats::NumberCountingPdfFactory::AddExpData(), RooStats::NumberCountingPdfFactory::AddExpDataWithSideband(), TChain::AddFile(), THostAuth::AddFirst(), ROOT::TTreeProxyGenerator::AddHeader(), THnSparse::AddInternal(), TEveElement::AddIntoListTree(), TEveElement::AddIntoListTrees(), TGeoElement::AddIsotope(), TRootGuiBuilder::AddMacro(), TStyleManager::AddMarkerSizeEntry(), RooStats::NumberCountingPdfFactory::AddModel(), TViewerX3D::AddObject(), TViewer3DPad::AddObject(), TMVA::Configurable::AddOptionsXMLTo(), TProofPlayerRemote::AddOutput(), TProofPlayerRemote::AddOutputObject(), TAdvancedGraphicsDialog::AddParameters(), TGX11::AddPixmap(), TGWin32::AddPixmap(), TLinearFitter::AddPoint(), TMemStatManager::AddPointer(), TMemHashTable::AddPointer(), ROOT::TTreeProxyGenerator::AddPragma(), TMVA::MethodANNBase::AddPreLinks(), TEveProjectable::AddProjectedsToSet(), TMVA::Ranking::AddRank(), TPrincipal::AddRow(), TMultiDimFit::AddRow(), TRobustEstimator::AddRow(), RooStats::SamplingDistPlot::AddSamplingDistributionShaded(), TGLViewerBase::AddScene(), TestShutter::AddShutterItem(), ShutterWindow::AddShutterItem(), TMemStatManager::AddStamps(), TGHtml::AddStyle(), UnitTesting::UnitTestSuite::addSuite(), RooStats::SPlot::AddSWeight(), TMultiDimFit::AddTestRow(), AddText(), TLinearFitter::AddToDesign(), TRobustEstimator::AddToSscp(), TGeoPainter::AddTrackPoint(), RooBinning::addUniform(), PyROOT::Utility::AddUsingToClass(), TSpider::AddVariable(), TGLSceneBase::AddViewer(), TGeoVolumeMulti::AddVolume(), TMVA::MethodANNBase::AddWeightsXMLTo(), TMVA::MethodCompositeBase::AddWeightsXMLTo(), TMVA::MethodPDEFoam::AddWeightsXMLTo(), TMVA::MethodCategory::AddWeightsXMLTo(), TMVA::MethodCFMlpANN::AddWeightsXMLTo(), TGWin32::AddWindow(), TGX11::AddWindow(), TMVA::PDEFoam::AddXMLTo(), TMVA::RuleEnsemble::AddXMLTo(), TMVA::Rule::AddXMLTo(), TMVA::PDF::AddXMLTo(), XrdOssSpace::Adjust(), TView3D::AdjustScales(), TMVA::MethodMLP::AdjustSynapseWeights(), advance_asim_strip(), af_face_globals_compute_script_coverage(), af_latin2_metrics_check_digits(), af_latin_metrics_check_digits(), af_sort_pos(), af_sort_widths(), afm_parser_read_vals(), TEveEventManager::AfterNewEventLoaded(), alien(), TGeoPhysicalNode::Align(), align(), TetrisBoard::AllAboveLinesDown(), allanon_scanlines(), XrdBwmHandle::Alloc(), XrdOucTable< XrdXrootdJob2Do >::Alloc(), XrdXrootdAioReq::Alloc(), XrdOfsHandle::Alloc(), XrdLink::Alloc(), alloc_barray(), alloc_color(), alloc_color_cells(), alloc_fs_workspace(), alloc_sarray(), TGraph::AllocateArrays(), alphablend_scanlines(), XrdXtRdBlkInfo::AlreadyRequested(), TLatex::Analyse(), RooBernstein::analyticalIntegral(), RooNonCentralChiSquare::analyticalIntegral(), RooParametricStepFunction::analyticalIntegral(), RooNDKeysPdf::analyticalIntegral(), RooUniform::analyticalIntegral(), RooMultiVarGaussian::analyticalIntegral(), RooAddModel::analyticalIntegralWN(), RooAddPdf::analyticalIntegralWN(), PiecewiseInterpolation::analyticalIntegralWN(), TFormula::Analyze(), ROOT::TTreeProxyGenerator::AnalyzeElement(), TFormula::AnalyzeFunction(), ROOT::Math::GoFTest::AndersonDarling2SamplesTest(), ROOT::Math::GoFTest::AndersonDarlingTest(), TGeoTrack::AnimateTrack(), TGeoManager::AnimateTracks(), TEveProjectable::AnnihilateProjecteds(), TEveElement::AnnihilateRecursively(), ans(), TGText::Append(), TMemberInspector::TParentBuf::Append(), TChainIndex::Append(), TTreeIndex::Append(), RooCompositeDataStore::append(), RooTreeDataStore::append(), AppendFracZero(), TBtInnerNode::AppendFrom(), TBtLeafNode::AppendFrom(), ApplicationWindow::ApplicationWindow(), TGraphBentErrors::Apply(), XrdOucTable< XrdXrootdJob2Do >::Apply(), TGraphAsymmErrors::Apply(), TGraphErrors::Apply(), TGLPerspectiveCamera::Apply(), TGraph::Apply(), TMatrixTSym< Element >::Apply(), apply_asdraw_context(), apply_gamma(), RooMinuit::applyCovarianceMatrix(), RooMinimizerFcn::ApplyCovarianceMatrix(), ApplyHouseHolder(), TParallelCoord::ApplySelectionToTree(), TMVA::DataSet::ApplyTrainingSetDivision(), TGraphSmooth::Approx(), TGraphSmooth::Approx1(), TGraphSmooth::Approxin(), arb8(), TGeoPolygon::Area(), TCutG::Area(), AreCompatible(), RooFitTestUnit::areTHidentical(), RooParamBinning::array(), RooBinning::array(), RooUniformBinning::array(), RooLinTransBinning::array(), asim_apply_path(), asim_casestring_compare(), asim_casestring_hash_value(), asim_destroy_ashash(), asim_find_file(), asim_interpret_ctrl_codes(), asim_my_scandir_ext(), asim_mystrcasecmp(), asim_mystrncasecmp(), asim_put_file_home(), asim_set_application_name(), asim_spool_xml_tag(), asim_string_compare(), asim_string_hash_value(), asimage2alpha_ximage(), asimage2drawable_gl(), ASImage2jpeg(), ASImage2png_int(), ASImage2tiff(), asimage2ximage_ext(), asimage_compare_line(), asimage_decode_line(), asimage_init(), AsmLong(), assembly(), assert_bits(), assert_bits_by_char(), assert_bits_by_int(), assert_bits_by_short(), TAttBBox::AssertBBoxExtents(), TCollection::AssertClass(), XrdOssSpace::Assign(), TLinearFitter::AssignData(), ROOT::Math::Transform3D::AssignFrom(), THostAuth::AsString(), TMD5::AsString(), RooAbsReal::asTF(), XrdPoll::Attach(), TAuthenticate::Authenticate(), XrdSecProtocolpwd::Authenticate(), TAuthenticate::AuthExists(), autorotate(), RooCurve::average(), RooHashTable::avgCollisions(), TView3D::AxisVertex(), TPainter3dAlgorithms::BackBox(), TSpectrum2::Background(), TSpectrum3::Background(), TSpectrum::Background(), TMVA::MethodMLP::BackPropagationMinimize(), XrdProofdNetMgr::BalanceNodesOrder(), bdf_free_font(), TGraphSmooth::BDRksmooth(), TGraphSmooth::BDRsmooth(), TGraphSmooth::BDRsupsmu(), bdtcontrolplots(), TSelectorDraw::Begin(), TGLUtil::BeginExtendPickRegion(), TGLScene::BeginSmartRefresh(), TEcho::Benchmark(), best_output_filter(), TSpectrum2Painter::BezierSmoothing(), TMultiLayerPerceptron::BFGSDir(), TMVA::MethodMLP::BFGSMinimize(), TDecompSVD::Bidiagonalize(), billr(), billtr(), billtw(), billw(), XrdOssPath::bin2hex(), XrdOucTrace::bin2hex(), XrdXrootdFile::bin2hex(), binarySearchTime(), TRandom::Binomial(), TMath::Binomial(), binomialFancy(), binomialSimple(), bitmap2asimage(), TSpectrum2Transform::BitReverse(), TSpectrumTransform::BitReverse(), TSpectrum2Transform::BitReverseHaar(), TSpectrumTransform::BitReverseHaar(), BitSize(), blend_scanlines_name2func(), RooMultiVarGaussian::blockDecompose(), boostcontrolplots(), boxset(), boxset_colisval(), boxset_cones(), boxset_freebox(), boxset_single_color(), Bprint(), TTree::Branch(), TTreeSQL::Branch(), XrdCmsCluster::Broadcast(), XrdProofdClientMgr::Broadcast(), TAxis3D::Browse(), TGeoNode::Browse(), TGeoTrack::Browse(), TGeoVolume::Browse(), XrdSutPFile::Browse(), TTable::Browse(), TProfile3D::BufferEmpty(), TProfile2D::BufferEmpty(), TProfile::BufferEmpty(), TH3::BufferEmpty(), TH2::BufferEmpty(), TH1::BufferEmpty(), XrdClientVector< T >::BufRealloc(), TKDTree< Index, Value >::Build(), TGTextEditor::Build(), HtmlSummary::Build(), TCurlyArc::Build(), TGFontDialog::Build(), TEveGTriVecValuator::Build(), TSessionViewer::Build(), TCurlyLine::Build(), TGRootIDE::Build(), TSessionFrame::Build(), TGSpeedo::Build(), build_keypress_event(), XrdOssLock::Build_LKFN(), RootCsg::build_tree(), build_xpm_charmap(), build_xpm_colormap(), build_ycc_rgb_table(), TFumili::BuildArrays(), TMinuit::BuildArrays(), BuildBoolAnswer(), TSpline5::BuildCoeff(), TSpline3::BuildCoeff(), Rgl::Mc::TMeshBuilder< DataSource, ValueType >::BuildCol(), TMVA::DataSetFactory::BuildEventVector(), Rgl::Mc::TMeshBuilder< DataSource, ValueType >::BuildFirstCube(), TMultiLayerPerceptron::BuildFirstLayer(), TAttTextEditor::BuildFontSizeComboBox(), TPieEditor::BuildFontSizeComboBox(), ProjectionTester::buildHistograms(), building(), TTreeViewer::BuildInterface(), TMVA::PDF::BuildKDEPDF(), HtmlObjTable::BuildLabels(), TMultiLayerPerceptron::BuildLastLayer(), TStyleManager::BuildList(), TGeoShapeDialog::BuildListTree(), TGeoMediumDialog::BuildListTree(), TGeoMaterialDialog::BuildListTree(), TGeoMatrixDialog::BuildListTree(), Rgl::Mc::TMeshBuilder< DataSource, ValueType >::BuildMesh(), Rgl::Mc::TMeshBuilder< DataSource, ValueType >::BuildNormals(), TMultiLayerPerceptron::BuildOneHiddenLayer(), TParallelCoord::BuildParallelCoord(), RooSimPdfBuilder::buildPdf(), Rgl::Mc::TMeshBuilder< DataSource, ValueType >::BuildRow(), Rgl::Mc::TMeshBuilder< DataSource, ValueType >::BuildSlice(), TTableSorter::BuildSorter(), THStack::BuildStack(), HtmlObjTable::BuildTable(), PyROOT::Utility::BuildTemplateName(), TBranchElement::BuildTitle(), RootCsg::TConnectedMeshWrapper< TMesh >::BuildVertexPolyLists(), memstat::builtin_return_address(), builtin_return_address(), c2fstrv(), c_insert(), RooTreeDataStore::cacheArgs(), RooDataHist::cacheValidEntries(), TMVA::RuleFitParams::CalcAverageTruth(), TMVA::DataSetFactory::CalcCovarianceMatrix(), TGLManip::CalcDrawScale(), TMVA::RuleFitParams::CalcFStar(), ROOT::Math::GaussLegendreIntegrator::CalcGaussLegendreSamplingPoints(), TMVA::RuleEnsemble::CalcLinImportance(), TMVA::DataSetFactory::CalcMinMax(), TMVA::RuleEnsemble::CalcRuleImportance(), TMVA::TransformationHandler::CalcStats(), RooDataHist::calcTreeIndex(), RooIntegralMorph::MorphCacheElem::calculate(), RooRealMPFE::calculate(), RooNumRunningInt::RICacheElem::calculate(), RooProdPdf::calculate(), RooProduct::calculate(), MySimAnFunc::calculate_distance_matrix(), TFumiliFCN::Calculate_gradient_and_hessian(), RooNDKeysPdf::calculateBandWidth(), Rgl::Pad::CalculateCircle(), TMVA::MethodMLP::CalculateEstimator(), TMVA::GeneticAlgorithm::CalculateFitness(), RooMomentMorph::CacheElem::calculateFractions(), ROOT::Fit::Fitter::CalculateMinosErrors(), TMVA::MethodMLP::CalculateNeuronDeltas(), TGLFaceSet::CalculateNormals(), RooDataHist::calculatePartialBinVolume(), TEveJetConeGL::CalculatePoints(), TEveJetConeProjectedGL::CalculatePoints(), RooNDKeysPdf::calculatePreNorm(), TMVA::VariablePCATransform::CalculatePrincipalComponents(), TMVA::CostComplexityPruneTool::CalculatePruningInfo(), TGLPhysicalShape::CalculateShapeLOD(), TFeldmanCousins::CalculateUpperLimit(), TMVA::MethodPDEFoam::CalcXminXmax(), CalendarWindow::CalendarWindow(), XrdXrootdJob::Cancel(), CurrentPiece::CanPosition(), TGeoArb8::Capacity(), TGeoVolume::Capacity(), card8_card32_cpy(), card8_threshold(), THbookFile::cd(), TGeoPatternCylPhi::cd(), TUnuranDiscrDist::Cdf(), ROOT::Math::VavilovTest::CdfTest(), TEveCaloData::CellSelectionChanged(), TEveCalo2D::CellSelectionChangedInternal(), TCutG::Center(), TView3D::Centered3DImages(), cff_charset_compute_cids(), cff_charset_load(), cff_decoder_parse_charstrings(), cff_encoding_load(), cff_get_name_index(), cff_size_done(), cff_size_init(), RooFormula::changeDependents(), TTree::ChangeFile(), TH2Poly::ChangePartition(), TGWin32::ChangeProperties(), TMVA::DataSetFactory::ChangeToNewTree(), char_flush(), TGTextLayout::CharBbox(), TTF::CharToUnicode(), TGFileBrowser::Chdir(), TRootBrowserLite::Chdir(), TTimeHists::Check(), XrdMonCtrArchiver::check4InactiveSenders(), check_asimage_alpha(), check_escape(), check_image_type(), check_unicode_subranges(), TTreeSQL::CheckBasket(), CheckBinLimits(), TEfficiency::CheckBinning(), TGeoChecker::CheckBoundaryErrors(), TGeoChecker::CheckBoundaryReference(), TTreeSQL::CheckBranch(), TAlienPackage::CheckDependencies(), TGuiBldDragManager::CheckDragResize(), TEfficiency::CheckEntries(), TGeoChecker::CheckGeometry(), TGeoChecker::CheckGeometryFull(), TLatex::CheckLatexSyntax(), RooAdaptiveIntegratorND::checkLimits(), RooSegmentedIntegrator1D::checkLimits(), RooSegmentedIntegrator2D::checkLimits(), XrdProofdManager::CheckMaster(), TMLPAnalyzer::CheckNetwork(), TGeoVolume::CheckOverlaps(), TGeoNode::CheckOverlaps(), TAuthenticate::CheckProofAuth(), XrdProofdProofServ::CheckSession(), TGeoNode::CheckShapes(), TGeoVolume::CheckShapes(), TGFileBrowser::CheckSorted(), TGeoChecker::CheckVoxels(), cheongwadae(), chi2test(), TH1::Chi2TestX(), TLinearFitter::Chisquare(), TFitterFumili::Chisquare(), TFitterMinuit::Chisquare(), TBackCompFitter::Chisquare(), RooCurve::chiSquare(), TGraph::Chisquare(), chisquare_corr(), TMath::ChisquareQuantile(), circular(), TCondor::Claim(), TRobustEstimator::Classic(), RootCsg::classify_mesh(), ClassImp(), TConfidenceLevel::CLb(), RooStats::HypoTestResult::CLbError(), TGeoManager::CleanGarbage(), TGeoChecker::CleanPoints(), TTF::Cleanup(), XrdXrootdProtocol::Cleanup(), TGeoTabManager::Cleanup(), CleanUp(), TMVA::RuleEnsemble::CleanupLinear(), XrdProofdProofServMgr::CleanupLostProofServ(), TMVA::RuleEnsemble::CleanupRules(), TProofLite::CleanupSandbox(), TParallelCoordEditor::CleanUpSelections(), TParallelCoordEditor::CleanUpVariables(), TetrisBoard::Clear(), TMultiDimFit::Clear(), TClonesArray::Clear(), THashTable::Clear(), TFumili::Clear(), TGenCollectionProxy::Clear(), VectorTest< Dim >::clear(), FTCharToGlyphIndexMap::clear(), XrdClientVector< XrdClientPhyConnection * >::Clear(), TAuthenticate::ClearAuth(), TMVA::RuleEnsemble::ClearCoefficients(), TSelectorDraw::ClearFormula(), TProofDraw::ClearFormula(), TGHtml::ClearGcCache(), TPointSet3D::ClearIds(), TMVA::RuleEnsemble::ClearLinCoefficients(), TMVA::RuleEnsemble::ClearLinNorm(), TLinearFitter::ClearPoints(), TTreeDrawArgsParser::ClearPrevious(), TPainter3dAlgorithms::ClearRaster(), TUnfold::ClearResults(), RooFitTestUnit::clearSilentMode(), TRobustEstimator::ClearSscp(), clearVector(), TArcBall::Click(), clientMarshallReadAheadList(), clientUnMarshallReadAheadList(), TPad::Clip(), TPad::ClipPolygon(), ClockHand::ClockHand(), clone_asimage(), TEveElement::CloneChildrenRecurse(), TGeoVolume::CloneNodesAndConnect(), TEvePointSet::ClonePoints(), TTree::CloneTree(), TGeoVolumeAssembly::CloneVolume(), TGeoVolume::CloneVolume(), TPDF::Close(), XrdPssDir::Close(), TPSocket::Close(), close_xpm_file(), TEvePointSetArray::CloseBins(), TGLScenePad::CloseComposite(), closeFiles(), XrdMonSndDummyXrootd::closeFiles(), TGeoManager::CloseGeometry(), TTreeCloner::CloseOutWriteBaskets(), TRootBrowser::CloseWindow(), TFdSet::Clr(), TConfidenceLevel::CLsb(), RooStats::HypoTestResult::CLsplusbError(), cmd2op(), TMVA::RuleEnsemble::CoefficientRadius(), RooAbsAnaConvPdf::coefVars(), CollapseSlashesInPath(), Reflex::CollType< StdBitSetHelper< Bitset_t > >::collect(), Reflex::CollType< T >::collect(), ROOT::TCollectionProxyInfo::Type< std::vector< bool > >::collect(), ROOT::TCollectionProxyInfo::Type< ROOT::TStdBitsetHelper< Bitset_t > >::collect(), TTreeCloner::CollectBaskets(), TTreeCloner::CollectBranches(), TWinNTSystem::CollectGroups(), CollectImageColors(), TGX11::CollectImageColors(), TWinNTSystem::CollectMembers(), TMatrixTBase< Element >::ColNorm(), TMatrixTSparse< Element >::ColNorm(), TSpectrum2Painter::ColorCalculation(), TPainter3dAlgorithms::ColorFunction(), colorize_scanlines(), TSpectrum2Painter::ColorModel(), TTableDescriptor::ColumnByName(), TEfficiency::Combine(), RooAbsOptTestStatistic::combinedValue(), TUUID::Compare(), Compare(), FitEditorUnitTesting::CompareFuncPars(), RooStats::HistFactory::EstimateSummary::CompareHisto(), CompareMasses(), CompareResults(), TString::CompareTo(), CompareTrees(), TStreamerInfo::Compile(), TFormula::Compile(), TSystem::CompileMacro(), TProofDraw::CompileVariables(), TSelectorDraw::CompileVariables(), TTabCom::Complete(), TGHtmlUri::ComponentLength(), compose_asimage_xml_from_doc(), RooMultiCatIter::compositeLabel(), TSVDUnfold::CompProd(), TQCommand::Compress(), Compress(), TMessage::Compress(), TObjArray::Compress(), TRefArray::Compress(), TClonesArray::Compress(), compress_glyph_pixmap(), compress_stored_data(), CompressName(), TKDEFGT::Compute_A_k(), TKDEFGT::Compute_C_k(), compute_diff32(), compute_diff32_16bitshift(), compute_diff32_16bitshift_masked(), compute_diff32_24bitshift_masked(), compute_diff32_8bitshift(), compute_diff32_8bitshift_masked(), compute_diff32_masked(), compute_diff8(), TEveTriangleSet::ComputeBBox(), TPointSet3D::ComputeBBox(), TGeoShapeAssembly::ComputeBBox(), TEveGeoShapeProjected::ComputeBBox(), TEveTrack::ComputeBBox(), RootCsg::TMeshWrapper< TMesh >::ComputeBBox(), TGeoUnion::ComputeBBox(), TGeoCtub::ComputeBBox(), TEveBox::ComputeBBox(), TEveBoxProjected::ComputeBBox(), TEveProjectionAxes::ComputeBBox(), TEveQuadSet::ComputeBBox(), TGeoArb8::ComputeBBox(), TGeoSubtraction::ComputeBBox(), TEveBoxSet::ComputeBBox(), TGeoIntersection::ComputeBBox(), TGeoXtru::ComputeBBox(), TSVDUnfold::ComputeChiSquared(), TMVA::MethodHMatrix::ComputeCovariance(), TMVA::MethodMLP::ComputeDEDw(), TMultiLayerPerceptron::ComputeDEDw(), TMVA::MethodMLP::ComputeEstimator(), THnSparse::ComputeIntegral(), TLimit::ComputeLimit(), TGraphPainter::ComputeLogs(), TGeoConeSeg::ComputeNormal(), TGeoTube::ComputeNormal(), TGeoPara::ComputeNormal(), TGeoSphere::ComputeNormal(), TGeoBBox::ComputeNormal(), TGeoTorus::ComputeNormal(), TGeoCtub::ComputeNormal(), TGeoTubeSeg::ComputeNormal(), TGeoHype::ComputeNormal(), TGeoTubeSeg::ComputeNormalS(), TGeoConeSeg::ComputeNormalS(), RootCsg::TMeshWrapper< TMesh >::ComputePlanes(), TGraph::ComputeRange(), TGraphAsymmErrors::ComputeRange(), TGraphBentErrors::ComputeRange(), TGraphErrors::ComputeRange(), TLinearFitter::ComputeTValues(), TGeoArb8::ComputeTwist(), TGeoBatemanSol::Concentration(), ConfidenceIntervals(), XrdProofdManager::Config(), XrdOfs::Config_Display(), XrdFrmConfig::ConfigMP(), XrdFrmAdmin::ConfigProxy(), XrdOfs::Configure(), XrdCmsClientConfig::Configure(), XrdPssSys::Configure(), XrdXrootdProtocol::Configure(), XrdFrmConfig::ConfigXfr(), XrdCmsManTree::Connect(), XrdClientConnectionMgr::Connect(), XrdProofConn::Connect(), XrdProofPhyConn::Connect(), TSAXParser::ConnectToHandler(), ConnectToServer(), Rgl::Mc::ConnectTriangles(), RooAbsTestStatistic::constOptimizeTestStatistic(), ROOT::TCollectionProxyInfo::Type< ROOT::TStdBitsetHelper< Bitset_t > >::construct(), Reflex::CollType< T >::construct(), RooStats::MetropolisHastings::ConstructChain(), TGeoPolygon::Contains(), TGeoArb8::Contains(), TEntryListBlock::Contains(), RooNormSetCache::containsSet1(), TMVA::Rule::ContainsVariable(), ROOT::Minuit2::Minuit2Minimizer::Contour(), ROOT::Minuit2::MnContours::Contour(), ContourList(), TGHtml::ControlSize(), ROOT::Math::gv_detail::convert(), TDocOutput::Convert(), XrdOssPath::Convert(), THbookFile::Convert1D(), THbookFile::Convert2D(), convert_1d(), convert_2d(), convert_cwn(), convert_directory(), Convert_Glyph(), convert_profile(), convert_rwn(), convert_xpm_scanline(), THbookFile::ConvertCWN(), XrdClientUrlSet::ConvertDNSAlias(), ConvertMarkerPoints(), ConvertModel(), THbookFile::ConvertProfile(), THbookFile::ConvertRWN(), RootCsg::ConvertToMesh(), TGeoPolygon::ConvexCheck(), ROOT::Fit::DataWrapper::CoordErrors(), ROOT::Fit::DataWrapper::Coords(), TAxis::Copy(), TFormula::Copy(), TPolyLine3D::Copy(), THelix::Copy(), TPolyMarker3D::Copy(), TXTRU::Copy(), TPolyLine::Copy(), TPointsArray3D::Copy(), TAxis3D::Copy(), TPolyMarker::Copy(), TH1::Copy(), TF1::Copy(), TStyle::Copy(), copy_asimage_channel(), copy_asimage_lines(), copy_component(), TTree::CopyAddresses(), TTree::CopyEntries(), TRecorderRecording::CopyEvent(), copyfont(), TPointSet3D::CopyIds(), TProofLite::CopyMacroToCache(), TTreeCloner::CopyMemoryBaskets(), TTreeCloner::CopyProcessIds(), TTreePlayer::CopyTree(), copytree3(), TRobustEstimator::Correl(), RooFitResult::correlationHist(), ROOT::Math::cosint(), count_faces_scalable(), TBits::CountBits(), TGeoNode::CountDaughters(), THostAuth::CountFailure(), TStructViewer::CountMembers(), TGeoVolume::CountNodes(), TPythia6Decayer::CountProducts(), THostAuth::CountSuccess(), TRobustEstimator::Covar(), cplus_demangle_opname(), cplus_mangle_opname(), RooAbsArg::crc32(), THostAuth::Create(), RooSimWSTool::SimWSIFace::create(), RooCustomizer::CustIFace::create(), TMVA::MethodCFMlpANN_Utils::VARn2::Create(), RooClassFactory::ClassFacIFace::create(), RooFactoryWSTool::SpecialsIFace::create(), TMVA::PDEFoam::Create(), create_array_with_different_lengths(), create_asim_strip(), create_circ(), create_colorindex(), create_colormap(), create_context_buffer(), create_image_manager(), create_lin(), create_lin_Nvar(), create_lin_Nvar_Arr(), create_lin_Nvar_categories(), create_lin_Nvar_discrete(), create_lin_Nvar_double(), create_lin_Nvar_weighted(), create_lin_Nvar_withFriend(), create_lin_NvarObsolete(), create_ManyVars(), create_odither_tables(), create_schachbrett(), create_schachbrett_2D(), create_schachbrett_3D(), create_schachbrett_4D(), create_schachbrett_5D(), UnitTesting::utFactory::create_Tree(), RooFactoryWSTool::createArg(), TTreeSQL::CreateBranches(), TRootBrowserLite::CreateBrowser(), TMVA::MethodCategory::CreateCategoryDSI(), RooAbsReal::createChi2(), TDocOutput::CreateClassIndex(), RooStats::ProposalHelper::CreateCovMatrix(), TGeoMCGeometry::CreateDoubleArray(), TLDAPResult::CreateEntry(), TRecGuiEvent::CreateEvent(), XrdMonSndDummyXrootd::createFile(), TF1::CreateFromCintClass(), TF1::CreateFromFunctor(), RooFitResult::createHessePdf(), RooStats::MCMCInterval::CreateHist(), RooDataSet::createHistogram(), TF2::CreateHistogram(), RooAbsReal::createIntegral(), RooNumIntFactory::createIntegrator(), RooStats::MCMCInterval::CreateKeysDataHist(), RooStats::MCMCInterval::CreateKeysPdf(), TTableDescriptor::CreateLeafList(), THtml::CreateListOfClasses(), RooStats::LikelihoodInterval::CreateMinimizer(), CreateNewROOTPythonClass(), createOnionData(), TRobustEstimator::CreateOrtSubset(), TChainElement::CreatePackets(), RooStats::FeldmanCousins::CreateParameterPoints(), ROOT::Fit::FitConfig::CreateParamsSettings(), CreateParentTree(), XrdMonSndDummyXrootd::createProcess(), PyROOT::TPyROOTApplication::CreatePyROOTApplication(), RooStats::BernsteinCorrection::CreateQSamplingDist(), TStreamerInfoActions::TActionSequence::CreateReadMemberWiseActions(), TMVA::DataSet::CreateSampling(), TGM::CreateSession(), THnSparse::CreateSparse(), RooStats::MCMCInterval::CreateSparseHist(), TLinearFitter::CreateSubset(), TRobustEstimator::CreateSubset(), TTreeSQL::CreateTable(), XrdMonSndDummyXrootd::createUser(), RooStats::MCMCInterval::CreateVector(), TMVA::MethodANNBase::CreateWeightMonitoringHists(), TLinearFitter::CStep(), TRobustEstimator::CStep(), TGTextEntry::CursorWordBackward(), TGTextEntry::CursorWordForward(), ROOT::Math::GenVector_detail::BitReproducible::D2x(), darken_scanlines(), TEveCaloData::DataChanged(), TEveCaloDataHist::DataChanged(), TMVA::DataSet::DataSet(), TGeoTorus::Daxis(), TGeoTorus::DDaxis(), TGeoTorus::DDDaxis(), DDist(), TEveSelection::DeactivateSelection(), TMemStatStackInfo::Dec(), MyEvent::Decay(), TGeoMaterial::DecayMaterial(), TGeoMixture::DecayMaterial(), TGeoDecayChannel::DecayName(), TGeoDecayChannel::DecayShift(), TMVA::MethodMLP::DecaySynapseWeights(), TMVA::MethodLikelihood::DeclareCompatibilityOptions(), TMVA::MethodCuts::DeclareOptions(), TMVA::MethodANNBase::DeclareOptions(), TMD5::Decode(), decode_asscanline_native(), decode_asscanline_ximage(), decode_xcf_tile_rle(), TGHtml::DecodeBaseIndex(), RooMultiVarGaussian::decodeCode(), TDirectory::DecodeNameCycle(), TMVA::Reader::DecodeVarNames(), TDecompBK::Decompose(), TDecompQRH::Decompose(), TDecompChol::Decompose(), TDecompLU::DecomposeLUCrout(), TDecompLU::DecomposeLUGauss(), TSpectrum2::Deconvolution(), TSpectrum::Deconvolution(), TSpectrum3::Deconvolution(), TSpectrum::DeconvolutionRL(), TDocParser::DecorateKeywords(), TEveRefBackPtr::DecRefCount(), TBtInnerNode::DecrNofKeys(), XrdOfsEvsFormat::Def(), default_colormap(), TGeoManager::DefaultColors(), DefHouseHolder(), TTreeFormula::DefineAlternate(), THistPainter::DefineColorLevels(), TGeoPainter::DefineColors(), RooFormula::DefinedVariable(), TTreeFormula::DefinedVariable(), TPainter3dAlgorithms::DefineGridLevels(), TView3D::DefinePerspectiveView(), TGeoXtru::DefinePolygon(), TXTRU::DefineSection(), RooWorkspace::defineSet(), TXTRU::DefineVertex(), TView3D::DefineViewDirection(), defragment_storage_block(), XrdFrmReqAgent::Del(), XrdFrmReqBoss::Del(), XrdCmsRTable::Del(), XrdXrootdJob2Do::delClient(), TObjectTable::Delete(), TClonesArray::Delete(), TBtree::Delete(), THashTable::Delete(), TOrdCollection::Delete(), TTree::Delete(), TMVA::MethodCFMlpANN_Utils::VARn2::Delete(), TObjArray::Delete(), TEveViewerList::DeleteAnnotations(), TClass::DeleteArray(), TLDAPEntry::DeleteAttribute(), TBranch::DeleteBaskets(), TChainIndex::DeleteIndices(), TMVA::TNeuron::DeleteLinksArray(), TLDAPServer::DeleteMods(), HitNames::DeleteNames(), TMVA::MethodANNBase::DeleteNetwork(), TMVA::MethodANNBase::DeleteNetworkLayer(), TGLViewerBase::DeleteOverlayElements(), TMVA::RuleEnsemble::DeleteRules(), TLDAPAttribute::DeleteValue(), ROOT::Minuit2::HessianGradientCalculator::DeltaGradient(), TGText::DelText(), demangle_function_name(), demangle_prefix(), demangle_template(), RooTFoamBinding::Density(), TFDISTR::Density(), FoamDistribution::Density(), TFumili::Derivatives(), TMVA::MethodMLP::DerivDir(), descend_extract(), PyROOT::TMethodHolder< T, M >::Destroy_(), destroy_asim_strip(), destroy_asstorage(), destroy_colorhash(), destroy_glyph_range(), destroy_image_layers(), destroy_image_manager(), destroy_storage_slot(), TMVA::DataSet::DestroyCollection(), TEveSceneList::DestroyElementRenderers(), TEveElement::DestroyListSubTree(), TEveSceneList::DestroyScenes(), Reflex::CollType< T >::destruct(), ROOT::TCollectionProxyInfo::Type< ROOT::TStdBitsetHelper< Bitset_t > >::destruct(), TClass::Destructor(), TDecompBase::Det(), RooStats::MCMCInterval::DetermineByDataHist(), RooStats::MCMCInterval::DetermineBySparseHist(), RooStats::MCMCInterval::DetermineTailFractionInterval(), ROOT::Math::GSLMultiFitFunctionAdapter< FuncVector >::Df(), ROOT::Math::Determinant< n, idim >::Dfact(), ROOT::Math::Dfactir(), ROOT::Math::Dfinv(), DGifDecompressLine(), DGifGetImageDesc(), DGifGetPrefixChar(), DGifGetScreenDesc(), DGifSetupDecompress(), TDecompSVD::Diag_1(), TDecompSVD::Diag_2(), TDecompSVD::Diag_3(), TDecompSVD::Diagonalize(), TDecompBase::DiagProd(), diff_scanlines(), TMath::DiLog(), TGLFaceSet::DirectDraw(), TEveCaloLegoGL::DirectDraw(), TEvePolygonSetProjectedGL::DirectDraw(), TEveCalo3DGL::DirectDraw(), TEveTrackProjectedGL::DirectDraw(), TEveJetConeGL::DirectDraw(), TGLPolyMarker::DirectDraw(), TGLCylinder::DirectDraw(), TGLPolyLine::DirectDraw(), ROOT::Minuit2::SimplexParameters::Dirin(), XrdClientAdmin::DirList(), XrdFrmFileset::dirPath(), dirs(), TEveElement::DisableListElements(), TFitParametersDialog::DisconnectSlots(), TWinNTSystem::DispatchOneEvent(), TProofLogElem::Display(), TGroupButton::DisplayColorTable(), TMarker::DisplayMarkerTypes(), dissipate_scanlines(), ROOT::Math::GSLSimAnFunc::Distance(), MySimAnFunc::Distance(), TPointsArray3D::DistancetoPrimitive(), TMarker3DBox::DistancetoPrimitive(), TPolyLine::DistancetoPrimitive(), TGraphEdge::DistancetoPrimitive(), THStack::DistancetoPrimitive(), TPolyLine3D::DistancetoPrimitive(), TPolyMarker3D::DistancetoPrimitive(), RootShower::DistancetoPrimitive(), TGeoTrack::DistancetoPrimitive(), TAxis3D::DistancetoPrimitive(), TPolyMarker::DistancetoPrimitive(), TGraphPolargram::DistancetoPrimitive(), TMemStat::DistancetoPrimitive(), TGraphPainter::DistancetoPrimitiveHelper(), TPie::DistancetoSlice(), TGTextLayout::DistanceToText(), TGeoTrd2::DistFromInside(), TGeoTrd1::DistFromInside(), TGeoArb8::DistFromInside(), TGeoPcon::DistFromInside(), TGeoUnion::DistFromInside(), TGeoEltu::DistFromInside(), TGeoBBox::DistFromInside(), TGeoPgon::DistFromOutside(), TGeoArb8::DistFromOutside(), TGeoXtru::DistFromOutside(), TGeoBBox::DistFromOutside(), TGeoIntersection::DistFromOutside(), TGeoSubtraction::DistFromOutside(), TGeoTrap::DistFromOutside(), TGeoEltu::DistFromOutside(), TGeoShapeAssembly::DistFromOutside(), TGeoTorus::DistFromOutside(), DistTest::DistTest(), TGeoSphere::DistToSphere(), TPad::Divide(), THnSparse::Divide(), TestVector< Vector >::Divide(), TestVector< Vector >::Divide2(), divide_component(), TH1Editor::Dividers(), TH2Editor::Dividers(), TMVA::DataSet::DivideTrainingSet(), TEveCaloLegoGL::DLCacheDrop(), TEveCaloLegoGL::DLCachePurge(), UnuranDistrMulti< Function >::Dlogpdf(), do_anadist(), do_barray_io(), XrdXrootdProtocol::do_Bind(), XrdXrootdAdmin::do_Cj(), do_crypt(), do_flip_v(), XrdXrootdAdmin::do_Lsc(), XrdXrootdAdmin::do_Lsd(), XrdXrootdAdmin::do_Lsj(), do_rot_180(), do_rot_270(), do_rot_90(), do_sarray_io(), do_test(), do_transpose(), do_transverse(), TParallelCoordEditor::DoAddSelection(), TBits::DoAndEqual(), TGeoVolumeEditor::DoApplyDiv(), TProofProgressMemoryPlot::DoAveragePlot(), TUnfoldSys::DoBackgroundSubtraction(), TH1Editor::DoBinLabel(), TH2Editor::DoBinLabel(), ChebyQuadFunction::DoCalculatefi(), TFitParametersDialog::DoCancel(), doccl(), doCp_xrd2loc(), doCp_xrd2xrd(), ROOT::Math::Polynomial::DoDerivative(), XrdROOTMgr::DoDirectiveRootSys(), XrdProofdNetMgr::DoDirectiveWorker(), TGeoVolumeEditor::DoDivFromTo(), TGeoVolumeEditor::DoDivN(), TGeoVolumeEditor::DoDivSelAxis(), TGeoVolumeEditor::DoDivStep(), MyMainFrame::DoDraw(), TGeoVolumeEditor::DoEditMatrix(), TEveSelection::DoElementSelect(), TEveSelection::DoElementUnselect(), TrigoFletcherFunction::DoEval(), RosenBrockFunction::DoEval(), ROOT::Math::WrappedParamFunctionGen< FuncPtr >::DoEval(), ChebyQuadFunction::DoEval(), ROOT::Fit::DoFillData(), TFitEditor::DoFit(), DoFit(), doFit(), TFunctionParametersDialog::DoFix(), TBits::DoFlip(), ROOT::Math::WrappedParamFunctionGen< FuncPtr >::DoInit(), ROOT::Math::GaussIntegrator::DoIntegral(), ROOT::Math::GaussLegendreIntegrator::DoIntegral(), XrdXrootdJob2Do::DoIt(), TGeoVolumeDialog::DoItemClick(), TGLAxis::DoLabels(), XrdClientConn::DoLogin(), DoNewMinimization(), TBits::DoOrEqual(), TFitParametersDialog::DoParBound(), TFitParametersDialog::DoParFix(), TFitParametersDialog::DoParMaxLimit(), TFunctionParametersDialog::DoParMaxLimit(), TFitParametersDialog::DoParMinLimit(), TFunctionParametersDialog::DoParMinLimit(), TFitParametersDialog::DoParValue(), TFunctionParametersDialog::DoParValue(), TH3::DoProject1D(), TH3::DoProject2D(), TH2::DoProjection(), TH3::DoProjectProfile2D(), TGDockButton::DoRedraw(), TGVSlider::DoRedraw(), TGStatusBar::DoRedraw(), TGDoubleVSlider::DoRedraw(), TGDoubleHSlider::DoRedraw(), TGHSlider::DoRedraw(), TMinuitMinimizer::DoReleaseFixParameter(), TGeoVolumeEditor::DoRemoveNode(), TFitParametersDialog::DoReset(), TFunctionParametersDialog::DoReset(), TFunctionParametersDialog::DoSlider(), TFitParametersDialog::DoSlider(), TH1Editor::DoSliderMoved(), TH2Editor::DoSliderXMoved(), TH2Editor::DoSliderYMoved(), DoSPlot(), XrdAccGroups::Dotran(), double32(), DoUnBinFit(), TUnfold::DoUnfold(), TBits::DoXorEqual(), TTable::Draw(), TGraphStruct::Draw(), TGenerator::Draw(), TEveBoxProjectedGL::Draw(), TClassTree::Draw(), TConfidenceLevel::Draw(), TMemStat::Draw(), RooStats::LikelihoodIntervalPlot::Draw(), TPie::Draw(), TEveJetConeGL::Draw(), draw_fading_bevel_sides(), draw_input_labels(), draw_layer(), draw_layer_labels(), draw_network(), draw_transp_bevel_line(), draw_transp_bevel_sides(), TEveCaloLegoGL::DrawAxis3D(), TGLPlotBox::DrawBackPlane(), TGeoPainter::DrawBatemanSol(), TGStatusBar::DrawBorder(), TGLH2PolyPainter::DrawCap(), TGX11::DrawCellArray(), TGWin32::DrawCellArray(), TEveCaloLegoGL::DrawCells2D(), TEveCaloLegoGL::DrawCells3D(), RooStats::MCMCIntervalPlot::DrawChainScatter(), TGFont::DrawCharsExp(), Rgl::Pad::MarkerPainter::DrawCircle(), TLatex::DrawCircle(), TPad::DrawClassObject(), TGL5DPainter::DrawCloud(), TPad::DrawColorTable(), TAdvancedGraphicsDialog::DrawConfidenceLevels(), TGLSurfacePainter::DrawContoursProjection(), TGLVEntry::DrawCopy(), DrawCreditItem(), Rgl::Pad::MarkerPainter::DrawCross(), DrawCumulative(), TImageDump::DrawDashPolyLine(), Rgl::Pad::MarkerPainter::DrawDiamond(), TMLPAnalyzer::DrawDInputs(), Rgl::Pad::MarkerPainter::DrawDot(), TGuiBldHintsButton::DrawExpandX(), TGuiBldHintsButton::DrawExpandY(), TPainter3dAlgorithms::DrawFaceGouraudShaded(), TPainter3dAlgorithms::DrawFaceMode1(), TPainter3dAlgorithms::DrawFaceMode2(), TPainter3dAlgorithms::DrawFaceMode3(), TPainter3dAlgorithms::DrawFaceMove1(), TPainter3dAlgorithms::DrawFaceMove2(), TPainter3dAlgorithms::DrawFaceMove3(), TPainter3dAlgorithms::DrawFaceRaster1(), TPainter3dAlgorithms::DrawFaceRaster2(), TPadPainter::DrawFillArea(), TGWin32::DrawFillArea(), TGLPadPainter::DrawFillArea(), TPad::DrawFrame(), TPostScript::DrawFrame(), TPDF::DrawFrame(), TSVG::DrawFrame(), Rgl::Pad::MarkerPainter::DrawFullDotLarge(), Rgl::Pad::MarkerPainter::DrawFullDotMedium(), Rgl::Pad::MarkerPainter::DrawFullDotSmall(), Rgl::Pad::MarkerPainter::DrawFullSquare(), Rgl::Pad::MarkerPainter::DrawFullStar(), Rgl::Pad::MarkerPainter::DrawFullTrianlgeDown(), Rgl::Pad::MarkerPainter::DrawFullTrianlgeUp(), DrawFunction(), TPie::DrawGhost(), TGuiBldDragManager::DrawGrabRectangles(), TEvePolygonSetProjectedGL::DrawHighlight(), TGLLogicalShape::DrawHighlight(), HistAction::drawHist(), TEveCaloLegoGL::DrawHistBase(), RooStats::MCMCIntervalPlot::DrawHistInterval(), TGLLegoPainter::DrawLegoCartesian(), TGLLegoPainter::DrawLegoCylindrical(), TGLLegoPainter::DrawLegoPolar(), TGLLegoPainter::DrawLegoSpherical(), TGWin32::DrawLine(), Rgl::DrawMapleMesh(), Rgl::DrawMesh(), RooStats::MCMCIntervalPlot::DrawNLLHist(), RooStats::MCMCIntervalPlot::DrawNLLVsTime(), TStructViewerGUI::DrawNode(), TGLUtil::DrawNumber(), Rgl::Pad::MarkerPainter::DrawOpenStar(), TEvePolygonSetProjectedGL::DrawOutline(), TGeoNode::DrawOverlaps(), Rgl::DrawPalette(), RooStats::MCMCIntervalPlot::DrawParameterVsTime(), TLatex::DrawParenthesis(), TGLSurfacePainter::DrawPlot(), TGLParametricPlot::DrawPlot(), TGLBoxPainter::DrawPlot(), TGLTH3CompositionPainter::DrawPlot(), Rgl::Pad::MarkerPainter::DrawPlus(), TSpider::DrawPoly(), TPostScript::DrawPolyLine(), TPolyLine3D::DrawPolyLine(), TPadPainter::DrawPolyLine(), TPDF::DrawPolyLine(), TGX11::DrawPolyLine(), TGWin32::DrawPolyLine(), TGLPadPainter::DrawPolyLine(), TSVG::DrawPolyLine(), TPostScript::DrawPolyLineNDC(), TSVG::DrawPolyLineNDC(), TPDF::DrawPolyLineNDC(), TGLPadPainter::DrawPolyLineNDC(), TPadPainter::DrawPolyLineNDC(), TPDF::DrawPolyMarker(), TGWin32::DrawPolyMarker(), TSVG::DrawPolyMarker(), TGX11::DrawPolyMarker(), TPadPainter::DrawPolyMarker(), TPostScript::DrawPolyMarker(), TImageDump::DrawPolyMarker(), TPolyMarker3D::DrawPolyMarker(), TQtMarker::DrawPolyMarker(), DrawPopulation(), TMVA::Timer::DrawProgressBar(), TGLSurfacePainter::DrawProjections(), TPostScript::DrawPS(), TSVG::DrawPS(), TImageDump::DrawPS(), TPDF::DrawPS(), TGHtml::DrawRect(), TGTextView::DrawRegion(), TMultiLayerPerceptron::DrawResult(), TEveCalo2DGL::DrawRhoZHighlighted(), TEveCalo2DGL::DrawRPhiHighlighted(), TGLPlotPainter::DrawSections(), TGLSurfacePainter::DrawSectionXOY(), TGLLegoPainter::DrawSectionXOZ(), TGLSurfacePainter::DrawSectionXOZ(), TGLLegoPainter::DrawSectionYOZ(), TGLSurfacePainter::DrawSectionYOZ(), TGQt::DrawSegments(), TEveCalo3DGL::DrawSelectedCells(), TEveCaloLegoGL::DrawSelectedCells(), TGLUtil::DrawSimpleAxes(), TGLTH3Slice::DrawSlice(), TGLTH3Slice::DrawSliceTextured(), drawsparse(), Rgl::Pad::MarkerPainter::DrawStar(), TGLPolyMarker::DrawStars(), TGL5DPainter::DrawSubCloud(), RooStats::MCMCIntervalPlot::DrawTailFractionInterval(), TGTextLayout::DrawText(), TGeoManager::DrawTracks(), RooStats::MCMCIntervalPlot::DrawWeightHist(), Rgl::Pad::MarkerPainter::DrawX(), TBranch::DropBaskets(), TTree::DropBaskets(), TTree::DropBuffers(), drr_map_args2(), ROOT::Math::SDeterminant< n, idim >::Dsfact(), ROOT::Math::SInverter< T, n, idim >::Dsinv(), XrdSutBucket::Dump(), RooFormula::dump(), TGLBoundingBox::Dump(), XrdSutCache::Dump(), RooTrace::dump(), RooDataHist::dump2(), dump_fontinfo(), DumpExternals(), DumpExternalsObjects(), TEvePolygonSetProjected::DumpPolys(), XrdProofdProofServ::DumpQueries(), XrdProofSched::DumpQueues(), TRecorderInactive::DumpRootEvent(), TEveGeoShape::DumpShapeTree(), TEveGeoNode::DumpShapeTree(), DumpSymbolTable(), DynamicSlice(), ed_insert(), RootCsg::TConnectedMeshWrapper< TMesh >::EdgePolygons(), EGifCompressLine(), EGifPutImageDesc(), EGifPutLine(), EGifPutScreenDesc(), ROOT::Minuit2::eigenvalues(), el_get(), el_parse(), el_set(), TEveTrackPropagator::ElementChanged(), ElementDiv(), ElementMult(), ROOT::Minuit2::FumiliStandardChi2FCN::Elements(), ROOT::Minuit2::FumiliStandardMaximumLikelihoodFCN::Elements(), EliminateGarbage(), elliptic_boxset_cones(), em_undo(), emit_dac(), emit_dht(), emit_dqt(), emit_sos(), TMemStat::EnabledCode(), TEveElement::EnableListElements(), TMD5::Encode(), encode_image_scanline_asim(), encode_image_scanline_xim(), encode_one_block(), TGHtml::EncodeText(), TGenericTable::end(), TIndexTable::end(), TTableDescriptor::end(), TGLScene::EndSmartRefresh(), MySimAnFunc::Energy(), TGLFaceSet::EnforceTriangles(), TSpectrumTransform::Enhance(), TSpectrum2Transform::Enhance(), enlarge_component(), enlarge_component12(), enlarge_component23(), enlarge_component_dumb(), TEntryList::Enter(), TEntryListBlock::Enter(), TTable::EntryLoop(), TMemStatStackInfo::Equal(), equals(), TMVA::BinarySearchTreeNode::EqualsMe(), CurrentPiece::Erase(), XrdClientUrlSet::EraseUrl(), XrdSecProtocolgsi::ErrF(), ErrorBand(), TUnfold::ErrorMatrixToHist(), TMVA::RuleFitParams::ErrorRateBin(), TMVA::RuleFitParams::ErrorRateReg(), TMVA::RuleFitParams::ErrorRateRoc(), TMVA::RuleFitParams::ErrorRateRocRaw(), TMVA::RuleFitParams::ErrorRateRocTst(), ROOT::Minuit2::Minuit2Minimizer::Errors(), TClass::EscapeChars(), XrdClientMStream::EstablishParallelStreams(), TMultiDimFit::Eval(), TLinearFitter::Eval(), TGraph::Eval(), RooFunctor::eval(), TMultiDimFit::EvalError(), TMVA::RuleEnsemble::EvalEvent(), TRolke::EvalMonomial(), TFormula::EvalParOld(), TRolke::EvalPolynomial(), TLinearFitter::EvalRobust(), RooParametricStepFunction::evaluate(), PiecewiseInterpolation::evaluate(), RooKeysPdf::evaluate(), RooAddPdf::evaluate(), ROOT::Math::RetrieveMatrix< T, D1, D2, D3, D4, MatRepSym< T, D1 >, MatRepSym< T, D3 > >::Evaluate(), RooStepFunction::evaluate(), ROOT::Math::MinusEquals< T, D1, D2, A, R1, R2 >::Evaluate(), ROOT::Math::PlaceMatrix< T, D1, D2, D3, D4, R1, R2 >::Evaluate(), ROOT::Math::PlaceExpr< T, D1, D2, D3, D4, A, R1, R2 >::Evaluate(), RooMultiBinomial::evaluate(), TMVA::SVKernelFunction::Evaluate(), RooBernstein::evaluate(), ROOT::Math::AssignItr< T, D1, D2, R >::Evaluate(), RooTFnBinding::evaluate(), ROOT::Math::Assign< T, D1, D2, A, MatRepSym< T, D1 >, MatRepSym< T, D1 > >::Evaluate(), ROOT::Math::PlaceMatrix< T, D1, D2, D3, D4, MatRepSym< T, D1 >, MatRepSym< T, D3 > >::Evaluate(), TMultiLayerPerceptron::Evaluate(), ROOT::Math::PlusEquals< T, D1, D2, A, MatRepSym< T, D1 >, MatRepSym< T, D1 > >::Evaluate(), ROOT::Math::PlaceExpr< T, D1, D2, D3, D4, A, MatRepSym< T, D1 >, MatRepSym< T, D3 > >::Evaluate(), RooFunctorBinding::evaluate(), RooNonCentralChiSquare::evaluate(), ROOT::Math::PlusEquals< T, D1, D2, A, R1, R2 >::Evaluate(), RooAddModel::evaluate(), ROOT::Math::MinusEquals< T, D1, D2, A, MatRepSym< T, D1 >, MatRepSym< T, D1 > >::Evaluate(), ROOT::Math::AssignItr< T, D1, D2, MatRepSym< T, D1 > >::Evaluate(), TRobustEstimator::Evaluate(), RooFunctorPdfBinding::evaluate(), ROOT::Math::AssignSym::Evaluate(), RooAbsTestStatistic::evaluate(), RooMultiVarGaussian::evaluate(), BinCountTestStat::Evaluate(), ROOT::Math::Assign< T, D1, D2, A, R1, R2 >::Evaluate(), ROOT::Math::RetrieveMatrix< T, D1, D2, D3, D4, R1, R2 >::Evaluate(), ROOT::Minuit2::FumiliStandardMaximumLikelihoodFCN::EvaluateAll(), ROOT::Minuit2::FumiliFCNAdapter< Function >::EvaluateAll(), ROOT::Minuit2::FumiliStandardChi2FCN::EvaluateAll(), TMVA::Factory::EvaluateAllMethods(), TMVA::Factory::EvaluateAllVariables(), TMVA::RuleFitParams::EvaluateAverage(), ROOT::Fit::FitUtil::EvaluateChi2(), ROOT::Fit::FitUtil::EvaluateChi2Effective(), ROOT::Fit::FitUtil::EvaluateChi2Gradient(), FTContour::evaluateCubicCurve(), RooKeysPdf::evaluateFull(), ROOT::Fit::FitUtil::EvaluateLogL(), ROOT::Fit::FitUtil::EvaluateLogLGradient(), RooDataWeightedAverage::evaluatePartition(), RooChi2Var::evaluatePartition(), RooXYChi2Var::evaluatePartition(), RooNLLVar::evaluatePartition(), ROOT::Fit::FitUtil::EvaluatePoissonLogL(), ROOT::Fit::FitUtil::EvaluatePoissonLogLGradient(), FTContour::evaluateQuadraticCurve(), TRobustEstimator::EvaluateUni(), EventInfo(), TMemStatShow::EventInfo1(), TRobustEstimator::Exact(), TRobustEstimator::Exact2(), exactIntegral(), TFitterMinuit::ExamineMinimum(), ROOT::Minuit2::Minuit2Minimizer::ExamineMinimum(), exampleFit3D(), exampleTKDE(), exclusiongraph(), XSReactionDlg::ExecCommand(), TPython::ExecScript(), ApplicationWindow::execute(), TFitterMinuit::ExecuteCommand(), TFumili::ExecuteCommand(), TBackCompFitter::ExecuteCommand(), executeDirList(), executeDirListRec(), TTreeViewer::ExecuteDraw(), TEllipse::ExecuteEvent(), TGraphEdge::ExecuteEvent(), TAxis3D::ExecuteEvent(), TCurlyArc::ExecuteEvent(), TDiamond::ExecuteEvent(), TPolyLine::ExecuteEvent(), TGraphPainter::ExecuteEventHelper(), TQSlot::ExecuteMethod(), TFumili::ExecuteSetCommand(), TTreeViewer::ExecuteSpider(), ExecuteTest(), TClonesArray::Expand(), XrdCmsNash::Expand(), XrdOfsHanTab::Expand(), RooNormSetCache::expand(), TExMap::Expand(), TObjectTable::Expand(), TStackTable::Expand(), TEmulatedCollectionProxy::Expand(), TBranch::ExpandBasketArrays(), TGTable::ExpandColumns(), TDocParser::ExpandCPPLine(), TClonesArray::ExpandCreate(), TEveElement::ExpandIntoListTree(), TEveGeoNode::ExpandIntoListTrees(), TEveGeoNode::ExpandIntoListTreesRecursively(), TGTable::ExpandRows(), TMultiLayerPerceptron::ExpandStructure(), RooAddPdf::expectedEvents(), TMVA::PDEFoam::Explore(), TFoam::Explore(), ROOT::Math::expm1(), TMultiLayerPerceptron::Export(), TLeafB::Export(), TLeafC::Export(), TLeafD::Export(), TLeafS::Export(), TLeafO::Export(), TLeafI::Export(), TLeafL::Export(), TLeafF::Export(), TGeoElementTable::ExportElementsRN(), TAlienCollection::ExportXML(), ExpPuk(), RooSimultaneous::extendMode(), extmatch(), RootCsg::extract_classification(), TODBCStatement::ExtractErrors(), TODBCServer::ExtractErrors(), RooIntegrator1D::extrapolate(), ROOT::Math::GSLMultiFitFunctionAdapter< FuncVector >::F(), f2cstrv(), TDecompSparse::Factor(), TDecompSparse::Factor_sub1(), TDecompSparse::Factor_sub2(), fast_output_filter(), XrdSecProtocolkrb4::Fatal(), XrdSecProtocolkrb5::Fatal(), XrdSecProtocolssl::Fatal(), fcn(), fcnk0(), fdefined(), ROOT::Math::LSResidualFunc::FdF(), ROOT::Math::GSLMultiFitFunctionAdapter< FuncVector >::FDf(), ROOT::TCollectionProxyInfo::Pushback< T >::feed(), Reflex::Insert< T >::feed(), Reflex::MapInsert< T >::feed(), ROOT::TCollectionProxyInfo::Insert< T >::feed(), ROOT::TCollectionProxyInfo::Pushback< ROOT::TStdBitsetHelper< Bitset_t > >::feed(), ROOT::TCollectionProxyInfo::MapInsert< T >::feed(), Reflex::Pushback< StdBitSetHelper< Bitset_t > >::feed(), Reflex::Pushback< T >::feed(), ROOT::TCollectionProxyInfo::Pushback< std::vector< bool > >::feed(), Rgl::Fgt::TKDEAdapter::FetchDensities(), FFT(), TVirtualFFT::FFT(), file2ASImage(), TBranchSTL::Fill(), TTreeSQL::Fill(), Roo1DTable::fill(), TNtuple::Fill(), TBranchElement::Fill(), TTree::Fill(), Tester::Fill(), TAlienDirectory::Fill(), TNtupleD::Fill(), TBranchObject::Fill(), TBranchClones::Fill(), fill_container(), TLeafL::FillBasket(), TLeafI::FillBasket(), TLeafS::FillBasket(), TLeafB::FillBasket(), TMVA::PDEFoamDistr::FillBinarySearchTree(), TKDTreeBinning::FillBinData(), TMemStatShow::FillBTString(), TString::FillBuffer(), TDirectoryFile::FillBuffer(), TTreeCacheUnzip::FillBuffer(), TTreeCache::FillBuffer(), TStringLong::FillBuffer(), TUUID::FillBuffer(), TEveGeoPolyShape::FillBuffer3D(), RooFFTConvPdf::fillCacheSlice(), FillCArray(), TMVA::RuleFitParams::FillCoefficients(), FillColorsMap(), RooFitResult::fillCorrMatrix(), TSVDUnfold::FillCurvatureMatrix(), ROOT::Fit::FillData(), RooAbsReal::fillDataHist(), TFitEditor::FillDataSetList(), FillHisto(), fillHisto(), RooAbsData::fillHistogram(), TEveCompound::FillImpliedSelectedSet(), TEveCaloData::FillImpliedSelectedSet(), TTableSorter::FillIndexArray(), TBranch::FillLeaves(), RooFitResult::fillLegacyCorrMatrix(), TGeoMixture::FillMaterialEvolution(), FillMatrix(), FillMatrixSym(), TProfile::FillN(), TH2Poly::FillN(), TH1::FillN(), TH2::FillN(), TGHtml::FillOutBlock(), fillpatterns(), TEveTrackPropagator::FillPointSet(), TGQt::FillPolygon(), TPainter3dAlgorithms::FillPolygon(), TPainter3dAlgorithms::FillPolygonBorder(), TH1::FillRandom(), fillRandomMat(), fillRandomSym(), fillRandomVec(), fillSparse(), fillTree(), FillUnBinData(), FillVariableRange(), FillX3DBuffer(), TSPlot::FillXvarHists(), TSPlot::FillYpdfHists(), TSPlot::FillYvarHists(), PyROOT::TSetItemHolder< T, M >::FilterArgs(), PyROOT::TFunctionHolder< T, M >::FilterArgs(), TEveProjectionAxesGL::FilterOverlappingLabels(), TSpectrum2Transform::FilterZonal(), TSpectrumTransform::FilterZonal(), TQWidgetCollection::find(), XrdOucString::find(), XrdLink::Find(), XrdOucTable< XrdXrootdJob2Do >::Find(), find_best_colors(), find_biggest_color_pop(), find_biggest_volume(), find_envvar(), find_nearby_colors(), BinomialNeymanInterval< FeldmanCousinsSorter >::Find_rho_set(), FindAxisRange(), TGX11::FindBestVisual(), findBin(), TQpVar::FindBlockingSub(), TBranchElement::FindBranch(), TBranch::FindBranch(), TGTable::FindCell(), TEveElement::FindChild(), TEveElement::FindChildren(), TClassTree::FindClass(), TClassTree::FindClassesUsedBy(), TClassTree::FindClassesUsing(), TGWin32::FindColor(), TGX11::FindColor(), TImagePalette::FindColor(), RooObjCacheManager::findConstantNodes(), RooAbsArg::findConstantNodes(), TEveShape::FindConvexHull(), ROOT::Minuit2::MnMinos::FindCrossValue(), TMethod::FindDataMember(), TSystemDirectory::FindDirObj(), TGeoManager::FindDuplicateMaterial(), TZIPFile::FindEndHeader(), XrdOssSpace::findEnt(), TWinNTSystem::FindFile(), TSystemDirectory::FindFileObj(), FindFonts(), TFormulaPrimitive::FindFormula(), TGLPlotBox::FindFrontPoint(), TGeoNavigator::FindInCluster(), XrdClientReadCache::FindInsertionApprox(), TEveElement::FindItem(), TTreeFormula::FindLeafForExpression(), TPainter3dAlgorithms::FindLevelLines(), TFeldmanCousins::FindLimitsFromTable(), RooHashTable::findLinkTo(), TEveElement::FindListTreeItem(), TGLViewerBase::FindLogicalInScenes(), TGeoVolume::FindMatrixOfDaughterVolume(), FindMin(), TGLIsoPainter::FindMinMax(), TEveTrackList::FindMomentumLimits(), NdbMTReacDesc::FindMT(), TMVA::MethodBoost::FindMVACut(), TKDTree< Index, Value >::FindNearestNeighbors(), TGeoNavigator::FindNextBoundary(), TGeoNavigator::FindNextBoundaryAndStep(), TGeoNavigator::FindNextDaughterBoundary(), ROOT::Math::Polynomial::FindNumRoots(), TObjArray::FindObject(), TView3D::FindPhiSectors(), TEvePolygonSetProjected::Polygon_t::FindPoint(), RooCurve::findPoint(), FindRad(), RooIntegralMorph::MorphCacheElem::findRange(), FindRange(), TBtInnerNode::FindRank(), TBtLeafNode::FindRank(), TBtInnerNode::FindRankUp(), ROOT::Math::Polynomial::FindRealRoots(), TResponseTable::FindResponseLocation(), TGTableLayout::FindRowColSizesInit(), TGX11::FindRWindow(), TGLViewerBase::FindScene(), TView3D::FindScope(), RooHashTable::findSetPair(), TGeoBatemanSol::FindSolution(), TClass::FindStreamerInfo(), TView3D::FindThetaSectors(), TEveTrackList::FindTrackByIndex(), TEveTrackList::FindTrackByLabel(), TVirtualGeoTrack::FindTrackWithId(), TGX11::FindUsableVisual(), TPainter3dAlgorithms::FindVisibleDraw(), TPainter3dAlgorithms::FindVisibleLine(), TGeoManager::FindVolumeFast(), fine_output_filter(), fine_output_filter_mod(), TTreePerfStats::Finish(), RooGrid::firstBox(), TBits::FirstNullBit(), TBits::FirstSetBit(), THnSparse::Fit(), HFit::Fit(), TBinomialEfficiencyFitter::Fit(), fit2d(), fit2DHist(), fit2dHist(), fit3DHist(), RootCsg::fit_bbox(), TSpectrum2Fit::FitAwmi(), TSpectrumFit::FitAwmi(), TFitter::FitChisquare(), TFitter::FitChisquareI(), fitCircle(), TFitter::FitLikelihood(), TFitter::FitLikelihoodI(), fitLinear2(), fitLinearRobust(), fitminuit(), fitMultiGraph(), ROOT::Fit::FitResult::FitResult(), FITS_tutorial3(), fitSparse2D(), TSpectrum2Fit::FitStiefel(), TSpectrumFit::FitStiefel(), FittingDemo(), RooAbsPdf::fitTo(), FitUsingNewFitter(), FitUsingRooFit(), FitUsingRooFit2(), FitUsingTFit(), FitUsingTTreeFit(), ROOT::Minuit2::MnUserParameterState::Fix(), fix_xcf_image_line(), flip_gradient(), TLimit::Fluctuate(), XrdSutCache::Flush(), TXSocket::Flush(), TBranch::FlushBaskets(), XrdMonDecSink::flushClosedDicts(), XrdMonDecSink::flushOneDMap(), XrdMonDecSink::flushOneUMap(), XrdMonDecSink::flushTCache(), XrdMonDecSink::flushUserCache(), XrdOfs::Fname(), fnt_face_get_dll_font(), FoamDistribution::FoamDistribution(), TPDF::FontEncode(), TMVA::MethodANNBase::ForceNetworkCalculations(), TPythia6Decayer::ForceParticleDecay(), TMVA::RuleFit::ForestStatistics(), forget_types(), XrdProofdAux::Form(), XrdMpxXml::Format(), forward_DCT(), forward_DCT_float(), TBtLeafNode::Found(), TBtInnerNode::Found(), TSpectrum2Transform::FourCos2(), TSpectrumTransform::Fourier(), TSpectrum2Transform::Fourier(), RooStats::HLFactory::fReadFile(), UnitTesting::UnitTestSuite::free(), free_colors(), free_xcf_image(), TGFontPool::FreeAttributeInfo(), XrdProofdProofServ::FreeClientID(), TGFontPool::FreeFontFamilies(), TMemStatManager::FreeHashtable(), TMemStatManager::FreePointer(), TMemHashTable::FreePointer(), frombuf(), TPainter3dAlgorithms::FrontBox(), XrdOfs::fsctl(), TMVA::LDA::FSub(), ft_bitmap_assure_buffer(), FT_Bitmap_Convert(), FT_Bitmap_Embolden(), ft_div64by32(), FT_Raccess_Get_DataOffsets(), FT_Raccess_Get_HeaderInfo(), ft_trig_pseudo_polarize(), ft_trig_pseudo_rotate(), FTC_Cache_Clear(), FTC_Cache_RemoveFaceID(), ROOT::Minuit2::FumiliStandardChi2FCN::FumiliStandardChi2FCN(), ROOT::Minuit2::FumiliStandardMaximumLikelihoodFCN::FumiliStandardMaximumLikelihoodFCN(), funD(), funF(), funI(), funObject(), funS(), Roo2DKeysPdf::g(), RooKeysPdf::g(), G__G__ASImage_147_0_138(), G__G__ASImage_150_0_19(), G__G__ASImage_151_0_16(), G__G__ASImageGui_232_0_28(), G__G__Base1_114_0_26(), G__G__Base1_116_0_73(), G__G__Base1_119_0_16(), G__G__Base1_120_0_41(), G__G__Base1_121_0_27(), G__G__Base1_122_0_26(), G__G__Base1_123_0_28(), G__G__Base1_125_0_27(), G__G__Base1_127_0_53(), G__G__Base1_128_0_32(), G__G__Base1_12_0_3(), G__G__Base1_131_0_25(), G__G__Base1_133_0_38(), G__G__Base1_134_0_50(), G__G__Base1_137_0_31(), G__G__Base1_147_0_45(), G__G__Base1_150_0_67(), G__G__Base1_152_0_20(), G__G__Base1_154_0_191(), G__G__Base1_159_0_25(), G__G__Base1_160_0_45(), G__G__Base1_178_0_36(), G__G__Base1_183_0_24(), G__G__Base1_189_0_18(), G__G__Base1_190_0_24(), G__G__Base1_257_0_30(), G__G__Base1_284_0_252(), G__G__Base1_293_0_41(), G__G__Base1_311_0_31(), G__G__Base1_318_0_17(), G__G__Base1_319_0_14(), G__G__Base1_320_0_36(), G__G__Base1_323_0_20(), G__G__Base1_324_0_40(), G__G__Base1_327_0_228(), G__G__Base1_339_0_59(), G__G__Base1_342_0_39(), G__G__Base1_77_0_49(), G__G__Base1_7_0_224(), G__G__Base1_8_0_101(), G__G__Base2_102_0_24(), G__G__Base2_103_0_29(), G__G__Base2_104_0_20(), G__G__Base2_106_0_15(), G__G__Base2_107_0_25(), G__G__Base2_10_0_92(), G__G__Base2_110_0_30(), G__G__Base2_111_0_64(), G__G__Base2_112_0_20(), G__G__Base2_115_0_24(), G__G__Base2_11_0_33(), G__G__Base2_129_0_27(), G__G__Base2_13_0_157(), G__G__Base2_173_0_37(), G__G__Base2_187_0_20(), G__G__Base2_188_0_36(), G__G__Base2_191_0_27(), G__G__Base2_192_0_30(), G__G__Base2_193_0_29(), G__G__Base2_194_0_28(), G__G__Base2_197_0_25(), G__G__Base2_199_0_10(), G__G__Base2_202_0_31(), G__G__Base2_203_0_17(), G__G__Base2_207_0_22(), G__G__Base2_231_0_16(), G__G__Base2_233_0_54(), G__G__Base2_234_0_29(), G__G__Base2_236_0_28(), G__G__Base2_239_0_34(), G__G__Base2_241_0_36(), G__G__Base2_242_0_191(), G__G__Base2_253_0_30(), G__G__Base2_254_0_17(), G__G__Base2_255_0_15(), G__G__Base2_256_0_26(), G__G__Base2_261_0_18(), G__G__Base2_263_0_26(), G__G__Base2_272_0_3(), G__G__Base2_273_0_3(), G__G__Base2_274_0_15(), G__G__Base2_275_0_15(), G__G__Base2_276_0_15(), G__G__Base2_277_0_15(), G__G__Base2_278_0_4(), G__G__Base2_279_0_16(), G__G__Base2_282_0_27(), G__G__Base2_288_0_153(), G__G__Base2_291_0_35(), G__G__Base2_344_0_30(), G__G__Base2_345_0_17(), G__G__Base2_346_0_15(), G__G__Base2_53_0_80(), G__G__Base2_65_0_16(), G__G__Base2_73_0_41(), G__G__Base2_80_0_43(), G__G__Base2_86_0_38(), G__G__Base2_99_0_8(), G__G__Base2_9_0_23(), G__G__Base3_103_0_3(), G__G__Base3_104_0_3(), G__G__Base3_105_0_3(), G__G__Base3_108_0_3(), G__G__Base3_109_0_3(), G__G__Base3_110_0_3(), G__G__Base3_112_0_3(), G__G__Base3_113_0_3(), G__G__Base3_114_0_3(), G__G__Base3_122_0_3(), G__G__Base3_123_0_21(), G__G__Base3_124_0_51(), G__G__Base3_125_0_16(), G__G__Base3_127_0_24(), G__G__Base3_156_0_18(), G__G__Base3_171_0_47(), G__G__Base3_173_0_30(), G__G__Base3_182_0_33(), G__G__Base3_183_0_39(), G__G__Base3_186_0_47(), G__G__Base3_231_0_15(), G__G__Base3_232_0_30(), G__G__Base3_233_0_21(), G__G__Base3_234_0_19(), G__G__Base3_235_0_18(), G__G__Base3_236_0_83(), G__G__Base3_237_0_20(), G__G__Base3_238_0_18(), G__G__Base3_239_0_5(), G__G__Base3_240_0_5(), G__G__Base3_241_0_5(), G__G__Base3_242_0_5(), G__G__Base3_243_0_5(), G__G__Base3_244_0_5(), G__G__Base3_245_0_5(), G__G__Base3_246_0_5(), G__G__Base3_247_0_5(), G__G__Base3_248_0_5(), G__G__Base3_249_0_5(), G__G__Base3_250_0_5(), G__G__Base3_251_0_5(), G__G__Base3_252_0_5(), G__G__Base3_253_0_5(), G__G__Base3_254_0_5(), G__G__Base3_255_0_5(), G__G__Base3_256_0_5(), G__G__Base3_257_0_5(), G__G__Base3_258_0_5(), G__G__Base3_259_0_5(), G__G__Base3_260_0_5(), G__G__Base3_261_0_5(), G__G__Base3_262_0_5(), G__G__Base3_263_0_5(), G__G__Base3_264_0_5(), G__G__Base3_265_0_5(), G__G__Base3_266_0_5(), G__G__Base3_267_0_5(), G__G__Base3_268_0_5(), G__G__Base3_269_0_5(), G__G__Base3_270_0_5(), G__G__Base3_271_0_5(), G__G__Base3_272_0_5(), G__G__Base3_273_0_5(), G__G__Base3_274_0_5(), G__G__Base3_275_0_5(), G__G__Base3_276_0_5(), G__G__Base3_277_0_5(), G__G__Base3_278_0_5(), G__G__Base3_279_0_5(), G__G__Base3_280_0_5(), G__G__Base3_281_0_5(), G__G__Base3_282_0_5(), G__G__Base3_283_0_5(), G__G__Base3_284_0_5(), G__G__Base3_285_0_5(), G__G__Base3_286_0_5(), G__G__Base3_287_0_5(), G__G__Base3_288_0_5(), G__G__Base3_289_0_5(), G__G__Base3_290_0_5(), G__G__Base3_291_0_5(), G__G__Base3_292_0_5(), G__G__Base3_293_0_5(), G__G__Base3_294_0_5(), G__G__Base3_295_0_5(), G__G__Base3_296_0_5(), G__G__Base3_297_0_5(), G__G__Base3_298_0_5(), G__G__Base3_299_0_5(), G__G__Base3_300_0_5(), G__G__Base3_301_0_5(), G__G__Base3_302_0_5(), G__G__Base3_303_0_5(), G__G__Base3_304_0_5(), G__G__Base3_305_0_5(), G__G__Base3_306_0_5(), G__G__Base3_307_0_5(), G__G__Base3_308_0_5(), G__G__Base3_309_0_19(), G__G__Base3_310_0_19(), G__G__Base3_311_0_19(), G__G__Base3_312_0_19(), G__G__Base3_313_0_19(), G__G__Clarens_100_0_20(), G__G__Clarens_101_0_20(), G__G__Clarens_102_0_18(), G__G__Clarens_104_0_19(), G__G__Clarens_105_0_23(), G__G__Clarens_106_0_23(), G__G__Clarens_107_0_17(), G__G__Clarens_135_0_16(), G__G__Clarens_136_0_16(), G__G__Clarens_99_0_18(), G__G__Cont_100_0_32(), G__G__Cont_101_0_33(), G__G__Cont_102_0_33(), G__G__Cont_103_0_33(), G__G__Cont_104_0_33(), G__G__Cont_105_0_33(), G__G__Cont_106_0_33(), G__G__Cont_107_0_65(), G__G__Cont_108_0_7(), G__G__Cont_109_0_68(), G__G__Cont_110_0_23(), G__G__Cont_122_0_34(), G__G__Cont_124_0_28(), G__G__Cont_125_0_40(), G__G__Cont_129_0_24(), G__G__Cont_130_0_41(), G__G__Cont_135_0_31(), G__G__Cont_137_0_24(), G__G__Cont_148_0_20(), G__G__Cont_149_0_33(), G__G__Cont_152_0_26(), G__G__Cont_154_0_38(), G__G__Cont_155_0_37(), G__G__Cont_156_0_25(), G__G__Cont_157_0_24(), G__G__Cont_158_0_25(), G__G__Cont_159_0_44(), G__G__Cont_161_0_24(), G__G__Cont_162_0_43(), G__G__Cont_165_0_24(), G__G__Cont_166_0_56(), G__G__Cont_172_0_30(), G__G__Cont_173_0_17(), G__G__Cont_174_0_15(), G__G__Cont_176_0_27(), G__G__Cont_17_0_37(), G__G__Cont_76_0_54(), G__G__Cont_78_0_58(), G__G__Cont_87_0_47(), G__G__Cont_88_0_41(), G__G__Cont_99_0_25(), G__G__EG_113_0_32(), G__G__EG_122_0_21(), G__G__EG_123_0_44(), G__G__EG_124_0_23(), G__G__EG_126_0_32(), G__G__EG_129_0_77(), G__G__EG_130_0_36(), G__G__EG_176_0_37(), G__G__EG_177_0_22(), G__G__Eve1_131_0_197(), G__G__Eve1_132_0_31(), G__G__Eve1_133_0_19(), G__G__Eve1_134_0_16(), G__G__Eve1_135_0_16(), G__G__Eve1_136_0_19(), G__G__Eve1_137_0_19(), G__G__Eve1_147_0_61(), G__G__Eve1_148_0_26(), G__G__Eve1_149_0_37(), G__G__Eve1_150_0_29(), G__G__Eve1_156_0_21(), G__G__Eve1_157_0_12(), G__G__Eve1_167_0_26(), G__G__Eve1_168_0_107(), G__G__Eve1_170_0_83(), G__G__Eve1_171_0_19(), G__G__Eve1_179_0_38(), G__G__Eve1_180_0_12(), G__G__Eve1_185_0_22(), G__G__Eve1_186_0_27(), G__G__Eve1_187_0_18(), G__G__Eve1_320_0_29(), G__G__Eve1_321_0_41(), G__G__Eve1_322_0_27(), G__G__Eve1_323_0_26(), G__G__Eve1_326_0_30(), G__G__Eve1_331_0_10(), G__G__Eve1_339_0_19(), G__G__Eve1_349_0_26(), G__G__Eve1_350_0_22(), G__G__Eve1_351_0_24(), G__G__Eve1_377_0_23(), G__G__Eve1_378_0_33(), G__G__Eve1_379_0_32(), G__G__Eve1_380_0_32(), G__G__Eve1_389_0_18(), G__G__Eve1_390_0_17(), G__G__Eve1_393_0_18(), G__G__Eve1_415_0_42(), G__G__Eve1_416_0_31(), G__G__Eve1_417_0_38(), G__G__Eve1_418_0_32(), G__G__Eve1_419_0_21(), G__G__Eve1_420_0_33(), G__G__Eve1_421_0_16(), G__G__Eve1_422_0_15(), G__G__Eve1_427_0_18(), G__G__Eve1_428_0_26(), G__G__Eve1_429_0_21(), G__G__Eve1_430_0_4(), G__G__Eve1_435_0_4(), G__G__Eve1_440_0_4(), G__G__Eve1_454_0_28(), G__G__Eve1_455_0_21(), G__G__Eve1_566_0_26(), G__G__Eve1_571_0_26(), G__G__Eve1_573_0_53(), G__G__Eve1_574_0_52(), G__G__Eve1_575_0_24(), G__G__Eve1_576_0_22(), G__G__Eve1_577_0_43(), G__G__Eve1_578_0_42(), G__G__Eve1_582_0_16(), G__G__Eve1_584_0_30(), G__G__Eve1_585_0_17(), G__G__Eve1_587_0_26(), G__G__Eve1_588_0_18(), G__G__Eve1_589_0_18(), G__G__Eve1_592_0_24(), G__G__Eve1_601_0_17(), G__G__Eve1_648_0_18(), G__G__Eve1_649_0_30(), G__G__Eve1_650_0_18(), G__G__Eve1_652_0_19(), G__G__Eve1_654_0_19(), G__G__Eve1_663_0_17(), G__G__Eve1_664_0_15(), G__G__Eve1_665_0_15(), G__G__Eve1_666_0_16(), G__G__Eve1_667_0_15(), G__G__Eve1_668_0_15(), G__G__Eve1_669_0_15(), G__G__Eve1_670_0_15(), G__G__Eve1_718_0_24(), G__G__Eve1_719_0_53(), G__G__Eve1_720_0_23(), G__G__Eve1_721_0_18(), G__G__Eve1_723_0_25(), G__G__Eve1_724_0_20(), G__G__Eve1_726_0_30(), G__G__Eve1_727_0_23(), G__G__Eve1_728_0_17(), G__G__Eve1_729_0_20(), G__G__Eve1_732_0_19(), G__G__Eve1_733_0_18(), G__G__Eve1_734_0_22(), G__G__Eve2_230_0_29(), G__G__Eve2_232_0_21(), G__G__Eve2_316_0_19(), G__G__Eve2_383_0_22(), G__G__Eve2_384_0_23(), G__G__Eve2_385_0_24(), G__G__Eve2_386_0_22(), G__G__Eve2_390_0_37(), G__G__Eve2_391_0_21(), G__G__Eve2_396_0_42(), G__G__Eve2_397_0_18(), G__G__Eve2_399_0_65(), G__G__Eve2_400_0_17(), G__G__Eve2_401_0_27(), G__G__Eve2_419_0_65(), G__G__Eve2_420_0_21(), G__G__Eve2_421_0_22(), G__G__Eve2_425_0_34(), G__G__Eve2_426_0_28(), G__G__Eve2_436_0_51(), G__G__Eve2_437_0_16(), G__G__Eve2_461_0_30(), G__G__Eve2_466_0_25(), G__G__Eve2_478_0_69(), G__G__Eve2_479_0_27(), G__G__Eve2_480_0_28(), G__G__Eve2_481_0_32(), G__G__Eve2_482_0_25(), G__G__Eve2_483_0_30(), G__G__Eve2_488_0_53(), G__G__Eve2_489_0_41(), G__G__Eve2_490_0_35(), G__G__Eve2_499_0_30(), G__G__Eve2_561_0_18(), G__G__Eve2_563_0_41(), G__G__Eve2_564_0_32(), G__G__Eve2_565_0_21(), G__G__Eve2_566_0_20(), G__G__Eve2_572_0_36(), G__G__Eve2_573_0_33(), G__G__Eve2_574_0_21(), G__G__Eve2_583_0_21(), G__G__Eve2_586_0_37(), G__G__Eve2_587_0_20(), G__G__Eve2_588_0_17(), G__G__Eve2_593_0_22(), G__G__Eve2_595_0_36(), G__G__Eve2_596_0_20(), G__G__Eve2_598_0_18(), G__G__Eve2_622_0_46(), G__G__Eve2_623_0_37(), G__G__Eve2_624_0_18(), G__G__Eve2_625_0_21(), G__G__Eve2_626_0_20(), G__G__Eve2_627_0_30(), G__G__Eve2_628_0_21(), G__G__Eve2_639_0_37(), G__G__Eve2_640_0_22(), G__G__Eve2_687_0_37(), G__G__Eve2_690_0_20(), G__G__Eve2_691_0_19(), G__G__Eve2_692_0_19(), G__G__Eve2_693_0_24(), G__G__Eve2_695_0_36(), G__G__Eve2_696_0_25(), G__G__Eve2_697_0_19(), G__G__Eve2_698_0_29(), G__G__Eve2_699_0_58(), G__G__Eve2_700_0_60(), G__G__Eve2_701_0_18(), G__G__Eve2_702_0_23(), G__G__Eve2_703_0_21(), G__G__Eve2_710_0_85(), G__G__Eve2_719_0_25(), G__G__Eve2_720_0_18(), G__G__Eve2_721_0_22(), G__G__Eve2_725_0_18(), G__G__Eve2_726_0_19(), G__G__Eve2_727_0_17(), G__G__Eve2_728_0_17(), G__G__Eve2_736_0_33(), G__G__Eve2_737_0_17(), G__G__Eve2_738_0_19(), G__G__Eve2_739_0_29(), G__G__Eve2_740_0_17(), G__G__Eve2_741_0_21(), G__G__Eve2_742_0_22(), G__G__Eve2_747_0_23(), G__G__Eve2_748_0_27(), G__G__Eve2_750_0_20(), G__G__FFTW_112_0_40(), G__G__FFTW_113_0_40(), G__G__FFTW_114_0_40(), G__G__FFTW_115_0_41(), G__G__FitPanel_222_0_17(), G__G__FitPanel_375_0_26(), G__G__FitPanel_381_0_78(), G__G__FitPanel_402_0_30(), G__G__Foam_103_0_29(), G__G__Foam_104_0_42(), G__G__Foam_120_0_15(), G__G__Foam_121_0_21(), G__G__Foam_122_0_68(), G__G__Foam_143_0_12(), G__G__Fumili_119_0_52(), G__G__Fumili_134_0_36(), G__G__G3D_120_0_63(), G__G__G3D_122_0_23(), G__G__G3D_129_0_54(), G__G__G3D_130_0_29(), G__G__G3D_131_0_23(), G__G__G3D_132_0_32(), G__G__G3D_133_0_20(), G__G__G3D_134_0_24(), G__G__G3D_135_0_20(), G__G__G3D_136_0_18(), G__G__G3D_137_0_16(), G__G__G3D_149_0_31(), G__G__G3D_150_0_63(), G__G__G3D_151_0_26(), G__G__G3D_152_0_43(), G__G__G3D_155_0_31(), G__G__G3D_156_0_17(), G__G__G3D_158_0_31(), G__G__G3D_160_0_21(), G__G__G3D_162_0_19(), G__G__G3D_163_0_20(), G__G__G3D_164_0_34(), G__G__G3D_165_0_17(), G__G__G3D_166_0_34(), G__G__G3D_169_0_43(), G__G__G3D_176_0_28(), G__G__G3D_177_0_33(), G__G__G3D_178_0_25(), G__G__G3D_179_0_18(), G__G__G3D_180_0_19(), G__G__G3D_181_0_100(), G__G__G3D_183_0_46(), G__G__Ged_225_0_46(), G__G__Ged_226_0_32(), G__G__Ged_228_0_19(), G__G__Ged_232_0_21(), G__G__Ged_234_0_21(), G__G__Ged_235_0_18(), G__G__Ged_238_0_19(), G__G__Ged_239_0_21(), G__G__Ged_240_0_19(), G__G__Ged_242_0_18(), G__G__Ged_246_0_35(), G__G__Ged_248_0_20(), G__G__Ged_250_0_22(), G__G__Ged_254_0_23(), G__G__Ged_257_0_18(), G__G__Ged_259_0_26(), G__G__Ged_280_0_18(), G__G__Ged_281_0_21(), G__G__Ged_282_0_17(), G__G__Ged_283_0_15(), G__G__Ged_284_0_20(), G__G__Ged_285_0_15(), G__G__Ged_287_0_20(), G__G__Ged_291_0_60(), G__G__Ged_293_0_70(), G__G__Ged_295_0_20(), G__G__Ged_297_0_29(), G__G__Ged_299_0_19(), G__G__Ged_301_0_24(), G__G__Ged_303_0_19(), G__G__Ged_305_0_292(), G__G__Ged_306_0_18(), G__G__Ged_323_0_17(), G__G__Genetic_146_0_3(), G__G__Genetic_147_0_21(), G__G__GenVector32_176_0_24(), G__G__GenVector32_177_0_26(), G__G__GenVector32_178_0_33(), G__G__GenVector32_179_0_33(), G__G__GenVector32_180_0_35(), G__G__GenVector32_181_0_37(), G__G__GenVector32_182_0_37(), G__G__GenVector32_183_0_37(), G__G__GenVector32_184_0_48(), G__G__GenVector32_185_0_48(), G__G__GenVector32_186_0_48(), G__G__GenVector32_187_0_48(), G__G__GenVector32_188_0_44(), G__G__GenVector32_189_0_44(), G__G__GenVector32_190_0_44(), G__G__GenVector32_191_0_44(), G__G__GenVector32_192_0_48(), G__G__GenVector32_193_0_48(), G__G__GenVector32_194_0_48(), G__G__GenVector32_195_0_48(), G__G__GenVector32_196_0_44(), G__G__GenVector32_197_0_44(), G__G__GenVector32_198_0_44(), G__G__GenVector32_199_0_44(), G__G__GenVector32_200_0_53(), G__G__GenVector32_201_0_55(), G__G__GenVector32_202_0_55(), G__G__GenVector32_203_0_57(), G__G__GenVector32_204_0_81(), G__G__GenVector32_205_0_81(), G__G__GenVector32_206_0_81(), G__G__GenVector32_207_0_81(), G__G__GenVector_100_0_3(), G__G__GenVector_101_0_24(), G__G__GenVector_102_0_33(), G__G__GenVector_105_0_26(), G__G__GenVector_106_0_33(), G__G__GenVector_135_0_3(), G__G__GenVector_136_0_3(), G__G__GenVector_137_0_29(), G__G__GenVector_139_0_29(), G__G__GenVector_141_0_35(), G__G__GenVector_142_0_67(), G__G__GenVector_145_0_37(), G__G__GenVector_146_0_63(), G__G__GenVector_149_0_37(), G__G__GenVector_150_0_63(), G__G__GenVector_153_0_37(), G__G__GenVector_154_0_62(), G__G__GenVector_158_0_58(), G__G__GenVector_160_0_58(), G__G__GenVector_162_0_58(), G__G__GenVector_164_0_44(), G__G__GenVector_166_0_53(), G__G__GenVector_167_0_104(), G__G__GenVector_170_0_55(), G__G__GenVector_171_0_94(), G__G__GenVector_172_0_55(), G__G__GenVector_173_0_96(), G__G__GenVector_174_0_57(), G__G__GenVector_175_0_92(), G__G__GenVector_176_0_43(), G__G__GenVector_177_0_35(), G__G__GenVector_178_0_35(), G__G__GenVector_179_0_37(), G__G__GenVector_180_0_21(), G__G__GenVector_181_0_21(), G__G__GenVector_182_0_21(), G__G__GenVector_183_0_38(), G__G__GenVector_188_0_18(), G__G__GenVector_191_0_18(), G__G__GenVector_194_0_18(), G__G__GenVector_197_0_27(), G__G__GenVector_200_0_51(), G__G__GenVector_202_0_20(), G__G__GenVector_203_0_15(), G__G__GenVector_204_0_57(), G__G__GenVector_208_0_30(), G__G__GenVector_212_0_30(), G__G__GenVector_216_0_30(), G__G__GenVector_220_0_30(), G__G__GenVector_224_0_30(), G__G__GenVector_228_0_30(), G__G__Geom1_105_0_82(), G__G__Geom1_106_0_55(), G__G__Geom1_107_0_47(), G__G__Geom1_108_0_39(), G__G__Geom1_110_0_28(), G__G__Geom1_111_0_28(), G__G__Geom1_112_0_28(), G__G__Geom1_137_0_35(), G__G__Geom1_138_0_21(), G__G__Geom1_139_0_36(), G__G__Geom1_141_0_32(), G__G__Geom1_142_0_31(), G__G__Geom1_143_0_48(), G__G__Geom1_146_0_28(), G__G__Geom1_157_0_56(), G__G__Geom1_160_0_40(), G__G__Geom1_161_0_28(), G__G__Geom1_164_0_42(), G__G__Geom1_165_0_53(), G__G__Geom1_166_0_32(), G__G__Geom1_167_0_45(), G__G__Geom1_168_0_25(), G__G__Geom1_169_0_28(), G__G__Geom1_172_0_62(), G__G__Geom1_173_0_144(), G__G__Geom1_177_0_75(), G__G__Geom1_179_0_56(), G__G__Geom1_180_0_322(), G__G__Geom1_182_0_35(), G__G__Geom1_183_0_28(), G__G__Geom1_199_0_23(), G__G__Geom1_200_0_24(), G__G__Geom1_201_0_34(), G__G__Geom1_202_0_18(), G__G__Geom1_204_0_48(), G__G__Geom1_205_0_56(), G__G__Geom1_206_0_51(), G__G__Geom1_207_0_42(), G__G__Geom1_208_0_57(), G__G__Geom1_209_0_58(), G__G__Geom1_210_0_42(), G__G__Geom1_211_0_52(), G__G__Geom1_212_0_57(), G__G__Geom1_213_0_52(), G__G__Geom1_214_0_64(), G__G__Geom1_215_0_55(), G__G__Geom1_216_0_53(), G__G__Geom1_218_0_35(), G__G__Geom1_219_0_23(), G__G__Geom1_220_0_45(), G__G__Geom1_221_0_46(), G__G__Geom1_224_0_115(), G__G__Geom1_225_0_49(), G__G__Geom1_226_0_41(), G__G__Geom1_227_0_24(), G__G__Geom1_228_0_92(), G__G__Geom1_230_0_45(), G__G__Geom1_231_0_36(), G__G__Geom1_232_0_42(), G__G__Geom1_238_0_34(), G__G__Geom1_240_0_59(), G__G__Geom1_243_0_35(), G__G__Geom1_245_0_47(), G__G__Geom1_246_0_39(), G__G__Geom1_247_0_54(), G__G__Geom1_99_0_43(), G__G__Geom2_166_0_39(), G__G__Geom2_174_0_25(), G__G__Geom2_175_0_25(), G__G__Geom2_176_0_25(), G__G__Geom2_177_0_24(), G__G__Geom2_178_0_24(), G__G__Geom2_179_0_24(), G__G__Geom2_180_0_26(), G__G__Geom2_181_0_24(), G__G__Geom2_182_0_25(), G__G__Geom2_183_0_23(), G__G__Geom2_184_0_23(), G__G__Geom2_185_0_23(), G__G__Geom2_186_0_19(), G__G__Geom2_192_0_19(), G__G__Geom2_193_0_53(), G__G__Geom2_194_0_16(), G__G__Geom2_195_0_20(), G__G__Geom2_196_0_23(), G__G__GeomBuilder_233_0_31(), G__G__GeomBuilder_234_0_16(), G__G__GeomBuilder_249_0_41(), G__G__GeomBuilder_251_0_27(), G__G__GeomBuilder_252_0_30(), G__G__GeomBuilder_254_0_26(), G__G__GeomBuilder_258_0_25(), G__G__GeomBuilder_259_0_26(), G__G__GeomBuilder_260_0_29(), G__G__GeomBuilder_261_0_72(), G__G__GeomBuilder_263_0_24(), G__G__GeomBuilder_265_0_21(), G__G__GeomBuilder_266_0_21(), G__G__GeomBuilder_269_0_26(), G__G__GeomBuilder_270_0_21(), G__G__GeomBuilder_272_0_25(), G__G__GeomBuilder_274_0_26(), G__G__GeomBuilder_276_0_27(), G__G__GeomBuilder_278_0_25(), G__G__GeomBuilder_286_0_20(), G__G__GeomBuilder_287_0_23(), G__G__GeomBuilder_288_0_18(), G__G__GeomBuilder_289_0_18(), G__G__GeomBuilder_290_0_18(), G__G__GeomBuilder_291_0_18(), G__G__GeomBuilder_292_0_18(), G__G__GeomBuilder_294_0_29(), G__G__GeomBuilder_296_0_26(), G__G__GeomBuilder_297_0_28(), G__G__GeomBuilder_299_0_27(), G__G__GeomBuilder_301_0_26(), G__G__GeomBuilder_303_0_24(), G__G__GeomBuilder_305_0_26(), G__G__GeomBuilder_306_0_19(), G__G__GeomBuilder_308_0_30(), G__G__GeomBuilder_309_0_18(), G__G__GeomPainter_105_0_46(), G__G__GeomPainter_109_0_43(), G__G__GeomPainter_216_0_101(), G__G__GeomPainter_221_0_42(), G__G__GL_100_0_22(), G__G__GL_102_0_60(), G__G__GL_103_0_82(), G__G__GL_113_0_22(), G__G__GL_114_0_44(), G__G__GL_115_0_22(), G__G__GL_116_0_41(), G__G__GL_117_0_36(), G__G__GL_124_0_57(), G__G__GL_125_0_37(), G__G__GL_126_0_28(), G__G__GL_127_0_65(), G__G__GL_128_0_15(), G__G__GL_129_0_15(), G__G__GL_130_0_15(), G__G__GL_138_0_19(), G__G__GL_143_0_58(), G__G__GL_144_0_17(), G__G__GL_162_0_53(), G__G__GL_163_0_106(), G__G__GL_164_0_37(), G__G__GL_165_0_165(), G__G__GL_166_0_57(), G__G__GL_167_0_59(), G__G__GL_168_0_49(), G__G__GL_205_0_24(), G__G__GL_225_0_29(), G__G__GL_229_0_25(), G__G__GL_230_0_36(), G__G__GL_233_0_24(), G__G__GL_234_0_31(), G__G__GL_235_0_36(), G__G__GL_239_0_28(), G__G__GL_240_0_24(), G__G__GL_243_0_43(), G__G__GL_249_0_21(), G__G__GL_252_0_20(), G__G__GL_351_0_52(), G__G__GL_355_0_28(), G__G__GL_356_0_22(), G__G__GL_357_0_38(), G__G__GL_368_0_27(), G__G__GL_369_0_21(), G__G__GL_370_0_27(), G__G__GL_373_0_16(), G__G__GL_380_0_26(), G__G__GL_381_0_41(), G__G__GL_402_0_58(), G__G__GL_404_0_41(), G__G__GL_408_0_33(), G__G__GL_409_0_23(), G__G__GL_410_0_31(), G__G__GL_412_0_44(), G__G__GL_423_0_17(), G__G__GL_425_0_32(), G__G__GL_427_0_24(), G__G__GL_429_0_34(), G__G__GL_431_0_20(), G__G__GL_433_0_26(), G__G__GL_434_0_25(), G__G__GL_436_0_18(), G__G__GL_437_0_17(), G__G__GL_438_0_39(), G__G__GL_441_0_22(), G__G__GL_442_0_17(), G__G__GL_443_0_29(), G__G__GL_446_0_42(), G__G__GL_457_0_18(), G__G__GL_458_0_24(), G__G__GL_461_0_71(), G__G__GL_472_0_20(), G__G__GL_473_0_23(), G__G__GL_482_0_31(), G__G__GL_489_0_22(), G__G__GL_490_0_32(), G__G__GL_502_0_46(), G__G__GL_503_0_28(), G__G__GL_504_0_18(), G__G__GL_505_0_20(), G__G__GL_506_0_46(), G__G__GL_511_0_18(), G__G__GL_513_0_26(), G__G__GL_516_0_27(), G__G__GL_517_0_27(), G__G__GL_518_0_68(), G__G__GL_542_0_41(), G__G__GL_547_0_41(), G__G__GL_553_0_20(), G__G__GL_554_0_17(), G__G__GL_558_0_31(), G__G__GL_562_0_20(), G__G__GL_578_0_30(), G__G__GL_586_0_15(), G__G__GL_587_0_17(), G__G__GL_591_0_33(), G__G__GL_593_0_24(), G__G__GL_594_0_40(), G__G__GL_595_0_19(), G__G__GL_599_0_20(), G__G__GL_637_0_13(), G__G__GL_647_0_41(), G__G__GL_658_0_18(), G__G__GL_660_0_43(), G__G__GL_688_0_31(), G__G__GL_691_0_33(), G__G__GL_721_0_29(), G__G__GL_728_0_18(), G__G__GL_737_0_19(), G__G__GL_738_0_19(), G__G__GL_739_0_22(), G__G__GL_742_0_36(), G__G__GPad_150_0_97(), G__G__GPad_151_0_135(), G__G__GPad_160_0_236(), G__G__GPad_162_0_34(), G__G__GPad_164_0_41(), G__G__GPad_169_0_41(), G__G__GPad_174_0_31(), G__G__GPad_175_0_23(), G__G__GPad_180_0_33(), G__G__GPad_181_0_21(), G__G__GPad_182_0_34(), G__G__GPad_185_0_58(), G__G__GPad_190_0_26(), G__G__GPad_195_0_28(), G__G__GPad_196_0_20(), G__G__GPad_199_0_25(), G__G__GPad_99_0_30(), G__G__Graf_102_0_42(), G__G__Graf_104_0_19(), G__G__Graf_116_0_39(), G__G__Graf_118_0_34(), G__G__Graf_119_0_31(), G__G__Graf_120_0_16(), G__G__Graf_121_0_20(), G__G__Graf_123_0_39(), G__G__Graf_125_0_22(), G__G__Graf_127_0_44(), G__G__Graf_129_0_39(), G__G__Graf_131_0_33(), G__G__Graf_146_0_30(), G__G__Graf_147_0_48(), G__G__Graf_150_0_39(), G__G__Graf_152_0_45(), G__G__Graf_153_0_21(), G__G__Graf_157_0_30(), G__G__Graf_158_0_23(), G__G__Graf_159_0_67(), G__G__Graf_160_0_66(), G__G__Graf_163_0_29(), G__G__Graf_164_0_27(), G__G__Graf_186_0_101(), G__G__Graf_193_0_17(), G__G__Graf_197_0_37(), G__G__Graf_199_0_27(), G__G__Graf_200_0_49(), G__G__Graf_201_0_17(), G__G__Graf_203_0_33(), G__G__Graf_205_0_25(), G__G__Graf_206_0_39(), G__G__Graf_207_0_21(), G__G__Graf_208_0_23(), G__G__Graf_209_0_74(), G__G__Graf_210_0_21(), G__G__Graf_218_0_40(), G__G__Gui1_115_0_73(), G__G__Gui1_116_0_21(), G__G__Gui1_132_0_54(), G__G__Gui1_134_0_23(), G__G__Gui1_135_0_27(), G__G__Gui1_136_0_26(), G__G__Gui1_137_0_73(), G__G__Gui1_141_0_15(), G__G__Gui1_142_0_16(), G__G__Gui1_160_0_17(), G__G__Gui1_161_0_19(), G__G__Gui1_162_0_19(), G__G__Gui1_163_0_19(), G__G__Gui1_164_0_17(), G__G__Gui1_165_0_27(), G__G__Gui1_177_0_135(), G__G__Gui1_178_0_66(), G__G__Gui1_179_0_30(), G__G__Gui1_180_0_19(), G__G__Gui1_181_0_20(), G__G__Gui1_182_0_19(), G__G__Gui1_183_0_18(), G__G__Gui1_184_0_18(), G__G__Gui1_185_0_18(), G__G__Gui1_186_0_19(), G__G__Gui1_187_0_20(), G__G__Gui1_188_0_17(), G__G__Gui1_189_0_18(), G__G__Gui1_190_0_24(), G__G__Gui1_191_0_20(), G__G__Gui1_202_0_51(), G__G__Gui1_211_0_15(), G__G__Gui1_212_0_15(), G__G__Gui1_213_0_53(), G__G__Gui1_216_0_20(), G__G__Gui1_218_0_35(), G__G__Gui1_220_0_20(), G__G__Gui1_224_0_26(), G__G__Gui1_226_0_31(), G__G__Gui1_228_0_55(), G__G__Gui1_231_0_48(), G__G__Gui1_232_0_73(), G__G__Gui1_233_0_45(), G__G__Gui1_234_0_25(), G__G__Gui1_235_0_35(), G__G__Gui1_236_0_36(), G__G__Gui1_237_0_44(), G__G__Gui1_238_0_24(), G__G__Gui1_240_0_114(), G__G__Gui1_245_0_20(), G__G__Gui1_248_0_35(), G__G__Gui1_249_0_29(), G__G__Gui1_250_0_30(), G__G__Gui1_261_0_20(), G__G__Gui1_262_0_34(), G__G__Gui1_263_0_16(), G__G__Gui1_264_0_16(), G__G__Gui1_265_0_44(), G__G__Gui1_269_0_19(), G__G__Gui1_270_0_20(), G__G__Gui1_276_0_15(), G__G__Gui1_277_0_15(), G__G__Gui1_278_0_15(), G__G__Gui1_283_0_46(), G__G__Gui1_284_0_54(), G__G__Gui1_285_0_18(), G__G__Gui1_287_0_21(), G__G__Gui1_288_0_28(), G__G__Gui1_290_0_17(), G__G__Gui1_292_0_16(), G__G__Gui1_293_0_46(), G__G__Gui2_133_0_60(), G__G__Gui2_138_0_38(), G__G__Gui2_139_0_33(), G__G__Gui2_140_0_24(), G__G__Gui2_169_0_3(), G__G__Gui2_170_0_4(), G__G__Gui2_172_0_23(), G__G__Gui2_202_0_23(), G__G__Gui2_225_0_29(), G__G__Gui2_234_0_20(), G__G__Gui2_235_0_44(), G__G__Gui2_236_0_21(), G__G__Gui2_237_0_21(), G__G__Gui2_238_0_27(), G__G__Gui2_239_0_35(), G__G__Gui2_243_0_42(), G__G__Gui2_244_0_81(), G__G__Gui2_246_0_66(), G__G__Gui2_247_0_21(), G__G__Gui2_248_0_29(), G__G__Gui2_249_0_25(), G__G__Gui2_250_0_22(), G__G__Gui2_251_0_44(), G__G__Gui2_253_0_18(), G__G__Gui2_254_0_55(), G__G__Gui2_255_0_15(), G__G__Gui2_256_0_15(), G__G__Gui2_257_0_14(), G__G__Gui2_258_0_29(), G__G__Gui2_259_0_46(), G__G__Gui2_260_0_19(), G__G__Gui2_263_0_35(), G__G__Gui2_264_0_22(), G__G__Gui2_265_0_22(), G__G__Gui2_267_0_24(), G__G__Gui2_268_0_26(), G__G__Gui2_269_0_26(), G__G__Gui2_271_0_43(), G__G__Gui2_272_0_38(), G__G__Gui2_290_0_31(), G__G__Gui2_293_0_32(), G__G__Gui2_298_0_16(), G__G__Gui2_299_0_5(), G__G__Gui2_300_0_18(), G__G__Gui2_302_0_30(), G__G__Gui2_307_0_3(), G__G__Gui2_308_0_30(), G__G__Gui2_309_0_62(), G__G__Gui2_310_0_146(), G__G__Gui2_311_0_46(), G__G__Gui2_314_0_28(), G__G__Gui2_315_0_48(), G__G__Gui2_325_0_25(), G__G__Gui2_326_0_46(), G__G__Gui2_329_0_83(), G__G__Gui2_330_0_3(), G__G__Gui2_332_0_78(), G__G__Gui2_336_0_21(), G__G__Gui2_337_0_16(), G__G__Gui2_338_0_16(), G__G__Gui2_341_0_32(), G__G__Gui2_342_0_19(), G__G__Gui2_343_0_19(), G__G__Gui2_344_0_24(), G__G__Gui2_347_0_44(), G__G__Gui2_349_0_25(), G__G__Gui2_350_0_33(), G__G__Gui2_356_0_17(), G__G__Gui2_357_0_26(), G__G__Gui2_359_0_20(), G__G__Gui2_360_0_26(), G__G__Gui2_361_0_26(), G__G__Gui3_120_0_23(), G__G__Gui3_123_0_26(), G__G__Gui3_215_0_16(), G__G__Gui3_241_0_36(), G__G__Gui3_242_0_69(), G__G__Gui3_244_0_65(), G__G__Gui3_256_0_70(), G__G__Gui3_268_0_20(), G__G__Gui3_269_0_30(), G__G__Gui3_271_0_25(), G__G__Gui3_273_0_21(), G__G__Gui3_283_0_33(), G__G__Gui3_288_0_31(), G__G__Gui3_289_0_31(), G__G__Gui3_290_0_26(), G__G__Gui3_296_0_20(), G__G__Gui3_297_0_19(), G__G__Gui3_298_0_21(), G__G__Gui3_299_0_30(), G__G__Gui3_301_0_26(), G__G__Gui3_302_0_3(), G__G__Gui3_303_0_17(), G__G__Gui3_304_0_16(), G__G__Gui3_305_0_18(), G__G__Gui3_310_0_21(), G__G__Gui3_311_0_16(), G__G__Gui3_312_0_58(), G__G__Gui3_313_0_26(), G__G__Gui3_314_0_27(), G__G__Gui3_315_0_61(), G__G__Gui3_316_0_15(), G__G__Gui3_318_0_18(), G__G__Gui3_319_0_15(), G__G__Gui3_325_0_35(), G__G__Gui3_326_0_20(), G__G__Gui3_327_0_16(), G__G__Gui3_328_0_16(), G__G__Gui3_329_0_16(), G__G__Gui3_332_0_41(), G__G__Gui3_334_0_15(), G__G__Gui3_335_0_24(), G__G__Gui3_336_0_16(), G__G__Gui3_338_0_18(), G__G__Gui3_358_0_41(), G__G__Gui3_375_0_48(), G__G__Gui3_377_0_24(), G__G__Gui3_378_0_68(), G__G__Gui3_380_0_42(), G__G__Gui3_382_0_26(), G__G__Gui3_384_0_18(), G__G__Gui3_385_0_15(), G__G__Gui3_387_0_17(), G__G__Gui3_388_0_21(), G__G__Gui3_389_0_14(), G__G__Gui3_390_0_17(), G__G__Gui3_391_0_59(), G__G__Gui3_394_0_44(), G__G__Gui3_401_0_18(), G__G__Gui3_409_0_17(), G__G__Gui3_410_0_25(), G__G__Gui3_411_0_49(), G__G__Gui3_412_0_20(), G__G__Gui3_413_0_36(), G__G__GuiBld_223_0_71(), G__G__GuiBld_226_0_32(), G__G__GuiBld_239_0_153(), G__G__GuiBld_243_0_16(), G__G__GuiBld_268_0_20(), G__G__GuiBld_269_0_24(), G__G__GuiBld_272_0_23(), G__G__GuiHtml_227_0_162(), G__G__GuiHtml_228_0_25(), G__G__Gviz3d_229_0_60(), G__G__Gviz3d_230_0_23(), G__G__Gviz3d_235_0_26(), G__G__Gviz3d_467_0_29(), G__G__Gviz3d_468_0_48(), G__G__Hbook_130_0_22(), G__G__Hbook_166_0_40(), G__G__Hbook_167_0_18(), G__G__Hbook_215_0_26(), G__G__Hist_100_0_228(), G__G__Hist_101_0_90(), G__G__Hist_102_0_117(), G__G__Hist_103_0_64(), G__G__Hist_104_0_120(), G__G__Hist_105_0_44(), G__G__Hist_106_0_85(), G__G__Hist_107_0_45(), G__G__Hist_108_0_19(), G__G__Hist_109_0_21(), G__G__Hist_133_0_80(), G__G__Hist_201_0_53(), G__G__Hist_205_0_21(), G__G__Hist_206_0_42(), G__G__Hist_213_0_51(), G__G__Hist_214_0_70(), G__G__Hist_215_0_91(), G__G__Hist_227_0_27(), G__G__Hist_229_0_76(), G__G__Hist_235_0_23(), G__G__Hist_236_0_61(), G__G__Hist_272_0_41(), G__G__Hist_273_0_31(), G__G__Hist_274_0_34(), G__G__Hist_276_0_33(), G__G__Hist_277_0_32(), G__G__Hist_278_0_32(), G__G__Hist_280_0_44(), G__G__Hist_281_0_40(), G__G__Hist_282_0_32(), G__G__Hist_283_0_22(), G__G__Hist_288_0_32(), G__G__Hist_291_0_31(), G__G__Hist_292_0_31(), G__G__Hist_293_0_31(), G__G__Hist_294_0_29(), G__G__Hist_295_0_85(), G__G__Hist_296_0_33(), G__G__Hist_297_0_33(), G__G__Hist_298_0_33(), G__G__Hist_299_0_34(), G__G__Hist_303_0_30(), G__G__Hist_305_0_66(), G__G__Hist_307_0_88(), G__G__Hist_308_0_67(), G__G__Hist_309_0_31(), G__G__Hist_310_0_31(), G__G__Hist_311_0_31(), G__G__Hist_312_0_31(), G__G__Hist_313_0_31(), G__G__Hist_314_0_22(), G__G__Hist_319_0_22(), G__G__Hist_322_0_16(), G__G__Hist_323_0_16(), G__G__Hist_324_0_16(), G__G__Hist_325_0_16(), G__G__Hist_326_0_16(), G__G__Hist_327_0_16(), G__G__Hist_328_0_39(), G__G__Hist_333_0_87(), G__G__Hist_344_0_25(), G__G__Hist_347_0_22(), G__G__Hist_378_0_100(), G__G__Hist_380_0_41(), G__G__Hist_381_0_40(), G__G__Hist_384_0_84(), G__G__Hist_385_0_22(), G__G__Hist_386_0_23(), G__G__Hist_387_0_25(), G__G__Hist_388_0_34(), G__G__Hist_389_0_35(), G__G__Hist_390_0_34(), G__G__Hist_391_0_75(), G__G__Hist_396_0_40(), G__G__Hist_398_0_24(), G__G__Hist_401_0_15(), G__G__Hist_402_0_17(), G__G__Hist_99_0_3(), G__G__HistFactory_143_0_19(), G__G__HistFactory_469_0_33(), G__G__HistFactory_485_0_33(), G__G__HistFactory_542_0_19(), G__G__HistFactory_543_0_25(), G__G__HistPainter_101_0_26(), G__G__HistPainter_105_0_32(), G__G__HistPainter_122_0_83(), G__G__HistPainter_124_0_77(), G__G__HistPainter_136_0_36(), G__G__Html_123_0_33(), G__G__Html_124_0_54(), G__G__Html_125_0_116(), G__G__Html_128_0_52(), G__G__Html_162_0_22(), G__G__Html_170_0_18(), G__G__Html_171_0_20(), G__G__Html_172_0_27(), G__G__Html_195_0_37(), G__G__Html_196_0_20(), G__G__Html_201_0_17(), G__G__Html_202_0_20(), G__G__Html_203_0_16(), G__G__Html_204_0_22(), G__G__Html_205_0_19(), G__G__Html_206_0_17(), G__G__Html_207_0_19(), G__G__Html_208_0_15(), G__G__IO_111_0_143(), G__G__IO_112_0_25(), G__G__IO_113_0_30(), G__G__IO_114_0_89(), G__G__IO_116_0_208(), G__G__IO_172_0_10(), G__G__IO_173_0_41(), G__G__IO_175_0_5(), G__G__IO_177_0_5(), G__G__IO_190_0_27(), G__G__IO_191_0_7(), G__G__IO_192_0_7(), G__G__IO_193_0_4(), G__G__IO_202_0_65(), G__G__IO_204_0_75(), G__G__IO_211_0_12(), G__G__IO_213_0_30(), G__G__IO_214_0_23(), G__G__IO_223_0_26(), G__G__IO_234_0_57(), G__G__IO_235_0_18(), G__G__IO_236_0_17(), G__G__IO_252_0_9(), G__G__IO_261_0_8(), G__G__IO_263_0_20(), G__G__IO_277_0_6(), G__G__IO_278_0_27(), G__G__IO_279_0_25(), G__G__IO_89_0_6(), G__G__IO_91_0_22(), G__G__Krb5Auth_100_0_18(), G__G__Math_101_0_70(), G__G__MathCore_110_0_36(), G__G__MathCore_111_0_26(), G__G__MathCore_112_0_19(), G__G__MathCore_113_0_19(), G__G__MathCore_121_0_72(), G__G__MathCore_122_0_59(), G__G__MathCore_127_0_59(), G__G__MathCore_130_0_47(), G__G__MathCore_132_0_30(), G__G__MathCore_133_0_17(), G__G__MathCore_134_0_15(), G__G__MathCore_171_0_6(), G__G__MathCore_172_0_2(), G__G__MathCore_173_0_6(), G__G__MathCore_174_0_3(), G__G__MathCore_175_0_5(), G__G__MathCore_176_0_7(), G__G__MathCore_177_0_5(), G__G__MathCore_178_0_10(), G__G__MathCore_179_0_4(), G__G__MathCore_180_0_6(), G__G__MathCore_182_0_5(), G__G__MathCore_184_0_9(), G__G__MathCore_185_0_8(), G__G__MathCore_187_0_7(), G__G__MathCore_189_0_10(), G__G__MathCore_191_0_9(), G__G__MathCore_193_0_19(), G__G__MathCore_194_0_45(), G__G__MathCore_195_0_55(), G__G__MathCore_200_0_14(), G__G__MathCore_201_0_24(), G__G__MathCore_202_0_24(), G__G__MathCore_203_0_7(), G__G__MathCore_204_0_11(), G__G__MathCore_205_0_6(), G__G__MathCore_206_0_33(), G__G__MathCore_207_0_20(), G__G__MathCore_208_0_20(), G__G__MathCore_209_0_27(), G__G__MathCore_210_0_5(), G__G__MathCore_211_0_9(), G__G__MathCore_213_0_9(), G__G__MathCore_215_0_19(), G__G__MathCore_218_0_13(), G__G__MathCore_219_0_10(), G__G__MathCore_220_0_13(), G__G__MathCore_224_0_15(), G__G__MathCore_226_0_12(), G__G__MathCore_227_0_18(), G__G__MathCore_228_0_13(), G__G__MathCore_231_0_24(), G__G__MathCore_232_0_34(), G__G__MathCore_237_0_30(), G__G__MathFit_100_0_3(), G__G__MathFit_101_0_28(), G__G__MathFit_111_0_10(), G__G__MathFit_122_0_44(), G__G__MathFit_142_0_25(), G__G__MathFit_145_0_13(), G__G__MathFit_147_0_13(), G__G__MathFit_150_0_28(), G__G__MathFit_154_0_24(), G__G__MathFit_156_0_30(), G__G__MathFit_163_0_48(), G__G__MathFit_178_0_32(), G__G__MathFit_182_0_13(), G__G__MathFit_183_0_13(), G__G__MathFit_184_0_13(), G__G__MathFit_185_0_13(), G__G__MathFit_187_0_12(), G__G__MathMore_113_0_16(), G__G__MathMore_114_0_5(), G__G__MathMore_125_0_22(), G__G__MathMore_129_0_13(), G__G__MathMore_133_0_15(), G__G__MathMore_136_0_15(), G__G__MathMore_138_0_4(), G__G__MathMore_139_0_4(), G__G__MathMore_140_0_4(), G__G__MathMore_141_0_4(), G__G__MathMore_142_0_4(), G__G__MathMore_143_0_4(), G__G__MathMore_158_0_38(), G__G__MathMore_161_0_7(), G__G__MathMore_162_0_7(), G__G__MathMore_167_0_30(), G__G__MathMore_172_0_17(), G__G__MathMore_174_0_13(), G__G__MathMore_176_0_32(), G__G__MathMore_181_0_3(), G__G__MathMore_182_0_3(), G__G__MathMore_183_0_3(), G__G__MathMore_184_0_3(), G__G__MathMore_185_0_3(), G__G__MathMore_186_0_3(), G__G__MathMore_187_0_3(), G__G__MathMore_188_0_3(), G__G__MathMore_194_0_19(), G__G__MathMore_207_0_27(), G__G__MathMore_230_0_11(), G__G__MathMore_231_0_25(), G__G__MathMore_236_0_17(), G__G__MathMore_237_0_3(), G__G__MathMore_238_0_8(), G__G__MathMore_239_0_24(), G__G__MathMore_240_0_27(), G__G__MathMore_241_0_31(), G__G__MathMore_243_0_11(), G__G__MathMore_244_0_11(), G__G__MathMore_245_0_11(), G__G__MathMore_246_0_20(), G__G__MathMore_247_0_30(), G__G__MathMore_248_0_30(), G__G__MathMore_249_0_30(), G__G__MathMore_250_0_30(), G__G__MathMore_251_0_30(), G__G__MathMore_252_0_30(), G__G__MathMore_253_0_30(), G__G__MathMore_254_0_30(), G__G__Matrix_110_0_79(), G__G__Matrix_111_0_79(), G__G__Matrix_112_0_100(), G__G__Matrix_113_0_100(), G__G__Matrix_122_0_106(), G__G__Matrix_126_0_86(), G__G__Matrix_127_0_95(), G__G__Matrix_128_0_23(), G__G__Matrix_129_0_24(), G__G__Matrix_130_0_30(), G__G__Matrix_131_0_24(), G__G__Matrix_132_0_24(), G__G__Matrix_133_0_22(), G__G__Matrix_134_0_23(), G__G__Matrix_135_0_24(), G__G__Matrix_136_0_22(), G__G__Matrix_137_0_30(), G__G__Matrix_138_0_30(), G__G__Matrix_139_0_30(), G__G__Matrix_140_0_30(), G__G__Matrix_142_0_29(), G__G__Matrix_143_0_29(), G__G__Matrix_147_0_21(), G__G__Matrix_152_0_24(), G__G__Matrix_153_0_107(), G__G__Matrix_157_0_87(), G__G__Matrix_161_0_21(), G__G__Matrix_162_0_30(), G__G__Matrix_163_0_95(), G__G__Matrix_166_0_24(), G__G__Matrix_167_0_29(), G__G__Matrix_168_0_23(), G__G__Matrix_169_0_24(), G__G__Matrix_170_0_24(), G__G__Matrix_171_0_22(), G__G__Matrix_174_0_40(), G__G__Matrix_177_0_36(), G__G__Matrix_178_0_38(), G__G__Matrix_179_0_40(), G__G__Matrix_180_0_40(), G__G__Matrix_185_0_60(), G__G__Matrix_186_0_46(), G__G__Matrix_188_0_24(), G__G__Matrix_190_0_17(), G__G__Matrix_191_0_18(), G__G__Matrix_192_0_18(), G__G__Matrix_193_0_21(), G__G__Matrix_195_0_22(), G__G__Matrix_196_0_23(), G__G__Matrix_197_0_30(), G__G__Matrix_198_0_30(), G__G__Matrix_199_0_30(), G__G__Matrix_200_0_30(), G__G__Matrix_202_0_29(), G__G__Matrix_203_0_17(), G__G__Matrix_204_0_18(), G__G__Matrix_205_0_18(), G__G__MemStat_120_0_19(), G__G__Meta_111_0_16(), G__G__Meta_122_0_23(), G__G__Meta_123_0_36(), G__G__Meta_124_0_17(), G__G__Meta_125_0_25(), G__G__Meta_127_0_53(), G__G__Meta_130_0_33(), G__G__Meta_149_0_32(), G__G__Meta_152_0_27(), G__G__Meta_156_0_27(), G__G__Meta_157_0_22(), G__G__Meta_15_0_9(), G__G__Meta_160_0_226(), G__G__Meta_162_0_6(), G__G__Meta_163_0_23(), G__G__Meta_168_0_59(), G__G__Meta_169_0_16(), G__G__Meta_16_0_7(), G__G__Meta_173_0_30(), G__G__Meta_180_0_17(), G__G__Meta_182_0_20(), G__G__Meta_185_0_31(), G__G__Meta_186_0_29(), G__G__Meta_187_0_29(), G__G__Meta_188_0_20(), G__G__Meta_189_0_20(), G__G__Meta_18_0_3(), G__G__Meta_190_0_22(), G__G__Meta_191_0_22(), G__G__Meta_192_0_19(), G__G__Meta_193_0_28(), G__G__Meta_195_0_19(), G__G__Meta_196_0_20(), G__G__Meta_197_0_29(), G__G__Meta_201_0_28(), G__G__Meta_6_0_174(), G__G__Meta_79_0_27(), G__G__Meta_84_0_69(), G__G__Meta_85_0_56(), G__G__Minuit2_100_0_2(), G__G__Minuit2_105_0_5(), G__G__Minuit2_121_0_3(), G__G__Minuit2_122_0_21(), G__G__Minuit2_173_0_26(), G__G__Minuit2_188_0_39(), G__G__Minuit2_191_0_59(), G__G__Minuit2_196_0_22(), G__G__Minuit2_198_0_32(), G__G__Minuit2_199_0_5(), G__G__Minuit2_205_0_25(), G__G__Minuit2_206_0_12(), G__G__Minuit2_207_0_14(), G__G__Minuit2_251_0_16(), G__G__Minuit2_252_0_59(), G__G__Minuit2_258_0_22(), G__G__Minuit2_265_0_5(), G__G__Minuit2_268_0_5(), G__G__Minuit2_270_0_5(), G__G__Minuit2_307_0_41(), G__G__Minuit2_308_0_43(), G__G__Minuit2_309_0_8(), G__G__Minuit2_312_0_12(), G__G__Minuit2_314_0_16(), G__G__Minuit2_317_0_16(), G__G__Minuit2_318_0_16(), G__G__Minuit2_319_0_11(), G__G__Minuit2_323_0_8(), G__G__Minuit2_326_0_5(), G__G__Minuit2_327_0_11(), G__G__Minuit2_328_0_10(), G__G__Minuit_118_0_99(), G__G__Minuit_119_0_45(), G__G__Minuit_199_0_79(), G__G__Minuit_210_0_33(), G__G__Minuit_218_0_51(), G__G__MLP_100_0_41(), G__G__MLP_101_0_26(), G__G__MLP_102_0_75(), G__G__MLP_105_0_31(), G__G__Net_150_0_39(), G__G__Net_152_0_77(), G__G__Net_153_0_41(), G__G__Net_162_0_36(), G__G__Net_165_0_34(), G__G__Net_170_0_39(), G__G__Net_174_0_24(), G__G__Net_180_0_36(), G__G__Net_208_0_60(), G__G__Net_213_0_21(), G__G__Net_215_0_52(), G__G__Net_216_0_15(), G__G__Net_217_0_19(), G__G__Net_218_0_42(), G__G__Net_219_0_14(), G__G__Net_220_0_47(), G__G__Net_248_0_40(), G__G__Net_249_0_28(), G__G__Net_250_0_39(), G__G__Net_252_0_18(), G__G__Net_271_0_18(), G__G__Net_272_0_26(), G__G__Net_275_0_51(), G__G__Net_276_0_17(), G__G__Net_277_0_18(), G__G__Net_278_0_19(), G__G__Net_279_0_69(), G__G__Net_280_0_22(), G__G__Net_283_0_37(), G__G__Net_284_0_22(), G__G__Peac_113_0_19(), G__G__Peac_268_0_20(), G__G__PeacGui_106_0_18(), G__G__Physics_110_0_34(), G__G__Physics_111_0_44(), G__G__Physics_146_0_75(), G__G__Physics_147_0_81(), G__G__Physics_148_0_81(), G__G__Physics_150_0_59(), G__G__Physics_151_0_112(), G__G__Physics_153_0_21(), G__G__Physics_197_0_51(), G__G__Physics_198_0_62(), G__G__PostScript_120_0_36(), G__G__PostScript_122_0_60(), G__G__PostScript_123_0_58(), G__G__PostScript_124_0_50(), G__G__Proof_110_0_16(), G__G__Proof_111_0_28(), G__G__Proof_132_0_55(), G__G__Proof_135_0_44(), G__G__Proof_138_0_59(), G__G__Proof_142_0_316(), G__G__Proof_143_0_46(), G__G__Proof_145_0_52(), G__G__Proof_146_0_5(), G__G__Proof_148_0_38(), G__G__Proof_153_0_125(), G__G__Proof_154_0_18(), G__G__Proof_263_0_29(), G__G__Proof_264_0_26(), G__G__Proof_265_0_59(), G__G__Proof_268_0_3(), G__G__Proof_291_0_65(), G__G__Proof_296_0_66(), G__G__Proof_299_0_15(), G__G__Proof_300_0_25(), G__G__Proof_302_0_29(), G__G__Proof_307_0_55(), G__G__Proof_309_0_19(), G__G__Proof_342_0_18(), G__G__Proof_343_0_38(), G__G__Proof_344_0_20(), G__G__Proof_346_0_27(), G__G__Proof_347_0_18(), G__G__Proof_350_0_25(), G__G__Proof_351_0_29(), G__G__Proof_353_0_43(), G__G__Proof_356_0_18(), G__G__Proof_368_0_21(), G__G__Proof_377_0_21(), G__G__ProofDraw_136_0_30(), G__G__ProofDraw_139_0_26(), G__G__ProofDraw_140_0_20(), G__G__ProofDraw_141_0_20(), G__G__ProofDraw_142_0_20(), G__G__ProofDraw_143_0_20(), G__G__ProofDraw_144_0_19(), G__G__ProofDraw_145_0_19(), G__G__ProofDraw_146_0_18(), G__G__ProofDraw_147_0_4(), G__G__ProofDraw_148_0_18(), G__G__ProofDraw_150_0_30(), G__G__ProofDraw_153_0_18(), G__G__ProofDraw_154_0_4(), G__G__ProofDraw_155_0_18(), G__G__ProofDraw_157_0_30(), G__G__ProofPlayer_116_0_16(), G__G__ProofPlayer_126_0_21(), G__G__ProofPlayer_127_0_19(), G__G__ProofPlayer_128_0_19(), G__G__ProofPlayer_129_0_21(), G__G__ProofPlayer_133_0_28(), G__G__ProofPlayer_135_0_21(), G__G__ProofPlayer_152_0_43(), G__G__ProofPlayer_161_0_36(), G__G__ProofPlayer_175_0_21(), G__G__ProofPlayer_178_0_30(), G__G__ProofPlayer_182_0_25(), G__G__ProofPlayer_183_0_21(), G__G__ProofPlayer_196_0_18(), G__G__ProofPlayer_197_0_29(), G__G__ProofPlayer_200_0_19(), G__G__ProofPlayer_201_0_44(), G__G__ProofPlayer_203_0_72(), G__G__ProofPlayer_259_0_21(), G__G__ProofPlayer_260_0_49(), G__G__ProofPlayer_265_0_21(), G__G__ProofPlayer_268_0_17(), G__G__ProofPlayer_269_0_18(), G__G__ProofPlayer_270_0_23(), G__G__Quadp_174_0_35(), G__G__Quadp_176_0_40(), G__G__Quadp_177_0_31(), G__G__Quadp_178_0_27(), G__G__Quadp_179_0_23(), G__G__Quadp_180_0_26(), G__G__Quadp_182_0_32(), G__G__Quadp_183_0_20(), G__G__Quadp_184_0_19(), G__G__Quadp_185_0_32(), G__G__Quadp_186_0_25(), G__G__Quadp_191_0_21(), G__G__Quadp_192_0_24(), G__G__Quadp_197_0_21(), G__G__Recorder_271_0_24(), G__G__Recorder_272_0_17(), G__G__Recorder_274_0_19(), G__G__Recorder_275_0_19(), G__G__Recorder_276_0_18(), G__G__Recorder_277_0_23(), G__G__Recorder_283_0_15(), G__G__Recorder_284_0_29(), G__G__Recorder_287_0_18(), G__G__Rint_120_0_27(), G__G__Rint_125_0_66(), G__G__RooFit_418_0_33(), G__G__RooFit_419_0_21(), G__G__RooFit_425_0_23(), G__G__RooFit_427_0_23(), G__G__RooFit_429_0_23(), G__G__RooFit_431_0_20(), G__G__RooFit_432_0_20(), G__G__RooFit_433_0_45(), G__G__RooFit_435_0_23(), G__G__RooFit_437_0_20(), G__G__RooFit_438_0_18(), G__G__RooFit_439_0_23(), G__G__RooFit_440_0_20(), G__G__RooFit_446_0_19(), G__G__RooFit_447_0_20(), G__G__RooFit_448_0_20(), G__G__RooFit_450_0_20(), G__G__RooFit_451_0_20(), G__G__RooFit_459_0_19(), G__G__RooFit_460_0_19(), G__G__RooFit_461_0_19(), G__G__RooFit_462_0_19(), G__G__RooFit_463_0_22(), G__G__RooFit_464_0_22(), G__G__RooFit_477_0_34(), G__G__RooFit_481_0_40(), G__G__RooFit_498_0_27(), G__G__RooFit_500_0_22(), G__G__RooFit_501_0_21(), G__G__RooFit_504_0_20(), G__G__RooFit_505_0_23(), G__G__RooFit_506_0_22(), G__G__RooFit_539_0_28(), G__G__RooFit_542_0_18(), G__G__RooFit_544_0_35(), G__G__RooFit_590_0_23(), G__G__RooFit_591_0_24(), G__G__RooFit_593_0_18(), G__G__RooFit_596_0_22(), G__G__RooFit_597_0_25(), G__G__RooFit_598_0_21(), G__G__RooFit_599_0_23(), G__G__RooFit_600_0_20(), G__G__RooFit_601_0_20(), G__G__RooFit_602_0_19(), G__G__RooFit_605_0_19(), G__G__RooFit_606_0_19(), G__G__RooFit_607_0_19(), G__G__RooFit_608_0_18(), G__G__RooFit_609_0_22(), G__G__RooFit_610_0_20(), G__G__RooFit_611_0_20(), G__G__RooFit_613_0_19(), G__G__RooFit_614_0_19(), G__G__RooFit_615_0_20(), G__G__RooFit_617_0_19(), G__G__RooFit_618_0_19(), G__G__RooFit_619_0_20(), G__G__RooFit_621_0_19(), G__G__RooFit_622_0_19(), G__G__RooFit_623_0_20(), G__G__RooFit_625_0_19(), G__G__RooFit_626_0_19(), G__G__RooFit_627_0_20(), G__G__RooFit_629_0_19(), G__G__RooFit_630_0_19(), G__G__RooFit_631_0_20(), G__G__RooFit_633_0_19(), G__G__RooFit_634_0_19(), G__G__RooFit_635_0_20(), G__G__RooFit_637_0_19(), G__G__RooFit_638_0_19(), G__G__RooFit_639_0_20(), G__G__RooFit_641_0_19(), G__G__RooFit_642_0_19(), G__G__RooFit_643_0_20(), G__G__RooFit_645_0_19(), G__G__RooFit_646_0_19(), G__G__RooFit_647_0_20(), G__G__RooFit_649_0_19(), G__G__RooFit_650_0_19(), G__G__RooFit_651_0_20(), G__G__RooFit_653_0_19(), G__G__RooFit_654_0_19(), G__G__RooFit_655_0_20(), G__G__RooFit_657_0_19(), G__G__RooFit_658_0_19(), G__G__RooFit_659_0_20(), G__G__RooFit_661_0_19(), G__G__RooFit_662_0_19(), G__G__RooFit_663_0_20(), G__G__RooFit_665_0_19(), G__G__RooFit_666_0_19(), G__G__RooFit_667_0_20(), G__G__RooFit_669_0_19(), G__G__RooFit_670_0_19(), G__G__RooFit_671_0_20(), G__G__RooFit_673_0_19(), G__G__RooFit_674_0_19(), G__G__RooFitCore1_131_0_169(), G__G__RooFitCore1_133_0_57(), G__G__RooFitCore1_136_0_68(), G__G__RooFitCore1_137_0_37(), G__G__RooFitCore1_142_0_90(), G__G__RooFitCore1_144_0_20(), G__G__RooFitCore1_145_0_25(), G__G__RooFitCore1_151_0_43(), G__G__RooFitCore1_178_0_25(), G__G__RooFitCore1_180_0_137(), G__G__RooFitCore1_182_0_33(), G__G__RooFitCore1_187_0_43(), G__G__RooFitCore1_190_0_55(), G__G__RooFitCore1_193_0_30(), G__G__RooFitCore1_194_0_54(), G__G__RooFitCore1_195_0_28(), G__G__RooFitCore1_201_0_75(), G__G__RooFitCore1_202_0_45(), G__G__RooFitCore1_203_0_22(), G__G__RooFitCore1_204_0_35(), G__G__RooFitCore1_205_0_33(), G__G__RooFitCore1_206_0_46(), G__G__RooFitCore1_232_0_26(), G__G__RooFitCore1_234_0_40(), G__G__RooFitCore1_243_0_70(), G__G__RooFitCore1_245_0_91(), G__G__RooFitCore1_249_0_34(), G__G__RooFitCore1_250_0_20(), G__G__RooFitCore1_311_0_34(), G__G__RooFitCore1_313_0_16(), G__G__RooFitCore1_358_0_34(), G__G__RooFitCore1_402_0_31(), G__G__RooFitCore1_405_0_3(), G__G__RooFitCore1_408_0_22(), G__G__RooFitCore1_411_0_22(), G__G__RooFitCore1_418_0_34(), G__G__RooFitCore1_420_0_27(), G__G__RooFitCore1_421_0_24(), G__G__RooFitCore1_429_0_17(), G__G__RooFitCore1_431_0_31(), G__G__RooFitCore1_432_0_43(), G__G__RooFitCore1_437_0_15(), G__G__RooFitCore1_438_0_33(), G__G__RooFitCore1_441_0_24(), G__G__RooFitCore1_442_0_29(), G__G__RooFitCore1_445_0_26(), G__G__RooFitCore1_451_0_20(), G__G__RooFitCore1_455_0_38(), G__G__RooFitCore1_462_0_17(), G__G__RooFitCore1_464_0_17(), G__G__RooFitCore1_480_0_22(), G__G__RooFitCore1_501_0_24(), G__G__RooFitCore1_503_0_31(), G__G__RooFitCore1_504_0_21(), G__G__RooFitCore1_507_0_20(), G__G__RooFitCore1_514_0_20(), G__G__RooFitCore1_518_0_20(), G__G__RooFitCore1_519_0_25(), G__G__RooFitCore2_110_0_20(), G__G__RooFitCore2_111_0_29(), G__G__RooFitCore2_127_0_19(), G__G__RooFitCore2_128_0_25(), G__G__RooFitCore2_129_0_40(), G__G__RooFitCore2_130_0_23(), G__G__RooFitCore2_147_0_29(), G__G__RooFitCore2_168_0_52(), G__G__RooFitCore2_195_0_23(), G__G__RooFitCore2_217_0_25(), G__G__RooFitCore2_222_0_42(), G__G__RooFitCore2_234_0_67(), G__G__RooFitCore2_238_0_32(), G__G__RooFitCore2_243_0_42(), G__G__RooFitCore2_277_0_3(), G__G__RooFitCore2_278_0_116(), G__G__RooFitCore2_310_0_27(), G__G__RooFitCore2_311_0_28(), G__G__RooFitCore2_357_0_17(), G__G__RooFitCore2_359_0_21(), G__G__RooFitCore2_366_0_24(), G__G__RooFitCore2_367_0_17(), G__G__RooFitCore2_379_0_38(), G__G__RooFitCore2_427_0_37(), G__G__RooFitCore2_431_0_21(), G__G__RooFitCore2_433_0_29(), G__G__RooFitCore2_442_0_24(), G__G__RooFitCore2_446_0_19(), G__G__RooFitCore2_447_0_28(), G__G__RooFitCore2_448_0_20(), G__G__RooFitCore2_449_0_42(), G__G__RooFitCore2_451_0_24(), G__G__RooFitCore2_460_0_18(), G__G__RooFitCore2_461_0_34(), G__G__RooFitCore2_462_0_29(), G__G__RooFitCore2_466_0_26(), G__G__RooFitCore2_467_0_18(), G__G__RooFitCore2_468_0_20(), G__G__RooFitCore2_469_0_34(), G__G__RooFitCore2_470_0_25(), G__G__RooFitCore2_471_0_17(), G__G__RooFitCore2_473_0_21(), G__G__RooFitCore2_474_0_23(), G__G__RooFitCore2_476_0_21(), G__G__RooFitCore2_485_0_33(), G__G__RooFitCore2_488_0_31(), G__G__RooFitCore2_495_0_17(), G__G__RooFitCore2_496_0_24(), G__G__RooFitCore2_498_0_21(), G__G__RooFitCore2_501_0_24(), G__G__RooFitCore2_503_0_34(), G__G__RooFitCore2_504_0_31(), G__G__RooFitCore2_515_0_21(), G__G__RooFitCore2_516_0_27(), G__G__RooFitCore2_519_0_18(), G__G__RooFitCore2_520_0_23(), G__G__RooFitCore2_522_0_22(), G__G__RooFitCore3_131_0_16(), G__G__RooFitCore3_134_0_20(), G__G__RooFitCore3_137_0_20(), G__G__RooFitCore3_139_0_14(), G__G__RooFitCore3_140_0_62(), G__G__RooFitCore3_142_0_52(), G__G__RooFitCore3_145_0_34(), G__G__RooFitCore3_147_0_27(), G__G__RooFitCore3_148_0_76(), G__G__RooFitCore3_149_0_60(), G__G__RooFitCore3_178_0_43(), G__G__RooFitCore3_180_0_30(), G__G__RooFitCore3_188_0_38(), G__G__RooFitCore3_190_0_25(), G__G__RooFitCore3_191_0_36(), G__G__RooFitCore3_204_0_69(), G__G__RooFitCore3_206_0_43(), G__G__RooFitCore3_243_0_18(), G__G__RooFitCore3_244_0_43(), G__G__RooFitCore3_257_0_27(), G__G__RooFitCore3_264_0_27(), G__G__RooFitCore3_271_0_27(), G__G__RooFitCore3_286_0_26(), G__G__RooFitCore3_287_0_18(), G__G__RooFitCore3_288_0_20(), G__G__RooFitCore3_289_0_25(), G__G__RooFitCore3_290_0_23(), G__G__RooFitCore3_311_0_28(), G__G__RooFitCore3_315_0_30(), G__G__RooFitCore3_318_0_23(), G__G__RooFitCore3_319_0_29(), G__G__RooFitCore3_325_0_18(), G__G__RooFitCore3_326_0_17(), G__G__RooFitCore3_327_0_17(), G__G__RooFitCore3_329_0_23(), G__G__RooFitCore3_350_0_30(), G__G__RooFitCore3_351_0_16(), G__G__RooFitCore3_354_0_21(), G__G__RooFitCore3_362_0_7(), G__G__RooFitCore3_388_0_21(), G__G__RooFitCore3_389_0_31(), G__G__RooFitCore3_395_0_30(), G__G__RooFitCore3_401_0_20(), G__G__RooFitCore3_403_0_37(), G__G__RooFitCore3_412_0_19(), G__G__RooFitCore3_421_0_27(), G__G__RooFitCore3_422_0_23(), G__G__RooFitCore3_423_0_31(), G__G__RooFitCore3_425_0_24(), G__G__RooFitCore3_426_0_30(), G__G__RooFitCore3_427_0_18(), G__G__RooFitCore3_428_0_21(), G__G__RooFitCore3_430_0_21(), G__G__RooFitCore3_431_0_20(), G__G__RooFitCore3_432_0_26(), G__G__RooFitCore3_437_0_27(), G__G__RooFitCore3_452_0_33(), G__G__RooFitCore3_492_0_40(), G__G__RooFitCore3_493_0_22(), G__G__RooFitCore3_502_0_24(), G__G__RooFitCore3_507_0_24(), G__G__RooFitCore3_531_0_83(), G__G__RooFitCore3_532_0_28(), G__G__RooFitCore3_538_0_38(), G__G__RooFitCore3_542_0_38(), G__G__RooFitCore3_545_0_19(), G__G__RooFitCore3_562_0_17(), G__G__RooFitCore3_573_0_28(), G__G__RooFitCore3_581_0_20(), G__G__RooFitCore3_591_0_20(), G__G__RooFitCore3_592_0_25(), G__G__RooFitCore3_595_0_41(), G__G__RooFitCore3_599_0_21(), G__G__RooFitCore3_600_0_21(), G__G__RooFitCore3_601_0_4(), G__G__RooFitCore3_602_0_37(), G__G__RooFitCore3_603_0_18(), G__G__RooFitCore3_604_0_18(), G__G__RooFitCore3_606_0_20(), G__G__RooFitCore3_626_0_20(), G__G__RooFitCore3_627_0_20(), G__G__RooFitCore3_628_0_17(), G__G__RooFitCore3_629_0_18(), G__G__RooFitCore3_630_0_16(), G__G__RooFitCore3_631_0_15(), G__G__RooFitCore3_680_0_18(), G__G__RooFitCore3_681_0_29(), G__G__RooFitCore3_682_0_34(), G__G__RooFitCore3_692_0_20(), G__G__RooFitCore3_693_0_26(), G__G__RooFitCore3_694_0_24(), G__G__RooFitCore3_696_0_17(), G__G__RooFitCore3_704_0_20(), G__G__RooFitCore3_708_0_17(), G__G__RooFitCore3_720_0_26(), G__G__RooFitCore3_721_0_29(), G__G__RooFitCore3_723_0_20(), G__G__RooFitCore3_724_0_22(), G__G__RooFitCore3_762_0_33(), G__G__RooFitCore3_763_0_3(), G__G__RooFitCore3_764_0_3(), G__G__RooFitCore3_784_0_31(), G__G__RooFitCore3_831_0_45(), G__G__RooFitCore3_832_0_26(), G__G__RooFitCore3_835_0_27(), G__G__RooFitCore3_837_0_38(), G__G__RooFitCore3_840_0_26(), G__G__RooFitCore3_841_0_22(), G__G__RooFitCore3_929_0_25(), G__G__RooFitCore3_932_0_27(), G__G__RooFitCore3_937_0_19(), G__G__RooFitCore3_938_0_31(), G__G__RooStats_206_0_19(), G__G__RooStats_207_0_52(), G__G__RooStats_208_0_20(), G__G__RooStats_210_0_23(), G__G__RooStats_214_0_39(), G__G__RooStats_316_0_18(), G__G__RooStats_317_0_38(), G__G__RooStats_318_0_18(), G__G__RooStats_514_0_33(), G__G__RooStats_520_0_29(), G__G__RooStats_524_0_19(), G__G__RooStats_533_0_19(), G__G__RooStats_534_0_20(), G__G__RooStats_542_0_27(), G__G__RooStats_547_0_16(), G__G__RooStats_548_0_28(), G__G__RooStats_558_0_27(), G__G__RooStats_559_0_19(), G__G__RooStats_560_0_51(), G__G__RooStats_561_0_15(), G__G__RooStats_562_0_24(), G__G__RooStats_563_0_38(), G__G__RooStats_566_0_18(), G__G__RooStats_568_0_28(), G__G__RooStats_569_0_29(), G__G__RooStats_570_0_21(), G__G__RooStats_571_0_32(), G__G__RooStats_572_0_28(), G__G__RooStats_573_0_41(), G__G__RooStats_577_0_31(), G__G__RooStats_579_0_28(), G__G__RooStats_581_0_16(), G__G__RooStats_590_0_36(), G__G__RooStats_591_0_16(), G__G__RooStats_593_0_31(), G__G__RooStats_610_0_26(), G__G__RooStats_641_0_36(), G__G__RooStats_648_0_20(), G__G__RooStats_649_0_18(), G__G__RooStats_652_0_81(), G__G__RooStats_655_0_40(), G__G__RooStats_726_0_36(), G__G__RooStats_727_0_26(), G__G__RooStats_730_0_34(), G__G__RooStats_731_0_22(), G__G__RooStats_733_0_19(), G__G__RooStats_734_0_27(), G__G__RooStats_744_0_16(), G__G__RooStats_745_0_21(), G__G__RooStats_759_0_19(), G__G__RooStats_760_0_18(), G__G__RooStats_761_0_32(), G__G__RooStats_762_0_20(), G__G__RooStats_763_0_22(), G__G__RooStats_765_0_26(), G__G__RooStats_766_0_39(), G__G__RooStats_769_0_21(), G__G__RooStats_775_0_19(), G__G__RootAuth_125_0_97(), G__G__RootAuth_126_0_54(), G__G__RootAuth_129_0_21(), G__G__RootAuth_130_0_19(), G__G__SessionViewer_119_0_30(), G__G__SessionViewer_120_0_23(), G__G__SessionViewer_124_0_36(), G__G__SessionViewer_303_0_72(), G__G__SessionViewer_304_0_22(), G__G__SessionViewer_307_0_16(), G__G__SessionViewer_310_0_16(), G__G__SessionViewer_311_0_16(), G__G__SessionViewer_312_0_40(), G__G__SessionViewer_313_0_44(), G__G__SessionViewer_314_0_23(), G__G__SessionViewer_315_0_34(), G__G__SessionViewer_317_0_20(), G__G__SessionViewer_318_0_18(), G__G__SessionViewer_320_0_21(), G__G__SessionViewer_321_0_28(), G__G__SessionViewer_322_0_25(), G__G__Smatrix32_301_0_10(), G__G__Smatrix32_303_0_46(), G__G__Smatrix32_304_0_46(), G__G__Smatrix32_309_0_46(), G__G__Smatrix32_311_0_10(), G__G__Smatrix32_313_0_46(), G__G__Smatrix32_319_0_46(), G__G__Smatrix32_321_0_10(), G__G__Smatrix32_323_0_46(), G__G__Smatrix32_329_0_46(), G__G__Smatrix32_331_0_10(), G__G__Smatrix32_333_0_46(), G__G__Smatrix32_339_0_15(), G__G__Smatrix32_341_0_15(), G__G__Smatrix32_343_0_15(), G__G__Smatrix32_345_0_15(), G__G__Smatrix32_347_0_46(), G__G__Smatrix32_351_0_46(), G__G__Smatrix32_355_0_46(), G__G__Smatrix32_359_0_46(), G__G__Smatrix_107_0_5(), G__G__Smatrix_108_0_5(), G__G__Smatrix_109_0_5(), G__G__Smatrix_110_0_5(), G__G__Smatrix_111_0_5(), G__G__Smatrix_112_0_5(), G__G__Smatrix_116_0_3(), G__G__Smatrix_117_0_10(), G__G__Smatrix_119_0_46(), G__G__Smatrix_120_0_46(), G__G__Smatrix_123_0_4(), G__G__Smatrix_124_0_4(), G__G__Smatrix_125_0_46(), G__G__Smatrix_127_0_10(), G__G__Smatrix_129_0_46(), G__G__Smatrix_130_0_46(), G__G__Smatrix_133_0_4(), G__G__Smatrix_134_0_4(), G__G__Smatrix_135_0_10(), G__G__Smatrix_137_0_46(), G__G__Smatrix_141_0_4(), G__G__Smatrix_142_0_4(), G__G__Smatrix_143_0_46(), G__G__Smatrix_145_0_10(), G__G__Smatrix_147_0_46(), G__G__Smatrix_151_0_4(), G__G__Smatrix_152_0_4(), G__G__Smatrix_153_0_46(), G__G__Smatrix_155_0_10(), G__G__Smatrix_157_0_46(), G__G__Smatrix_161_0_4(), G__G__Smatrix_162_0_4(), G__G__Smatrix_163_0_10(), G__G__Smatrix_165_0_46(), G__G__Smatrix_169_0_4(), G__G__Smatrix_170_0_4(), G__G__Smatrix_171_0_46(), G__G__Smatrix_173_0_15(), G__G__Smatrix_175_0_46(), G__G__Smatrix_177_0_4(), G__G__Smatrix_178_0_4(), G__G__Smatrix_179_0_15(), G__G__Smatrix_181_0_46(), G__G__Smatrix_183_0_4(), G__G__Smatrix_184_0_4(), G__G__Smatrix_185_0_15(), G__G__Smatrix_187_0_46(), G__G__Smatrix_189_0_4(), G__G__Smatrix_190_0_4(), G__G__Smatrix_191_0_15(), G__G__Smatrix_193_0_46(), G__G__Smatrix_195_0_4(), G__G__Smatrix_196_0_4(), G__G__Smatrix_197_0_15(), G__G__Smatrix_199_0_46(), G__G__Smatrix_201_0_4(), G__G__Smatrix_202_0_4(), G__G__Smatrix_203_0_15(), G__G__Smatrix_205_0_46(), G__G__Smatrix_207_0_4(), G__G__Smatrix_208_0_4(), G__G__Smatrix_209_0_10(), G__G__Smatrix_211_0_46(), G__G__Smatrix_212_0_46(), G__G__Smatrix_215_0_4(), G__G__Smatrix_216_0_4(), G__G__Smatrix_217_0_46(), G__G__Smatrix_219_0_10(), G__G__Smatrix_221_0_46(), G__G__Smatrix_222_0_46(), G__G__Smatrix_225_0_4(), G__G__Smatrix_226_0_4(), G__G__Smatrix_227_0_10(), G__G__Smatrix_229_0_46(), G__G__Smatrix_233_0_4(), G__G__Smatrix_234_0_4(), G__G__Smatrix_235_0_46(), G__G__Smatrix_237_0_10(), G__G__Smatrix_239_0_46(), G__G__Smatrix_243_0_4(), G__G__Smatrix_244_0_4(), G__G__Smatrix_245_0_46(), G__G__Smatrix_247_0_10(), G__G__Smatrix_249_0_46(), G__G__Smatrix_253_0_4(), G__G__Smatrix_254_0_4(), G__G__Smatrix_255_0_10(), G__G__Smatrix_257_0_46(), G__G__Smatrix_261_0_4(), G__G__Smatrix_262_0_4(), G__G__Smatrix_263_0_46(), G__G__Smatrix_265_0_15(), G__G__Smatrix_267_0_46(), G__G__Smatrix_269_0_4(), G__G__Smatrix_270_0_4(), G__G__Smatrix_271_0_15(), G__G__Smatrix_273_0_46(), G__G__Smatrix_275_0_4(), G__G__Smatrix_276_0_4(), G__G__Smatrix_277_0_15(), G__G__Smatrix_279_0_46(), G__G__Smatrix_281_0_4(), G__G__Smatrix_282_0_4(), G__G__Smatrix_283_0_15(), G__G__Smatrix_285_0_46(), G__G__Smatrix_287_0_4(), G__G__Smatrix_288_0_4(), G__G__Smatrix_289_0_15(), G__G__Smatrix_291_0_46(), G__G__Smatrix_293_0_4(), G__G__Smatrix_294_0_4(), G__G__Smatrix_295_0_15(), G__G__Smatrix_297_0_46(), G__G__Smatrix_299_0_4(), G__G__Smatrix_300_0_4(), G__G__Smatrix_301_0_10(), G__G__Smatrix_303_0_10(), G__G__Smatrix_305_0_10(), G__G__Smatrix_307_0_46(), G__G__Smatrix_311_0_4(), G__G__Smatrix_312_0_4(), G__G__Smatrix_313_0_46(), G__G__Smatrix_315_0_4(), G__G__Smatrix_316_0_4(), G__G__Smatrix_317_0_46(), G__G__Smatrix_321_0_4(), G__G__Smatrix_322_0_4(), G__G__Smatrix_325_0_10(), G__G__Smatrix_327_0_10(), G__G__Smatrix_329_0_10(), G__G__Smatrix_331_0_46(), G__G__Smatrix_335_0_4(), G__G__Smatrix_336_0_4(), G__G__Smatrix_337_0_46(), G__G__Smatrix_339_0_4(), G__G__Smatrix_340_0_4(), G__G__Smatrix_341_0_46(), G__G__Smatrix_345_0_4(), G__G__Smatrix_346_0_4(), G__G__Spectrum2Painter_113_0_57(), G__G__Spectrum_110_0_65(), G__G__Spectrum_113_0_32(), G__G__Spectrum_115_0_34(), G__G__Spectrum_117_0_30(), G__G__Spectrum_119_0_52(), G__G__Spectrum_121_0_36(), G__G__Spectrum_123_0_31(), G__G__SPlot_143_0_46(), G__G__SQL_131_0_154(), G__G__SQL_132_0_75(), G__G__SQL_133_0_33(), G__G__SQL_134_0_30(), G__G__SQL_135_0_209(), G__G__SQL_139_0_41(), G__G__SQL_140_0_19(), G__G__SQL_177_0_22(), G__G__SQL_184_0_19(), G__G__SQL_185_0_19(), G__G__SQL_187_0_21(), G__G__Table_101_0_123(), G__G__Table_102_0_103(), G__G__Table_138_0_67(), G__G__Table_139_0_83(), G__G__Table_144_0_61(), G__G__Table_146_0_23(), G__G__Table_150_0_21(), G__G__Table_155_0_60(), G__G__Table_156_0_18(), G__G__Table_192_0_64(), G__G__Table_193_0_19(), G__G__Table_194_0_33(), G__G__Table_195_0_17(), G__G__Table_196_0_33(), G__G__Table_197_0_17(), G__G__Table_198_0_27(), G__G__Table_201_0_42(), G__G__Table_203_0_39(), G__G__Table_208_0_54(), G__G__Table_209_0_21(), G__G__Table_211_0_107(), G__G__Table_213_0_30(), G__G__Table_214_0_34(), G__G__Table_216_0_31(), G__G__Table_219_0_33(), G__G__Table_220_0_68(), G__G__Table_221_0_53(), G__G__Table_224_0_51(), G__G__Table_225_0_25(), G__G__Table_99_0_3(), G__G__Thread_100_0_21(), G__G__Thread_101_0_22(), G__G__Thread_102_0_63(), G__G__Thread_162_0_27(), G__G__Thread_163_0_28(), G__G__Thread_169_0_17(), G__G__Thread_170_0_20(), G__G__Thread_171_0_19(), G__G__Thread_172_0_17(), G__G__Thread_173_0_9(), G__G__Thread_175_0_18(), G__G__Thread_176_0_19(), G__G__Thread_179_0_18(), G__G__Thread_99_0_18(), G__G__TMVA1_154_0_36(), G__G__TMVA1_175_0_34(), G__G__TMVA1_360_0_163(), G__G__TMVA1_364_0_82(), G__G__TMVA1_383_0_46(), G__G__TMVA1_457_0_52(), G__G__TMVA1_471_0_29(), G__G__TMVA1_483_0_52(), G__G__TMVA1_494_0_30(), G__G__TMVA1_554_0_58(), G__G__TMVA1_610_0_36(), G__G__TMVA1_613_0_21(), G__G__TMVA1_665_0_37(), G__G__TMVA1_666_0_41(), G__G__TMVA1_673_0_36(), G__G__TMVA1_674_0_34(), G__G__TMVA1_675_0_30(), G__G__TMVA1_676_0_49(), G__G__TMVA1_679_0_63(), G__G__TMVA1_701_0_30(), G__G__TMVA1_705_0_31(), G__G__TMVA1_710_0_27(), G__G__TMVA1_712_0_36(), G__G__TMVA1_718_0_58(), G__G__TMVA1_721_0_38(), G__G__TMVA1_744_0_45(), G__G__TMVA1_749_0_33(), G__G__TMVA1_754_0_30(), G__G__TMVA2_133_0_19(), G__G__TMVA2_134_0_19(), G__G__TMVA2_218_0_50(), G__G__TMVA2_243_0_42(), G__G__TMVA2_245_0_32(), G__G__TMVA2_246_0_33(), G__G__TMVA2_259_0_44(), G__G__TMVA2_279_0_26(), G__G__TMVA2_280_0_17(), G__G__TMVA2_281_0_18(), G__G__TMVA2_282_0_16(), G__G__TMVA2_293_0_104(), G__G__TMVA2_294_0_18(), G__G__TMVA2_296_0_60(), G__G__TMVA2_298_0_16(), G__G__TMVA2_299_0_16(), G__G__TMVA2_305_0_69(), G__G__TMVA2_421_0_53(), G__G__TMVA2_434_0_19(), G__G__TMVA2_436_0_22(), G__G__TMVA2_437_0_38(), G__G__TMVA2_450_0_27(), G__G__TMVA2_454_0_16(), G__G__TMVA2_455_0_16(), G__G__TMVA2_457_0_32(), G__G__TMVA3_113_0_3(), G__G__TMVA3_114_0_3(), G__G__TMVA3_118_0_19(), G__G__TMVA3_123_0_26(), G__G__TMVA3_186_0_16(), G__G__TMVA3_187_0_22(), G__G__TMVA3_196_0_17(), G__G__TMVA3_197_0_18(), G__G__TMVA3_198_0_17(), G__G__TMVA3_200_0_22(), G__G__TMVA3_201_0_18(), G__G__TMVA3_309_0_43(), G__G__TMVA3_310_0_28(), G__G__TMVA3_311_0_26(), G__G__TMVA3_312_0_107(), G__G__TMVA3_387_0_9(), G__G__TMVA3_482_0_9(), G__G__TMVA3_484_0_9(), G__G__TMVA3_492_0_7(), G__G__TMVA3_493_0_46(), G__G__TMVA3_548_0_26(), G__G__TMVA4_126_0_54(), G__G__TMVA4_127_0_33(), G__G__TMVA4_128_0_31(), G__G__TMVA4_129_0_20(), G__G__TMVA4_131_0_9(), G__G__TMVA4_147_0_16(), G__G__TMVA4_148_0_19(), G__G__TMVA4_154_0_21(), G__G__TMVA4_155_0_21(), G__G__TMVA4_156_0_21(), G__G__TMVA4_157_0_21(), G__G__TMVA4_158_0_17(), G__G__TMVA4_159_0_17(), G__G__TMVA4_160_0_17(), G__G__TMVA4_161_0_18(), G__G__TMVA4_164_0_21(), G__G__TMVA4_301_0_68(), G__G__TMVA4_343_0_71(), G__G__TMVA4_350_0_29(), G__G__TMVA4_400_0_49(), G__G__TMVA4_411_0_24(), G__G__TMVA4_413_0_27(), G__G__TMVA4_476_0_26(), G__G__TMVA4_514_0_28(), G__G__TMVA4_527_0_28(), G__G__Tree_113_0_212(), G__G__Tree_114_0_105(), G__G__Tree_115_0_43(), G__G__Tree_118_0_84(), G__G__Tree_119_0_24(), G__G__Tree_135_0_105(), G__G__Tree_136_0_32(), G__G__Tree_141_0_21(), G__G__Tree_142_0_18(), G__G__Tree_143_0_20(), G__G__Tree_144_0_18(), G__G__Tree_152_0_49(), G__G__Tree_154_0_28(), G__G__Tree_155_0_28(), G__G__Tree_191_0_38(), G__G__Tree_193_0_24(), G__G__Tree_194_0_52(), G__G__Tree_196_0_41(), G__G__Tree_197_0_52(), G__G__Tree_198_0_26(), G__G__Tree_199_0_32(), G__G__Tree_200_0_25(), G__G__Tree_206_0_25(), G__G__Tree_211_0_31(), G__G__Tree_225_0_9(), G__G__Tree_226_0_26(), G__G__Tree_234_0_37(), G__G__Tree_236_0_89(), G__G__Tree_238_0_28(), G__G__Tree_241_0_41(), G__G__Tree_245_0_31(), G__G__Tree_246_0_30(), G__G__Tree_247_0_27(), G__G__Tree_248_0_27(), G__G__Tree_249_0_27(), G__G__Tree_250_0_31(), G__G__Tree_251_0_31(), G__G__Tree_252_0_29(), G__G__Tree_254_0_27(), G__G__Tree_255_0_27(), G__G__Tree_256_0_26(), G__G__Tree_257_0_28(), G__G__Tree_261_0_54(), G__G__Tree_269_0_25(), G__G__Tree_276_0_34(), G__G__Tree_277_0_17(), G__G__Tree_280_0_34(), G__G__Tree_284_0_46(), G__G__Tree_294_0_24(), G__G__Tree_295_0_23(), G__G__Tree_297_0_42(), G__G__TreePlayer_121_0_22(), G__G__TreePlayer_122_0_33(), G__G__TreePlayer_125_0_21(), G__G__TreePlayer_126_0_6(), G__G__TreePlayer_127_0_12(), G__G__TreePlayer_179_0_67(), G__G__TreePlayer_213_0_11(), G__G__TreePlayer_215_0_11(), G__G__TreePlayer_217_0_11(), G__G__TreePlayer_218_0_11(), G__G__TreePlayer_219_0_11(), G__G__TreePlayer_220_0_11(), G__G__TreePlayer_221_0_11(), G__G__TreePlayer_222_0_11(), G__G__TreePlayer_223_0_11(), G__G__TreePlayer_224_0_11(), G__G__TreePlayer_225_0_11(), G__G__TreePlayer_226_0_11(), G__G__TreePlayer_227_0_11(), G__G__TreePlayer_229_0_11(), G__G__TreePlayer_233_0_11(), G__G__TreePlayer_237_0_11(), G__G__TreePlayer_239_0_11(), G__G__TreePlayer_241_0_11(), G__G__TreePlayer_243_0_11(), G__G__TreePlayer_245_0_11(), G__G__TreePlayer_247_0_11(), G__G__TreePlayer_249_0_11(), G__G__TreePlayer_251_0_11(), G__G__TreePlayer_253_0_11(), G__G__TreePlayer_254_0_13(), G__G__TreePlayer_256_0_13(), G__G__TreePlayer_258_0_13(), G__G__TreePlayer_259_0_13(), G__G__TreePlayer_260_0_13(), G__G__TreePlayer_261_0_13(), G__G__TreePlayer_262_0_13(), G__G__TreePlayer_263_0_13(), G__G__TreePlayer_264_0_13(), G__G__TreePlayer_265_0_13(), G__G__TreePlayer_266_0_13(), G__G__TreePlayer_267_0_13(), G__G__TreePlayer_268_0_13(), G__G__TreePlayer_269_0_11(), G__G__TreePlayer_271_0_11(), G__G__TreePlayer_273_0_11(), G__G__TreePlayer_274_0_11(), G__G__TreePlayer_275_0_11(), G__G__TreePlayer_276_0_11(), G__G__TreePlayer_277_0_11(), G__G__TreePlayer_278_0_11(), G__G__TreePlayer_279_0_11(), G__G__TreePlayer_280_0_11(), G__G__TreePlayer_282_0_11(), G__G__TreePlayer_283_0_11(), G__G__TreePlayer_314_0_30(), G__G__TreePlayer_315_0_3(), G__G__TreePlayer_322_0_29(), G__G__TreePlayer_385_0_23(), G__G__TreePlayer_391_0_52(), G__G__TreePlayer_397_0_29(), G__G__TreePlayer_398_0_41(), G__G__TreePlayer_414_0_32(), G__G__TreePlayer_422_0_63(), G__G__TreePlayer_423_0_63(), G__G__TreePlayer_428_0_31(), G__G__TreePlayer_430_0_11(), G__G__TreePlayer_431_0_11(), G__G__TreePlayer_432_0_11(), G__G__TreeViewer_220_0_72(), G__G__TreeViewer_221_0_30(), G__G__TreeViewer_222_0_35(), G__G__TreeViewer_223_0_30(), G__G__TreeViewer_224_0_24(), G__G__TreeViewer_246_0_35(), G__G__TreeViewer_267_0_23(), G__G__TreeViewer_276_0_69(), G__G__TreeViewer_291_0_33(), G__G__TreeViewer_294_0_19(), G__G__TreeViewer_295_0_73(), G__G__TreeViewer_296_0_35(), G__G__TreeViewer_298_0_86(), G__G__TreeViewer_306_0_51(), G__G__TreeViewer_317_0_14(), G__G__TreeViewer_320_0_21(), G__G__Unix_112_0_151(), G__G__VMC_112_0_47(), G__G__VMC_114_0_50(), G__G__VMC_120_0_23(), G__G__VMC_121_0_36(), G__G__VMC_123_0_34(), G__G__VMC_131_0_148(), G__G__X11_155_0_248(), G__G__X11TTF_161_0_31(), G__G__X3D_220_0_38(), G__G__XML_119_0_37(), G__G__XML_123_0_77(), G__G__XML_132_0_83(), G__G__XML_134_0_224(), G__G__XML_135_0_45(), G__G__XML_173_0_26(), G__G__XMLParser_114_0_34(), G__G__XMLParser_116_0_32(), G__G__XMLParser_117_0_20(), G__G__XMLParser_118_0_21(), G__G__XMLParser_121_0_30(), G__G__XMLParser_122_0_19(), TMath::GamCf(), GAMinimize(), GAMinTutorial(), ROOT::Math::Cephes::gamma(), XrdClientConnectionMgr::GarbageCollect(), TMLPAnalyzer::GatherInformations(), gaus100d(), gaus10d(), gausNd(), gausnormN(), RooNDKeysPdf::gauss(), ROOT::Minuit2::GaussDataGen::GaussDataGen(), GCValues_t::GCValues_t(), gdk_arg_context_parse(), gdk_bitmap_create_from_data(), gdk_color_context_add_palette(), gdk_color_context_get_index_from_palette(), gdk_color_context_get_pixel_from_palette(), gdk_color_context_get_pixels(), gdk_color_context_get_pixels_incremental(), gdk_color_context_query_colors(), gdk_colormap_alloc_colors(), gdk_colormap_alloc_colors_private(), gdk_colormap_alloc_colors_pseudocolor(), gdk_colormap_alloc_colors_shared(), gdk_colormap_alloc_colors_writeable(), gdk_colormap_change(), gdk_colormap_free_colors(), gdk_colormap_get_system(), gdk_colormap_match_color(), gdk_colormap_new(), gdk_colormap_sync(), gdk_colors_alloc(), gdk_colors_free(), gdk_colors_store(), gdk_cursor_new(), gdk_dropfiles_filter(), gdk_image_get(), gdk_image_new_bitmap(), gdk_image_new_with_depth(), gdk_image_put(), gdk_init_check(), gdk_input_init(), gdk_input_set_axes(), gdk_key_ungrab(), gdk_nmbstowchar_ts(), gdk_nmbstowcs(), gdk_pixmap_new(), gdk_propagate_shapes(), gdk_property_change(), gdk_region_polygon(), gdk_rgb_cmap_fail(), gdk_rgb_cmap_new(), gdk_rgb_colorcube_222(), gdk_rgb_convert_truecolor_lsb(), gdk_rgb_convert_truecolor_lsb_d(), gdk_rgb_do_colormaps(), gdk_rgb_init(), gdk_rgb_make_colorcube(), gdk_rgb_make_colorcube_d(), gdk_rgb_make_gray_cmap(), gdk_rgb_preprocess_dm_565(), gdk_rgb_set_gray_cmap(), gdk_rgb_try_colormap(), gdk_selection_convert(), gdk_text_extents_wc(), gdk_text_width_wc(), gdk_wchar_text_handle(), gdk_wcstombs(), gdk_win32_draw_lines(), gdk_win32_draw_points(), gdk_win32_draw_polygon(), gdk_win32_draw_segments(), gdk_win32_draw_text_wc(), gdk_win32_gc_set_dashes(), gdk_win32_gc_values_to_win32values(), gdk_xpm_destroy_notify(), gen_number(), VectorTest< Dim >::genData(), RooMultiVarGaussian::genData(), VectorTest< Dim >::genDataN(), TSpectrum2Transform::General2(), TSpectrum2Transform::GeneralExe(), TSpectrumTransform::GeneralExe(), TSpectrum2Transform::GeneralInv(), TSpectrumTransform::GeneralInv(), generate(), TGenPhaseSpace::Generate(), ROOT::Math::DistSampler::Generate(), RooAbsPdf::generateBinned(), memstat::TMemStatMng::generateBTID(), TMakeProject::GenerateClassPrefix(), RooUniform::generateEvent(), RooSimGenContext::generateEvent(), RooProdPdf::generateEvent(), RooMultiVarGaussian::generateEvent(), RooFoamGenerator::generateEvent(), RooAddGenContext::generateEvent(), TMakeProject::GenerateForwardDeclaration(), ProofAux::GenerateFriend(), TMakeProject::GenerateIncludeForTemplate(), TMVA::SimulatedAnnealing::GenerateMaxTemperature(), TMakeProject::GenerateMissingStreamerInfos(), TGLLevelPalette::GeneratePalette(), GeneratePuk(), ROOT::RStl::GenerateTClassFor(), MyParticle::GenerateTimeOfDecay(), ProofAux::GenerateTree(), XrdSecsssKT::genKey(), genMatrix(), XrdOucUtils::genPath(), TGLSurfacePainter::GenTexMap(), TDirectory::Get(), TDirectoryFile::Get(), TBits::Get(), XrdSutCache::Get(), THbookFile::Get(), TConfidenceLevel::Get3sProbability(), TConfidenceLevel::Get5sProbability(), get_array(), get_asimage_channel_rects(), get_bits(), get_bits_per_pixel(), get_boolean(), get_dht(), get_dqt(), get_int(), get_interesting_appn(), get_shifts(), XrdSecProtocolkrb4::get_SIR(), get_soi(), get_sos(), get_struct(), get_var_names(), get_xpm_char(), TObjArray::GetAbsLast(), XrdNetDNS::getAddrName(), TSVDUnfold::GetAdetCovMatrix(), TSpectrum2Fit::GetAmplitudeErrors(), TSpectrum2Fit::GetAmplitudes(), RooMultiVarGaussian::getAnalyticalIntegral(), RooUniform::getAnalyticalIntegral(), PiecewiseInterpolation::getAnalyticalIntegralWN(), TGHtml::GetAnyGC(), TMVA::MethodMLP::GetApproxInvHessian(), XrdClientUrlSet::GetARandomUrl(), TASImage::GetArray(), TFITSHDU::GetArrayColumn(), TFITSHDU::GetArrayRow(), RooStats::MarkovChain::GetAsSparseHist(), TH1::GetAsymmetry(), TLDAPEntry::GetAttribute(), TGFontPool::GetAttributeInfo(), TAuthenticate::GetAuthMethodIdx(), TConfidenceLevel::GetAverageCLs(), TConfidenceLevel::GetAverageCLsb(), RooStats::MCMCInterval::GetAxes(), TClass::GetBaseClassOffsetRecurse(), TBenchmark::GetBench(), TUnfold::GetBias(), THnSparse::GetBin(), TKDTreeBinning::GetBinCenter(), ROOT::Fit::SparseData::GetBinData(), ROOT::Fit::SparseData::GetBinDataNoZeros(), TProfileHelper::GetBinError(), TKDTreeBinning::GetBinMaxDensity(), TKDTreeBinning::GetBinMinDensity(), getbintix(), TKDTreeBinning::GetBinVolume(), TKDTreeBinning::GetBinWidth(), TH1::GetBinWithContent(), TH2::GetBinWithContent2(), TH3::GetBinWithContent3(), XrdXtRdFile::GetBlkToPrefetch(), XrdXtRdFile::GetBlkToRead(), TMVA::MethodBoost::GetBoostROCIntegral(), TLatex::GetBoundingBox(), TText::GetBoundingBox(), TGeoPcon::GetBoundingCylinder(), TGeoPgon::GetBoundingCylinder(), TGeoArb8::GetBoundingCylinder(), TTree::GetBranch(), TGeoNodeCache::GetBranchNames(), TGeoNodeCache::GetBranchNumbers(), TGeoNodeCache::GetBranchOnlys(), TEveTrackProjected::GetBreakPointIdx(), XrdSutRndm::GetBuffer(), TTUBS::GetBuffer3D(), TSPHE::GetBuffer3D(), TXTRU::GetBuffer3D(), TGeoCtub::GetBuffer3D(), XrdCmsCache::getBVec(), RooMomentMorph::getCache(), TGTable::GetCHdrWidth(), TClass::GetCheckSum(), TUnfoldSys::GetChi2Sys(), TPyClassGenerator::GetClass(), ROOT::TBranchProxy::GetClaStart(), XrdProofdClientMgr::GetClient(), TMVA::RuleEnsemble::GetCoefficients(), RooAbsAnaConvPdf::getCoefNorm(), TGQt::GetColorBits(), TGHtml::GetColorByName(), TGHtml::GetColorByValue(), TTermManip::GetColorIndex(), TTable::GetColumnComment(), TTreeSQL::GetColumnIndice(), ROOT::Math::Transform3D::GetComponents(), ROOT::Math::Rotation3D::GetComponents(), ROOT::Math::LorentzRotation::GetComponents(), TBackCompFitter::GetConfidenceIntervals(), TFitter::GetConfidenceIntervals(), ROOT::Fit::FitResult::GetConfidenceIntervals(), TLinearFitter::GetConfidenceIntervals(), ROOT::GetContainedClassName(), TGraph2DPainter::GetContourList(), TText::GetControlBox(), GetCoords(), ROOT::Fit::FitResult::GetCorrelationMatrix(), TGraph::GetCovariance(), TFitterMinuit::GetCovarianceMatrix(), ROOT::Fit::FitResult::GetCovarianceMatrix(), TBackCompFitter::GetCovarianceMatrix(), TMultiLayerPerceptron::GetCrossEntropy(), TMultiLayerPerceptron::GetCrossEntropyBinary(), XrdCryptoFactory::GetCryptoFactory(), TMVA::VariableGaussTransform::GetCumulativeDist(), TGeoIterator::GetCurrentMatrix(), TSVDUnfold::GetD(), GetData(), TSAM::GetDatasets(), ROOT::Fit::GetDataType(), TTimeStamp::GetDayOfYear(), TNeuron::GetDeDw(), TGLFormat::GetDefaultSamples(), TGStatusBar::GetDefaultSize(), TNeuron::GetDerivative(), THostAuth::GetDetails(), HFit::GetDrawingRange(), TSAM::GetDSetFiles(), TSAM::GetDSetLocations(), TMatrixDEigen::GetEigenValues(), TEntryListFromFile::GetEntries(), TObjArray::GetEntries(), TBranchElement::GetEntry(), TMultiLayerPerceptron::GetEntry(), TTree::GetEntry(), TEntryListBlock::GetEntry(), TBranchObject::GetEntry(), TBranchSTL::GetEntry(), TEntryList::GetEntry(), TBranchClones::GetEntry(), TChain::GetEntryNumber(), TTreeIndex::GetEntryNumberWithBestIndex(), TTreeIndex::GetEntryNumberWithIndex(), TTree::GetEntryWithIndex(), TMVA::MethodMLP::GetError(), TMultiLayerPerceptron::GetError(), TLinearFitter::GetErrors(), TConfidenceLevel::GetExpectedCLb_b(), TConfidenceLevel::GetExpectedCLb_sb(), TConfidenceLevel::GetExpectedCLsb_b(), TFormula::GetExpFormula(), TChi2ExtendedFitData::GetExtendedFitData(), XrdCryptosslX509::GetExtension(), XrdCryptosslX509Req::GetExtension(), TSapDBRow::GetFieldLength(), TFTP::GetFile(), TAlienResult::GetFileInfoList(), TGLiteResult::GetFileInfoList(), THtml::TFileDefinition::GetFileName(), THtml::TPathDefinition::GetFileNameFromInclude(), TChi2FitData::GetFitData(), RooHist::getFitRangeNEvt(), TLinearFitter::GetFitSample(), TUnfold::GetFoldedOutput(), TGFontPool::GetFont(), TGFontPool::GetFontFamilies(), TGFontPool::GetFontFromAttributes(), TWinNTSystem::GetFsInfo(), TStreamerElement::GetFullName(), TFitEditor::GetFunctionsFromSystem(), getGaussRnd(), TGHtml::GetGC(), RooUniform::getGenerator(), RooMultiVarGaussian::getGenerator(), TWinNTSystem::GetGid(), TRotMatrix::GetGLMatrix(), TGuiBldDragManager::GetGlobalColorDialog(), TVolumeView::GetGlobalRange(), TKDE::GetGraphWithErrors(), TWinNTSystem::GetGroupInfo(), THashTable::GetHashValue(), TWebFile::GetHead(), TMakeProject::GetHeaderName(), TEveCaloData::GetHighlightTooltip(), TGeoMatrix::GetHomogenousMatrix(), XrdNetDNS::getHostAddr(), TWinNTSystem::GetHostByName(), XrdNetDNS::getHostName(), RooStats::ProfileLikelihoodCalculator::GetHypoTest(), TGHtml::GetImageAlignment(), TGeoVolume::GetIndex(), TBranchSTL::GetInfo(), TUnfold::GetInput(), TMVA::TNeuronInputSqSum::GetInput(), TNeuron::GetInput(), TMVA::TNeuronInputAbs::GetInput(), TMVA::TNeuronInputSum::GetInput(), RooStats::ProfileLikelihoodCalculator::GetInterval(), RooStats::NeymanConstruction::GetInterval(), TGeoRotation::GetInverse(), TDsKey::GetKey(), RooStats::MCMCInterval::GetKeysMax(), TBranch::GetLeaf(), TLeaf::GetLeafCounter(), TMVA::SVKernelMatrix::GetLine(), getline(), TTabCom::GetListOfGlobalFunctions(), TTabCom::GetListOfGlobals(), RooStats::ProfileInspector::GetListOfProfilePlots(), XrdXtRdFile::GetListOfSources(), TUnfold::GetLsquared(), GetMarkerByNumber(), XrdCmsCluster::getMask(), TASImage::GetMask(), TEveElement::GetMaster(), TDecompLU::GetMatrix(), THStack::GetMaximum(), TTree::GetMaximum(), TGraph::GetMean(), TMessageHandler::GetMessageCount(), THStack::GetMinimum(), TTree::GetMinimum(), TF2::GetMinimumXY(), TF3::GetMinimumXYZ(), TLDAPAttribute::GetMod(), TLDAPEntry::GetMods(), TBranch::GetMother(), TMVA::MethodANNBase::GetMulticlassValues(), TMVA::MethodANNBase::GetMvaValue(), TMVA::MethodBoost::GetMvaValue(), TMVA::MethodCompositeBase::GetMvaValue(), TMVA::MethodCategory::GetMvaValue(), TMVA::MethodMLP::GetMvaValueAsymError(), TGeoDecayChannel::GetName(), TMCParticle::GetName(), XrdLink::getName(), MyParticle::GetName(), TWinNTSystem::GetNbGroups(), XrdProofdProofServ::GetNClients(), TMVA::RuleCut::GetNcuts(), TTreeFormulaManager::GetNdata(), TProofServ::GetNextPacket(), TPacketizerAdaptive::GetNextUnAlloc(), TMVA::DecisionTree::GetNode(), TGeoIterator::GetNode(), TGeoVolume::GetNodeIndex(), TGeoSubtraction::GetNpoints(), TGeoUnion::GetNpoints(), TGeoIntersection::GetNpoints(), TF1::GetNumberFreeParameters(), UnitTesting::UnitTestSuite::getNumFailed(), UnitTesting::UnitTestSuite::getNumPassed(), RooCacheManager< T >::getObj(), DNDMainFrame::GetObject(), TDirectoryFile::GetObjectChecked(), TDirectory::GetObjectChecked(), TVolumeView::GetObjectInfo(), TMemStat::GetObjectInfo(), TFileDrawMap::GetObjectInfoDir(), TMVA::CCPruner::GetOptimalPruneSequence(), TPSocket::GetOption(), TQtRootApplication::GetOptions(), TRootApplication::GetOptions(), TGApplication::GetOptions(), TApplication::GetOptions(), TUnfold::GetOutput(), GetParameters(), TFormula::GetParameters(), TFormula::GetParNumber(), RooProduct::getPartIntList(), TGeoIterator::GetPath(), TDirectory::GetPathStatic(), TGeoManager::GetPdgName(), GetPixel(), TASImage::GetPixels(), TGeoXtru::GetPlaneNormal(), TGeoArb8::GetPlaneNormal(), TGeoTrack::GetPoint(), TFFTComplex::GetPointComplex(), TFFTComplexReal::GetPointComplex(), TFFTRealComplex::GetPointComplex(), TFFTReal::GetPointReal(), TFFTRealComplex::GetPointReal(), TFFTComplexReal::GetPointReal(), TFFTComplex::GetPoints(), TFFTRealComplex::GetPoints(), TFFTComplexReal::GetPointsComplex(), TFFTComplex::GetPointsComplex(), TFFTRealComplex::GetPointsComplex(), TGeoBBox::GetPointsOnFacet(), TGeoBBox::GetPointsOnSegments(), TGeoCone::GetPointsOnSegments(), TGeoConeSeg::GetPointsOnSegments(), TGeoTube::GetPointsOnSegments(), TGeoTubeSeg::GetPointsOnSegments(), Track::GetPointValue(), TSpectrum2Fit::GetPositionErrors(), TSpectrum2Fit::GetPositions(), TMVA::MsgLogger::GetPrintedSource(), RooAbsReal::getPropagatedError(), TGWin32::GetProperty(), XrdProtLoad::getProtocol(), XrdProtLoad::getProtocolPort(), TH1::GetQuantiles(), TF1::GetQuantiles(), TF1::GetRandom(), THnSparse::GetRandom(), TF2::GetRandom2(), TF3::GetRandom3(), TAuthenticate::GetRandString(), ROOT::Fit::DataRange::GetRange(), TView3D::GetRange(), RooAbsData::getRange(), TFITSHDU::GetRecord(), TLDAPEntry::GetReferrals(), TMVA::MethodPDEFoam::GetRegressionValues(), TMVA::MethodANNBase::GetRegressionValues(), TGTable::GetRHdrHeight(), TUnfold::GetRhoI(), TUnfold::GetRhoIJ(), TGraph::GetRMS(), TMVA::MethodBase::GetROCIntegral(), TMVA::OptimizeConfigParameters::GetROCIntegral(), GetRomanIndex(), TWebPalette::GetRootColors(), TImagePalette::GetRootColors(), RooStats::ToyMCSamplerOld::GetSamplingDistribution(), RooStats::DebuggingSampler::GetSamplingDistribution(), TGLViewerBase::GetSceneInfo(), XrdClientUrlSet::GetServers(), TProofMgrLite::GetSessionLogs(), TGeoMCGeometry::GetShape(), ROOT::Math::GoFTest::GetSigmaN(), TEveCaloData::RebinData_t::GetSliceVals(), XrdClientAdmin::GetSpaceInfo(), TMVA::Tools::GetSQRootMatrix(), TMemStat::GetStampList(), TGeoCacheState::GetState(), ROOT::TBranchProxy::GetStlStart(), ROOT::GetStreamerInfo(), XrdSutRndm::GetString(), TBranch::GetSubBranch(), TChainIndex::GetSubTreeIndex(), TArrayF::GetSum(), TDsKey::GetSum(), TArrayD::GetSum(), TArrayC::GetSum(), TArrayL64::GetSum(), TArrayS::GetSum(), TArrayI::GetSum(), TArrayL::GetSum(), RooStats::SPlot::GetSumOfEventSWeight(), TMultiLayerPerceptron::GetSumSquareError(), TSPlot::GetSWeights(), TGeoTabManager::GetTabIndex(), TTableDescriptor::GetTable(), TGenericTable::GetTable(), TMessageHandler::GetTotalMessageCount(), TBranch::GetTotBytes(), TGeoNavigator::GetTouchedCluster(), TGeoManager::GetTrackIndex(), TGeoManager::GetTrackOfId(), TMVA::DataSet::GetTree(), TParallelCoord::GetTree(), TTable::GetTypeId(), TWinNTSystem::GetUid(), TSVDUnfold::GetUnfoldCovMatrix(), TTreeCacheUnzip::GetUnzipBuffer(), TUrl::GetUrl(), TWinNTSystem::GetUserInfo(), TNeuron::GetValue(), TLeafElement::GetValue(), TLeafB::GetValue(), TLeafElement::GetValueSubArray(), TTreeDrawArgsParser::GetVarExp(), TMVA::DecisionTree::GetVariableImportance(), MultiGaussRooPdf::getVars(), XrdMpxXml::getVars(), Track::GetVertex(), TSpectrum2Fit::GetVolumeErrors(), TSpectrum2Fit::GetVolumes(), TGTextLine::GetWord(), XrdProofSched::GetWorkers(), TH2PolyBin::GetXMax(), TGraph2D::GetXmax(), TGraph2DErrors::GetXmaxE(), TH2PolyBin::GetXMin(), TGraph2D::GetXmin(), TGraph2DErrors::GetXminE(), TPoints3DABC::GetXYZ(), TTable3Points::GetXYZ(), RooStats::SPlot::GetYieldFromSWeight(), TH2PolyBin::GetYMax(), TGraph2D::GetYmax(), TGraph2DErrors::GetYmaxE(), TH2PolyBin::GetYMin(), TGraph2D::GetYmin(), TGraph2DErrors::GetYminE(), TBranch::GetZipBytes(), TGraph2D::GetZmax(), TGraph2DErrors::GetZmaxE(), TGraph2D::GetZmin(), TGraph2DErrors::GetZminE(), GIFdecode(), GIFencode(), GifLastError(), GIFquantize(), gl2psWriteBigEndian(), gl_addchar(), gl_back_1_word(), gl_del(), gl_fixup(), gl_fwd_1_word(), gl_kill_1_word(), gl_kill_back_1_word(), gl_tab(), gl_yank(), ROOT::GlbsToolCheckCert(), globus_gsi_cred_read_cert(), globus_gsi_cred_read_pkcs12(), globus_gsi_cred_read_proxy_bio(), globus_gsi_cred_write(), globus_l_gfs_file_destroy_stat(), globus_l_gfs_posix_stat(), GlobusGetLocalEnv(), glrose(), TetrisBoard::GluePiece(), glViewerLOD(), goftest(), goto_tab_stop(), TGFileBrowser::GotoDir(), TPainter3dAlgorithms::GouraudFunction(), ChebyQuadFunction::Gradient(), TUnuranMultiContDist::Gradient(), TASImage::Gradient(), ROOT::Minuit2::FCNGradAdapter< Function >::Gradient(), TFcnAdapter::Gradient(), TrigoFletcherFunction::Gradient(), ROOT::Math::MinimTransformFunction::GradientTransformation(), graph(), graph2derrorsfit(), TLinearFitter::GraphLinearFitter(), graphShade(), TProofLogElem::Grep(), RooProduct::groupProductTerms(), GRST_get_voms_roles_and_free(), GRST_print_ssl_creds(), GRSTasn1GetX509Name(), GRSTasn1Parse2(), GRSTasn1SearchTaglist(), GRSTgaclCredAddValue(), GRSTgaclCredCreate(), GRSTgaclEntryParse(), GRSTgaclEntryPrint(), GRSTgaclPermFromChar(), GRSTgaclPermPrint(), GRSTgaclPermToChar(), GRSThttpGetCGI(), GRSThttpUrlDecode(), GRSTx509ChainLoadCheck(), GRSTx509ChainVomsAdd(), GRSTx509CheckChain(), GRSTx509CompactCreds(), GRSTx509GetVomsCreds(), GRSTx509KnownCriticalExts(), GRSTx509MakeDelegationID(), GRSTx509MakeProxyCert(), GRSTx509ParseVomsExt(), GRSTxacmlEntryParse(), GRSTxacmlEntryPrint(), GRSTxacmlPermPrint(), gsl_poly_complex_solve_quartic(), gtime(), gtime2(), guitest_playback(), gxv_bsln_parts_fmt2_validate(), gxv_ClassTable_validate(), gxv_feat_name_validate(), gxv_feat_validate(), gxv_just_actSubrecord_type0_validate(), gxv_just_pcActionRecord_validate(), gxv_just_wdc_entry_validate(), gxv_just_widthDeltaClusters_validate(), gxv_kern_subtable_fmt0_pairs_validate(), gxv_kern_subtable_fmt3_validate(), gxv_kern_validate_generic(), gxv_lcar_LookupValue_validate(), gxv_LookupTable_fmt0_validate(), gxv_LookupTable_fmt8_validate(), gxv_mort_featurearray_validate(), gxv_mort_subtable_type1_substTable_validate(), gxv_mort_subtables_validate(), gxv_mort_validate(), gxv_morx_subtable_type1_substitutionTable_validate(), gxv_morx_subtables_validate(), gxv_morx_validate(), gxv_odtect_validate(), gxv_opbd_LookupValue_validate(), gxv_set_length_by_ulong_offset(), gxv_set_length_by_ushort_offset(), gxv_sfntName_validate(), gxv_trak_trackTable_validate(), gxv_validate(), H1InitPolynom(), H1LeastSquareFit(), H1LeastSquareLinearFit(), H1LeastSquareSeqnd(), TSVDUnfold::H2M(), TSVDUnfold::H2V(), TSVDUnfold::H2Verr(), TSpectrum2Transform::Haar(), TSpectrumTransform::Haar(), TSpectrum2Transform::HaarWalsh2(), TDecompBase::Hager(), handle(), handle1(), handle2(), handle_asxml_tag_composite(), TGHeaderFrame::HandleButton(), TGTabElement::HandleButton(), TRootCanvas::HandleDNDEnter(), TGDNDManager::HandleDNDEnter(), TRootEmbeddedCanvas::HandleDNDEnter(), TGListTree::HandleDNDEnter(), TGTextView::HandleDNDEnter(), TGHeaderFrame::HandleDoubleClick(), TGTextEdit::HandleDoubleClick(), TProof::HandleInputMessage(), TMessageHandler::HandleMessage(), TGHeaderFrame::HandleMotion(), TGTextView::HandleSelectionRequest(), TProofServ::HandleSocketInput(), TProofPlayerSuperMaster::HandleTimer(), RooChangeTracker::hasChanged(), Hash(), TString::Hash(), TStringRef::Hash(), hash_free(), hash_rehash(), TStringRef::HashFoldCase(), PyROOT::HashSignature(), TStackInfo::HashStack(), RooHist::hasIdenticalBinning(), THostAuth::HasMethod(), ROOT::Minuit2::NegativeG2LineSearch::HasNegativeG2(), HaveExportedObjects(), TGHtml::HClear(), hclient(), XrdFrmAdmin::Help(), THtml::HelperDeleted(), ROOT::Minuit2::BasicMinimumError::Hessian(), QSymbolCodec::heuristicContentMatch(), HexStrToInt(), TetrisPiece::Hide(), TGuiBldDragManager::HideGrabRectangles(), MyParticle::HighLight(), hist_get(), hist_init(), HistAction::HistAction(), histobrowser(), history_load(), history_save(), hksimple(), hlabels1(), hlabels2(), TTabCom::Hook(), XrdNetDNS::Host2Dest(), TEcho::Hostname(), hsimple(), hsum(), hsumanim(), hsumTimer(), TColor::HSV2RGB(), HtmlObjTable::HtmlObjTable(), htw(), hue_scanlines(), huft_build(), IDATQQ(), Idmax(), RooMomentMorph::idxmax(), RooMomentMorph::idxmin(), ROOT::Math::Cephes::igami(), PyROOT::im_call(), TASImage::Image2Drawable(), TGWin32::ImgPickPalette(), TGX11::ImgPickPalette(), TPainter3dAlgorithms::ImplicitFunction(), TLeafF::Import(), TLeafB::Import(), TLeafC::Import(), TLeafD::Import(), TLeafS::Import(), TLeafO::Import(), TLeafI::Import(), TLeafL::Import(), RooDataHist::importDHistSet(), TEveProjectionManager::ImportElementsRecurse(), TGeoElementTable::ImportElementsRN(), TPythia6::ImportParticles(), TPythia8::ImportParticles(), TGenerator::ImportParticles(), TMemStatStackInfo::Inc(), ROOT::Math::Cephes::incbi(), TColorWheel::InCircles(), included_by(), TBtInnerNode::IncrNofKeys(), TROOT::IndentLevel(), ROOT::Fit::FitResult::Index(), RooNormSetCache::index(), TString::Index(), TGHtml::IndexMod(), TOrdCollection::IndexOf(), TBtInnerNode::IndexOf(), TBtLeafNode::IndexOf(), TObjArray::IndexOf(), inet_ntop_v4(), inflate_blocks(), XrdCmsManager::Inform(), XrdFrmProxy::Init(), MyEvent::Init(), TBranchElement::Init(), TTreeCacheUnzip::Init(), TMemHashTable::Init(), TMVA::MethodPDEFoam::Init(), XrdSecProtocolgsi::Init(), XrdOssSpace::Init(), TPie::Init(), TBranch::Init(), TBuffer3D::Init(), ROOT::Minuit2::GaussFcn2::Init(), TGTable::Init(), MyDetector::Init(), TTablePadView3D::Init(), TMemStatManager::Init(), TClassTree::Init(), TMVA::MethodCuts::Init(), TBranchObject::Init(), TGLFBO::Init(), TGFileItem::Init(), TMemStatStackInfo::Init(), TPSocket::Init(), XrdCmsClientMsg::Init(), NdbMTReacDesc::Init(), TTreeFormula::Init(), ROOT::Fit::Init2DGaus(), init_gray(), initArray(), TSelectorDraw::InitArrays(), TSpider::InitArrays(), TGLFormat::InitAvailableSamples(), TEvePointSetArray::InitBins(), TMVA::PDEFoam::InitCells(), TFoam::InitCells(), TGLParametricPlot::InitColors(), TGeoHelix::InitDirection(), InitDisplay(), TTreeTableInterface::InitEntries(), XrdPosixXrootd::initEnv(), ROOT::Fit::InitExpo(), ROOT::Fit::InitGaus(), TMVA::RuleFitParams::InitGD(), RooProdPdf::initGenerator(), TGLIsoPainter::InitGeometry(), TGLParametricPlot::InitGeometry(), TGLSurfacePainter::InitGeometryCartesian(), TGLLegoPainter::InitGeometryCartesian(), TGLSurfacePainter::InitGeometryCylindrical(), TGLLegoPainter::InitGeometryCylindrical(), TGLSurfacePainter::InitGeometryPolar(), TGLLegoPainter::InitGeometryPolar(), TGLSurfacePainter::InitGeometrySpherical(), TGLLegoPainter::InitGeometrySpherical(), TMVA::VariableNormalizeTransform::Initialize(), RooBinningCategory::initialize(), TPostScript::Initialize(), RooMomentMorph::initialize(), RooDataHist::initialize(), TH2Poly::Initialize(), RooNormSetCache::initialize(), TMVA::RuleEnsemble::Initialize(), TMVA::LDA::Initialize(), TetrisPiece::Initialize(), TFoam::Initialize(), RooSegmentedIntegrator1D::initialize(), TColor::InitializeColors(), TMVA::MethodMLP::InitializeLearningRates(), TBranchElement::InitInfo(), THbookFile::InitLeaves(), initMatrix(), TEveParamListEditor::InitModel(), TPainter3dAlgorithms::InitMoveScreen(), RooAbsTestStatistic::initMPMode(), HitNames::InitNames(), TMVA::RuleFitParams::InitNtuple(), TDecompSparse::InitPivot(), TDecompSparse::InitPivot_sub1(), TDecompSparse::InitPivot_sub2(), TDecompSparse::InitPivot_sub2a(), TDecompSparse::InitPivot_sub3(), TDecompSparse::InitPivot_sub4(), TDecompSparse::InitPivot_sub5(), TDecompSparse::InitPivot_sub6(), TRootBrowser::InitPlugins(), TGraph::InitPolynom(), TMultiGraph::InitPolynom(), ROOT::Math::VavilovAccurate::InitQuantile(), TPainter3dAlgorithms::InitRaster(), TQtWidget::InitRint(), ROOT::InitSelect(), TF1::InitStandardFunctions(), TGLFontManager::InitStatics(), TWinNTSystem::InitUsersGroups(), TSpider::InitVariables(), TMVA::MethodANNBase::InitWeights(), TGX11::InitWindow(), TGWin32::InitWindow(), inList(), InputType(), TGTextEntry::Insert(), FTCharToGlyphIndexMap::insert(), TGListTree::InsertChild(), TGeoManager::InsertPNEId(), TGraph::InsertPoint(), TMatrixTSparse< Element >::InsertRow(), TClassEdit::InsertStd(), RootCsg::TConnectedMeshWrapper< TMesh >::InsertVertexAlongEdge(), TGeoArb8::InsidePolygon(), TAutoInspector::Inspect(), TDumpMembers::Inspect(), InspectDiff(), TGeoNode::InspectNode(), TInspectCanvas::InspectObject(), ROOT::Minuit2::MnUserTransformation::Int2extCovariance(), RooGaussKronrodIntegrator1D::integral(), RooIntegrator1D::integral(), RooSegmentedIntegrator1D::integral(), RooAdaptiveGaussKronrodIntegrator1D::integral(), TGraph::Integral(), ROOT::TF1Helper::IntegralError(), TCutG::IntegralHist(), internal_dfa_exec(), TGQt::InternAtom(), RooMath::interpolate(), interpolate(), TGraphDelaunay::Interpolate(), interpolate_asim_strip_gradients(), RooDataHist::interpolateDim(), TEventList::Intersect(), RootCsg::intersect_poly_with_line_2d(), TGTextLayout::IntersectText(), TRolke::Interval(), IntStr(), TEveCaloData::InvalidateUsersCellIdCache(), TMatrixT< Element >::Invert(), TMatrixTSym< Element >::Invert(), TMatrixTSym< Element >::InvertFast(), TMatrixT< Element >::InvertFast(), TDecompLU::InvertLU(), TUnfold::InvertMConditioned(), TUnfold::InvertMSparse(), TGeoVolume::InvisibleAll(), InvNChooseK(), ROOT::Math::MinimTransformFunction::InvStepTransformation(), ROOT::Math::MinimTransformFunction::InvTransformation(), XrdOucUtils::is1of(), is_block_empty(), TGeoVolume::IsAllInvisible(), TString::IsAlnum(), TString::IsAlpha(), ROOT::TSchemaRuleProcessor::IsANumber(), TString::IsAscii(), isBinary(), XrdCryptosslX509::IsCA(), TGeoPgon::IsCrossingSlice(), TString::IsDigit(), TAlienPackage::IsDirectory(), TetrisBoard::IsEmptyLine(), TGeoMixture::IsEq(), TStackInfo::IsEqual(), IsEqual(), TRecorderRecording::IsFiltered(), TetrisBoard::IsFullLine(), TString::IsHex(), RooFitResult::isIdentical(), Roo1DTable::isIdentical(), RooHist::isIdentical(), TGeoPolygon::IsIllegalCheck(), RooStats::PointSetInterval::IsInInterval(), RooStats::MCMCInterval::IsInInterval(), ROOT::Fit::BinPoint::IsInRange(), THnSparse::IsInRange(), THistPainter::IsInside(), TMath::IsInside(), HistAction::isLayout(), XrdNetDNS::isMatch(), TMethodBrowsable::IsMethodBrowsable(), RooDataSet::isNonPoissonWeighted(), RooDataHist::isNonPoissonWeighted(), TPainter3dAlgorithms::IsoSurface(), XSElement::IsotopeInfo(), HistAction::isOverlap(), ROOT::Fit::FitResult::IsParameterBound(), ROOT::Fit::FitResult::IsParameterFixed(), TGeoXtru::IsPointInsidePlane(), RooStreamParser::isPunctChar(), TLDAPEntry::IsReferral(), TGeoVoxelFinder::IsSafeVoxel(), TGeoPolygon::IsSegConvex(), IsTextFile(), TDataSet::IsThisDir(), TIndexTable::IsValid(), TTableMap::IsValid(), TGeoRotation::IsValid(), RooWorkspace::isValidCPPID(), XrdPosixXrootd::isXrootdDir(), TEveGListTreeEditorFrame::ItemDblClicked(), Java_XrdClientAdminJNI_dirlist(), Java_XrdClientAdminJNI_existdirs(), Java_XrdClientAdminJNI_existfiles(), Java_XrdClientAdminJNI_isfileonline(), Java_XrdClientAdminJNI_prepare(), jcopy_markers_execute(), jinit_2pass_quantizer(), jinit_arith_decoder(), jinit_arith_encoder(), jinit_c_coef_controller(), jinit_d_coef_controller(), jinit_forward_dct(), jinit_huff_decoder(), jinit_huff_encoder(), jinit_marker_reader(), jinit_phuff_encoder(), jpeg_add_quant_table(), jpeg_CreateCompress(), jpeg_CreateDecompress(), jpeg_gen_optimal_table(), jpeg_make_c_derived_tbl(), jpeg_make_d_derived_tbl(), jpeg_set_defaults(), jpeg_suppress_tables(), kalman_do(), TKDEFGT::Kcenter(), kdTreeBinning(), TTree::KeepCircular(), TBranch::KeepCircular(), kerning(), XrdCnsXref::Key(), ROOT::Math::GoFTest::KolmogorovSmirnovTest(), TH3::KolmogorovTest(), TH2::KolmogorovTest(), TMath::KolmogorovTest(), TKDTree< Index, Value >::KOrdStat(), TRobustEstimator::KOrdStat(), TMath::KOrdStat(), XrdSecsssKT::ktDecode0(), labels1(), labels2(), TGLAxisPainter::LabelsLimits(), TGaxis::LabelsLimits(), TProfile::LabelsOption(), TH1::LabelsOption(), TProfile2D::LabelsOption(), ROOT::Math::landau_quantile(), langaufit(), langaufun(), langaupro(), langaus(), large_interval(), TimeReport::largeSum(), RooMinimizer::lastMinuitFit(), RooFitResult::lastMinuitFit(), XSPeriodicTable::Layout(), TGListView::Layout(), TGTabLayout::Layout(), TGraphEdge::Layout(), TGraphStruct::Layout(), TGListView::LayoutHeader(), TMultiGraph::LeastSquareFit(), TGraph::LeastSquareFit(), TGraph::LeastSquareLinearFit(), TMultiGraph::LeastSquareLinearFit(), TPainter3dAlgorithms::LegoCartesian(), TPainter3dAlgorithms::LegoCylindrical(), TPainter3dAlgorithms::LegoFunction(), TGeoChecker::LegoPlot(), TPainter3dAlgorithms::LegoPolar(), TPainter3dAlgorithms::LegoSpherical(), length(), ROOT::Math::Cephes::lgam(), LibMap(), lighten_scanlines(), TPainter3dAlgorithms::LightSource(), likelihoodrefs(), limit(), line3Dfit(), TMVA::MethodMLP::LineSearch(), lineset(), lineset_2d(), TList::LinkAt(), XrdProofdResponse::LinkSend(), XrdFrmReqAgent::List(), XrdFrmProxy::List(), XrdCmsCluster::List(), list_scanline_merging(), TRecorderInactive::ListCmd(), TRecorderInactive::ListGui(), XrdFrmReqFile::ListL(), TSystem::ListLibraries(), TAlien::ListPackages(), TGText::Load(), TSystem::Load(), XrdProtLoad::Load(), load_asimage_list_entry_data(), XrdSecProtocolsss::Load_Crypto(), load_freetype_glyphs(), load_freetype_locale_glyphs(), load_glyph_freetype(), load_tga_truecolor(), load_truetype_glyph(), load_X11_glyph_range(), load_X11_glyphs(), TBranch::LoadBaskets(), TGText::LoadBuffer(), RooMath::loadCache(), XrdCryptosslX509Crl::LoadCache(), XrdSecProtocolgsi::LoadCADir(), RooNDKeysPdf::loadDataSet(), RooKeysPdf::LoadDataSet(), NdbMTDir::LoadENDF(), NdbMTReactionXS::LoadENDF(), TPluginManager::LoadHandlersFromPluginDirs(), TFITSHDU::LoadHDU(), TPython::LoadMacro(), TFormLeafInfoMultiVarDimCollection::LoadSizes(), TFormLeafInfoMultiVarDimClones::LoadSizes(), TFormLeafInfoMultiVarDim::LoadSizes(), RooTreeDataStore::loadValues(), RooNDKeysPdf::loadWeightSet(), LoadXS(), TVolumePosition::Local2Master(), TGeometry::Local2Master(), TGeoMatrix::LocalToMaster(), TGeoRotation::LocalToMaster(), TGeoTranslation::LocalToMaster(), TGeoMatrix::LocalToMasterBomb(), TGeoTranslation::LocalToMasterBomb(), TGeoMatrix::LocalToMasterVect(), TGeoPainter::LocalToMasterVect(), locate_image_file(), locate_image_file_in_path(), TMath::LocMax(), TMath::LocMin(), TGLScene::TSceneInfo::Lodify(), RooAbsReal::logEvalError(), XrdProofdClientMgr::Login(), logscales(), ROOT::Fit::BinData::LogTransform(), lookup_lwfn_by_fond(), TEveTrackPropagator::LoopToVertex(), XrdOucString::lower(), RooStats::MCMCInterval::LowerLimitByDataHist(), RooStats::MCMCInterval::LowerLimitByKeys(), RooStats::MCMCInterval::LowerLimitBySparseHist(), TGraphSmooth::Lowess(), TStreamerSTL::ls(), TClassTree::ls(), XrdXrootdJob2Do::lstClient(), TPainter3dAlgorithms::Luminosity(), m_init(), ClusterD::mag2(), VecTrackD::mag2(), main(), main_orig(), TEveCaloLegoGL::Make3DDisplayList(), TEveCaloLegoGL::Make3DDisplayListRebin(), make_event_trees(), make_funny_pointers(), make_reverse_colorhash(), make_reverse_colormap(), TGeoVolumeAssembly::MakeAssemblyFromVolume(), THistPainter::MakeChopt(), RooClassFactory::makeClass(), TTabCom::MakeClassFromVarName(), TMVA::MethodANNBase::MakeClassSpecific(), TMemStat::MakeCodeArray(), RooAbsAnaConvPdf::makeCoefVarList(), TGeoVolume::MakeCopyNodes(), TGeoVolumeMulti::MakeCopyVolume(), MakeCrazy(), THistPainter::MakeCuts(), makeData(), TMatrixDSymEigen::MakeEigenVectors(), makeEventSample(), TTable::MakeExpression(), TestBasic303::makeFakeDataXY(), makeFakeDataXY(), TGFontPool::MakeFont(), TMVA::RuleFit::MakeForest(), RooProduct::makeFPName(), TMVA::VariableDecorrTransform::MakeFunction(), TMVA::TransformationHandler::MakeFunction(), TMVA::VariablePCATransform::MakeFunction(), TMVA::RuleFitParams::MakeGDPath(), TMVA::RuleFitParams::MakeGradientVector(), TMemStat::MakeGraph(), TMemStat::MakeGraphCode(), TMemStat::MakeGraphStack(), TMatrixDEigen::MakeHessenBerg(), MakeHilbertMat(), TMemStat::MakeHisMemoryStamp(), MakeHisto(), TPrincipal::MakeHistograms(), TPie::MakeLegend(), TMVA::RuleEnsemble::MakeLinearTerms(), TPrincipal::MakeNormalised(), TGX11::MakeOpaqueColors(), TGWin32::MakeOpaqueColors(), makePoints(), MakePolygonArray(), TPrincipal::MakePrincipals(), TGraphQQ::MakeQuantiles(), TPrincipal::MakeRealCode(), TGeoVolume::MakeReflectedVolume(), RooHist::makeResidHist(), TEveCalo2DGL::MakeRhoZCell(), TEveCalo2DGL::MakeRPhiCell(), TMatrixDEigen::MakeSchurr(), TEveCaloVizEditor::MakeSliceInfo(), TPie::MakeSlices(), TSPlot::MakeSPlot(), TMemStat::MakeStackArray(), TestBasic102::makeTH1(), makeTH1(), TEveTrack::MakeTrack(), TEveTrackProjected::MakeTrack(), TEveTrackList::MakeTracks(), makeTree_circ(), makeTree_lin_Nvar(), MakeTrees(), TMatrixDSymEigen::MakeTridiagonal(), TMVA::RuleFitParams::MakeTstGradientVector(), TestBasic102::makeTTree(), makeTTree(), MakeVecData(), TRegexp::MakeWildcard(), TFile::Map(), map_init_meta(), map_init_nls(), TVolume::MapGEANT2StNodeVis(), TGX11::MapKeySym(), TGWin32::MapKeySym(), MapKeySym(), TFFTReal::MapOptions(), TGX11::MapPictureAttributes(), XrdFrmUtils::MapV2I(), TPainter3dAlgorithms::MarchingCube(), TPainter3dAlgorithms::MarchingCubeCase00(), TPainter3dAlgorithms::MarchingCubeCase07(), TPainter3dAlgorithms::MarchingCubeCase10(), TPainter3dAlgorithms::MarchingCubeCase12(), TPainter3dAlgorithms::MarchingCubeCase13(), TPainter3dAlgorithms::MarchingCubeFindNodes(), TPainter3dAlgorithms::MarchingCubeMiddlePoint(), TPainter3dAlgorithms::MarchingCubeSetTriangles(), TGHtmlMarkupElement::MarkupArg(), TGTextEntry::MarkWord(), TVolumePosition::Master2Local(), TGeoRotation::MasterToLocal(), TGeoTranslation::MasterToLocal(), TGeoMatrix::MasterToLocalBomb(), TGeoTranslation::MasterToLocalBomb(), TGeoMatrix::MasterToLocalVect(), match(), XrdSecProtBind::Match(), matchParentheses(), TPRegexp::MatchS(), TSVDUnfold::MatDivVec(), ROOT::Math::MinimTransformFunction::MatrixTransformation(), RooHistPdf::maxVal(), TGeoNode::MayOverlap(), TMath::Mean(), TMatrixT< Element >::Memcpy_m(), TMatrixTSym< Element >::Memcpy_m(), TVectorT< Element >::Memcpy_m(), memstat(), TH1::Merge(), TProfileHelper::Merge(), TPolyMarker3D::Merge(), TH3::Merge(), TPolyMarker::Merge(), TPolyLine3D::Merge(), TGraph::Merge(), TStatus::Merge(), TTree::Merge(), TEntryListBlock::Merge(), TPolyLine::Merge(), TH2::Merge(), TGLViewerBase::MergeSceneBBoxes(), TTree::MergeTrees(), TMVA::MethodCFMlpANN_Utils::MethodCFMlpANN_Utils(), mhs(), mhs1(), mhs2(), Min2Minimize(), ROOT::Math::BrentMethods::MinimBrent(), ROOT::Math::GeneticMinimizer::Minimize(), ROOT::Math::GSLNLSMinimizer::Minimize(), ROOT::Math::GSLSimAnMinimizer::Minimize(), TLinearMinimizer::Minimize(), ROOT::Math::GSLMinimizer::Minimize(), ROOT::Math::BrentMethods::MinimStep(), ROOT::Math::MinimTransformFunction::MinimTransformFunction(), ROOT::Minuit2::SimplexBuilder::Minimum(), ROOT::Minuit2::ScanBuilder::Minimum(), RooNDKeysPdf::mirrorDataSet(), TGeoMCGeometry::Mixture(), TGeoBuilder::Mixture(), mkdirIfNecessary(), XrdOssSys::Mkpath(), TMultiLayerPerceptron::MLP_Stochastic(), mlpHiggs(), mlpRegression(), mmalloc(), TMinuit::mncalf(), TMinuit::mncler(), TMinuit::mncntr(), TMinuit::mncomd(), TMinuit::mncont(), TMinuit::mncros(), TMinuit::mncuve(), TMinuit::mnderi(), TMinuit::mndxdi(), TMinuit::mneig(), TMinuit::mnemat(), TMinuit::mnexcm(), TMinuit::mnfixp(), TMinuit::mnfree(), ROOT::Minuit2::MnGlobalCorrelationCoeff::MnGlobalCorrelationCoeff(), TMinuit::mngrad(), TMinuit::mnhes1(), TMinuit::mnhess(), TMinuit::mnimpr(), TMinuit::mninex(), TMinuit::mninit(), TMinuit::mnline(), ROOT::Minuit2::MnMachinePrecision::MnMachinePrecision(), TMinuit::mnmatu(), TMinuit::mnmigr(), TMinuit::mnmnot(), TMinuit::mnpfit(), TMinuit::mnpint(), TMinuit::mnplot(), ROOT::Minuit2::mnplot(), TMinuit::mnprin(), TMinuit::mnpsdf(), TMinuit::mnrazz(), TMinuit::mnrset(), TMinuit::mnset(), TMinuit::mnsimp(), TMinuit::mnunpt(), ROOT::Minuit2::MnUserParameterState::MnUserParameterState(), ROOT::Minuit2::MnUserTransformation::MnUserTransformation(), TMinuit::mnvert(), ROOT::Minuit2::mnvert(), TMinuit::mnwarn(), TMinuit::mnwerr(), TStyleManager::ModCanvasBorderMode(), TStyleManager::ModColorModelPS(), TStyleManager::ModFrameBorderMode(), TPainter3dAlgorithms::ModifyScreen(), TStyleManager::ModPadBorderMode(), ROOT::Math::moments(), XrdCmsCluster::MonRefs(), ClockHand::Move(), move_asimage_channel(), TBasket::MoveEntries(), TView3D::MoveFocus(), TOrdCollection::MoveGapTo(), TetrisBoard::MoveOneLineDown(), PyROOT::mp_call(), PyROOT::mp_disp(), PyROOT::mp_doc(), mstress_allocation(), mstress_binary_ebe_op(), mstress_determinant(), mstress_element_op(), mstress_inversion(), mstress_matrix_fill(), mstress_matrix_io(), mstress_mm_multiplications(), mstress_special_creation(), mstress_sym_mm_multiplications(), mstress_transposition(), mstress_vm_multiplications(), multicolor(), multidimfit(), multidimSampling(), multifit(), TLinearFitter::MultiGraphLinearFitter(), THnSparse::Multiply(), TProfile::Multiply(), TGeoHMatrix::Multiply(), TGeoRotation::MultiplyBy(), TGeoHMatrix::MultiplyLeft(), TUnfold::MultiplyMSparseM(), TUnfold::MultiplyMSparseMSparseTranspVector(), TClonesArray::MultiSort(), MultivariateGaussianTest(), TMVA::Tools::MVADiff(), mvasMulticlass(), mvaweights(), my_if_errors(), my_strtok(), my_x_query_colors(), myfcn(), myFcn(), MySimAnFunc::MySimAnFunc(), n_bitlen(), n_mult(), NdbParticleList::Name(), TDocOutput::NameSpace2FileName(), NChooseK(), NeedSplash(), TGeoElement::Neff(), XrdAccGroups::NetGroups(), ROOT::NetParRecv(), ROOT::NetParSend(), new_password(), TGFont::NewChunk(), XrdSecProtocolssl::NewSession(), TGeoIterator::Next(), XrdOucTable< XrdXrootdJob2Do >::Next(), TEntryListBlock::Next(), TGeoElemIter::Next(), BinomialNeymanInterval< FeldmanCousinsSorter >::Neyman(), TMath::Nint(), TGeoBuilder::Node(), TBtInnerNode::NofKeys(), TGeoBatemanSol::Normalize(), TGeoGenTrans::Normalize(), ROOT::Fit::FitResult::NormalizeErrors(), THtml::TFileDefinition::NormalizePath(), TMVA::BinarySearchTree::NormalizeTree(), TSelectorDraw::Notify(), nucleus(), RooStats::HypoTestResult::NullPValueError(), num_elem(), num_init(), NumberEntryWindow::NumberEntryWindow(), OBJ_txt2obj_fix(), Rgl::ObjectIDToColor(), OldProofServAuthSetup(), OldSlaveAuthSetup(), TSessionServerFrame::OnBtnConnectClicked(), TNewQueryDlg::OnBtnSaveClicked(), TSessionQueryFrame::OnBtnSubmit(), TSessionViewer::OnCascadeMenu(), RootShower::OnOpenFile(), RootShower::OnShowerProduce(), RootShower::OnShowSelected(), TPostScript::Open(), TPDF::Open(), TSVG::Open(), open_face(), open_freetype_font_int(), TGX11::OpenDisplay(), TGWin32::OpenDisplay(), TGX11::OpenPixmap(), TGWin32::OpenPixmap(), TMatrixTDiag< Element >::operator *=(), TMatrixTSparseDiag< Element >::operator *=(), TMVA::PDEFoamVect::operator *=(), TFoamVect::operator *=(), XrdOucArgsXO::operator%(), ROOT::Minuit2::FumiliMaximumLikelihoodFCN::operator()(), ROOT::Minuit2::MnCovarianceSqueeze::operator()(), ROOT::Minuit2::MnFunctionCross::operator()(), ROOT::Minuit2::MnParameterScan::operator()(), ROOT::Minuit2::MnPosDef::operator()(), TBinLikelihoodFCN::operator()(), RooDataProjBinding::operator()(), ROOT::Minuit2::FumiliChi2FCN::operator()(), ROOT::Minuit2::MnSeedGenerator::operator()(), ROOT::Minuit2::MnUserFcn::operator()(), ROOT::Minuit2::NegativeG2LineSearch::operator()(), ROOT::Math::CholeskyDecompHelpers::_solver< F, N, V >::operator()(), TChi2FCN::operator()(), ROOT::Minuit2::FumiliGradientCalculator::operator()(), ReneFcn::operator()(), ROOT::Minuit2::MnVectorTransform::operator()(), GlobalChi2::operator()(), GausND::operator()(), ROOT::Fit::FitUtil::IntegralEvaluator< ParamFunc >::operator()(), ROOT::Minuit2::MnHesse::operator()(), ROOT::Math::CholeskyDecompHelpers::_inverter< F, N, M >::operator()(), ROOT::Minuit2::MnLineSearch::operator()(), ROOT::Math::CholeskyDecompHelpers::_decomposer< F, N, M >::operator()(), ROOT::Minuit2::InitialGradientCalculator::operator()(), ROOT::Minuit2::MnEigen::operator()(), ROOT::Minuit2::Numerical2PGradientCalculator::operator()(), LogLikeFCN::operator()(), TConvertClonesArrayToProxy::operator()(), ROOT::Minuit2::MnApplication::operator()(), ROOT::Minuit2::SimplexSeedGenerator::operator()(), TChi2ExtendedFCN::operator()(), ROOT::Minuit2::AnalyticalGradientCalculator::operator()(), ROOT::Minuit2::MnUserTransformation::operator()(), TMatrixTSparseDiag< Element >::operator+=(), TMatrixTDiag< Element >::operator+=(), ROOT::Math::MatRepStd< T, D1, D2 >::operator+=(), ROOT::Math::MatRepSym< T, D >::operator+=(), TGeoBatemanSol::operator+=(), TFoamVect::operator+=(), TImage::operator+=(), TMVA::PDEFoamVect::operator+=(), VecTrack< TrackErrD >::operator+=(), ROOT::Math::MatRepSym< T, D >::operator-=(), ROOT::Math::MatRepStd< T, D1, D2 >::operator-=(), TMVA::PDEFoamVect::operator-=(), TFoamVect::operator-=(), TImage::operator/=(), memstat::operator<(), TMVA::operator<<(), ROOT::Minuit2::operator<<(), operator<<(), TRefArray::operator=(), TIsAProxy::operator=(), ROOT::Math::MatRepSym< T, D >::operator=(), THit::operator=(), TBenchmark::operator=(), TClonesArray::operator=(), TVolumePosition::operator=(), TMatrixTSparseDiag< Element >::operator=(), TGeoCacheState::operator=(), TGeoElemIter::operator=(), TGeoMedium::operator=(), TGeometry::operator=(), TEventList::operator=(), TGeoBatemanSol::operator=(), TGeoManager::operator=(), TGeoVoxelFinder::operator=(), TFoamVect::operator=(), RooCmdArg::operator=(), TGeoNavigator::operator=(), TAttBBox::operator=(), TEveChunkManager::iterator::operator=(), TSpline3::operator=(), ROOT::Math::Boost::operator=(), TView3D::operator=(), TVectorT< Element >::operator=(), TGeoArb8::operator=(), TGLColorSet::operator=(), THelix::operator=(), TMatrixT< Element >::operator=(), TMatrixTSym< Element >::operator=(), TLinearFitter::operator=(), TObjArray::operator=(), TMatrixTDiag< Element >::operator=(), TGeoIterator::operator=(), TSpline5::operator=(), TMVA::PDEFoamVect::operator=(), ROOT::Math::MatRepStd< T, D1, D2 >::operator=(), XrdOucArgsXO::operator==(), ROOT::Math::MatRepSym< T, D >::operator==(), ROOT::Math::MatRepStd< T, D1, D2 >::operator==(), TGeoMatrix::operator==(), operator==(), ROOT::Math::Boost::operator==(), ROOT::Math::LorentzRotation::operator==(), TDsKey::operator==(), TMVA::operator>>(), RooObjCacheManager::operModeHook(), TGeoChecker::OpProgress(), TMVA::RuleFitParams::Optimism(), TMVA::CCPruner::Optimize(), TMVA::CostComplexityPruneTool::Optimize(), TTree::OptimizeBaskets(), RooAbsArg::optimizeCacheMode(), RooObjCacheManager::optimizeCacheMode(), TEntryList::OptimizeStorage(), otv_Coverage_validate(), otv_GlyphAssembly_validate(), otv_MathConstants_validate(), otv_MathGlyphConstruction_validate(), otv_MathItalicsCorrectionInfo_validate(), otv_MathKern_validate(), otv_MathKernInfo_validate(), otv_MathVariants_validate(), TBits::Output(), TGLBoundingBox::Overlap(), overlay_scanlines(), TPrincipal::P2X(), p_prim(), TGFileBrowser::PadModified(), TEveElement::PadPaint(), TView3D::PadRange(), TMultiGraph::Paint(), TF2::Paint(), TF1::Paint(), THStack::Paint(), TSpline::Paint(), TClassTree::Paint(), TPie::Paint(), CurrentPiece::Paint(), TSpectrum2Painter::Paint(), Hello::Paint(), TPaletteAxis::Paint(), TPolyMarker3D::Paint(), Aclock::Paint(), TCrown::Paint(), TEveScene::Paint(), TPolyLine3D::Paint(), TGeoTrack::Paint(), TGraphEdge::Paint(), THistPainter::Paint2DErrors(), TPolyLineShape::Paint3d(), TArrow::PaintArrow(), THistPainter::PaintArrows(), TGLAxisPainter::PaintAxis(), TGaxis::PaintAxis(), TAxis3D::PaintAxis(), THistPainter::PaintBoxes(), TGraphPolargram::PaintCircle(), TColorWheel::PaintCircles(), TClassTree::PaintClass(), TGeoTrack::PaintCollect(), THistPainter::PaintColorLevels(), THistPainter::PaintContour(), THistPainter::PaintContourLine(), TFileDrawMap::PaintDir(), TEllipse::PaintEllipse(), TParallelCoord::PaintEntries(), THistPainter::PaintErrors(), TPad::PaintFillArea(), TGLAxis::PaintGLAxisLabels(), TGLAxis::PaintGLAxisTickMarks(), TGraphPainter::PaintGraph(), TGraphPainter::PaintGraphAsymmErrors(), TGraphPainter::PaintGraphBentErrors(), TGraphPainter::PaintGraphErrors(), TGraphPainter::PaintGrapHist(), TGraphPainter::PaintGraphPolar(), THistPainter::PaintH3Iso(), TPad::PaintHatches(), HistAction::paintHist(), THistPainter::PaintHist(), TParallelCoordVar::PaintHistogram(), THistPainter::PaintInit(), THistPainter::PaintInitH(), THistPainter::PaintLegoAxis(), TGraph2DPainter::PaintLevels(), TPad::PaintLine3D(), TPolyLineShape::PaintNode(), TPave::PaintPave(), TPave::PaintPaveArc(), TPaveLabel::PaintPaveLabel(), TGeoPainter::PaintPhysicalNode(), TPolyLineShape::PaintPoints(), TGraphPolargram::PaintPolarDivisions(), TPad::PaintPolyLine(), TPad::PaintPolyLine3D(), TGraphPainter::PaintPolyLineHatches(), TPad::PaintPolyLineNDC(), TPolyLineShape::PaintPolyMarker(), TPad::PaintPolyMarker(), TViewerX3D::PaintPolyMarker(), TGraph2DPainter::PaintPolyMarker0(), TLegend::PaintPrimitives(), TGraphPolargram::PaintRadialDivisions(), TColorWheel::PaintRectangles(), THistPainter::PaintScatterPlot(), THistPainter::PaintText(), TGraph2DPainter::PaintTriangles(), TPolyLineShape::PaintX3DLine(), TPolyLineShape::PaintX3DMarker(), Pal1(), Pal2(), parallelcoord(), ROOT::Math::WrappedTF1::ParameterGradient(), ROOT::Math::WrappedMultiTF1::ParameterGradient(), ROOT::Minuit2::MnUserTransformation::Params(), TAlienJDL::Parse(), XrdOucMsubs::Parse(), XrdOfsEvs::Parse(), TGeoManager::Parse(), XrdFrmAdmin::Parse(), parse_charset_name(), parse_color(), parse_fond(), XrdMonArgParser::parseArguments(), XrdSecProtocolgsi::ParseCrypto(), ParseCrypto(), XrdOucExport::ParseDefs(), TTreeDrawArgsParser::ParseName(), TXNetFile::ParseOptions(), ParseParameters(), TTreeFormula::ParseWithLeaf(), TGFontPool::ParseXLFD(), MyEvent::ParticleColor(), TLinearFitter::Partition(), TRobustEstimator::Partition(), RootCsg::partition_mesh(), XrdOssPath::pathType(), patterns(), TCreatePrimitives::Pave(), PC3::pc3init(), PC3::pc3stream(), PCF_Face_Done(), pcf_find_property(), pcf_get_bitmaps(), pcf_get_encodings(), pcf_get_metrics(), pcf_get_properties(), pcf_has_table_type(), pcf_read_TOC(), pcf_seek_to_table_type(), pclient(), pcre_get_substring_list(), pcre_maketables(), pcre_memmove(), pcregrep(), TUri::PctDecode(), TUri::PctDecodeUnreserved(), TUri::PctEncode(), TUri::PctNormalise(), TMVA::PDEFoamVect::PDEFoamVect(), peaks2(), TMVA::PDEFoam::PeekLast(), TFoam::PeekMax(), TMVA::PDEFoam::PeekMax(), TMVA::RuleFitParams::Penalty(), performance(), TMath::Permute(), permuteFancy(), permuteSimple1(), permuteSimple2(), pfr_glyph_load_compound(), pfr_glyph_load_rec(), pfr_glyph_load_simple(), picture_ximage2asimage(), piRandom(), pirndm(), TTable::piterator::piterator(), TAxis3D::PixeltoXYZ(), TGLClipBox::PlaneSet(), Plot(), PlotDecisionBoundary(), RooAbsReal::plotOnWithErrorBand(), RooDataSet::plotOnXY(), RooHistPdf::plotSamplingHint(), RooHistFunc::plotSamplingHint(), TMVA::TransformationHandler::PlotVariables(), png2ASImage_int(), png_combine_row(), png_crc_finish(), png_create_read_struct_2(), png_create_write_struct_2(), png_do_bgr(), png_do_invert(), png_do_pack(), png_do_read_interlace(), png_do_strip_filler(), png_do_swap(), png_do_write_interlace(), png_error(), png_free_data(), png_get_int_32(), png_get_uint_16(), png_get_uint_31(), png_get_uint_32(), png_handle_as_unknown(), png_handle_hIST(), png_handle_pCAL(), png_handle_PLTE(), png_handle_sPLT(), png_push_process_row(), png_push_save_buffer(), png_read_destroy(), png_read_filter_row(), png_read_image(), png_read_init_3(), png_read_rows(), png_set_dither(), png_set_filter_heuristics(), png_set_hIST(), png_set_keep_unknown_chunks(), png_set_pCAL(), png_set_sPLT(), png_set_text_2(), png_set_unknown_chunks(), png_write_compressed_data_out(), png_write_end(), png_write_find_filter(), png_write_hIST(), png_write_image(), png_write_info(), png_write_init_3(), png_write_pCAL(), png_write_PLTE(), png_write_rows(), png_write_sPLT(), RootCsg::point_in_polygon_test_3d(), TPolyLineShape::PointDistancetoPrimitive(), pointset(), pointset_hierarchy(), pointsetarray(), TGTextLayout::PointToChar(), poll(), TGDMLParse::Polycone(), RootCsg::polygon_mid_point(), TGQt::PolygonRegion(), Rgl::Pad::PolygonStippleSet::PolygonStippleSet(), TEvePolygonSetProjected::PolygonSurfaceXY(), TGDMLParse::Polyhedra(), ROOT::Math::Polynomial1eval(), ROOT::Math::Polynomialeval(), TGHtml::PopStyleStack(), TXSocket::PopUpSpare(), portfolio(), TEveWindow::PostDock(), TGLViewerBase::PostRender(), ppm2ASImage(), pr(), TKDEFGT::Predict(), TGLScene::TSceneInfo::PreDraw(), TFileCacheRead::Prefetch(), XrdClientAdmin::Prepare(), XrdMonSndCoder::prepare2Transfer(), prepare_range_limit_table(), TEveCaloLegoGL::PrepareCell2DDataRebin(), TUnfoldSys::PrepareSysError(), TGLTH3Slice::PrepareTexCoords(), TGLViewerBase::PreRender(), TEveProjection::PreScaleVariable(), TEveWindow::PreUndock(), XrdMonDecPreProcess::previousSeq(), principal(), TTreePlayer::Principal(), TFormula::Print(), TLDAPResult::Print(), TStatus::Print(), RooSimWSTool::ObjBuildConfig::print(), VecTrack< TrackErrD >::Print(), TEventList::Print(), TClassTable::Print(), TLDAPAttribute::Print(), TBranchElement::Print(), TInetAddress::Print(), TMessageHandler::Print(), TBits::Print(), TObjectTable::Print(), TGeoElemIter::Print(), TGraphErrors::Print(), MySimAnFunc::Print(), RooMsgService::Print(), TPolyMarker3D::Print(), ROOT::Math::Expr< ExprType, T, D, D2, R1 >::print(), TimeReport::print(), TTreeIndex::Print(), TXTRU::Print(), TGraphBentErrors::Print(), TMVA::PDEFoamVect::Print(), TMVA::Ranking::Print(), TFileCacheRead::Print(), TMatrixTBase< Element >::Print(), TMVA::DecisionTreeNode::Print(), TGeoMixture::Print(), TSpectrum3::Print(), TMD5::Print(), TGeoElement::Print(), TGeoBatemanSol::Print(), TPrincipal::Print(), TDecompBK::Print(), TTable::Print(), TGeoPhysicalNode::Print(), TSpectrum2::Print(), ROOT::Fit::FitResult::Print(), TetrisBoard::Print(), TGraph::Print(), TAlienResult::Print(), THostAuth::Print(), TBranchClones::Print(), TPolyLine3D::Print(), TAlienMasterJob::Print(), TLDAPEntry::Print(), TGeoVoxelFinder::Print(), ROOT::Math::GSLSimAnFunc::Print(), TMVA::Rule::Print(), TGTextEdit::Print(), TDecompLU::Print(), TRootSecContext::Print(), TSecContext::Print(), TMVA::RuleEnsemble::Print(), TBranchObject::Print(), TEntryList::Print(), ROOT::Math::VecExpr< ExprType, T, D >::print(), TFoamVect::Print(), TPMERegexp::Print(), TEveTrans::Print(), TGraphAsymmErrors::Print(), TSpectrum::Print(), TMVA::Option< T * >::Print(), TVectorT< Element >::Print(), TBranchSTL::Print(), print_distance_matrix(), print_storage(), print_storage_slot(), print_unicode_subranges(), print_xcf_channels(), print_xcf_hierarchy(), print_xcf_layers(), print_xcf_properties(), RooCFunction1Binding< VO, VI >::printArgs(), RooCFunction4PdfBinding< VO, VI1, VI2, VI3, VI4 >::printArgs(), RooFunctorPdfBinding::printArgs(), RooCFunction2PdfBinding< VO, VI1, VI2 >::printArgs(), RooTFnPdfBinding::printArgs(), RooFunctor1DBinding::printArgs(), RooCFunction1PdfBinding< VO, VI >::printArgs(), RooCFunction3Binding< VO, VI1, VI2, VI3 >::printArgs(), RooFunctor1DPdfBinding::printArgs(), RooCFunction4Binding< VO, VI1, VI2, VI3, VI4 >::printArgs(), RooCFunction3PdfBinding< VO, VI1, VI2, VI3 >::printArgs(), RooCFunction2Binding< VO, VI1, VI2 >::printArgs(), RooFunctorBinding::printArgs(), RooAbsArg::printArgs(), RooTFnBinding::printArgs(), TMCVerbose::PrintBanner(), TMVA::PDEFoam::PrintCellElements(), TEveCaloData::PrintCellsSelected(), TFITSHDU::PrintColumnInfo(), RooAbsArg::printCompactTree(), RooAbsTestStatistic::printCompactTreeHook(), RooObjCacheManager::printCompactTreeHook(), ROOT::Fit::FitResult::PrintCovMatrix(), TMVA::MethodCuts::PrintCuts(), TMVA::SVEvent::PrintData(), printData(), TParticlePDG::PrintDecayChannel(), THnSparse::PrintEntries(), RooAbsReal::printEvalErrors(), TFITSHDU::PrintFileMetadata(), FitEditorUnitTesting::PrintFuncPars(), TFITSHDU::PrintHDUMetadata(), XrdMonException::printItOnce(), RooAbsCollection::printLatex(), TMVA::TNeuron::PrintLinks(), TFoamVect::PrintList(), TMVA::Rule::PrintLogger(), TRint::PrintLogo(), RooProdPdf::printMetaArgs(), printMinimum(), RooCustomizer::printMultiline(), RooAbsArg::printMultiline(), RooHist::printMultiline(), RooPlot::printMultiline(), RooAddGenContext::printMultiline(), RooFitResult::printMultiline(), RooCurve::printMultiline(), Roo1DTable::printMultiline(), TMVA::MethodANNBase::PrintNetwork(), TGeoVolume::PrintNodes(), TGeoNode::PrintOverlaps(), TMVA::Rule::PrintRaw(), TMVA::RuleEnsemble::PrintRaw(), TMVA::DecisionTreeNode::PrintRec(), TLinearFitter::PrintResults(), ROOT::Minuit2::Minuit2Minimizer::PrintResults(), MySimAnFunc::PrintRoute(), XrdMonSenderInfo::printSelf(), TStorage::PrintStatistics(), TMVA::PDEFoam::PrintStream(), TestVector< Vector >::PrintSummary(), TClassTable::PrintTable(), printTitle(), TLeafElement::PrintValue(), RooAbsBinning::printValue(), Roo1DTable::printValue(), TMVA::MethodCFMlpANN::PrintWeights(), TEntryListBlock::PrintWithShift(), XrdAccConfig::PrivsConvert(), PrivsConvert(), probas(), XrdProtLoad::Process(), ProofEvent::Process(), ProofNtuple::Process(), ProofSimple::Process(), XrdFrmReqBoss::Process(), TProofDraw::Process(), TSelectorEntries::Process(), XrdClientConn::ProcessAsynResp(), TSelectorDraw::ProcessFill(), TSelectorDraw::ProcessFillMultiple(), TSelectorDraw::ProcessFillObject(), TFormula::ProcessLinear(), RooFactoryWSTool::processListExpression(), TestDialog::ProcessMessage(), HistAction::ProcessMessage(), TestMsgBox::ProcessMessage(), TMemStat::ProcessOption(), TMVA::MethodCFMlpANN::ProcessOptions(), TGLSelectBuffer::ProcessResult(), TEveSceneList::ProcessSceneChanges(), TEveCaloData::ProcessSelection(), XrdClientConnectionMgr::ProcessUnsolicitedMsg(), produceSqrtMat(), Product(), TPolyLineShape::Product(), TRolke::ProfLikeMod1(), TProofPlayerSuperMaster::Progress(), TMVA::PDEFoam::Project2(), TEveElement::ProjectAllChildren(), TEvePolygonSetProjected::ProjectAndReducePoints(), TEveElement::ProjectChild(), TEveProjectionManager::ProjectChildren(), TEveProjectionManager::ProjectChildrenRecurse(), projection(), projection_prescale(), THnSparse::ProjectionAny(), TProfile::ProjectionX(), prompt_print(), TAuthenticate::ProofAuthSetup(), TEveProjectable::PropagateMainColor(), TEveProjectable::PropagateMainTransparency(), TEveProjectable::PropagateRenderState(), TEveProjectable::PropagateVizParams(), TEveElement::PropagateVizParamsToElements(), TMVA::MethodDT::PruneTree(), TAlien::Ps(), TThread::Ps(), pserv(), TGraphSmooth::Psort(), PT_CheckSimple(), PT_DataSets(), PyROOT::pt_getattro(), PT_H1AssertFiles(), PT_H1FileCollection(), PT_H1Http(), PT_H1SimpleAsync(), XrdCmsRespQ::Purge(), XrdFrmTSort::Purge(), TBtInnerNode::PushRight(), TBtLeafNode::PushRight(), XrdOucStream::Put(), TGX11::PutImage(), TGWin32::PutImage(), TQpLinSolverDens::PutXDiagonal(), TQpLinSolverSparse::PutXDiagonal(), TQpLinSolverSparse::PutZDiagonal(), TQpLinSolverDens::PutZDiagonal(), PyROOT::PyLongOrInt_AsULong(), PyROOT::PyLongOrInt_AsULong64(), PyMemFuncCallback(), pyroot_buffer_ass_subscript(), pythia_display(), pythia_next_event(), qelg(), qpsrt(), TSeqCollection::QSort(), quadset(), quadset_circ(), quadset_emc(), quadset_hex(), quadset_hexid(), quadset_hierarchy(), ROOT::Math::VavilovAccurate::Quantile(), ROOT::Math::VavilovAccurate::Quantile_c(), quantiles(), TMath::Quantiles(), TSapDBServer::Query(), XrdFrmAdmin::Query(), query_colors(), query_screen_visual_id(), TGWin32::QueryColors(), TGX11::QueryColors(), QueryTree(), XrdFrmAdmin::QueryXfrQ(), R__FindScope(), R__GenerateTClassForPair(), R__huft_build(), R__Inflate_dynamic(), R__Inflate_fixed(), random_line(), TObjArray::Randomize(), TMatrixTSym< Element >::Randomize(), TMatrixTSym< Element >::RandomizePD(), RooAbsPdf::randomizeProtoOrder(), RooBlindTools::Randomizer(), TQpDataBase::RandomlyChooseBoundedVariables(), TGeoChecker::RandomPoints(), TGeoChecker::RandomRays(), TGraphSmooth::Rank(), TMatrixTSym< Element >::Rank1Update(), TMatrixT< Element >::Rank1Update(), TGeoPainter::Raytrace(), TRobustEstimator::RDist(), TLinearFitter::RDraw(), TRobustEstimator::RDraw(), re__copy_and_pad(), re_clear_display(), re_clear_lines(), re_fastputc(), re_putc(), re_refresh(), XSElement::Read(), XrdClient::Read(), read(), XrdClient::Read_Async(), read_data(), read_next_xpm_string(), read_xcf_hierarchy(), read_xcf_image(), TBufferFile::ReadArray(), TFITSHDU::ReadAsImage(), TFITSHDU::ReadAsMatrix(), TMVA::DecisionTreeNode::ReadAttributes(), TLeafF::ReadBasketExport(), TLeafL::ReadBasketExport(), TLeafI::ReadBasketExport(), TLeafO::ReadBasketExport(), TLeafC::ReadBasketExport(), TLeafD::ReadBasketExport(), TLeafS::ReadBasketExport(), TLeafB::ReadBasketExport(), TString::ReadBuffer(), TStringLong::ReadBuffer(), XrdProofdNetMgr::ReadBuffer(), TUUID::ReadBuffer(), TNetFile::ReadBuffers(), TFile::ReadBuffers(), TDCacheFile::ReadBuffers(), TWebFile::ReadBuffers(), TXNetFile::ReadBuffers(), TWebFile::ReadBuffers10(), TProofResourcesStatic::ReadConfigFile(), TSessionViewer::ReadConfiguration(), TMVA::BinarySearchTreeNode::ReadContent(), TZIPFile::ReadDirectory(), ReadFacesChunk(), TBufferFile::ReadFastArray(), TBufferSQL::ReadFastArray(), TBufferFile::ReadFastArrayDouble32(), TBufferFile::ReadFastArrayFloat16(), TNtuple::ReadFile(), TKey::ReadFile(), TNtupleD::ReadFile(), TMVA::RuleEnsemble::ReadFromXML(), TMVA::Rule::ReadFromXML(), TGX11::ReadGIF(), TGWin32::ReadGIF(), TX11GLManager::ReadGLBuffer(), TEmulatedCollectionProxy::ReadItems(), TKDTreeBinning::ReadjustMaxBinEdges(), TKDTreeBinning::ReadjustMinBinEdges(), TDirectoryFile::ReadKeys(), TBranchElement::ReadLeavesCollection(), TBranch::ReadLeavesImpl(), TBranchElement::ReadLeavesMakeClass(), TGenCollectionStreamer::ReadMap(), ReadMappingChunk(), TGenCollectionStreamer::ReadObjects(), TMVA::Configurable::ReadOptionsFromXML(), TGenCollectionStreamer::ReadPairFromMap(), TDatabasePDG::ReadPDGTable(), ReadPuk(), TMVA::RuleEnsemble::ReadRaw(), XrdClientPhyConnection::ReadRaw(), TMVA::Rule::ReadRaw(), ReadRef(), readSMatrix(), readSMatrixSym(), ReadSome(), TBufferFile::ReadStaticArray(), TMVA::PDEFoam::ReadStream(), TTree::ReadStream(), readTMatrix(), readTMatrixSym(), readTrackD(), readTrackD32(), TMVA::VariablePCATransform::ReadTransformationFromStream(), StatDialogBDT::ReadTree(), TEveTriangleSet::ReadTrivialFile(), XrdClient::ReadV(), XrdPosixXrootd::Readv(), TLeafD::ReadValue(), TLeafS::ReadValue(), TLeafI::ReadValue(), TLeafL::ReadValue(), TLeafF::ReadValue(), TStreamerInfoActions::ReadVectorBase(), TStreamerInfoActions::ReadVectorWrapping(), ReadVerticesChunk(), TMVA::MethodKNN::ReadWeightsFromStream(), TMVA::MethodCompositeBase::ReadWeightsFromStream(), TMVA::MethodCFMlpANN::ReadWeightsFromStream(), TMVA::MethodCommittee::ReadWeightsFromStream(), TMVA::MethodPDEFoam::ReadWeightsFromXML(), TMVA::MethodCFMlpANN::ReadWeightsFromXML(), TMVA::MethodCategory::ReadWeightsFromXML(), TMVA::MethodCompositeBase::ReadWeightsFromXML(), TMVA::MethodCuts::ReadWeightsFromXML(), TMVA::PDEFoam::ReadXML(), TMVA::PDF::ReadXML(), TProfile::Rebin(), TH1::Rebin(), rebin(), TEveCaloDataVec::Rebin(), THnSparse::Rebin(), TProfile2D::Rebin2D(), TH2::Rebin2D(), TEveCaloLegoGL::RebinAxis(), XrdSysLogger::ReBind(), TEveTrackPropagator::RebuildTracks(), TApplicationServer::ReceiveFile(), TProofServ::ReceiveFile(), TEveSelection::RecheckImpliedSet(), TEveSelection::RecheckImpliedSetForElement(), TRecorderRecording::RecordPave(), TRecorderRecording::RecordText(), TFile::Recover(), recurse4dnlists(), recursive_pr_include(), RecursiveInvisible(), TObjArray::RecursiveRemove(), RecursiveTransparency(), RootCsg::TBBoxTree::RecursiveTreeBuild(), RecvHostAuth(), TPSocket::RecvRaw(), RooAbsArg::redirectServers(), RooAbsTestStatistic::redirectServersHook(), RooObjCacheManager::redirectServersHook(), RooFitResult::reducedCovarianceMatrix(), RooDataHist::reduceEng(), TGraphPolargram::ReduceFraction(), TEveLine::ReduceSegmentLengths(), XrdBwmHandle::refHandle(), RooGrid::refine(), TEveChunkManager::Refit(), TBranch::Refresh(), TTree::Refresh(), regexec(), TGeoVolume::RegisterYourself(), regression_averagedevs(), TSVDUnfold::RegularisedSymMatInvert(), TUnfold::RegularizeBins(), TUnfold::RegularizeSize(), XrdSutCache::Rehash(), TMemHashTable::RehashLeak(), TMemStatManager::RehashLeak(), TGLContextIdentity::Release(), ROOT::Minuit2::MnUserParameterState::Release(), TEveChunkManager::ReleaseChunks(), TEveDigitSet::ReleaseIds(), XrdCmsRespQ::Rem(), TRecorderReplaying::RemapWindowReferences(), TClonesArray::Remove(), XrdOucTable< XrdXrootdJob2Do >::Remove(), TExMap::Remove(), TObjectTable::Remove(), XrdSutCache::Remove(), TEntryListBlock::Remove(), TGLViewerBase::RemoveAllScenes(), TClonesArray::RemoveAt(), TObjArray::RemoveAt(), TEvePointSetArray::RemoveElementLocal(), TEveSelection::RemoveElementLocal(), TEveElement::RemoveElementsInternal(), TEveCompound::RemoveElementsLocal(), TEveSelection::RemoveElementsLocal(), TEveViewerList::RemoveElementsLocal(), XrdSutPFile::RemoveEntries(), TEveElement::RemoveFromListTree(), TEveElement::RemoveFromListTrees(), TetrisBoard::RemoveFullLines(), TEveSelection::RemoveImpliedSelected(), TetrisBoard::RemoveLine(), THostAuth::RemoveMethod(), TEveEventManager::RemoveNewEventCommand(), TGraph2D::RemovePoint(), TGraph::RemovePoint(), TObjectTable::RemoveQuietly(), TGLViewerBase::RemoveScene(), TMVA::RuleEnsemble::RemoveSimilarRules(), THashTable::RemoveSlow(), TStorage::RemoveStat(), RemoveUnneededSpaces(), TGLSceneBase::RemoveViewer(), XrdOssSys::Rename(), TEveCaloLegoOverlay::Render(), Render_Single_Pass(), TGLScene::RenderAllPasses(), TGLCameraOverlay::RenderAxis(), TGLUtil::RenderCrosses(), TGLScene::RenderElements(), TEveFrameBoxGL::RenderFrame(), TEveCalo3DGL::RenderGridBarrel(), TEveCalo3DGL::RenderGridEndCap(), TEveCaloLegoOverlay::RenderLogaritmicScales(), TEveJetConeProjectedGL::RenderOutline(), TGLViewerBase::RenderOverlay(), TEveTrackGL::RenderPathMarksAndFirstVertex(), TGLUtil::RenderPoints(), TEveBoxProjectedGL::RenderPoints(), TEveJetConeProjectedGL::RenderPolygon(), TGLUtil::RenderPolyLine(), TWebSocket::ReOpen(), THostAuth::ReOrder(), TEveSceneList::RepaintAllScenes(), TEveViewerList::RepaintAllViewers(), TEveSceneList::RepaintChangedScenes(), TEveViewerList::RepaintChangedViewers(), ReplaceUVNames(), TGeoManager::ReplaceVolume(), TGeoVolume::ReplayCreation(), XrdCmsKeyItem::Replenish(), UnitTesting::UnitTest::report(), UnitTesting::UnitTestSuite::report(), XrdMonDecPreProcess::reportAndThrowIfTooBad(), XrdClientReadV::ReqReadV(), TGX11::RequestString(), TGWin32::RequestString(), RerouteUser(), TGX11::RescaleWindow(), TGWin32::RescaleWindow(), TArrayS::Reset(), XrdCmsManager::Reset(), TArrayD::Reset(), TArrayL64::Reset(), UnitTesting::UnitTestSuite::reset(), THostAuth::Reset(), XrdSutCache::Reset(), TBranchElement::Reset(), TArrayI::Reset(), XrdOucString::reset(), TArrayL::Reset(), TBranchObject::Reset(), TStyle::Reset(), RooCacheManager< T >::reset(), TBasket::Reset(), TArrayF::Reset(), TDataSetIter::Reset(), RooDataHist::reset(), TTree::Reset(), TMVA::MethodBDT::Reset(), TBranchClones::Reset(), TBranch::Reset(), TBranch::ResetAddress(), TBranchElement::ResetAddress(), TNtupleD::ResetBranchAddresses(), TTree::ResetBranchAddresses(), TNtuple::ResetBranchAddresses(), TTreeCacheUnzip::ResetCache(), TMVA::PDEFoam::ResetCellElements(), TMVA::RuleEnsemble::ResetCoefficients(), TBranchElement::ResetDeleteObject(), HistAction::resetFlags(), TGLViewerBase::ResetSceneInfos(), TDecompBase::ResetStatus(), TParallelCoord::ResetTree(), RooGrid::resetValues(), XrdBuffManager::Reshape(), TGenCollectionProxy::Resize(), TEventList::Resize(), XrdClientVector< XrdClientPhyConnection * >::Resize(), RooGrid::resize(), TGListView::ResizeColumns(), TGWin32::ResizePixmap(), TGX11::ResizePixmap(), TGTable::ResizeTable(), TMatrixTSym< Element >::ResizeTo(), TMatrixT< Element >::ResizeTo(), TGWin32::ResizeWindow(), TGX11::ResizeWindow(), TClassEdit::ResolveTypedef(), RooRealBinding::restoreXVec(), result(), TGText::ReTab(), TEveScene::RetransHierarchicallyRecurse(), retrieve(), TMinuitMinimizer::RetrieveErrorMatrix(), TFitEditor::RetrieveOptions(), TMinuitMinimizer::RetrieveParams(), reverse_component(), XrdClientUrlSet::Rewind(), rf401_importttreethx(), rf402_datahandling(), rf609_xychi2fit(), XrdOucString::rfind(), rgb_ycc_start(), RooNumRunningInt::RICacheElem::RICacheElem(), TMVA::RuleFitParams::Risk(), rl_initialize(), rlediff_compress(), rlediff_compress_bitmap32(), rlediff_compress_bitmap8(), TRandom3::Rndm(), TRandom1::Rndm(), TRandom2::RndmArray(), TRandom::RndmArray(), TRandom1::RndmArray(), TRandom3::RndmArray(), robot(), Roo1DTable::Roo1DTable(), RooAICRegistry::RooAICRegistry(), RooCacheManager< T >::RooCacheManager(), RooChangeTracker::RooChangeTracker(), RooCmdArg::RooCmdArg(), RooCurve::RooCurve(), RooDataHist::RooDataHist(), RooDataHistSliceIter::RooDataHistSliceIter(), RooFoamGenerator::RooFoamGenerator(), RooHashTable::RooHashTable(), RooHist::RooHist(), RooHistError::RooHistError(), RooKeysPdf::RooKeysPdf(), RooMCStudy::RooMCStudy(), RooMomentMorph::RooMomentMorph(), RooMultiVarGaussian::RooMultiVarGaussian(), RooSimGenContext::RooSimGenContext(), RootdChdir(), RootdExpandPathName(), RootdGets(), RootdLsdir(), RootdPutFile(), RootShower::RootShower(), TetrisPiece::RotateLeft(), TetrisPiece::RotateRight(), PC3::rotl(), ROOT::Math::RowOffsets< D >::RowOffsets(), rr_arrayc_new(), rr_arrayd_new(), rr_arrayf_new(), rr_arrayi_new(), rr_arrayl_new(), rr_arrays_new(), rr_ctf1_fcn(), rr_ctf2_fcn(), rr_parse_void(), rr_seqcollection_new(), rrr(), rs401c_FeldmanCousins(), rs401d_FeldmanCousins(), rsa_decode(), rsa_encode(), rsa_genprim(), rsa_num_sget(), rsa_num_sput(), TMVA::RuleEnsemble::RuleResponseStats(), TMVA::RuleEnsemble::RuleStatistics(), rulevisCorr(), rulevisHists(), UnitTesting::UnitTestSuite::run(), TMVA::GeneticFitter::Run(), UnitTesting::RegressionUnitTestWithDeviation::run(), UnitTesting::MethodUnitTestWithROCLimits::run(), XrdCmsMeter::Run(), RooStudyPackage::run(), run_tutorials(), run_unuran(), RooFitTestUnit::runCompTests(), runProof(), runTest(), RunTrigoFletcher(), TGeoPara::Safety(), TGeoTube::Safety(), TGeoSphere::Safety(), TGeoXtru::Safety(), TGeoTrap::Safety(), TGeoCone::Safety(), TGeoCtub::Safety(), TGeoTrd1::Safety(), TGeoTrd2::Safety(), TGeoTorus::Safety(), TGeoCone::SafetyS(), TGeoTubeSeg::SafetyS(), TGeoTube::SafetyS(), TGeoConeSeg::SafetyS(), TGeoPgon::SafetyToSegment(), TFoamSampler::Sample(), sample_volume(), TGeoChecker::SamplePoints(), saturate_scanlines(), TF3::Save(), TF2::Save(), TF1::Save(), RooMinuit::save(), RooMinimizer::save(), TGText::Save(), TSpline5::SaveAs(), TSpline3::SaveAs(), TGeoNode::SaveAttributes(), TEveGeoNode::SaveExtract(), TGLPadPainter::SaveImage(), SavePasswd(), TGraphStruct::SavePrimitive(), TGMenuTitle::SavePrimitive(), TSpline5::SavePrimitive(), TCutG::SavePrimitive(), TPolyLine::SavePrimitive(), TGStatusBar::SavePrimitive(), TParallelCoordVar::SavePrimitive(), TPie::SavePrimitive(), TGTab::SavePrimitive(), TGraphAsymmErrors::SavePrimitive(), TGeoPcon::SavePrimitive(), TGraphErrors::SavePrimitive(), TProfile::SavePrimitive(), TGeoVolume::SavePrimitive(), TPolyMarker::SavePrimitive(), TEfficiency::SavePrimitive(), TH1K::SavePrimitive(), TGShutterItem::SavePrimitive(), TGraph::SavePrimitive(), TGraph2D::SavePrimitive(), TGeoXtru::SavePrimitive(), TGraphBentErrors::SavePrimitive(), TGToolBar::SavePrimitive(), TSpline3::SavePrimitive(), TTable::SavePrimitive(), TTreePerfStats::SavePrimitive(), TParallelCoord::SavePrimitive(), TPolyLine3D::SavePrimitive(), TGPopupMenu::SavePrimitive(), TF1::SavePrimitive(), TF2::SavePrimitive(), TPolyMarker3D::SavePrimitive(), TF3::SavePrimitive(), TGeoMixture::SavePrimitive(), TGeoPgon::SavePrimitive(), TButton::SavePrimitive(), SavePuk(), TTVSession::SaveSource(), TTreeViewer::SaveSource(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TStyle::SaveSource(), RooRealBinding::saveXVec(), THnSparse::Scale(), ROOT::Minuit2::MnUserCovariance::Scale(), TestVector< Vector >::Scale(), TMVA::Tools::Scale(), XrdCmsMeter::Scale(), TestVector< Vector >::Scale2(), scale_down_glyph_width(), TUnfoldSys::ScaleColumnsByVector(), ROOT::Minuit2::Minuit2Minimizer::Scan(), TTreePlayer::Scan(), TUnfold::ScanLcurve(), scanline2ximage15(), scanline2ximage16(), scanline2ximage32(), scanline2ximage_pseudo12bpp(), scanline2ximage_pseudo3bpp(), scanline2ximage_pseudo6bpp(), RooFFTConvPdf::scanPdf(), TGLViewerBase::SceneDestructing(), TEveViewerList::SceneDestructing(), screen_scanlines(), TGListView::ScrollHeader(), TLDAPServer::Search(), TGText::Search(), TSpectrum::Search(), TSpectrum2::Search(), TSpectrum3::Search(), SearchCanvases(), TSpectrum3::SearchFast(), TSpectrum::SearchHighRes(), TSpectrum3::SearchHighRes(), TSpectrum2::SearchHighRes(), XrdSecProtocolssl::secClient(), XrdSecTLayer::secError(), XrdSecProtocolssl::secServer(), seism(), XrdCmsCluster::SelbyCost(), XrdCmsCluster::SelbyLoad(), XrdCmsCluster::SelbyRef(), TToggleGroup::Select(), select_colors(), select_ncolors(), select_storage_block(), select_storage_slot(), TEveTrackList::SelectByP(), TEveTrackList::SelectByPt(), TMemStat::SelectCode(), TGRootIDE::Selected(), TGHtmlBrowser::Selected(), TGL5DDataSet::SelectPoints(), TMemStat::SelectStack(), TGeoVolume::SelectVolume(), TGWin32::SelectWindow(), TGX11::SelectWindow(), XSPeriodicTable::SelectZ(), XrdNetMsg::Send(), XrdNetLink::Send(), XrdLink::Send(), XrdCmsRTable::Send(), XrdXrootdResponse::Send(), TGDNDManager::SendDNDEnter(), XrdProofdAdmin::SendMsgToUser(), TPSocket::SendRaw(), XrdXrootdJob::sendResult(), XrdXrootdJob2Do::sendResult(), RooRealMPFE::serverLoop(), TBits::Set(), XrdCmsState::Set(), THit::Set(), RooWorkspace::set(), VecTrackD::Set(), TGLMatrix::Set(), ClusterD::Set(), XrdXrootdResponse::Set(), set_asimage_vector(), set_bits(), set_bottom_pointers(), set_component(), set_wraparound_pointers(), TBranchElement::SetAddress(), TBranchObject::SetAddress(), TBranch::SetAddress(), SetAliEnSettings(), TGFontDialog::SetAlign(), TGLBoundingBox::SetAligned(), RooDataHist::setAllWeights(), XrdCmsCluster::setAltMan(), TGeoRotation::SetAngles(), TQCommand::SetArgs(), RooStats::ToyMCSampler::SetAsimovNuisancePar(), TBranchObject::SetAutoDelete(), RooStats::MCMCInterval::SetAxes(), TParallelCoord::SetAxesPosition(), TGLAxisPainterBox::SetAxis3DTitlePos(), TEveCaloLegoGL::SetAxis3DTitlePos(), TEveCaloDataVec::SetAxisFromBins(), TView3D::SetAxisNDC(), TLinearFitter::SetBasisFunctions(), TBranchClones::SetBasketSize(), TBranchObject::SetBasketSize(), TBranchElement::SetBasketSize(), TTree::SetBasketSize(), TUnfold::SetBias(), TKDE::SetBinCentreData(), TKDE::SetBinCountData(), TKDTreeBinning::SetBinMinMaxEdges(), TKDTreeBinning::SetBinsContent(), TFTP::SetBlockSize(), TGeoPhysicalNode::SetBranchAsState(), TTree::SetBranchStatus(), TBrowser::SetBrowserImp(), THnSparseCoordCompression::SetBufferFromCoord(), HistAction::setCanvasDivision(), TTree::SetCircular(), TClassTree::SetClasses(), TGX11::SetClipOFF(), TGWin32::SetClipOFF(), TGQt::SetClipRectangles(), TGWin32::SetClipRectangles(), TGX11::SetClipRegion(), TGWin32::SetClipRegion(), TMVA::RuleEnsemble::SetCoefficients(), TGLPhysicalShape::SetColor(), TEveUtil::SetColorBrightness(), TKDTreeBinning::SetCommonBinEdges(), ROOT::Math::Rotation3D::SetComponents(), ROOT::Math::Transform3D::SetComponents(), ROOT::Math::LorentzRotation::SetComponents(), TBranch::SetCompressionLevel(), THnSparseCoordCompression::SetCoordFromBuffer(), RooFitResult::setCovarianceMatrix(), TSpider::SetCurrentEntries(), TZIPFile::SetCurrentMember(), TGeoXtru::SetCurrentVertices(), TGWin32::SetDashes(), TKDTreeBinning::SetData(), TGListView::SetDefaultColumnWidth(), TEveTrackListProjected::SetDepth(), TEvePointSetProjected::SetDepthLocal(), TEvePolygonSetProjected::SetDepthLocal(), TEveLineProjected::SetDepthLocal(), TEveTrackProjected::SetDepthLocal(), THostAuth::SetDetails(), TGLPhysicalShape::SetDiffuseColor(), TMD5::SetDigest(), TGeoGtra::SetDimensions(), TGeoPgon::SetDimensions(), TGeoPcon::SetDimensions(), TGeoXtru::SetDimensions(), TGeoArb8::SetDimensions(), TMVA::MethodMLP::SetDir(), TEveProjection::SetDirectionalVector(), TMVA::MethodMLP::SetDirWeights(), TGX11::SetDoubleBuffer(), TGWin32::SetDoubleBuffer(), TGX11::SetDoubleBufferON(), TGWin32::SetDoubleBufferON(), TGWin32::SetDrawMode(), TGX11::SetDrawMode(), XrdOucErrInfo::setErrInfo(), TSelectorDraw::SetEstimate(), TGTable::SetEvenRowBackground(), TUsrSevtData2::SetEvent(), TUsrSevtData1::SetEvent(), TTree::SetEventList(), TChain::SetEventList(), RooStats::ToyMCSampler::SetExpectedNuisancePar(), TGeoHelix::SetField(), TPie::SetFillColors(), THostAuth::SetFirst(), TBranch::SetFirstEntry(), TF1::SetFitResult(), TLinearFitter::SetFormula(), TEveTrans::SetFromArray(), TGLFaceSet::SetFromMesh(), ROOT::Math::GSLNLSMinimizer::SetFunction(), TLinearMinimizer::SetFunction(), TMultiLayerPerceptron::SetGammaDelta(), TMVA::MethodMLP::SetGammaDelta(), TGLViewerEditor::SetGuides(), TGListView::SetHeader(), TGTable::SetHeaderBackground(), TGListView::SetHeaders(), TGIcon::SetImage(), TMVA::RuleEnsemble::SetImportanceRef(), TFoam::SetInhiDiv(), TMVA::PDEFoam::SetInhiDiv(), TSPlot::SetInitialNumbersOfSpecies(), TUnfold::SetInput(), TMVA::Factory::SetInputTreesFromEventAssignTrees(), TGHtml::SetInsert(), RooAbsCachedReal::setInterpolationOrder(), RooAbsCachedPdf::setInterpolationOrder(), TMVA::KDEKernel::SetKernelType(), TDsKey::SetKey(), TQtClientWidget::SetKeyMask(), TPie::SetLabels(), THostAuth::SetLast(), ROOT::Minuit2::MnUserParameterState::SetLimits(), TEveGTriVecValuator::SetLimits(), RooAdaptiveIntegratorND::setLimits(), TEveTrackList::SetLineColor(), TEveTrackList::SetLineStyle(), TGWin32::SetLineType(), TQtPen::SetLineType(), TGX11::SetLineType(), TEveTrackList::SetLineWidth(), TBuffer3D::SetLocalMasterIdentity(), ROOT::Minuit2::MnUserParameterState::SetLowerLimit(), TEveCompound::SetMainColor(), TEveTrackList::SetMainColor(), TEveCompound::SetMainTransparency(), TBranchElement::SetMakeClass(), TTree::SetMakeClass(), TQtMarker::SetMarker(), TEvePointSetArray::SetMarkerColor(), TEveTrackList::SetMarkerColor(), TEvePointSetArray::SetMarkerSize(), TEveTrackList::SetMarkerSize(), TEvePointSetArray::SetMarkerStyle(), TEveTrackList::SetMarkerStyle(), TGWin32::SetMarkerType(), TGX11::SetMarkerType(), PyROOT::TMethodHolder< T, M >::SetMethodArgs(), TGraphEditor::SetModel(), TH1Editor::SetModel(), TEveTransSubEditor::SetModel(), TGLClipSetSubEditor::SetModel(), TGeoVolumeEditor::SetModel(), TEveParamListEditor::SetModel(), TH2Editor::SetModel(), RooAbsTestStatistic::setMPSet(), TMVAGlob::SetMultiClassStyle(), TTreeViewer::SetNexpressions(), TGeoPolygon::SetNextIndex(), XrdProofdPriorityMgr::SetNiceValues(), TGLSurfacePainter::SetNormals(), TFitEditor::SetObjectType(), TGTable::SetOddRowBackground(), RooAbsArg::setOperMode(), TPSocket::SetOption(), TEvePointSetArray::SetOwnIds(), TColor::SetPalette(), TFormula::SetParameters(), SetParameters(), ROOT::Math::VavilovAccurateCdf::SetParameters(), TFitParametersDialog::SetParameters(), ROOT::Math::VavilovAccuratePdf::SetParameters(), ROOT::Math::VavilovAccurateQuantile::SetParameters(), ROOT::Fit::FitConfig::SetParamsSettings(), TF1::SetParErrors(), TF1::SetParLimits(), TGStatusBar::SetParts(), ROOT::Math::WrappedParamFunctionGen< FuncPtr >::SetParValues(), TSpectrum2Fit::SetPeakParameters(), TSpectrumFit::SetPeakParameters(), TGeoArb8::SetPlaneVertices(), TFFTComplex::SetPoint(), TFFTReal::SetPoint(), TFFTComplexReal::SetPoint(), TFFTRealComplex::SetPoint(), TGraphAsymmErrors::SetPointError(), TGraphErrors::SetPointError(), TGraphBentErrors::SetPointError(), TEvePointSet::SetPointIntIds(), TPointsArray3D::SetPoints(), TGeoHype::SetPoints(), TGeoPcon::SetPoints(), TGeoScaledShape::SetPoints(), TSPHE::SetPoints(), TFFTComplexReal::SetPoints(), TFFTRealComplex::SetPoints(), TGeoPgon::SetPoints(), TFFTReal::SetPoints(), TGeoBoolNode::SetPoints(), TXTRU::SetPoints(), TFFTComplex::SetPoints(), TGeoSphere::SetPoints(), TGeoTorus::SetPoints(), TGTRA::SetPoints(), TPCON::SetPoints(), TGeoParaboloid::SetPoints(), TMarker3DBox::SetPoints(), TGeoArb8::SetPoints(), TGeoXtru::SetPoints(), TFFTComplexReal::SetPointsComplex(), TFFTRealComplex::SetPointsComplex(), TFFTComplex::SetPointsComplex(), TPolyLine3D::SetPolyLine(), TPolyLine::SetPolyLine(), TPolyMarker3D::SetPolyMarker(), TPolyMarker::SetPolyMarker(), RooAbsGenContext::setProtoDataOrder(), RooAddGenContext::setProtoDataOrder(), RooAbsArg::setProxyNormSet(), TGLManipSet::SetPShape(), TView3D::SetRange(), THelix::SetRange(), TEvePointSetArray::SetRange(), TQCommand::SetRedoArgs(), TResponseTable::SetResponse(), TGLPShapeObjEditor::SetRGBA(), TEveGeoShapeExtract::SetRGBA(), TEveGeoShapeExtract::SetRGBALine(), TEveTrackList::SetRnrLine(), TEveTrackList::SetRnrPoints(), TEveTrans::SetRotByAnyAngles(), TTreeRow::SetRow(), ROOT::Math::GoFTest::SetSamples(), TGSpeedo::SetScaleValue(), TRandom2::SetSeed(), TRandom3::SetSeed(), TRandom1::SetSeed2(), TRandom1::SetSeeds(), TPCON::SetSegsAndPols(), TGeoTubeSeg::SetSegsAndPols(), TGeoPcon::SetSegsAndPols(), TGeoHype::SetSegsAndPols(), TGeoParaboloid::SetSegsAndPols(), TGeoConeSeg::SetSegsAndPols(), TGeoPgon::SetSegsAndPols(), TGeoTorus::SetSegsAndPols(), TTUBE::SetSegsAndPols(), TGeoCone::SetSegsAndPols(), TGeoXtru::SetSegsAndPols(), TGeoSphere::SetSegsAndPols(), TGeoTube::SetSegsAndPols(), TTreeTableInterface::SetSelection(), RooFitTestUnit::setSilentMode(), TEveCaloData::SetSliceColor(), TEveCaloData::SetSliceTransparency(), TGeoCacheState::SetState(), TGLVEntry::SetSubnames(), TBranchElement::SetTargetClass(), TGX11::SetTextFont(), TTF::SetTextFont(), TGLAxisPainter::SetTextFormat(), SettingsDialog::SettingsDialog(), TGeoManager::SetTopVolume(), TEveGeoShapeExtract::SetTrans(), TMVA::TransformationHandler::SetTransformationReferenceClass(), TKDTreeBinning::SetTreeData(), TSPlot::SetTreeSelection(), XrdProofdResponse::SetTrsid(), TetrisPiece::SetType(), TQCommand::SetUndoArgs(), TPerfStats::Setup(), ROOT::TBranchProxy::Setup(), XrdPoll::Setup(), XrdFrmTransfer::SetupCmd(), TProofServ::SetupCommon(), TEveTrans::SetupFromToVec(), ROOT::Minuit2::MnUserParameterState::SetUpperLimit(), XrdCmsConfig::setupXmi(), TUrl::SetUrl(), XrdProofdProofServMgr::SetUserOwnerships(), TMVA::Option< T * >::SetValue(), ROOT::Minuit2::MnUserParameterState::SetValue(), ROOT::Math::Minimizer::SetVariableValues(), TRootBrowserLite::SetViewMode(), TetrisPiece::SetX(), TFoam::SetXdivPRD(), TGeoPolygon::SetXY(), TetrisPiece::SetXY(), TetrisPiece::SetY(), Rgl::SetZLevels(), sfnt_load_face(), TGeoPainter::ShapeDistancetoPrimitive(), TShape::ShapeDistancetoPrimitive(), RooCurve::shiftCurveToZero(), TBtInnerNode::ShiftLeft(), TBtLeafNode::ShiftLeft(), TClassEdit::TSplitType::ShortType(), TEveProjectionManager::ShouldImport(), ShouldReplace(), TTree::Show(), TGTable::Show(), TMemStatShow::Show(), TetrisPiece::Show(), TClassTree::ShowClassesUsedBy(), TClassTree::ShowClassesUsing(), TRootCanvas::ShowToolBar(), XrdClientUrlSet::ShowUrls(), TEmulatedCollectionProxy::Shrink(), shrink_component(), shrink_component11(), TGTable::ShrinkColumns(), TGTable::ShrinkRows(), TMVA::MethodMLP::Shuffle(), TMultiLayerPerceptron::Shuffle(), XrdMonSenderInfo::shutdown(), TPainter3dAlgorithms::SideVisibilityDecode(), sig_clr(), sig_handler(), sig_init(), sig_set(), sighandler(), TNeuron::Sigmoid(), simanTSP(), SimpleFun(), TVirtualFFT::SineCosine(), SingularFun(), ROOT::Math::sinint(), TEvePointSetArray::Size(), skip_literal_string(), ProofSimple::SlaveBegin(), TGeoPgon::SliceCrossing(), TGeoPgon::SliceCrossingIn(), TGeoPgon::SliceCrossingInZ(), TGeoPgon::SliceCrossingZ(), TimeReport::smallSum(), TGraphPainter::Smooth(), TGraphSmooth::Smoothin(), TGraphSmooth::SmoothKern(), TGraphSmooth::SmoothLowess(), TSpectrum::SmoothMarkov(), TSpectrum3::SmoothMarkov(), TSpectrum2::SmoothMarkov(), TGraphSmooth::SmoothSuper(), XrdNetSocket::socketPath(), TDecompQRH::Solve(), TDecompLU::Solve(), TDecompChol::Solve(), TDecompBK::Solve(), TDecompSparse::Solve(), TGeoTorus::SolveQuartic(), TGListTree::Sort(), TMath::Sort(), TMatrixDEigen::Sort(), XrdProofWorker::Sort(), XSElementList::Sort(), TObjArray::Sort(), TClonesArray::Sort(), TFileCacheRead::Sort(), TEventList::Sort(), TTreeCloner::SortBaskets(), TKDTreeBinning::SortBinsByDensity(), TMemStat::SortCode(), TGeoVoxelFinder::SortCrossedVoxels(), RooNDKeysPdf::sortDataIndices(), TMath::SortItr(), TDecompSVD::SortSingular(), TPie::SortSlices(), TMemStat::SortStack(), TClassTable::SortTable(), south_gate(), XrdCmsCluster::Space(), TPainter3dAlgorithms::Spectrum(), splines(), RooAbsData::split(), TPMERegexp::Split(), split_freetype_glyph_range(), split_storage_slot(), ROOT::TSchemaRuleProcessor::SplitDeclaration(), TEveProjectionAxesGL::SplitIntervalByPos(), SplitLong(), TSelectorDraw::SplitNames(), RootCsg::TSplitFunction< TMesh, TSplitFunctionBinder >::SplitPolygon(), TTreeDrawArgsParser::SplitVariables(), TSPlot::SPlots(), TKDTree< Index, Value >::Spread(), spstress_allocation(), spstress_binary_ebe_op(), spstress_element_op(), spstress_matrix_fill(), spstress_mm_multiplications(), SpyServ::SpyServ(), sqlfilldb(), sqlselect(), ssl_callback_SSLVerify_CRL(), TXNetFileStager::Stage(), TEveRefBackPtr::StampBackPtrElements(), StandaloneClassExample(), StandardFeldmanCousinsDemo(), StandardProfileInspectorDemo(), XrdFrmReqBoss::Start(), XrdFrmReqAgent::Start(), start_pass(), start_pass_1_quant(), start_pass_2_quant(), start_pass_fdctmgr(), start_pass_huff_decoder(), XrdCmsFinderRMT::StartManagers(), TrigoFletcherFunction::StartPoints(), ChebyQuadFunction::StartPoints(), XrdClientPhyConnection::StartReader(), TLM::StartSession(), TTreeCacheUnzip::StartThreadUnzip(), StatFunction< Func, FuncQ, NPAR, NPARQ >::StatFunction(), station1(), station2(), XrdProtLoad::Stats(), XrdPoll::Stats(), XrdXrootdStats::Stats(), StatusPrint(), stdsort(), TMVA::MethodMLP::SteepestDir(), ROOT::Math::GSLSimAnFunc::Step(), TGeoNavigator::Step(), TGeoHelix::Step(), TQpVar::StepBound(), RooCacheManager< T >::sterilize(), TSpectrum2Fit::StiefelInversion(), TSpectrumFit::StiefelInversion(), StockReturn(), TTreeCacheUnzip::StopThreadUnzip(), RooAICRegistry::store(), store_colors(), store_data_in_block(), RooMath::storeCache(), TProofPlayerRemote::StoreOutput(), TUUID::StreamerV1(), stress1(), stress3(), stress6(), stress7(), stress9tree(), stress_allocation(), stress_binary_ebe_op(), stress_determinant(), stress_element_op(), stress_inversion(), stress_matrix_fill(), stress_mm_multiplications(), stress_special_creation(), stress_sym_mm_multiplications(), stress_transposition(), stress_vm_multiplications(), stressFit(), stressGeometry(), stressGraphics(), stressGUI(), stressHistogram(), stressRooFit(), stressVector(), TDocParser::Strip(), StrToReal(), TMath::StruveH0(), TMath::StruveH1(), TMath::StruveL0(), TMath::StruveL1(), TestVector< Vector >::Sub(), TestVector< Vector >::Sub2(), sub_scanlines(), SubdivColorMap(), subimage2ximage(), TEveProjectionManager::SubImportChildren(), TGLViewerBase::SubRenderScenes(), TString::SubString(), TEventList::Subtract(), TEntryList::Subtract(), TGeoTranslation::Subtract(), TrackD32::Sum(), TrackErrD::Sum(), Sum(), VecTrack< TrackErrD >::Sum(), TrackD::Sum(), TrackErrD32::Sum(), RooDataHist::sum(), SumCArray(), SumDistance2(), RooDataHist::sumEntries(), RooDataSet::sumEntries(), TBenchmark::Summary(), TPrincipal::SumOfSquareResiduals(), SumSMatrix(), SumTMatrix(), TPainter3dAlgorithms::SurfaceCartesian(), TPainter3dAlgorithms::SurfaceCylindrical(), TPainter3dAlgorithms::SurfaceFunction(), TPainter3dAlgorithms::SurfacePolar(), TPainter3dAlgorithms::SurfaceSpherical(), TMVA::SVKernelMatrix::SVKernelMatrix(), TMVA::SVWorkingSet::SVWorkingSet(), SWIG_MangledTypeQueryModule(), SWIG_TypeQueryModule(), TEveViewerList::SwitchColorSet(), TBranchElement::SwitchContainer(), TTreeFormulaManager::Sync(), TTreeTableInterface::SyncFormulas(), TSpider::SyncFormulas(), RooMultiVarGaussian::syncMuVec(), ROOT::Minuit2::MPIProcess::SyncSymMatrixOffDiagonal(), ROOT::Minuit2::MPIProcess::SyncVector(), t1_decoder_parse_charstrings(), T1_Get_MM_Var(), t1_get_name_index(), T1_Get_Track_Kerning(), T1_Set_Var_Design(), t42_get_name_index(), t42_parse_dict(), t42_parse_sfnts(), RooAbsData::table(), table(), TGHtml::TableDimensions(), THistPainter::TableInit(), TableTest::TableTest(), TabsTest(), TGLSceneBase::TagViewersChanged(), TSelectorDraw::TakeAction(), TEvePointSet::TakeAction(), TSelectorDraw::TakeEstimate(), tank(), TApplication::TApplication(), TAttBBox::TAttBBox(), TAuthenticate::TAuthenticate(), TBasket::TBasket(), RootCsg::TBBoxInternal::TBBoxInternal(), TBenchmark::TBenchmark(), TBranchRef::TBranchRef(), TBranchSTL::TBranchSTL(), TChainIndex::TChainIndex(), TClonesArray::TClonesArray(), tclread(), tclwrite(), TCollectionCount(), TCollectionExtend(), TCollectionIMul(), TCollectionMul(), TCylinderMesh::TCylinderMesh(), TCylinderSegMesh::TCylinderSegMesh(), TDataSetIter::TDataSetIter(), TDefHistImagePalette::TDefHistImagePalette(), TEntryList::TEntryList(), TEntryListBlock::TEntryListBlock(), TEntryListFromFile::TEntryListFromFile(), term__atocolor(), term_alloc_display(), term_bind_arrow(), term_clear_arrow(), term_clear_EOL(), term_move_to_char(), term_print_arrow(), term_set(), term_set_arrow(), TClassTable::Terminate(), TProofDrawListOfPolyMarkers3D::Terminate(), TProofDrawListOfGraphs::Terminate(), ProofSimple::Terminate(), TProofDrawPolyMarker3D::Terminate(), TProofDrawGraph::Terminate(), XrdProofdClientMgr::TerminateSessions(), TEveBoxSet::Test(), TSpline3::Test(), TGeoChecker::Test(), StatFunction< Func, FuncQ, NPAR, NPARQ >::Test(), TSpline5::Test(), Test1(), test1(), test15(), test16(), test17(), test18(), test19(), test1DObjects(), Test2(), test2(), test21(), test23(), test2DObjects(), test2DRebin(), test2DRebinProfile(), Test3(), Test4(), Test5(), test_arcs(), test_atan2(), test_cos(), test_length(), test_lines(), test_points(), test_rectangles(), test_rotate(), test_sin(), test_smatrix_kalman(), TestRunner< NDIM1, NDIM2 >::test_smatrix_kalman(), TestRunner< NDIM1, NDIM2 >::test_smatrix_sym_kalman(), test_smatrix_sym_kalman(), test_tan(), Test_TBtree(), Test_THashTable(), test_tmatrix_kalman(), TestRunner< NDIM1, NDIM2 >::test_tmatrix_kalman(), Test_TObjArray(), test_unit(), VectorTest< Dim >::testAddition(), VectorTest< Dim >::testAddition2(), VectorTest< Dim >::testAddition3(), VectorTest< Dim >::testAdditionSV(), VectorTest< Dim >::testAdditionTR(), testAll(), Tester::TestAllocation(), VectorTest< Dim >::testAnalysis(), VectorTest< Dim >::testAnalysis2(), testArrayFunctions(), testArrayRebin(), testArrayRebinProfile(), TestAuth(), testBetaFunction(), TestBigComment(), testBinarySearch(), testBinomial(), testBinomialCdf(), testBinomialCLHEP(), VectorTest< Dim >::testBoost1(), VectorTest< Dim >::testBoost2(), VectorTest< Dim >::testBoost_TL(), VectorTest< Dim >::testBoostX1(), VectorTest< Dim >::testBoostX2(), testBreitWigner(), TestBuild(), Tester::TestByIndex(), Tester::TestByName(), testCircle(), testCloneSparse(), TestBasic609::testCode(), TestBasic402::testCode(), TestBasic607::testCode(), TestConstr(), testCont1D(), VectorTest< Dim >::testConversion(), VectorTest< Dim >::testCreate(), VectorTest< Dim >::testCreate2(), VectorTest< Dim >::testDelta(), VectorTest< Dim >::testDeltaPhi(), VectorTest< Dim >::testDeltaR(), StatFunction< Func, FuncQ, NPAR, NPARQ >::TestDerivative(), TestDerivative(), TestDialog::TestDialog(), testDisc1D(), testDiscDistr(), testDistr1D(), testDistrMultiDim(), testDivide1(), testDivide2(), testDivide2D1(), testDivide2D2(), testDivide3D1(), testDivide3D2(), testDivideVar1(), testDivideVar2(), testDivSparse1(), testDivSparse2(), VectorTest< Dim >::testDotProduct(), testDummy(), TPainter3dAlgorithms::TestEdge(), testEmpDistr(), testExp(), testFit(), testFitters(), testFlat(), testGammaFunction(), testGaus(), testGausFit(), DistTest::testGetRandom(), testGetRandom(), testHisto1DFit(), testHisto1DPolFit(), testHisto2DFit(), testIntegerRebin(), testIntegerRebinNoName(), testIntegerRebinNoNameProfile(), testIntegerRebinProfile(), testIntegPerf(), TestIntegral(), StatFunction< Func, FuncQ, NPAR, NPARQ >::TestIntegral(), testInterpolation(), StatFunction< Func, FuncQ, NPAR, NPARQ >::TestInverse1(), StatFunction< Func, FuncQ, NPAR, NPARQ >::TestInverse2(), testIteratorFunctions(), testLabelsInflateProf1D(), testLandau(), testLargeTreeFit(), testLargeTreeRooFit(), TestMainFrame::TestMainFrame(), VectorTest< Dim >::testMatVec(), TestMembers(), testMerge1DLabelAll(), testMerge1DLabelAllDiff(), testMerge2DLabelAll(), testMerge2DLabelAllDiff(), testMerge3DLabelAll(), testMerge3DLabelAllDiff(), testMergeCont(), testMergeProf1DLabelAll(), testMergeProf1DLabelAllDiff(), testMergeProf2DLabelAll(), testMergeProf2DLabelAllDiff(), testMergeProf3DLabelAll(), testMergeProf3DLabelAllDiff(), testMinimize(), TestMsgBox::TestMsgBox(), testMul2D1(), testMul2D2(), testMul3D1(), testMul3D2(), testMulFND(), testMulFND2(), testMulSparse(), testMultinomial(), testNdimFit(), TestNeighbors(), testNewMinimizer(), testOldMinimizer(), VectorTest< Dim >::testOperations(), TGeoChecker::TestOverlaps(), TestPct(), testPermute(), VectorTest< Dim >::testPointAddition(), testPoisson(), testPoisson2(), testPoissonCdf(), testPolyFit(), testProbVector(), TestFunc2::testQuantile(), TestFunc1::testQuantile(), testRandom3(), TestRange(), VectorTest< Dim >::testRead(), TestReport2(), testRootBinomial(), testRootFinder(), testRootPoisson(), TestRotation(), VectorTest< Dim >::testRotation(), testRotations3D(), VectorTest< Dim >::testScale(), VectorTest< Dim >::testScale2(), testSiCi(), testSort(), testSparseRebin1(), testSpecFuncBeta(), testSpecFuncBetaI(), testSpecFuncErf(), testSpecFuncGamma(), TestSpeed(), testSphere(), testStringAPI(), TestTime(), TestTimePF(), TestTimeTF1(), VectorTest< Dim >::testTransform(), VectorTest< Dim >::testTransformProd(), VectorTest< Dim >::testTransformProd2(), VectorTest< Dim >::testTransformProd3(), VectorTest< Dim >::testTranslation(), testTreeFit(), testUnBin1DFit(), testUnBinnedFit(), testUnfold1(), testUnfold2(), testUnfold3(), testUnfold4(), testUnuran(), DistTest::testUnuran(), testUserFunc(), testVavilov(), TestVector< Vector >::TestVector(), VectorTest< Dim >::testVectorAddition(), VectorTest< Dim >::testWrite(), testWriteReadSparse(), TEventList::TEventList(), TEveProjectionManager::TEveProjectionManager(), TEveTextEditor::TEveTextEditor(), TPostScript::Text(), TPDF::Text(), TSVG::Text(), TCreatePrimitives::Text(), TF1::TF1(), TFFTComplex::TFFTComplex(), TFFTComplexReal::TFFTComplexReal(), TFFTReal::TFFTReal(), TFFTRealComplex::TFFTRealComplex(), TFoamVect::TFoamVect(), TFormula::TFormula(), TG16ColorSelector::TG16ColorSelector(), tgaxis3(), tgaxis4(), TGColorPalette::TGColorPalette(), TGedMarkerPopup::TGedMarkerPopup(), TGedPatternSelector::TGedPatternSelector(), TGenPhaseSpace::TGenPhaseSpace(), TGeoArb8::TGeoArb8(), TGeoBatemanSol::TGeoBatemanSol(), TGeoCacheState::TGeoCacheState(), TGeoCombiTrans::TGeoCombiTrans(), TGeoElemIter::TGeoElemIter(), TGeoGenTrans::TGeoGenTrans(), TGeoGtra::TGeoGtra(), TGeoIterator::TGeoIterator(), TGeoManager::TGeoManager(), TGeoManagerEditor::TGeoManagerEditor(), TGeoMedium::TGeoMedium(), TGeometry::TGeometry(), TGeoNavigator::TGeoNavigator(), TGeoNodeCache::TGeoNodeCache(), TGeoRotation::TGeoRotation(), TGeoTrap::TGeoTrap(), TGeoVoxelFinder::TGeoVoxelFinder(), TGFileDialog::TGFileDialog(), TGFont::TGFont(), TGFontTypeComboBox::TGFontTypeComboBox(), TGHtml::TGHtml(), TGHtmlMarkupElement::TGHtmlMarkupElement(), TGHtmlTable::TGHtmlTable(), TGLCamera::TGLCamera(), TGLClipSetSubEditor::TGLClipSetSubEditor(), TGLCylinder::TGLCylinder(), TGLFaceSet::TGLFaceSet(), TGLineStyleComboBox::TGLineStyleComboBox(), TGLineWidthComboBox::TGLineWidthComboBox(), TGLVEntry::TGLVEntry(), TGMdiTestSubclass::TGMdiTestSubclass(), TGraph::TGraph(), tgraph1(), tgraph2(), TGraph2D::TGraph2D(), tgraph2d1(), TGraph2DErrors::TGraph2DErrors(), tgraph3(), TGraphAsymmErrors::TGraphAsymmErrors(), TGraphBentErrors::TGraphBentErrors(), TGraphErrors::TGraphErrors(), TGraphQQ::TGraphQQ(), TGRegion::TGRegion(), TGuiBldDragManagerPimpl::TGuiBldDragManagerPimpl(), TGWin32::TGWin32(), TGX11::TGX11(), th2polyEurope(), th2polyHoneycomb(), th2polyUSA(), THbookFile::THbookFile(), Think(), THit::THit(), THnSparse::THnSparse(), THnSparseCoordCompression::THnSparseCoordCompression(), THostAuth::THostAuth(), threadsh1(), TGLAxis::TicksPositionsNoOpt(), TGLAxis::TicksPositionsOpt(), tile_argb32_line(), tile_ximage_line(), TImagePalette::TImagePalette(), XrdSysLogger::Time(), timeonaxis(), timeonaxis2(), Timing2(), TGeoChecker::TimingPerVolume(), tint_scanlines(), TIsAProxy::TIsAProxy(), TKDTreeTestBuild(), TKey::TKey(), TLinearFitter::TLinearFitter(), TListAndSTL(), tmarker(), TMatrixTSparse< Element >::TMatrixTSparse(), TMVAClassification(), TMVAClassificationApplication(), TMVAGui(), TMVAMulticlass(), TMVAMulticlassApplication(), TMVAMultiClassGui(), TMVARegGui(), TMVARegression(), TMVARegressionApplication(), TNtuple::TNtuple(), TNtupleD::TNtupleD(), TObjArray::TObjArray(), TGeoTorus::ToBoundary(), tobuf(), ShutterWindow::ToggleShutterItem(), tohex(), TString::Tokenize(), top(), TGTextLayout::ToPostscript(), tornado(), HistAction::toScan(), NdbParticleList::TotalMass(), toTree(), QSymbolCodec::toUnicode(), TPainter3dAlgorithms::TPainter3dAlgorithms(), TPie::TPie(), TPointsArray3D::TPointsArray3D(), TPolyLine::TPolyLine(), TPolyLine3D::TPolyLine3D(), TPolyMarker::TPolyMarker(), TPolyMarker3D::TPolyMarker3D(), TPSocket::TPSocket(), TQCommand::TQCommand(), Track::Track(), traditional_downsampling(), TMVA::MethodBDT::Train(), TMultiLayerPerceptron::Train(), TMVA::MethodBoost::Train(), TMVA::MethodCFMlpANN::Train(), TMVA::MethodTMlpANN::Train(), TMVA::MethodPDEFoam::Train(), TMVA::Factory::TrainAllMethods(), TMVA::MethodMLP::TrainOneEpoch(), TMVA::MethodPDEFoam::TrainSeparatedClassification(), TMVA::MethodRuleFit::TrainTMVARuleFit(), trans_graph(), transencode_coef_controller(), TSpectrum2Transform::Transform(), TEntryListBlock::Transform(), TSpectrumTransform::Transform(), ROOT::Math::MinimTransformFunction::Transformation(), TMVA::TransformationHandler::TransformationHandler(), TGeoShape::TransformPoints(), TGLMatrix::TransformVertex(), transpad(), TMatrixT< Element >::Transpose(), transpose_critical_parameters(), TDecompSVD::TransSolve(), TDecompQRH::TransSolve(), TDecompLU::TransSolve(), tree1r(), tree1w(), tree2ar(), tree2aw(), tree2r(), tree2w(), tree3w(), tree4r(), TRefArray::TRefArray(), triangles(), TrigoFletcher(), TrigoFletcherFunction::TrigoFletcherFunction(), XrdSutCache::Trim(), TCL::trinv(), TROOT::TROOT(), TRootGuiBuilder::TRootGuiBuilder(), TRootObjItem::TRootObjItem(), TRotMatrix::TRotMatrix(), TCL::trsequ(), XrdProofConn::TryConnect(), XrdCmsManTree::Trying(), XrdClient::TryOpen(), TSelectorDraw::TSelectorDraw(), TSeqCollectionDelItem(), TSeqCollectionGetItem(), TSeqCollectionReverse(), TSeqCollectionSetItem(), TSpline3::TSpline3(), TSpline5::TSpline5(), TStreamerElement::TStreamerElement(), tStudent(), TSVDUnfoldExample(), tt_face_init(), tt_loader_init(), TT_Process_Composite_Component(), TT_Process_Composite_Glyph(), TT_Process_Simple_Glyph(), TTableSorter::TTableSorter(), TTreeIndex::TTreeIndex(), tty_rawmode(), tty_stty(), TubeMesh::TubeMesh(), TubeSegMesh::TubeSegMesh(), TUnuranEmpDist::TUnuranEmpDist(), tv3Read1(), tv3Read2(), tv3Write(), TVectorT< Element >::TVectorT(), TView3D::TView3D(), TVolumePosition::TVolumePosition(), TVolumeView::TVolumeView(), TWebPalette::TWebPalette(), TwoHistoFit2D(), twoscales(), TXTRU::TXTRU(), TCL::ucopy(), XrdOssSpace::Unassign(), ROOT::Fit::UnBinData::UnBinData(), ROOT::Fit::UnBinFit(), TSVDUnfold::Unfold(), TSpectrum::Unfolding(), unhex(), TMatrixTBase< Element >::UnitMatrix(), TMatrixTSparse< Element >::UnitMatrix(), GoFTStress::UnitTest3(), GoFTStress::UnitTest4(), GoFTStress::UnitTest5(), GoFTStress::UnitTest6(), GoFTStress::UnitTest7(), unix_path2dos_path(), XrdOssSys::Unlink(), XrdClientReadV::UnpackReadVResp(), unuranDistr(), unuranGraf(), unuranGraf2D(), unuranHist(), unuranSimple(), TStreamerInfo::Update(), ROOT::Fit::FitResult::Update(), ROOT::Minuit2::FumiliErrorUpdator::Update(), ROOT::Minuit2::SimplexParameters::Update(), THostAuth::Update(), TFormLeafInfo::Update(), TBasket::Update(), update_html_summary(), TMakeProject::UpdateAssociativeToVector(), RooBinning::updateBinCount(), TGLBoundingBox::UpdateCache(), RooAddPdf::updateCoefficients(), RooAddModel::updateCoefficients(), TMVA::RuleFitParams::UpdateCoefficients(), XSReactionDlg::UpdateContainer(), TEveProjectionManager::UpdateDependentElsAndScenes(), TGeoMixtureEditor::UpdateElements(), TGeoManager::UpdateElements(), TTreeFormulaManager::UpdateFormulaLeaves(), TGLH2PolyPainter::UpdateGeometry(), TGTable::UpdateHeaders(), TSessionQueryFrame::UpdateHistos(), RooSuperCategory::updateIndexList(), TObjectTable::UpdateInstCount(), TLinearFitter::UpdateMatrix(), TNode::UpdateMatrix(), TKDTree< Index, Value >::UpdateNearestNeighbors(), TMVA::MethodMLP::UpdateNetwork(), TEveGeoNode::UpdateNode(), TMVA::MethodMLP::UpdatePriors(), TEveBoxProjected::UpdateProjection(), TEvePointSetProjected::UpdateProjection(), TEveGeoShapeProjected::UpdateProjection(), TEveLineProjected::UpdateProjection(), XSReactionDlg::UpdateReactions(), TMVA::MethodMLP::UpdateRegulators(), TGLSceneBase::UpdateSceneInfo(), StatDialogMVAEffs::UpdateSignificanceHists(), TFormLeafInfoMultiVarDim::UpdateSizes(), TGFontDialog::UpdateStyleSize(), TMVA::MethodMLP::UpdateSynapses(), RooAddGenContext::updateThresholds(), TMVA::RuleFitParams::UpdateTstCoefficients(), TGTable::UpdateView(), TSpider::UpdateView(), TGLViewerEditor::UpdateViewerAxes(), TGLClipSetSubEditor::UpdateViewerClip(), TEveGeoNode::UpdateVolume(), XrdOucString::upper(), RooStats::MCMCInterval::UpperLimitByDataHist(), RooStats::MCMCInterval::UpperLimitByKeys(), RooStats::MCMCInterval::UpperLimitBySparseHist(), XrdOssSpace::Usage(), TSVDUnfold::V2H(), TCL::vadd(), TGeoOverlap::Validate(), TProof::ValidateDSet(), TProofSuperMaster::ValidateDSet(), ROOT::ValidateRule(), value_scanlines(), variablesMultiClass(), TMVA::PDEFoam::VarTransform(), TMVA::PDEFoam::VarTransformInvers(), vavilov(), ROOT::Math::VavilovAccurateCdf::VavilovAccurateCdf(), ROOT::Math::VavilovAccuratePdf::VavilovAccuratePdf(), ROOT::Math::VavilovAccurateQuantile::VavilovAccurateQuantile(), TCL::vcopyn(), TCL::vdot(), TSVDUnfold::VecDiv(), VectorGetItem(), TASImage::Vectorize(), vectorize_asimage(), TUnfoldSys::VectorMapToHist(), VecTrack< TrackErrD >::VecTrack(), XrdXrootdJob2Do::verClient(), VerifyMatrixIdentity(), VerifyMatrixValue(), VerifySize(), VerifyVectorIdentity(), VerifyVectorValue(), via(), view3ds(), TGLCamera::ViewportRect(), visual2visual_prop(), visual_prop2visual(), vkill_trailing(), TCL::vlinco(), TCL::vmatl(), TCL::vmatr(), TGeoMCGeometry::Vname(), TGeoBuilder::Volume(), TGeoVoxelFinder::Voxelize(), TCL::vscale(), TCL::vsub(), TSpectrum2Transform::Walsh(), TSpectrumTransform::Walsh(), waves(), TView3D::WCtoNDC(), RooDataHist::weight(), TGeoVolume::WeightA(), TMVA::PDEFoam::WeightGaus(), RootCsg::which_side(), TGLSurfacePainter::WindowPointTo3DPoint(), WinMain(), RooDataSet::write(), XrdClient::Write(), XrdCnsSsi::Write(), write(), write_gif_saved_images(), write_scan_header(), write_tables_only(), TBufferFile::WriteArray(), TBasket::WriteBuffer(), TStreamerInfo::WriteBufferAux(), writeCArray(), TSessionViewer::WriteConfiguration(), TBufferXML::WriteFastArray(), TBufferSQL2::WriteFastArray(), TBufferSQL::WriteFastArray(), TBufferFile::WriteFastArray(), TBufferFile::WriteFastArrayDouble32(), TBufferFile::WriteFastArrayFloat16(), TKey::WriteFile(), TKey::WriteFileKeepBuffer(), TGX11::WriteGIF(), TGWin32::WriteGIF(), TEmulatedCollectionProxy::WriteItems(), TDocOutput::WriteLineNumbers(), TGenCollectionStreamer::WriteMap(), TEmulatedMapProxy::WriteMap(), TMVA::MethodLikelihood::WriteMonitoringHistosToFile(), TMVA::MethodBoost::WriteMonitoringHistosToFile(), TDirectoryFile::WriteObjectAny(), TGenCollectionStreamer::WriteObjects(), TDatabasePDG::WritePDGTable(), TFile::WriteProcessID(), ROOT::TTreeProxyGenerator::WriteProxy(), WriteRef(), ROOT::WriteSchemaList(), writeSMatrix(), writeSMatrixSym(), writeTMatrix(), writeTMatrixSym(), TDirectoryFile::WriteTObject(), TMVA::TransformationHandler::WriteToStream(), writeTrack(), writeTrackD(), writeTrackD32(), XrdPosixXrootd::Writev(), TMVA::VariablePCATransform::X2P(), TPrincipal::X2P(), x3d_main(), x3d_terminate(), XrdXrootdProtocol::xasync(), XrdAccConfig::xaud(), XrdPssSys::xconf(), XrdFrmConfig::xcopy(), XrdCmsConfig::xdelay(), XrdFrmAdmin::xeqArgs(), XrdOfs::xforward(), XrdCmsConfig::xfsxq(), xim_set_component(), ximage2scanline15(), ximage2scanline16(), ximage2scanline32(), ximage2scanline_pseudo12bpp(), ximage2scanline_pseudo3bpp(), ximage2scanline_pseudo6bpp(), XrdCmsConfig::xlclrt(), XrdXrootdProtocol::xlog(), XrdCmsClientConfig::xmang(), XrdCmsConfig::xmang(), XrdOssSys::xmemf(), TBufferXML::XmlReadBlock(), XrdXrootdProtocol::xmon(), XrdFrmConfig::xmon(), XrdConfig::xnet(), XrdOfs::xnmsg(), XrdOfs::xnot(), XrdPssSys::xorig(), XrdFrmPurge::XPolOK(), XrdAccCapability::XrdAccCapability(), XrdBwm::XrdBwm(), XrdClientPhyConnection::XrdClientPhyConnection(), XrdClientSid::XrdClientSid(), XrdClientVector< XrdClientPhyConnection * >::XrdClientVector(), XrdFfsDent_cache_destroy(), XrdFfsDent_cache_fill(), XrdFfsDent_cache_init(), XrdFfsDent_cache_search(), XrdFfsDent_dentcache_fill(), XrdFfsDent_dentcache_free(), XrdFfsDent_names_extract(), XrdFfsMisc_get_all_urls(), XrdFfsMisc_get_list_of_data_servers(), XrdFfsMisc_refresh_url_cache(), XrdFfsMisc_xrd_init(), XrdFfsPosix_deleteall(), XrdFfsPosix_readdirall(), XrdFfsPosix_renameall(), XrdFfsPosix_truncateall(), XrdFfsQueue_count_workers(), XrdFfsQueue_create_workers(), XrdFfsQueue_remove_workers(), XrdFrmTransfer::XrdFrmTransfer(), XrdOfs::XrdOfs(), XrdOucTable< XrdXrootdJob2Do >::XrdOucTable(), XrdProofdProofServMgr::XrdProofdProofServMgr(), XrdProofdSandbox::XrdProofdSandbox(), XrdSecProtocolsslInit(), XrdSslgsiX509CreateProxyReq(), XrdSslgsiX509SignProxyReq(), XrdSutFromHex(), XrdSutGetPass(), XrdSutParseTime(), XrdSutTimeString(), XrdSutToHex(), XrdSysStatX(), XrdXrootdFile::XrdXrootdFile(), XrdXrootdJob2Do::XrdXrootdJob2Do(), XrdXtRdFile::XrdXtRdFile(), XrdXrootdProtocol::xred(), XrdConfig::xrep(), XrdCmsClientConfig::xreqs(), XrdCmsConfig::xrmtrt(), XRotAddToLinkedList(), XRotCreateTextItem(), XRotDrawHorizontalString(), XRotMagnifyImage(), XRotPaintAlignedString(), XRotTextExtents(), XrdConfig::xsched(), XrdCmsConfig::xsched(), XSElementList::XSElementList(), XSElements::XSElements(), XSGraph::XSGraph(), XrdPssSys::xsopt(), XrdOssSys::xspace(), XrdCmsConfig::xspace(), XSPeriodicTable::XSPeriodicTable(), XrdConfig::xtmo(), XrdCmsClientConfig::xtrac(), XrdPssSys::xtrac(), XrdOssSys::xtrace(), XrdConfig::xtrace(), XrdBwm::xtrace(), XrdOfs::xtrace(), XrdCmsConfig::xtrace(), XrdXrootdProtocol::xtrace(), XrdSecServer::xtrace(), TGDMLParse::Xtru(), xtruDraw(), xtruSamples(), Yields(), TPainter3dAlgorithms::ZDepth(), zoomtf1(), TView3D::ZoomView(), TMVA::DataSetInfo::~DataSetInfo(), TMVA::MethodBase::~MethodBase(), TMVA::MethodBDT::~MethodBDT(), TMVA::MethodCFMlpANN::~MethodCFMlpANN(), TMVA::MethodCommittee::~MethodCommittee(), TMVA::MethodCuts::~MethodCuts(), TMVA::MethodPDEFoam::~MethodPDEFoam(), TMVA::MethodRuleFit::~MethodRuleFit(), NdbMTReacDesc::~NdbMTReacDesc(), TMVA::OptimizeConfigParameters::~OptimizeConfigParameters(), TMVA::PDEFoam::~PDEFoam(), RooAbsTestStatistic::~RooAbsTestStatistic(), RooAICRegistry::~RooAICRegistry(), RooCacheManager< T >::~RooCacheManager(), RooHashTable::~RooHashTable(), TMVA::SVKernelMatrix::~SVKernelMatrix(), TApplication::~TApplication(), TBtInnerNode::~TBtInnerNode(), TClassTable::~TClassTable(), TClassTree::~TClassTree(), TClonesArray::~TClonesArray(), TDataSetIter::~TDataSetIter(), TetrisPiece::~TetrisPiece(), TEveCalo2D::~TEveCalo2D(), TEveElement::~TEveElement(), TEveProjectionManager::~TEveProjectionManager(), TFoam::~TFoam(), TGDMLParse::~TGDMLParse(), TGeoCacheState::~TGeoCacheState(), TGeoNodeCache::~TGeoNodeCache(), TGFontTypeComboBox::~TGFontTypeComboBox(), TGHtml::~TGHtml(), TGHtmlMarkupElement::~TGHtmlMarkupElement(), TGListView::~TGListView(), TGLManipSet::~TGLManipSet(), TGLSceneBase::~TGLSceneBase(), TGLVEntry::~TGLVEntry(), TGLViewerBase::~TGLViewerBase(), TGStatusBar::~TGStatusBar(), TGTable::~TGTable(), TGuiBldDragManagerPimpl::~TGuiBldDragManagerPimpl(), TGWin32GLManager::TGWin32GLImpl::~TGWin32GLImpl(), TSelectorDraw::~TSelectorDraw(), TSpectrum2Painter::~TSpectrum2Painter(), TTableDescriptor::~TTableDescriptor(), TX11GLManager::TX11GLImpl::~TX11GLImpl(), TMVA::VariablePCATransform::~VariablePCATransform(), XrdClientConnectionMgr::~XrdClientConnectionMgr(), XrdClientPhyConnection::~XrdClientPhyConnection(), XrdClientUrlSet::~XrdClientUrlSet(), XrdClientVector< XrdClientPhyConnection * >::~XrdClientVector(), XrdCnsXref::~XrdCnsXref(), XrdFrmFileset::~XrdFrmFileset(), XrdMonCtrArchiver::~XrdMonCtrArchiver(), XrdMonDecSink::~XrdMonDecSink(), XrdMonSndDummyXrootd::~XrdMonSndDummyXrootd(), XrdOucMsubs::~XrdOucMsubs(), XrdPosixXrootd::~XrdPosixXrootd(), XrdProofdProofServ::~XrdProofdProofServ(), XrdXrootdFileTable::~XrdXrootdFileTable(), XrdXrootdJob2Do::~XrdXrootdJob2Do(), XSElement::~XSElement(), and XSPeriodicTable::~XSPeriodicTable().
Definition at line 1528 of file png.h.
Referenced by ASImage2png_int(), png2ASImage_int(), png_create_info_struct(), png_destroy_info_struct(), png_destroy_read_struct(), png_destroy_write_struct(), and png_info_init_3().
typedef int |
Definition at line 1079 of file png.h.
Referenced by _bdf_atos(), add_component(), XrdMonSndCoder::add_int08_t(), add_storage_slots(), TStackTable::AddInfo(), TMemStatManager::AddPointer(), TMemHashTable::AddPointer(), adjust_asimage_hsv(), TGaxis::AdjustBinSize(), ROOT::Minuit2::StackAllocator::AlignedSize(), RooNonCentralChiSquare::analyticalIntegral(), TFormula::Analyze(), antialias_glyph(), TMVA::MethodPDERS::ApplyKernelFunction(), ARGB32_manhattan_distance(), asim_ellips2(), asimage2alpha_ximage(), asimage2drawable_gl(), ASImage2jpeg(), ASImage2png_int(), asimage2ximage_ext(), TTable::AsString(), TSpectrum2::Background(), TSpectrum3::Background(), TSpectrum::Background(), XrdProofdNetMgr::BalanceNodesOrder(), BDF_Glyph_Load(), blur_asimage_gauss(), XrdProofdClient::Broadcast(), XrdProofdProofServ::Broadcast(), BroadcastPriority(), build_xpm_charmap(), build_xpm_colormap(), build_ycc_rgb_table(), ProjectionTester::buildHistograms(), calc_gauss_int(), calculate_green_diff(), card8_card32_cpy(), ROOT::Math::VavilovFast::Cdf(), ROOT::Math::VavilovAccurate::Cdf(), ROOT::Math::VavilovAccurate::Cdf_c(), cfstati_(), XrdProofdClientMgr::CheckAdminPath(), XrdClientConn::CheckErrorStatus(), XrdClientConn::CheckHostDomain(), XrdClientConn::CheckPort(), XrdSecProtocolpwd::CheckTimeStamp(), XrdProofdManager::CheckUser(), checkXproofdAt(), ClassImp(), XrdProofdProofServMgr::CleanupProofServ(), TAuthenticate::ClearAuth(), RooNonCPEigenDecay::coefAnalyticalIntegral(), RooNonCPEigenDecay::coefficient(), compare(), compile_single_pattern(), compress_first_pass(), XrdProofdManager::Config(), XrdProofdAdmin::CpFile(), cplus_demangle(), cplus_demangle_opname(), cplus_mangle_opname(), XrdProofdProofServMgr::Create(), create_asim_strip(), RooStats::LikelihoodInterval::CreateMinimizer(), TGWin32::CreatePixmapFromData(), TProofLite::CreateSandbox(), RooStats::FeldmanCousins::CreateTestStatSampler(), ctx_draw_line_solid_aa(), cv_delfini(), ROOT::Math::GenVector_detail::BitReproducible::D2x(), TMVA::MethodCFMlpANN::DataInterface(), debugClose(), debugTracePacket(), decode_image_scanline_beveled(), decode_xcf_tile_rle(), TAuthenticate::DecodeRSAPublic(), decompress_data(), decompress_smooth_data(), demangle_function_name(), PyROOT::TMethodHolder< T, M >::Destroy_(), destroy_glyph_range(), ROOT::Math::Determinant< n, idim >::Dfact(), DGifGetWord(), dib_data_to_scanline(), diff_scanlines(), Display(), TGTextLayout::DistanceToText(), TGraphAsymmErrors::Divide(), XrdXrootdProtocol::do_Getfile(), XrdXrootdProtocol::do_Locate(), XrdXrootdProtocol::do_Login(), XrdXrootdProtocol::do_Open(), XrdXrootdProtocol::do_Putfile(), XrdCmsNode::do_Space(), XrdProofdManager::DoDirectiveAllowedGroups(), XrdProofdManager::DoDirectiveAllowedUsers(), ROOT::Math::GenAlgoOptUtil::DoFindDefault(), ROOT::Math::AdaptiveIntegratorMultiDim::DoIntegral(), XrdClientConn::DoLogin(), TGVSlider::DoRedraw(), TGDoubleVSlider::DoRedraw(), TGDoubleHSlider::DoRedraw(), TGHSlider::DoRedraw(), Drand(), draw_transp_bevel_line(), TGTreeLBEntry::DrawCopy(), TGuiBldHintsButton::DrawExpandX(), TGuiBldHintsButton::DrawExpandY(), TGWin32::DrawImage(), TGX11TTF::DrawImage(), TGQt::DrawText(), dt_RunDrawTest(), EightBitSetColors(), em_undo(), emit_bits(), emit_bits_e(), emit_bits_s(), TSpectrumTransform::Enhance(), enlarge_component(), TProofServ::ErrorHandler(), EscInit(), RooNonCentralChiSquare::evaluate(), XrdProofdAdmin::Exec(), XrdProofdAdmin::ExecCmd(), TFitterMinuit::ExecuteCommand(), TBackCompFitter::ExecuteCommand(), XrdSecProtocolkrb5::exp_krbTkn(), expand_right_edge(), TXMLInputStream::ExpandStream(), XrdCryptosslRSA::ExportPrivate(), XrdCryptosslRSA::ExportPublic(), XrdProofdClient::ExportSessions(), extend_inputline(), fill_asimage(), TMVA::RuleFitAPI::FillIntParmsDef(), RooFitResult::fillLegacyCorrMatrix(), TSpectrumTransform::FilterZonal(), XrdCryptosslCipher::Finalize(), find_useable_visual(), TAxis::FindBin(), TAxis::FindFixBin(), TStackTable::FindInfo(), fix_xcf_image_line(), flip_asimage(), TMemHashTable::FreePointer(), QSymbolCodec::fromUnicode(), G__G__MathCore_122_0_2(), G__G__MathCore_122_0_3(), G__G__MathCore_127_0_2(), G__G__MathCore_127_0_3(), G__G__MathFit_101_0_9(), G__G__Minuit2_308_0_3(), G__G__Minuit2_309_0_4(), G__G__Minuit2_314_0_10(), G__G__Minuit2_314_0_5(), G__G__Minuit2_314_0_7(), G__G__Minuit2_314_0_9(), G__G__Minuit2_319_0_3(), G__G__Physics_147_0_7(), G__G__Physics_148_0_8(), G__G__Physics_151_0_42(), G__G__RooFit_615_0_1(), G__G__RooFit_617_0_2(), G__G__RooFit_618_0_2(), G__G__RooFit_623_0_1(), G__G__RooFit_625_0_2(), G__G__RooFit_626_0_2(), G__G__RooFit_627_0_1(), G__G__RooFit_629_0_2(), G__G__RooFit_630_0_2(), G__G__RooFit_631_0_1(), G__G__RooFit_633_0_2(), G__G__RooFit_634_0_2(), G__G__RooFit_635_0_1(), G__G__RooFit_637_0_2(), G__G__RooFit_638_0_2(), G__G__RooFit_647_0_1(), G__G__RooFit_649_0_2(), G__G__RooFit_650_0_2(), G__G__RooFit_651_0_1(), G__G__RooFit_653_0_2(), G__G__RooFit_654_0_2(), G__G__RooFit_655_0_1(), G__G__RooFit_657_0_2(), G__G__RooFit_658_0_2(), G__G__RooFit_659_0_1(), G__G__RooFit_661_0_2(), G__G__RooFit_662_0_2(), G__G__RooFit_667_0_1(), G__G__RooFit_669_0_2(), G__G__RooFit_670_0_2(), G__G__Smatrix32_301_0_1(), G__G__Smatrix32_301_0_2(), G__G__Smatrix32_303_0_20(), G__G__Smatrix32_303_0_21(), G__G__Smatrix32_304_0_3(), G__G__Smatrix32_304_0_33(), G__G__Smatrix32_304_0_36(), G__G__Smatrix32_309_0_3(), G__G__Smatrix32_309_0_33(), G__G__Smatrix32_309_0_36(), G__G__Smatrix32_311_0_1(), G__G__Smatrix32_311_0_2(), G__G__Smatrix32_313_0_20(), G__G__Smatrix32_313_0_21(), G__G__Smatrix32_319_0_3(), G__G__Smatrix32_319_0_33(), G__G__Smatrix32_319_0_36(), G__G__Smatrix32_321_0_1(), G__G__Smatrix32_321_0_2(), G__G__Smatrix32_323_0_20(), G__G__Smatrix32_323_0_21(), G__G__Smatrix32_329_0_3(), G__G__Smatrix32_329_0_33(), G__G__Smatrix32_329_0_36(), G__G__Smatrix32_331_0_1(), G__G__Smatrix32_331_0_2(), G__G__Smatrix32_333_0_20(), G__G__Smatrix32_333_0_21(), G__G__Smatrix32_339_0_2(), G__G__Smatrix32_339_0_3(), G__G__Smatrix32_341_0_2(), G__G__Smatrix32_341_0_3(), G__G__Smatrix32_343_0_2(), G__G__Smatrix32_343_0_3(), G__G__Smatrix32_345_0_2(), G__G__Smatrix32_345_0_3(), G__G__Smatrix32_347_0_20(), G__G__Smatrix32_347_0_21(), G__G__Smatrix32_351_0_20(), G__G__Smatrix32_351_0_21(), G__G__Smatrix32_355_0_20(), G__G__Smatrix32_355_0_21(), G__G__Smatrix32_359_0_20(), G__G__Smatrix32_359_0_21(), G__G__Smatrix_117_0_1(), G__G__Smatrix_117_0_2(), G__G__Smatrix_119_0_20(), G__G__Smatrix_119_0_21(), G__G__Smatrix_120_0_3(), G__G__Smatrix_120_0_33(), G__G__Smatrix_120_0_36(), G__G__Smatrix_125_0_3(), G__G__Smatrix_125_0_33(), G__G__Smatrix_125_0_36(), G__G__Smatrix_127_0_1(), G__G__Smatrix_127_0_2(), G__G__Smatrix_129_0_20(), G__G__Smatrix_129_0_21(), G__G__Smatrix_130_0_3(), G__G__Smatrix_130_0_33(), G__G__Smatrix_130_0_36(), G__G__Smatrix_135_0_1(), G__G__Smatrix_135_0_2(), G__G__Smatrix_137_0_20(), G__G__Smatrix_137_0_21(), G__G__Smatrix_143_0_3(), G__G__Smatrix_143_0_33(), G__G__Smatrix_143_0_36(), G__G__Smatrix_145_0_1(), G__G__Smatrix_145_0_2(), G__G__Smatrix_147_0_20(), G__G__Smatrix_147_0_21(), G__G__Smatrix_153_0_3(), G__G__Smatrix_153_0_33(), G__G__Smatrix_153_0_36(), G__G__Smatrix_155_0_1(), G__G__Smatrix_155_0_2(), G__G__Smatrix_157_0_20(), G__G__Smatrix_157_0_21(), G__G__Smatrix_163_0_1(), G__G__Smatrix_163_0_2(), G__G__Smatrix_165_0_20(), G__G__Smatrix_165_0_21(), G__G__Smatrix_171_0_3(), G__G__Smatrix_171_0_33(), G__G__Smatrix_171_0_36(), G__G__Smatrix_173_0_2(), G__G__Smatrix_173_0_3(), G__G__Smatrix_175_0_20(), G__G__Smatrix_175_0_21(), G__G__Smatrix_179_0_2(), G__G__Smatrix_179_0_3(), G__G__Smatrix_181_0_20(), G__G__Smatrix_181_0_21(), G__G__Smatrix_185_0_2(), G__G__Smatrix_185_0_3(), G__G__Smatrix_187_0_20(), G__G__Smatrix_187_0_21(), G__G__Smatrix_191_0_2(), G__G__Smatrix_191_0_3(), G__G__Smatrix_193_0_20(), G__G__Smatrix_193_0_21(), G__G__Smatrix_197_0_2(), G__G__Smatrix_197_0_3(), G__G__Smatrix_199_0_20(), G__G__Smatrix_199_0_21(), G__G__Smatrix_203_0_2(), G__G__Smatrix_203_0_3(), G__G__Smatrix_205_0_20(), G__G__Smatrix_205_0_21(), G__G__Smatrix_209_0_1(), G__G__Smatrix_209_0_2(), G__G__Smatrix_211_0_20(), G__G__Smatrix_211_0_21(), G__G__Smatrix_212_0_3(), G__G__Smatrix_212_0_33(), G__G__Smatrix_212_0_36(), G__G__Smatrix_217_0_3(), G__G__Smatrix_217_0_33(), G__G__Smatrix_217_0_36(), G__G__Smatrix_219_0_1(), G__G__Smatrix_219_0_2(), G__G__Smatrix_221_0_20(), G__G__Smatrix_221_0_21(), G__G__Smatrix_222_0_3(), G__G__Smatrix_222_0_33(), G__G__Smatrix_222_0_36(), G__G__Smatrix_227_0_1(), G__G__Smatrix_227_0_2(), G__G__Smatrix_229_0_20(), G__G__Smatrix_229_0_21(), G__G__Smatrix_235_0_3(), G__G__Smatrix_235_0_33(), G__G__Smatrix_235_0_36(), G__G__Smatrix_237_0_1(), G__G__Smatrix_237_0_2(), G__G__Smatrix_239_0_20(), G__G__Smatrix_239_0_21(), G__G__Smatrix_245_0_3(), G__G__Smatrix_245_0_33(), G__G__Smatrix_245_0_36(), G__G__Smatrix_247_0_1(), G__G__Smatrix_247_0_2(), G__G__Smatrix_249_0_20(), G__G__Smatrix_249_0_21(), G__G__Smatrix_255_0_1(), G__G__Smatrix_255_0_2(), G__G__Smatrix_257_0_20(), G__G__Smatrix_257_0_21(), G__G__Smatrix_263_0_3(), G__G__Smatrix_263_0_33(), G__G__Smatrix_263_0_36(), G__G__Smatrix_265_0_2(), G__G__Smatrix_265_0_3(), G__G__Smatrix_267_0_20(), G__G__Smatrix_267_0_21(), G__G__Smatrix_271_0_2(), G__G__Smatrix_271_0_3(), G__G__Smatrix_273_0_20(), G__G__Smatrix_273_0_21(), G__G__Smatrix_277_0_2(), G__G__Smatrix_277_0_3(), G__G__Smatrix_279_0_20(), G__G__Smatrix_279_0_21(), G__G__Smatrix_283_0_2(), G__G__Smatrix_283_0_3(), G__G__Smatrix_285_0_20(), G__G__Smatrix_285_0_21(), G__G__Smatrix_289_0_2(), G__G__Smatrix_289_0_3(), G__G__Smatrix_291_0_20(), G__G__Smatrix_291_0_21(), G__G__Smatrix_295_0_2(), G__G__Smatrix_295_0_3(), G__G__Smatrix_297_0_20(), G__G__Smatrix_297_0_21(), G__G__Smatrix_301_0_1(), G__G__Smatrix_301_0_2(), G__G__Smatrix_303_0_1(), G__G__Smatrix_303_0_2(), G__G__Smatrix_305_0_1(), G__G__Smatrix_305_0_2(), G__G__Smatrix_307_0_20(), G__G__Smatrix_307_0_21(), G__G__Smatrix_313_0_20(), G__G__Smatrix_313_0_21(), G__G__Smatrix_317_0_20(), G__G__Smatrix_317_0_21(), G__G__Smatrix_325_0_1(), G__G__Smatrix_325_0_2(), G__G__Smatrix_327_0_1(), G__G__Smatrix_327_0_2(), G__G__Smatrix_329_0_1(), G__G__Smatrix_329_0_2(), G__G__Smatrix_331_0_20(), G__G__Smatrix_331_0_21(), G__G__Smatrix_337_0_20(), G__G__Smatrix_337_0_21(), G__G__Smatrix_341_0_20(), G__G__Smatrix_341_0_21(), ROOT::Math::Cephes::gamma(), gdk_arg_context_parse(), gdk_event_translate(), gdk_font_load_internal(), XrdMonSndCoder::generateBigNumber(), get_dpy_drawable_size(), get_interesting_appn(), get_value(), XrdProofdClient::GetClientID(), XrdProofdProofServ::GetClientID(), TGWin32::GetColorBits(), GetCoords(), TStopwatch::GetCPUTime(), TWinNTSystem::GetCPUTime(), TGHtml::GetDarkShadowColor(), XrdProofdAdmin::GetFile(), TGFontPool::GetFontFromAttributes(), XrdProofdClient::GetFreeServObj(), XrdProofdAux::GetGroupInfo(), TGHtml::GetImageAlignment(), GetInput(), TGHtml::GetLightShadowColor(), XrdProofdProtocol::GetNewResponse(), XrdProofdAux::GetNumCPUs(), XrdProofSched::GetNumWorkers(), XrdNetDNS::getPort(), XrdCryptosslRSA::GetPrilen(), XrdProofdAux::GetProcesses(), XrdProtLoad::getProtocolPort(), XrdCryptosslRSA::GetPublen(), XrdProofdProofServMgr::GetTagDirs(), TGQt::GetTextExtent(), TProof::GetTreeHeader(), ROOT::Math::IntegratorOneDim::GetType(), ROOT::Math::IntegratorMultiDim::GetType(), XrdProofdAux::GetUserInfo(), gif2ASImage(), GIFquantize(), gl2psParseFeedbackBuffer(), gl2psPrintPDFShaderMask(), gl2psPrintSVGHeader(), gl2psSVGGetColorString(), glewGetErrorString(), glewGetString(), globus_l_gsi_credential_activate(), globus_l_gsi_credential_deactivate(), gray_convert_glyph(), gray_hline(), gray_raster_reset(), gray_render_line(), gray_render_scanline(), GRSTx509ChainLoadCheck(), ROOT::Math::GSLIntegrator::GSLIntegrator(), ROOT::Math::GSLMinimizer::GSLMinimizer(), gzputc(), gzseek(), h2v1_merged_upsample(), h2v2_merged_upsample(), TSpectrumTransform::Haar(), TGTripleHSlider::HandleButton(), TGTripleVSlider::HandleButton(), TGDoubleVSlider::HandleButton(), TGDoubleHSlider::HandleButton(), HaveExportedObjects(), TGWin32::ImgPickPalette(), TGX11::ImgPickPalette(), XrdProofPhyConn::Init(), TXMLOutputStream::Init(), XrdSecProtocolgsi::Init(), init_rnd(), InitDisplay(), TMinuitMinimizer::InitTMinuit(), InputType(), TAutoInspector::Inspect(), integral_num(), interpolate_channel_h_105x501(), interpolate_channel_h_grad3(), XrdOucReqID::isMine(), IsTemplatedSTLClass(), ROOT::ItoA(), jinit_arith_decoder(), jinit_huff_decoder(), jpeg_huff_decode(), jpeg_idct_10x10(), jpeg_idct_10x5(), jpeg_idct_11x11(), jpeg_idct_12x12(), jpeg_idct_12x6(), jpeg_idct_13x13(), jpeg_idct_14x14(), jpeg_idct_14x7(), jpeg_idct_15x15(), jpeg_idct_16x16(), jpeg_idct_16x8(), jpeg_idct_1x1(), jpeg_idct_1x2(), jpeg_idct_2x1(), jpeg_idct_2x2(), jpeg_idct_2x4(), jpeg_idct_3x3(), jpeg_idct_3x6(), jpeg_idct_4x2(), jpeg_idct_4x4(), jpeg_idct_4x8(), jpeg_idct_5x10(), jpeg_idct_5x5(), jpeg_idct_6x12(), jpeg_idct_6x3(), jpeg_idct_6x6(), jpeg_idct_7x14(), jpeg_idct_7x7(), jpeg_idct_8x16(), jpeg_idct_8x4(), jpeg_idct_9x9(), jpeg_idct_float(), jpeg_idct_ifast(), jpeg_idct_islow(), jpeg_save_markers(), jpeg_set_marker_processor(), key__decode_char(), key__decode_str(), ROOT::Math::landau_quantile(), ROOT::Math::Cephes::lgam(), load_glyph_freetype(), NdbMTReactionXS::LoadENDF(), XrdMonDecSink::loadUniqueIdsAndSeq(), logfont_to_xlfd(), XrdProofdClientMgr::Login(), longest_match(), longest_match_fast(), main(), make_odither_array(), make_reverse_colormap(), TMVA::GeneticPopulation::MakeChildren(), TGFontPool::MakeFont(), TFile::Map(), match(), PyROOT::MethodProxy::MethodInfo_t::MethodInfo_t(), ROOT::Minuit2::FumiliMinimizer::Minimize(), ROOT::Minuit2::VariableMetricBuilder::Minimum(), ROOT::Minuit2::FumiliBuilder::Minimum(), ROOT::Minuit2::Minuit2Minimizer::Minuit2Minimizer(), mirror_asimage(), XrdFrmAdmin::mkFile(), ROOT::Minuit2::mnbins(), ROOT::Minuit2::mnplot(), TMVA::GeneticPopulation::Mutate(), my_strtok(), names_add(), TGHtml::NameToType(), ROOT::NetRecv(), ROOT::NetSend(), XrdSecProtocolssl::NewSession(), NextPiecePad::NextPiecePad(), TMath::Nint(), num_elem(), OneBitSetColors(), XrdOssFile::Open(), TGX11::OpenDisplay(), TGWin32::OpenDisplay(), ROOT::Minuit2::Numerical2PGradientCalculator::operator()(), operator<<(), TMVA::CostComplexityPruneTool::Optimize(), TFormula::Optimize(), XrdOucPup::Pack(), TASImage::Paint(), TGaxis::PaintAxis(), ParseArguments(), XrdOssPath::pathType(), pcf_get_properties(), pcre_exec(), pcre_info(), ROOT::Math::VavilovAccurate::Pdf(), XrdLink::Peek(), per_scan_setup(), pingXproofdAt(), piRandom(), pirndm(), png_do_read_interlace(), png_do_write_interlace(), png_free_data(), png_get_iCCP(), png_get_oFFs(), png_get_pCAL(), png_get_pHYs(), png_get_sRGB(), png_handle_pCAL(), png_handle_PLTE(), png_push_have_row(), png_read_png(), png_set_gAMA(), png_write_find_filter(), png_write_info(), pre_process_context(), pre_process_data(), print_storage_slot(), TStorage::PrintStatistics(), ProofEvent::Process(), XrdMonDecPreProcess::processOnePacket(), XrdCryptosslCipher::Public(), XrdSysLogger::Put(), XrdSysLogger::putEmsg(), XrdProofdAdmin::PutFile(), XrdFrmAdmin::Query(), XrdSecProtocolgsi::QueryProxy(), R__Inflate_block(), R__longest_match(), read(), read_xcf_image(), XrdProofdNetMgr::ReadBufferLocal(), XrdProofSessionInfo::ReadFromFile(), readSMatrix(), readSMatrixSym(), readTMatrix(), readTMatrixSym(), readTrackD(), readTrackD32(), TMVA::MethodSVM::ReadWeightsFromXML(), XrdLink::Recv(), XrdNetLink::Recv(), regerror(), THashTable::Rehash(), XrdMonSndCoder::reinitXrdMonSndPacket(), XrdFrmAdmin::RelocCP(), TGWin32::RenderString(), TGX11TTF::RenderString(), TGWin32::RequestLocator(), TGX11::RequestLocator(), rl_complete_internal(), rl_read_key(), rlediff_decompress(), rlediff_decompress_bitmap(), RootdCheckTab(), RootdCloseTab(), RootdGetFile(), RootdPutFile(), rotate(), ROOT::RpdCheckAuthAllow(), ROOT::RpdCheckAuthTab(), ROOT::RpdCheckHost(), ROOT::RpdCleanupAuthTab(), ROOT::RpdGetRSAKeys(), ROOT::RpdPass(), ROOT::RpdProtocol(), ROOT::RpdRecvClientRSAKey(), ROOT::RpdUser(), save_marker(), TMinuitMinimizer::Scan(), TSpectrum3::SearchFast(), TSpectrum::SearchHighRes(), TSpectrum3::SearchHighRes(), TSpectrum2::SearchHighRes(), XrdSecProtocolssl::secClient(), XrdSecProtocolssl::secServer(), select_ncolors(), XrdFrmMonitor::Send(), XrdXrootdMonitor::Send(), XrdProofdProofServ::SendDataN(), XrdSecProtocolgsi::ServerDoSigpxy(), ROOT::Math::VavilovAccurate::Set(), XrdXrootdResponse::Set(), set_bottom_pointers(), set_decoder_bevel_geom(), set_start_bits(), TFTP::SetBlockSize(), ROOT::Math::IntegratorOneDimOptions::SetDefaultIntegrator(), ROOT::Math::IntegratorMultiDimOptions::SetDefaultIntegrator(), ROOT::Math::IntegratorMultiDimOptions::SetIntegrator(), ROOT::Math::IntegratorOneDimOptions::SetIntegrator(), XrdAccGroups::SetLifetime(), TGWin32::SetOpacity(), TGX11::SetOpacity(), TTabCom::SetPattern(), TGTripleVSlider::SetPointerPos(), TGTripleHSlider::SetPointerPos(), TQtPadFont::SetTextMagnify(), XrdProofdResponse::SetTrsid(), ROOT::Math::GSLMCIntegrator::SetTypeName(), TProofServLite::SetupOnFork(), XrdCmsConfig::setupXmi(), XrdProofdProofServMgr::SetUserEnvironment(), XrdROOT::SetValid(), TXMLInputStream::ShiftStream(), slice_asimage2(), slice_scanline(), sqlfilldb(), TAuthenticate::SshAuth(), TMemStatManager::STAddInfo(), start_image_decoding(), TMemStatManager::STFindInfo(), ROOT::streamer_RooCFunction2ReflEdoublecOintcOdoublegR(), ROOT::streamer_RooCFunction2ReflEdoublecOintcOintgR(), ROOT::streamer_RooCFunction2ReflEdoublecOunsignedsPintcOdoublegR(), ROOT::streamer_RooCFunction3ReflEdoublecOdoublecOintcOintgR(), ROOT::streamer_RooCFunction3ReflEdoublecOunsignedsPintcOdoublecOdoublegR(), ROOT::streamer_RooCFunction3ReflEdoublecOunsignedsPintcOdoublecOunsignedsPintgR(), ROOT::streamer_RooCFunction3ReflEdoublecOunsignedsPintcOunsignedsPintcOdoublegR(), stressMathCore(), stressMathMore(), stressVector(), TMath::StruveL0(), TMath::StruveL1(), sub_scanlines(), subimage2ximage(), XrdCryptosslgsiX509Chain::SubjectOK(), TClonesArraySetItem(), XrdProofdClient::TerminateSessions(), VectorTest< Dim >::testRead(), TetrisBoard::TetrisBoard(), tga2ASImage(), tgaxis3(), TImagePalette::TImagePalette(), timeonaxis(), TLinearMinimizer::TLinearMinimizer(), ClassImp::TManageMagic::TManageMagic(), TMinuitMinimizer::TMinuitMinimizer(), toggle_image_output_direction(), ROOT::Minuit2::StackAllocator::ToInt(), XrdProofdClient::Touch(), TSpectrumTransform::Transform(), translate_tag_size(), TrigoFletcherFunction::TrigoFletcherFunction(), TMVA::GeneticPopulation::TrimPopulation(), TrueColorSetColors(), tt_sbit_decoder_alloc_bitmap(), TXMLInputStream::TXMLInputStream(), TTreePlayer::UnbinnedFit(), TUnixSystem::UnixIgnoreSignal(), ValidatePixmap(), TGenCollectionProxy::Value::Value(), XrdCryptosslgsiX509Chain::Verify(), W32ChangeProperty(), WaitLogo(), TASImage::WriteImage(), TThread::XAction(), XrdXrootdProtocol::xasync(), XrdAccConfig::xaud(), XrdFrmAdmin::xeqArgs(), XrdConfig::xnet(), XrdCryptolocalKDFun(), XrdCryptosslASN1toUTC(), XrdCryptosslCipher::XrdCryptosslCipher(), XrdCryptosslKDFun(), XrdCryptosslX509Crl::XrdCryptosslX509Crl(), XrdFfsDent_dentcache_free(), XrdFfsQueue_count_tasks(), XrdFfsWcache_init(), XrdPosixXrootd::XrdPosixXrootd(), XrdProofdProofServCron(), XrdSecProtocolkrb5Init(), XrdSecProtocolsslInit(), XrdSslgsiX509CreateProxy(), XrdSslgsiX509SignProxyReq(), XRotCreateTextItem(), XRotDrawHorizontalString(), XRotMagnifyImage(), XRotPaintAlignedString(), XRotTextExtents(), ycc_rgb_convert(), ycck_cmyk_convert(), and TAxis::ZoomOut().
png_infop png_uint_32 png_uint_32 int int int interlace_method |
png_infop png_uint_32 png_uint_32 int int int* interlace_method |
int keep |
Definition at line 2440 of file png.h.
Referenced by TProfile3D::BufferEmpty(), TProfile2D::BufferEmpty(), TProfile::BufferEmpty(), TH3::BufferEmpty(), TH2::BufferEmpty(), TH1::BufferEmpty(), TStreamerInfo::Compile(), TSystem::CompileMacro(), TTreePlayer::CopyTree(), XrdSutRndm::GetBuffer(), XrdProofdSandbox::GetSessionDirs(), png_write_info_before_PLTE(), TTree::Print(), TClassEdit::ResolveTypedef(), and XrdXrootdProtocol::xprep().
png_bytep png_size_t length |
png_bytep png_uint_32 length |
png_bytep png_bytep png_size_t length |
Definition at line 1498 of file png.h.
Referenced by TCurlyArc::Build(), TGeoNavigator::cd(), TGWin32::ChangeProperties(), TLatex::CheckLatexSyntax(), TGeoNavigator::CheckPath(), TAxis::ChooseTimeFormat(), TWinNTSystem::CollectMembers(), compile_regex(), complete_callout(), XrdClientConnectionMgr::Connect(), pcrecpp::Scanner::ConsumeSkip(), TTreeSQL::CreateTable(), deflateSetDictionary(), XrdClientConn::DoLogin(), TGFont::DrawChars(), EGifPutComment(), emit_dac(), emit_dht(), find_fixedlength(), ft_stroke_border_arcto(), FT_Stroker_ConicTo(), ft_stroker_inside(), ft_stroker_outside(), G__G__Base2_53_0_39(), gdk_property_change(), gdk_selection_convert(), get_dac(), get_dht(), get_dqt(), get_dri(), get_interesting_appn(), get_sof(), get_sos(), TWinNTSystem::GetEffectiveGid(), TWinNTSystem::GetEffectiveUid(), TWinNTSystem::GetGid(), TWinNTSystem::GetGroupInfo(), TMVA::MethodBase::GetLine(), getlogin(), FTExtrdGlyph::GetNormal(), XrdClientConnectionMgr::GetPhyConnection(), TGWin32::GetProperty(), TWinNTSystem::GetUid(), TWinNTSystem::GetUserInfo(), TGTextLine::GetWord(), globus_l_gsi_cred_get_service(), globus_l_gsi_cred_subject_cmp(), GRSTasn1GetX509Name(), GRSTx509ChainVomsAdd(), GRSTx509ParseVomsExt(), GRSTx509VerifyVomsSig(), gxv_just_justClassTable_validate(), gxv_kern_subtable_validate(), gxv_mort_subtables_validate(), gxv_morx_subtables_validate(), XrdProofPhyConn::Init(), XrdProofConn::Init(), InspectDiff(), internal_dfa_exec(), jetcone(), main(), XrdMonSndDummyXrootd::newXrdMonSndTraceEntry(), XrdTokenAuthzOfsFile::open(), TArrow::PaintArrow(), TLatex::PaintLatex(), TPolyLineShape::PaintNode(), pcre_compile2(), pcregrep(), pfr_phy_font_load(), png_read_end(), png_read_info(), png_set_pCAL(), R__ct_init(), TMatrixTSparse< Element >::Randomize(), TMatrixTSparse< Element >::RandomizePD(), TBranchElement::ReadLeavesMakeClass(), ReadPasswd(), ReadRef(), regerror(), XrdTokenAuthzOfs::rem(), save_marker(), skip_variable(), sort(), XrdTokenAuthzOfs::stat(), stressShapes(), tt_face_get_kerning(), and tt_face_load_kern().
Definition at line 2444 of file png.h.
Referenced by gdk_arg_context_parse(), ROOT::TBranchProxy::GetClaStart(), ROOT::TBranchProxy::GetStlStart(), MyEvent::Init(), and TThread::XAction().
png_infop int png_uint_32 mask |
png_colorp int int maximum_colors |
Definition at line 1487 of file png.h.
Referenced by png_destroy_read_struct(), and png_destroy_write_struct().
int method |
Definition at line 1804 of file png.h.
Referenced by TContextMenu::Action(), TMVA::MethodCommittee::AdaBoost(), TGuiBldDragManager::AddClassMenuMethods(), TDocParser::AddClassMethodsRecursively(), TGuiBldDragManager::AddDialogMethods(), TMVA::MethodCategory::AddMethod(), PyROOT::Utility::AddToClass(), TMVA::MethodCompositeBase::AddWeightsXMLTo(), TMVA::MethodCategory::AddWeightsXMLTo(), TFormula::AnalyzeFunction(), TMVA::ApplicationCreateCombinedTree(), TMVA::Factory::BookMethod(), TMVA::Reader::BookMVA(), TMVA::MethodCommittee::Boost(), PyROOT::BuildRootClassDict(), TMVA::MethodBoost::CalcMethodWeight(), TMVA::MethodBoost::CalcMVAValues(), check_header(), ClassImp(), ClassImpQ(), TContextMenu::CreateDialogTitle(), TQCanvasMenu::CreateDialogTitle(), RooNumIntFactory::createIntegrator(), TGuiBldDragManager::CreateListOfDialogs(), TRootContextMenu::CreateMenu(), RooNumGenFactory::createSampler(), PyROOT::TMemberAdapter::DeclaringScope(), TRootContextMenu::Dialog(), TQCanvasMenu::Dialog(), TGuiBldDragManager::DoClassMenu(), TMVA::MethodCuts::DynamicCast(), TODBCServer::EndTransaction(), TFormula::EvalParFast(), TFormula::EvalParOld(), TMVA::Reader::EvaluateMulticlass(), TMVA::Reader::EvaluateMVA(), TMVA::Reader::EvaluateRegression(), TQCanvasMenu::Execute(), TContextMenu::Execute(), TObject::Execute(), TObjectExecute::Execute(), TGroupButton::ExecuteAction(), TMVA::MethodBoost::GetBoostROCIntegral(), TMethodBrowsable::GetBrowsableMethodsForClass(), TMethodBrowsable::GetBrowsables(), TCollectionMethodBrowsable::GetBrowsables(), TClass::GetMenuItems(), Cint::G__CallFunc::GetMethodInfo(), TMVA::Types::GetMethodType(), TMVA::Reader::GetProba(), TMVA::Reader::GetRarity(), gnu_special(), TUnuranSampler::Init(), Cint::G__CallFunc::IsValid(), TClassDocOutput::ListFunctions(), TMVA::Factory::MakeClass(), TClass::MakeCustomMenuList(), MatchOverloadSignatures(), PyROOT::MethodProxy_New(), TRootContextMenu::OnlineHelp(), Cint::G__CallFunc::operator=(), TTreeFormula::ParseWithLeaf(), TQCanvasMenu::Popup(), TMVA::Factory::PrintHelpMessage(), PyROOT::Pythonize(), R__memcompress(), R__zip(), TZIPFile::ReadDirectory(), TMVA::MethodCommittee::ReadWeightsFromStream(), TMVA::MethodCategory::ReadWeightsFromXML(), RooAdaptiveGaussKronrodIntegrator1D::registerIntegrator(), ROOT::RpdGetAuthMethod(), run_unuran(), TClassTree::ScanClasses(), TPluginHandler::SetupCallEnv(), TMVA::MethodBoost::SingleBoost(), start_pass(), start_pass_fdctmgr(), TDocParser::TDocParser(), testDistr1D(), testDistrMultiDim(), TFormLeafInfoMethod::TFormLeafInfoMethod(), TGuiBldMenuDialog::TGuiBldMenuDialog(), TQSlot::TQSlot(), TMVA::MethodBoost::Train(), TMVA::MethodCommittee::Train(), unuranMulti2D(), unuranMultiDim(), and TDocParser::WriteMethod().
Definition at line 2339 of file png.h.
Referenced by _bdf_parse_properties(), _bdf_set_default_spacing(), TClassTable::Add(), TTreeCache::AddBranch(), RooStats::HLFactory::AddChannel(), TGuiBldDragManager::AddClassMenuMethods(), RooNumGenConfig::addConfigSection(), RooNumIntConfig::addConfigSection(), TGHtml::AddFormInfo(), TMVA::MethodBase::AddInfoItem(), TDocLatexDirective::AddLine(), TDocMacroDirective::AddLine(), TRootGuiBuilder::AddMacro(), TGeoVolume::AddNode(), TGeoVolume::AddNodeOffset(), TGeoVolume::AddNodeOverlap(), TDocMacroDirective::AddParameter(), TDocLatexDirective::AddParameter(), TProcessID::AddProcessID(), TTVSession::AddRecord(), align(), AppendLink(), TGDMLParse::Arb8(), asfont_destroy(), asimage_replace(), TMVA::Configurable::AssignOpt(), TGDMLParse::AssProcess(), TDataType::AsString(), TFile::AsyncOpen(), XrdSecProtocolgsi::Authenticate(), billtw(), billw(), RooFit::bindFunction(), RooFit::bindPdf(), RooDataSet::binnedClone(), TGDMLParse::BooSolid(), TGDMLParse::Box(), TSystemDirectory::Browse(), TRootIconList::Browse(), TBranch::Browse(), TLeaf::Browse(), TVirtualBranchBrowsable::Browse(), TBranchElement::Browse(), TRemoteObject::Browse(), TDirectoryFile::Browse(), Build_Timing_Tree(), build_xpm_colormap(), RooSimWSTool::BuildConfig::BuildConfig(), TMultiLayerPerceptron::BuildFirstLayer(), TMultiLayerPerceptron::BuildLastLayer(), TMultiLayerPerceptron::BuildOneHiddenLayer(), PyROOT::BuildRootClassBases(), TTableSorter::BuildSorter(), HtmlObjTable::BuildTable(), RooAbsCachedReal::cacheNameSuffix(), RooAbsCachedPdf::cacheNameSuffix(), RooMCStudy::calcPulls(), TMVA::MethodMLP::CalculateEstimator(), RooPlot::caller(), TGeoNavigator::cd(), cff_get_name_index(), cff_index_get_name(), cff_index_get_sid_string(), GTitleFrame::ChangeRightLogo(), TGuiBldNameFrame::ChangeSelected(), TBufferFile::CheckByteCount(), TAlienPackage::CheckDirectories(), TAuthenticate::CheckHost(), TGeoVolume::CheckOverlaps(), TGeoNavigator::CheckPath(), RooAbsReal::chi2FitDriver(), TMakeProject::ChopFileName(), ClassImp(), TGFileBrowser::Clicked(), RooStats::ModelConfig::Clone(), RooBinning::clone(), RooRangeBinning::clone(), RooLinTransBinning::clone(), RooUniformBinning::clone(), RooParamBinning::clone(), TTableDescriptor::ColumnByName(), Compare(), compare(), compare3D(), compare4D(), compare_xcolor_entries(), TSystem::CompileMacro(), TGDMLParse::Cone(), RooSimWSTool::SplitRule::configure(), XrdClientConnectionMgr::Connect(), TGDMLParse::ConProcess(), convert_cwn(), convert_rwn(), THbookFile::ConvertCWN(), THbookFile::ConvertRWN(), TSystemFile::Copy(), TProofServ::CopyFromCache(), TProofLite::CopyMacroToCache(), TTreeCloner::CopyProcessIds(), TProofServ::CopyToCache(), TStructViewer::CountMembers(), RooAbsReal::createChi2(), RooAbsPdf::createChi2(), TMVA::ResultsRegression::CreateDeviationHistograms(), TGSlider::CreateDisabledPicture(), TGPictureButton::CreateDisabledPicture(), TMVA::Factory::CreateEventAssignTrees(), TGFileContainer::CreateFileList(), RooFitResult::createHessePdf(), RooAbsRealLValue::createHistogram(), RooAbsReal::createIntObj(), TRootContextMenu::CreateMenu(), TMVA::ResultsMulticlass::CreateMulticlassHistos(), TProofResourcesStatic::CreateNodeInfo(), RooAbsReal::createPlotProjection(), RooAbsReal::createProfile(), RooAbsPdf::createProjection(), RooAbsPdf::createScanCdf(), RooAbsReal::createScanRI(), TGM::CreateSession(), TMVA::MethodANNBase::CreateWeightMonitoringHists(), cuserid(), TGDMLParse::CutTube(), TGeoDecayChannel::DecayName(), TMVA::Configurable::DeclareOptionRef(), RooFormula::DefinedVariable(), TTreeFormula::DefinedVariable(), TDirectory::Delete(), TDirectoryFile::Delete(), RooAbsReal::derivative(), RooStats::MCMCInterval::DetermineTailFractionInterval(), TMVA::ResultsRegression::DeviationAsAFunctionOf(), TRootContextMenu::Dialog(), TEveStraightLineSetGL::DirectDraw(), TQConnectionList::Disconnect(), TestFileList::DisplayFile(), TGRootIDE::DisplayFile(), TestFileList::DisplayObject(), TGRootIDE::DisplayObject(), TPad::Divide(), do_ls_files_server(), TGeoEltuEditor::DoApply(), TGeoConeEditor::DoApply(), TGeoTrapEditor::DoApply(), TGeoCtubEditor::DoApply(), TGeoPgonEditor::DoApply(), TGeoParaEditor::DoApply(), TGeoPconEditor::DoApply(), TGeoTubeEditor::DoApply(), TGeoHypeEditor::DoApply(), TGeoSphereEditor::DoApply(), TGeoConeSegEditor::DoApply(), TGeoMaterialEditor::DoApply(), TGeoTrd2Editor::DoApply(), TGeoBBoxEditor::DoApply(), TGeoTrd1Editor::DoApply(), TGeoGtraEditor::DoApply(), TGeoTorusEditor::DoApply(), TGeoTubeSegEditor::DoApply(), TGeoMixtureEditor::DoApply1(), TUnfoldSys::DoBackgroundSubtraction(), DoBinFit(), TGeoManagerEditor::DoCreateAssembly(), TGeoManagerEditor::DoCreateCombi(), TGeoManagerEditor::DoCreateMaterial(), TGeoManagerEditor::DoCreateMedium(), TGeoManagerEditor::DoCreateMixture(), TGeoManagerEditor::DoCreateRotation(), TGeoManagerEditor::DoCreateTranslation(), TGeoManagerEditor::DoCreateVolume(), TFitEditor::DoDataSet(), TGeoManagerEditor::DoExportGeometry(), TFitEditor::DoFit(), DoFit(), TH2::DoFitSlices(), XrdClientConn::DoLogin(), TGeoMediumEditor::DoMedName(), ROOT::Fit::Fitter::DoMinimization(), TGeoRotationEditor::DoName(), TGeoTranslationEditor::DoName(), TGeoCombiTransEditor::DoName(), TGeoNodeEditor::DoNodeName(), TProofProgressMemoryPlot::DoPlot(), TGeoTreeDialog::DoSelect(), TestSliders::DoSlider(), TGFileBrowser::DoubleClicked(), DoUnBinFit(), TGenerator::Draw(), RooStats::LikelihoodIntervalPlot::Draw(), draw_activation(), DrawCredits(), DrawMLPoutputMovie(), DrawNetworkMovie(), TProof::DrawSelect(), drr_as(), drr_const_missing(), TWinNTSystem::DynamicPathName(), el_get(), el_set(), XSReactionDlg::ElementEntryChanged(), TGDMLParse::EleProcess(), TGDMLParse::Ellipsoid(), TGDMLParse::ElTube(), PyROOT::Utility::ErrMsgCallback(), RooRealVar::errorVar(), TClass::EscapeChars(), TPython::Eval(), RooBinningCategory::evaluate(), ROOT::Fit::FitUtil::EvaluateLogL(), TMVA::exampleGA(), TApplicationServer::ExecLogon(), TRint::ExecLogon(), TBrowser::ExecPlugin(), TMVAGlob::ExistMethodName(), TMultiLayerPerceptron::ExpandStructure(), TSQLObjectData::ExtractBlobValues(), RooStats::HLFactory::fCreateCategory(), TDrawFeedback::Feedback(), TFitEditor::FillDataSetList(), RooFitResult::fillLegacyCorrMatrix(), TSPlot::FillSWeightsHists(), TSPlot::FillXvarHists(), TSPlot::FillYpdfHists(), TSPlot::FillYvarHists(), RooCmdConfig::filterCmdList(), TDataSetIter::Find(), TTree::FindBranch(), TEveElement::FindChild(), TEveElement::FindChildren(), TWinNTSystem::FindFile(), TFitEditor::FindFunction(), TGListTree::FindItem(), TRootIconBox::FindItem(), TGContainer::FindItem(), TDirectoryFile::FindKey(), TDirectoryFile::FindKeyAny(), TMVAGlob::FindMethod(), findName(), TDirectoryFile::FindObjectAny(), TCastorFile::FindServerAndPath(), HFit::Fit(), TH3::FitSlicesZ(), RooAbsPdf::fitTo(), FitUsingNewFitter(), FitUsingTFit(), FitUsingTTreeFit(), TLimit::Fluctuate(), RooAbsRealLValue::frame(), RooAbsCachedReal::FuncCacheElem::FuncCacheElem(), PyROOT::TMemberAdapter::FunctionParameterNameAt(), G__G__RooFit_611_0_3(), G__G__RooFit_615_0_3(), G__G__RooFit_619_0_3(), G__G__RooFit_623_0_3(), G__G__RooFit_627_0_3(), G__G__RooFit_631_0_3(), G__G__RooFit_635_0_3(), G__G__RooFit_639_0_3(), G__G__RooFit_643_0_3(), G__G__RooFit_647_0_3(), G__G__RooFit_651_0_3(), G__G__RooFit_655_0_3(), G__G__RooFit_659_0_3(), G__G__RooFit_663_0_3(), G__G__RooFit_667_0_3(), G__G__RooFit_671_0_3(), G__G__RooFitCore1_144_0_3(), gdk_arg_context_parse(), gdk_atom_name(), gdk_cursor_new(), gdk_key_compare_by_name(), gdk_keys_name_compare(), generate(), RooAbsGenContext::generate(), TMakeProject::GenerateClassPrefix(), TStreamerInfo::GenerateIncludes(), TDirectory::Get(), TDirectoryFile::Get(), TMVA::ResultsMulticlass::GetBestMultiClassCuts(), RooAbsRealLValue::getBins(), TEveParamList::GetBoolParameter(), TGeoNodeCache::GetBranchNames(), TClass::GetCheckSum(), TMVA::DataSetInfo::GetClassInfo(), TMVAGlob::GetClassNames(), TGHtml::GetColorByName(), RooAbsArg::getComponents(), TSQLFile::GetDataBaseName(), THtml::GetDeclImplFileName(), TSAM::GetDSetFiles(), TWinNTSystem::GetEffectiveGid(), TWinNTSystem::GetEffectiveUid(), TMVA::DataInputHandler::GetEntries(), TEveParamList::GetFloatParameter(), TGHtml::GetFont(), TGFontDialog::GetFontName(), TStreamerElement::GetFullName(), GetFunctionName(), TWinNTSystem::GetGid(), TWinNTSystem::GetGroupInfo(), TMakeProject::GetHeaderName(), RooStats::ProfileLikelihoodCalculator::GetHypoTest(), TQMimeTypes::GetIcon(), TMVAGlob::GetInputVariableNames(), RooStats::ProfileLikelihoodCalculator::GetInterval(), RooStats::MCMCCalculator::GetInterval(), TEveParamList::GetIntParameter(), TKDE::GetKDEApproximateBias(), TKDE::GetKDEFunction(), TFileIter::GetKeyName(), TTree::GetLeaf(), TLeaf::GetLeafCounter(), TMVAGlob::GetListOfMethods(), RooStats::ProfileInspector::GetListOfProfilePlots(), TProof::GetListOfSlaveInfos(), TGeoMCGeometry::GetMaterial(), TGeoTabManager::GetMaterialEditor(), RooAbsRealLValue::getMax(), TGeoMCGeometry::GetMedium(), TMVAGlob::GetMethodName(), TMVAGlob::GetMethodTitle(), RooAbsRealLValue::getMin(), TMCParticle::GetName(), TGeoDecayChannel::GetName(), TMVA::TransformationHandler::GetName(), TQCommand::GetName(), MyParticle::GetName(), TDocDirective::GetName(), TMVA::DataInputHandler::GetNTrees(), TDirectoryFile::GetObjectChecked(), TDirectory::GetObjectChecked(), TGFileBrowser::GetObjPicture(), TGContainer::GetObjPicture(), TMinuit::GetParameter(), RooProduct::getPartIntList(), RooProdPdf::getPartIntList(), TKDE::GetPDFLowerConfidenceInterval(), TKDE::GetPDFUpperConfidenceInterval(), XrdClientConnectionMgr::GetPhyConnection(), TGeoMaterial::GetPointerName(), TGeoVolume::GetPointerName(), TGeoMatrix::GetPointerName(), TGeoShape::GetPointerName(), TGeoMedium::GetPointerName(), RooAddPdf::getProjCache(), RooAddModel::getProjCache(), TMVA::RuleFitAPI::GetRFName(), GetRomanIndex(), TMySQLServer::GetTableInfo(), RooStats::HLFactory::GetTotBkgPdf(), RooStats::HLFactory::GetTotSigBkgPdf(), TDataType::GetType(), TWinNTSystem::GetUid(), TWinNTSystem::GetUserInfo(), TGeoPainter::GetVolumeInfo(), gl2psPrintTeXHeader(), ROOT::GlbsToolCheckContext(), globus_l_gfs_file_destroy_stat(), GlobusCheckSecContext(), GlobusGetSecContLifeTime(), GlobusNameFromCred(), glViewerLOD(), GRSTx509MakeProxyCert(), gxv_sfntName_validate(), gzdopen(), handle(), handle_asxml_tag_color(), TTVLVContainer::HandleButton(), TGuiBldDragManager::HandleCopy(), TGHtml::HandleHtmlInput(), TProof::HandleInputMessage(), TApplicationServer::HandleSocketInput(), TProofServ::HandleSocketInput(), TProofServ::HandleSubmerger(), TProofPlayerSlave::HandleTimer(), TProofPlayerRemote::HandleTimer(), TProofPlayerLite::HandleTimer(), RooAbsRealLValue::hasMax(), RooAbsRealLValue::hasMin(), histobrowser(), TTabCom::Hook(), TEcho::Hostname(), TGDMLParse::Hype(), XrdClientEnv::ImportInt(), XrdClientEnv::ImportStr(), TBranchElement::Init(), XrdProofConn::Init(), RooBinningCategory::initialize(), RooFFTConvPdf::inputBaseName(), RooIntegralMorph::inputBaseName(), TAlienPackage::InstallSinglePackage(), RooAbsReal::integralNameSuffix(), TClass::InterpretedShowMembers(), TGDMLParse::IsoProcess(), TLDAPEntry::IsReferral(), TDataSet::IsThisDir(), TWriteEnvParser::KeyValue(), TReadEnvParser::KeyValue(), list_scanline_merging(), TRootBrowserLite::ListTreeHighlight(), TEventIterTree::Load(), TApplication::LoadGraphicsLibs(), TGApplication::LoadGraphicsLibs(), XrdProofdManager::LoadScheduler(), TDocParser::LocateMethodInCurrentLine(), TDocParser::LocateMethods(), TDSetElement::Lookup(), LookupRootEntity(), TStreamerSTL::ls(), TQCommand::ls(), main(), PyROOT::MakeRootClassFromString(), MakeRootTemplateClass(), RooSimWSTool::makeSplitName(), TTreeViewer::MapBranch(), TTreeViewer::MapTree(), RooAbsReal::matchArgsByName(), TGDMLParse::MatProcess(), TMVA::MaximizeSignificance(), RooAbsData::meanVar(), RooAbsReal::moment(), TSystemFile::Move(), mstress_matrix_io(), multidimSampling(), MultivariateGaussianTest(), mvasMulticlass(), PyROOT::TReturnTypeAdapter::Name(), PyROOT::TMemberAdapter::Name(), PyROOT::TScopeAdapter::Name(), names_dump(), TDocOutput::NameSpace2FileName(), TQSlotPool::New(), TGTab::NewTab(), TSessionServerFrame::OnBtnDeleteClicked(), TNewQueryDlg::OnBtnSaveClicked(), TSessionFrame::OnDisablePackages(), TGRootIDE::OnDoubleClick(), TestFileList::OnDoubleClick(), TNewChainDlg::OnDoubleClick(), TSessionFrame::OnEnablePackages(), TSessionFrame::OnUploadPackages(), PyROOT::op_repr(), TFile::Open(), TGX11::OpenDisplay(), TMVA::RuleFitAPI::OpenRFile(), PyROOT::TTreeSetBranchAddress::operator()(), PyROOT::TTreeBranch::operator()(), TGDMLParse::Orb(), TGDMLParse::Para(), TGDMLParse::Paraboloid(), TEnvParser::Parse(), parse_blend_axis_types(), TGDMLParse::ParseGDML(), XrdProofGroupMgr::ParseInfoFrom(), TTreeDrawArgsParser::ParseName(), TDataSetManager::ParseUri(), TTreeDrawArgsParser::ParseVarExp(), TTreeFormula::ParseWithLeaf(), pcf_find_property(), pcf_get_properties(), pcf_read_TOC(), RooAbsCachedPdf::PdfCacheElem::PdfCacheElem(), TBufferXML::PerformPostProcessing(), RooAbsReal::plotOnWithErrorBand(), RooMCStudy::plotPull(), TGDMLParse::Polycone(), TGDMLParse::Polyhedra(), TGDMLParse::PosProcess(), TAlienPackage::PostInstall(), TStructViewer::Prepare(), TWinNTSystem::PrependPathName(), TUnixSystem::PrependPathName(), TPrimary::Print(), TXTRU::Print(), TTable::Print(), TGeoDecayChannel::Print(), print_unicode_subranges(), MySimAnFunc::PrintRoute(), TestVector< Vector >::PrintSummary(), TProof::Process(), TApplicationServer::ProcessLine(), TRootBrowserLite::ProcessMessage(), RooProdPdf::processProductTerm(), TGraph2D::Project(), TH3::Project3D(), TH3::Project3DProfile(), THnSparse::ProjectionAny(), TMVA::Tools::projNormTH1F(), ProofdExec(), PyROOT::pt_getattro(), TMVA::ResultsRegression::QuadraticDeviation(), XrdSecProtocolgsi::QueryGMAP(), R__FindBranchHelper(), R__GetUID(), read_header_file(), TSessionViewer::ReadConfiguration(), TGeoDecayChannel::ReadDecay(), TZIPFile::ReadDirectory(), TGeoElementRN::ReadElementRN(), ReadMaterialChunk(), ReadObjectChunk(), TDatabasePDG::ReadPDGTable(), TMVA::MethodBase::ReadStateFromXML(), RooProdPdf::rearrangeProduct(), THnSparse::Rebin(), RooAbsData::reduce(), RefClone(), TSPlot::RefillHist(), TGDMLParse::Reflection(), RooAbsStudy::registerSummaryOutput(), XrdSutCache::Rehash(), RooAbsCollection::remove(), XrdSutCache::Remove(), RooRealVar::removeMax(), RooErrorVar::removeMax(), RooErrorVar::removeMin(), RooRealVar::removeMin(), RooErrorVar::removeRange(), RooRealVar::removeRange(), RooAbsCollection::replace(), TGIcon::Reset(), TMethodCall::ReturnType(), RooAbsData::rmsVar(), robot(), RooCurve::RooCurve(), RooProdGenContext::RooProdGenContext(), TGDMLParse::RotProcess(), ROOT::RpdCheckHost(), TGeoChecker::SamplePoints(), RooMinuit::save(), RooMinimizer::save(), TGeoMaterial::SavePrimitive(), TEfficiency::SavePrimitive(), TASImage::SavePrimitive(), TGIcon::SavePrimitive(), TGeoMixture::SavePrimitive(), TGeoHMatrix::SavePrimitive(), TRootGuiBuilder::SaveProject(), TGSelectBox::SaveText(), TMinuitMinimizer::Scan(), TClassTree::ScanClasses(), TGDMLParse::SclProcess(), XrdSecProtocolgsi::ServerDoSigpxy(), RooRealVar::setBins(), TTree::SetBranchStatus(), TMVA::TransformationHandler::SetCallerName(), TProofDraw::SetCanvas(), TClonesArray::SetClass(), TStructViewer::SetColor(), TGeoMatrix::SetDefaultName(), TAxis::SetDefaults(), TROOT::SetDefCanvasName(), TGScrollBarElement::SetEnabled(), TGFontDialog::SetFont(), TPaletteAxis::SetName(), TMVA::ClassInfo::SetName(), TTVRecord::SetName(), TPave::SetName(), TGX11::SetTextFont(), TProofServ::SetupCommon(), TFumiliMinimizer::SetVariableValue(), sfnt_load_face(), TFitEditor::ShowObjectName(), sparsehist(), TGDMLParse::Sphere(), spstress_matrix_io(), TUnixSystem::StackTrace(), TLM::StartSession(), StockReturn(), TBrowser::StopEmbedding(), TRootBrowser::StopEmbedding(), RooNumIntFactory::storeProtoIntegrator(), RooNumGenFactory::storeProtoSampler(), RooCmdConfig::stripCmdList(), RooAbsPdf::syncNormalization(), t1_lookup_glyph_by_stdcharcode(), t42_parse_dict(), TAlienMasterJobStatus::TAlienMasterJobStatus(), tank(), TDirectoryGetObject(), TDirectoryWriteObject(), TEfficiency::TEfficiency(), test1DObjects(), test2DObjects(), testApplication(), testBetaFunction(), TestBigComment(), testDiff(), testGammaFunction(), testGausFit(), testMerge1DLabelAll(), testMerge1DLabelAllDiff(), testMerge2DLabelAll(), testMerge2DLabelAllDiff(), testMerge3DLabelAll(), testMerge3DLabelAllDiff(), testMergeProf1DLabelAll(), testMergeProf1DLabelAllDiff(), testMergeProf2DLabelAll(), testMergeProf2DLabelAllDiff(), testMergeProf3DLabelAll(), testMergeProf3DLabelAllDiff(), testNormCross(), testSMatrix(), testSVector(), TestTime(), TestTimePF(), testTrack(), testUnBinnedFit(), TestVector< Vector >::TestVector(), testVector34(), TFileSet::TFileSet(), TFractionFitter::TFractionFitter(), TGLVEntry::TGLVEntry(), TMethodBrowsable::TMethodBrowsable(), TGDMLParse::TopProcess(), TGDMLParse::Torus(), toTree(), TH1::TransformHisto(), TGDMLParse::Trap(), TGDMLParse::Trd(), TStructNode::TStructNode(), tStudent(), PyROOT::TTreeGetAttr(), tty_stty(), TGDMLParse::Tube(), TGDMLParse::TwistTrap(), ROOT::Fit::UnBinFit(), TStructViewerGUI::UpdateLabels(), TGFontDialog::UpdateStyleSize(), TDSetElement::Validate(), TGDMLParse::VolProcess(), vstress_vector_io(), TEveCompositeFrame::WindowNameChanged(), TEveCompositeFrameInMainFrame::WindowNameChanged(), TEveCompositeFrameInTab::WindowNameChanged(), TDocParser::WriteMethod(), TClassDocOutput::WriteMethod(), TDocOutput::WriteModuleLinks(), TFile::WriteProcessID(), ROOT::TTreeProxyGenerator::WriteProxy(), TXMLSetup::XmlDefineClass(), XrdSecgsiGMAPFun(), TGDMLParse::Xtru(), xtruSamples(), and TTableDescriptor::~TTableDescriptor().
png_color_16p int int need_expand |
Definition at line 2358 of file png.h.
Referenced by TChain::Add(), TFileDrawMap::AnimateTree(), TMultiLayerPerceptron::AttachData(), TMultiLayerPerceptron::BFGSDir(), billtr(), TGeoChecker::CheckBoundaryReference(), TGeoManager::CleanGarbage(), CompareTrees(), TMultiLayerPerceptron::ComputeDEDw(), TMultiLayerPerceptron::ConjugateGradientsDir(), THbookFile::Convert1D(), THbookFile::Convert2D(), convert_1d(), convert_2d(), convert_cwn(), convert_profile(), convert_rwn(), THbookFile::ConvertCWN(), THbookFile::ConvertProfile(), THbookFile::ConvertRWN(), copytree3(), TMultiLayerPerceptron::DerivDir(), TParallelCoordEditor::DoEntriesToDraw(), TH2::DoFitSlices(), TParallelCoordEditor::DoLiveEntriesToDraw(), TChair::Draw(), Draw_Slave_Access(), TMultiLayerPerceptron::DumpWeights(), TTreeViewer::ExecuteDraw(), TTreeViewer::ExecuteSpider(), TChair::Fit(), fit2(), fit2a(), TNeuron::GetDerivative(), TMultiLayerPerceptron::GetEntry(), TParallelCoordVar::GetHistogram(), TParallelCoordVar::GetMinMaxMean(), TParallelCoordVar::GetQuantiles(), TNeuron::GetValue(), TProof::HandleInputMessage(), TProofServ::HandleProcess(), InspectDiff(), InspectRef(), TMultiLayerPerceptron::LineSearch(), TEntryListFromFile::LoadList(), TChain::LoadTree(), main(), memstat(), TProfileHelper::Merge(), TH1::Merge(), TH3::Merge(), TTree::Merge(), TFileCollection::Merge(), TH2::Merge(), TTree::MergeTrees(), TMultiLayerPerceptron::MLP_Stochastic(), TClonesArray::MultiSort(), pileup(), PlotDecisionBoundary(), TProofServ::ProcessNext(), TMultiLayerPerceptron::Randomize(), read(), TFITSHDU::ReadAsHistogram(), ReadRef(), rebin(), TMultiLayerPerceptron::SetGammaDelta(), TMemStatShow::Show(), TH2::Smooth(), TClonesArray::Sort(), stress4(), stress6(), stress8read(), tclread(), TMultiLayerPerceptron::Train(), tree1r(), tree2ar(), tree2r(), tv3Read1(), and tv3Read2().
png_infop png_charp png_int_32 png_int_32 int int nparams |
png_infop png_charp png_int_32 png_int_32 int int* nparams |
Definition at line 2289 of file png.h.
Referenced by MatchOverloadSignatures(), png_handle_pCAL(), and TDocParser::WriteMethod().
int nrows |
Definition at line 1701 of file png.h.
Referenced by Add(), assembly(), astress_pseudo(), TTable::Browse(), TDecompSparse::CopyUpperTriang(), TFitEditor::DoFit(), TTreePlayer::DrawSelect(), ElementDiv(), ElementMult(), TDecompSparse::Factor(), TGTable::FindCell(), TGTable::GetColumn(), TMatrixDEigen::GetEigenValues(), TGTable::GetRHdrHeight(), TGTable::GotoTableRange(), TGTable::Init(), TInspectCanvas::InspectObject(), TTable::NaN(), TDecompSparse::NonZerosUpperTriang(), TMatrixTBase< Element >::Print(), TMVA::VariablePCATransform::ReadFromXML(), TMVA::VariableDecorrTransform::ReadFromXML(), TMVA::Tools::ReadTMatrixDFromXML(), TMVA::VariableDecorrTransform::ReadTransformationFromStream(), TMVA::VariablePCATransform::ReadTransformationFromStream(), TGTable::SetEvenRowBackground(), TGTable::SetHeaderBackground(), TGTable::SetOddRowBackground(), TGTable::Show(), TDecompSparse::Solve(), sqlselect(), TDecompBK::TDecompBK(), TDecompChol::TDecompChol(), TDecompLU::TDecompLU(), TDecompQRH::TDecompQRH(), TDecompSVD::TDecompSVD(), testTreeFit(), TMatrixTSparse< Element >::TMatrixTSparse(), TTreePlayer::UnbinnedFit(), and TGTable::UpdateView().
png_infop png_uint_32 int num |
int num |
Definition at line 1459 of file png.h.
Referenced by XrdOuca2x::a2fm(), TDSet::Add(), TProofPlayerRemote::AddOutput(), TProofPlayerRemote::AddOutputObject(), asim_parse_math(), XrdFrmAdmin::AuditNameNB(), TGraphSmooth::BDRksmooth(), boxset(), boxset_colisval(), boxset_cones(), boxset_freebox(), boxset_single_color(), TVolume::Browse(), TMultiLayerPerceptron::BuildOneHiddenLayer(), TPacketizerAdaptive::CalculatePacketSize(), TCondor::ClaimVM(), TEfficiency::Combine(), TLinearFitter::CreateSubset(), TRobustEstimator::CreateSubset(), decompress_smooth_data(), demangle_qualified(), TH1Editor::Dividers(), TH2Editor::Dividers(), do_ls_files_server(), TH1Editor::DoBinLabel(), TH1Editor::DoBinLabel1(), TH1Editor::DoOffsetReleased(), TCurlyLineEditor::DoWaveLength(), TMultiLayerPerceptron::Draw(), TGLUtil::DrawNumber(), ed_quoted_insert(), el_gets(), elliptic_boxset_cones(), TMVA::MethodCFMlpANN_Utils::Entree_new(), ExecuteTest(), TThread::Exists(), XrdFrmAdmin::FindFail(), XrdFrmAdmin::FindNolk(), XrdFrmAdmin::FindUnmi(), ROOT::Fit::FitOptionsMake(), FT_Get_Advances(), gdk_propagate_shapes(), gen_number(), TGFontPool::GetAttributeInfo(), TMLPAnalyzer::GetNeurons(), TEventIterObj::GetNextEvent(), TPacketizer::GetNextPacket(), TPacketizerUnit::GetNextPacket(), TPacketizerAdaptive::GetNextPacket(), handle_asxml_tag_composite(), TEmulatedCollectionProxy::InitializeEx(), TGenCollectionProxy::InitializeEx(), Intersection(), make_odither_array(), TVolumePosition::Mult(), NdbParticleList::Name(), num_elem(), png_handle_hIST(), png_handle_PLTE(), TObjectTable::Print(), TProofPlayerRemote::Process(), TProofPlayerLite::Process(), prompt_print(), TThread::Ps(), PS_Conv_Strtol(), PS_Conv_ToInt(), psh_blues_scale_zones(), quadset(), quadset_emc(), quadset_hex(), quadset_hexid(), read_getcmd(), RooProdPdf::rearrangeProduct(), TTreePlayer::Scan(), TPainter3dAlgorithms::SideVisibilityDecode(), TMVA::PDF::SmoothHistogram(), stl_type(), TProofPlayerRemote::StoreOutput(), TVolumePosition::TVolumePosition(), TVolumeViewIter::UpdateTempMatrix(), and XrdOucTList::XrdOucTList().
int num_bytes |
int png_bytep int num_chunks |
int int num_weights |
Definition at line 2277 of file png.h.
Referenced by cut_pixmap(), decode_asscanline_ximage(), do_rot_270(), do_rot_90(), do_transpose(), do_transverse(), make_gradient_diag_width(), and png_handle_oFFs().
Definition at line 2277 of file png.h.
Referenced by cut_pixmap(), do_crop(), do_flip_h(), do_flip_h_no_crop(), do_flip_v(), do_rot_180(), do_rot_270(), do_rot_90(), do_transpose(), do_transverse(), and png_handle_oFFs().
png_voidp png_rw_ptr png_flush_ptr output_flush_fn |
Definition at line 1594 of file png.h.
Referenced by colorize_asimage_vector(), create_asimage_from_vector(), TColor::CreateGradientColorTable(), TGQt::CreateWindow(), Rgl::DrawPalette(), TGLBoxPainter::DrawPalette(), gdk_color_context_add_palette(), gdk_colormap_change(), TASImage::GetArray(), glrose(), TQtWidget::Init(), my_x_query_colors(), TImage::Open(), TImagePalette::operator=(), THistPainter::PaintPalette(), TASPaletteEditor::PaintPalette::PaintPalette(), THistPainter::PaintTable(), png_handle_PLTE(), png_init_read_transformations(), QtGContext::SetBackground(), TQtClientWidget::setEraseColor(), TQtClientWidget::setErasePixmap(), QtGContext::SetForeground(), TASImage::SetImage(), TASImage::SetPalette(), TColor::SetPalette(), TAttImage::SetPalette(), TASImage::TASImage(), TImagePalette::TImagePalette(), TPaletteAxis::TPaletteAxis(), TQtFeedBackWidget::TQtFeedBackWidget(), and waves().
Definition at line 2289 of file png.h.
Referenced by TH1::Add(), TSqlRawBuffer::AddLine(), RooAbsArg::addParameters(), TGuiBldMenuDialog::ApplyMethod(), argb2ASImage(), ASImage2file(), ASImage2gif(), ASImage2jpeg(), ASImage2PNGBuff(), ASImage2tiff(), ASImage2xpm(), ASImage2xpmRawBuff(), RooFit::bindFunction(), bmp2ASImage(), RooStats::ProposalFunction::CheckParameters(), ClassImp(), ClassImpQ(), RooFit::Constrain(), RooMinimizer::contour(), RooFitResult::createHessePdf(), RooStats::LikelihoodInterval::CreateMinimizer(), RooAbsAnaConvPdf::declareBasis(), TH1::Divide(), RooStats::LikelihoodIntervalPlot::Draw(), TFormula::EvalPar(), TFormula::EvalParOld(), TContextMenu::Execute(), TObject::Execute(), TObjectExecute::Execute(), TGroupButton::ExecuteAction(), TFitterMinuit::ExecuteCommand(), TBackCompFitter::ExecuteCommand(), fastDriver(), TASPluginGS::File2ASImage(), TTreeFormula::FindLeafForExpression(), RooStats::LikelihoodInterval::FindLimits(), fitLinear2(), FitUsingRooFit(), FNT_Face_Init(), ft_black_render(), FT_Open_Face(), FT_Outline_Get_Bitmap(), ft_raster1_render(), ft_smooth_render_generic(), RooAbsCachedReal::FuncCacheElem::FuncCacheElem(), TMLPAnalyzer::GatherInformations(), RooStats::LikelihoodInterval::GetContourPoints(), TASImage::GetImageBuffer(), RooStats::MCMCCalculator::GetInterval(), TLeafObject::GetMethodCall(), DNDMainFrame::GetObject(), TGuiBldMenuDialog::GetParameters(), TRootDialog::GetParameters(), RooProdPdf::getParametersHook(), TF1::GetQuantiles(), TDocMacroDirective::GetResult(), gif2ASImage(), gray_raster_render(), TDocParser::HandleDirective(), hist2image(), hstack(), ico2ASImage(), TF2::Integral(), TF3::Integral(), jpeg2ASImage(), XrdSecProtocolgsi::LoadAuthzFun(), XrdSecProtocolgsi::LoadGMAPFun(), TDocParser::LocateMethodInCurrentLine(), main(), RooExpensiveObjectCache::ExpensiveObject::matches(), TF1::Mean(), mlpHiggs(), TH1::Multiply(), open_face(), ROOT::Minuit2::MnParameterScan::operator()(), options2d1(), RooRealIntegral::parameters(), RooFit::Parameters(), RooAbsPdf::paramOn(), TTreeFormula::ParseWithLeaf(), RooAbsCachedPdf::PdfCacheElem::PdfCacheElem(), RooAbsReal::plotOnWithErrorBand(), png2ASImage(), png2ASImage_int(), png_handle_pCAL(), PNGBuff2ASimage(), ppm2ASImage(), RooFitResult::reducedCovarianceMatrix(), RooExpensiveObjectCache::registerObject(), RooExpensiveObjectCache::retrieveObject(), rf407_latextables(), rf505_asciicfg(), RooAbsOptTestStatistic::RooAbsOptTestStatistic(), RooAbsTestStatistic::RooAbsTestStatistic(), RooMCStudy::RooMCStudy(), save_asimage_to_file(), RooWorkspace::saveSnapshot(), TASImage::SetImageBuffer(), RooStats::HybridCalculatorOriginal::SetNuisanceParameters(), ROOT::Math::GeneticMinimizer::SetParameters(), RooStats::LikelihoodIntervalPlot::SetPlotParameters(), TDataMember::SetterMethod(), tga2ASImage(), tiff2ASImage(), topDriver(), TQSlot::TQSlot(), TF1::Variance(), TDocParser::WriteMethod(), TClassDocOutput::WriteMethod(), xml2ASImage(), xpm2ASImage(), xpm_data2ASImage(), xpmRawBuff2ASImage(), and XrdSecProtocolkrb5Init().
typedef png_bytep |
Definition at line 1077 of file png.h.
Referenced by png2ASImage_int(), png_build_gamma_table(), png_combine_row(), png_create_read_struct_2(), png_create_write_struct_2(), png_decompress_chunk(), png_do_background(), png_do_bgr(), png_do_chop(), png_do_dither(), png_do_expand(), png_do_expand_palette(), png_do_gamma(), png_do_gray_to_rgb(), png_do_invert(), png_do_pack(), png_do_packswap(), png_do_read_filler(), png_do_read_interlace(), png_do_read_intrapixel(), png_do_read_invert_alpha(), png_do_read_swap_alpha(), png_do_rgb_to_gray(), png_do_strip_filler(), png_do_swap(), png_do_unpack(), png_do_unshift(), png_do_write_interlace(), png_do_write_intrapixel(), png_do_write_invert_alpha(), png_do_write_swap_alpha(), png_handle_as_unknown(), png_handle_iCCP(), png_handle_pCAL(), png_handle_sCAL(), png_handle_sPLT(), png_handle_tEXt(), png_handle_unknown(), png_handle_zTXt(), png_push_fill_buffer(), png_push_handle_unknown(), png_push_read_tEXt(), png_push_read_zTXt(), png_push_save_buffer(), png_read_filter_row(), png_read_init_3(), png_read_png(), png_read_rows(), png_read_start_row(), png_set_compression_buffer_size(), png_set_dither(), png_set_filter(), png_set_filter_heuristics(), png_set_keep_unknown_chunks(), png_set_tRNS(), png_set_unknown_chunks(), png_write_compressed_data_out(), png_write_find_filter(), png_write_iCCP(), png_write_init_3(), png_write_pCAL(), png_write_sCAL(), png_write_sPLT(), png_write_start_row(), png_write_tEXt(), png_write_zTXt(), and png_zalloc().
typedef png_const_charp |
typedef png_row_infop |
typedef png_size_t |
Definition at line 1077 of file png.h.
Referenced by png_check_keyword(), png_check_sig(), png_combine_row(), png_crc_finish(), png_decompress_chunk(), png_default_read_data(), png_do_expand(), png_do_expand_palette(), png_do_gray_to_rgb(), png_do_read_filler(), png_do_read_interlace(), png_do_unpack(), png_do_write_interlace(), png_handle_bKGD(), png_handle_iCCP(), png_handle_pCAL(), png_handle_sBIT(), png_handle_sCAL(), png_handle_sPLT(), png_handle_tEXt(), png_handle_tRNS(), png_handle_unknown(), png_handle_zTXt(), png_push_crc_finish(), png_push_fill_buffer(), png_push_handle_tEXt(), png_push_handle_unknown(), png_push_handle_zTXt(), png_push_read_IDAT(), png_push_read_sig(), png_push_read_tEXt(), png_push_read_zTXt(), png_push_save_buffer(), png_read_info(), png_read_row(), png_read_start_row(), png_set_compression_buffer_size(), png_set_iCCP(), png_set_IHDR(), png_set_keep_unknown_chunks(), png_set_pCAL(), png_set_text_2(), png_set_tRNS(), png_text_compress(), png_write_bKGD(), png_write_cHRM(), png_write_cHRM_fixed(), png_write_chunk_end(), png_write_chunk_start(), png_write_compressed_data_out(), png_write_finish_row(), png_write_gAMA(), png_write_gAMA_fixed(), png_write_hIST(), png_write_iCCP(), png_write_IEND(), png_write_IHDR(), png_write_oFFs(), png_write_pCAL(), png_write_pHYs(), png_write_PLTE(), png_write_sBIT(), png_write_sCAL(), png_write_sig(), png_write_sPLT(), png_write_sRGB(), png_write_start_row(), png_write_tEXt(), png_write_tIME(), png_write_tRNS(), png_write_zTXt(), and png_zalloc().
typedef png_uint_32 |
typedef png_uint_32 |
typedef png_uint_32 |
Definition at line 1079 of file png.h.
Referenced by png2ASImage_int(), png_access_version_number(), png_build_gamma_table(), png_check_keyword(), png_combine_row(), png_convert_to_rfc1123(), png_crc_error(), png_create_read_struct_2(), png_create_write_struct_2(), png_decompress_chunk(), png_default_write_data(), png_do_background(), png_do_bgr(), png_do_chop(), png_do_dither(), png_do_expand(), png_do_expand_palette(), png_do_gamma(), png_do_gray_to_rgb(), png_do_invert(), png_do_pack(), png_do_read_filler(), png_do_read_interlace(), png_do_read_invert_alpha(), png_do_read_swap_alpha(), png_do_read_transformations(), png_do_rgb_to_gray(), png_do_strip_filler(), png_do_swap(), png_do_unpack(), png_do_unshift(), png_do_write_interlace(), png_do_write_intrapixel(), png_do_write_invert_alpha(), png_do_write_swap_alpha(), png_do_write_transformations(), png_get_compression_buffer_size(), png_get_pHYs(), png_get_sPLT(), png_get_text(), png_get_tRNS(), png_get_uint_31(), png_get_uint_32(), png_get_unknown_chunks(), png_handle_cHRM(), png_handle_iCCP(), png_handle_IHDR(), png_handle_pCAL(), png_handle_pHYs(), png_handle_sPLT(), png_handle_tEXt(), png_handle_tRNS(), png_handle_unknown(), png_handle_zTXt(), png_malloc_default(), png_malloc_warn(), png_memcpy_check(), png_memset_check(), png_permit_mng_features(), png_push_crc_finish(), png_push_handle_tEXt(), png_push_handle_unknown(), png_push_handle_zTXt(), png_push_read_IDAT(), png_push_read_tEXt(), png_push_read_zTXt(), png_push_save_buffer(), png_read_end(), png_read_filter_row(), png_read_image(), png_read_info(), png_read_init_3(), png_read_rows(), png_read_start_row(), png_set_dither(), png_set_filter_heuristics(), png_set_hIST(), png_set_iCCP(), png_set_keep_unknown_chunks(), png_set_pCAL(), png_set_rgb_to_gray_fixed(), png_set_sPLT(), png_set_text_2(), png_set_tRNS(), png_text_compress(), png_write_cHRM(), png_write_cHRM_fixed(), png_write_chunk(), png_write_compressed_data_out(), png_write_find_filter(), png_write_gAMA(), png_write_gAMA_fixed(), png_write_hIST(), png_write_iCCP(), png_write_IDAT(), png_write_image(), png_write_info(), png_write_init_3(), png_write_pCAL(), png_write_PLTE(), png_write_rows(), png_write_sPLT(), png_write_start_row(), png_write_tEXt(), png_write_zTXt(), and png_zalloc().
typedef png_unknown_chunkp |
Definition at line 2339 of file png.h.
Referenced by TSelectorDraw::Begin(), ClassImp(), RooStats::FeldmanCousins::CreateParameterPoints(), DelOld(), TTable::Draw(), RooStats::ProfileLikelihoodTestStat::Evaluate(), RooStats::MaxLikelihoodEstimateTestStat::Evaluate(), RooStats::ProfileLikelihoodCalculator::GetInterval(), RooStats::ProfileInspector::GetListOfProfilePlots(), InsNew(), png_handle_iCCP(), RooStats::RatioOfProfiledLikelihoodsTestStat::ProfiledLikelihood(), TProfile::TProfile(), TProfile2D::TProfile2D(), and TProfile3D::TProfile3D().
Definition at line 1540 of file png.h.
Referenced by TProofPlayerSuperMaster::HandleTimer(), memstat(), TProofPlayerSuperMaster::Progress(), and TMemStatShow::Show().
Definition at line 2020 of file png.h.
Referenced by ROOT::TTreeProxyGenerator::AnalyzeTree(), asim_find_file(), asim_interpret_ctrl_codes(), asim_parse_argb_color(), asim_parse_math(), asim_pointer_hash_value(), asim_put_file_home(), asim_xml_elem_delete(), asim_xml_parse(), ASImage2xpm(), ASImage2xpmRawBuff(), RooLinkedList::At(), RooAbsCategory::attachToTree(), build_image_from_xml(), build_xpm_charmap(), c_hpos(), TGWin32::ChangeProperties(), check_escape(), TGPopupMenu::CheckEntry(), TGPopupMenu::CheckEntryByData(), TGTableLayout::CheckSanity(), RooFactoryWSTool::checkSyntax(), ClassImp(), compose_asimage_xml_from_doc(), RooStreamParser::convertToString(), TMVA::DataSetInfo::CorrelationMatrix(), TStructViewer::CountMembers(), TTable::Create(), create_asstorage_block(), create_colormap(), TLDAPResult::CreateEntry(), TASImage::CreateThumbnail(), TGPopupMenu::DefaultEntry(), TGPopupMenu::DeleteEntry(), TWinNTSystem::DirName(), TGPopupMenu::DisableEntry(), TGPopupMenu::DoRedraw(), drr_map_args2(), ed_next_line(), ed_prev_line(), el_get(), el_parse(), el_set(), el_source(), TGPopupMenu::EnableEntry(), TRuby::Eval(), RooRealMPFE::evaluate(), FTVector< const GLint *typedef const GLshort *typedef const GLubyte *typedef >::expand(), expand_right_edge(), TTableSorter::FillIndexArray(), FTCharToGlyphIndexMap::find(), RooLinkedList::find(), TUnixSystem::FindFile(), TRootContextMenu::FindHierarchy(), RooLinkedList::findLink(), TGTableLayout::FindRowColSizesMultiplyAttached(), TGTableLayout::FindRowColSizesSinglyAttached(), G__ManualBase4_101_0_98(), G__ManualBase4__0_211(), G__ManualTree2_126_0_187(), gdk_event_translate(), gdk_pixmap_extract_color(), gdk_property_change(), gdk_selection_convert(), Reflex::CFTGenerator< T >::Generate(), ROOT::GenerateInitInstanceLocal(), TCollectionProxyFactory::GenExplicitStreamer(), get_text_glyph_list(), get_text_length(), RooAbsRealLValue::getBin(), RooAbsArg::getCloningAncestors(), TFormLeafInfoCollection::GetCounterValue(), TGMatrixLayout::GetDefaultSize(), TGListLayout::GetDefaultSize(), TGRowLayout::GetDefaultSize(), TGVerticalLayout::GetDefaultSize(), TGTileLayout::GetDefaultSize(), TGHorizontalLayout::GetDefaultSize(), TGColumnLayout::GetDefaultSize(), TGListDetailsLayout::GetDefaultSize(), TGPopupMenu::GetEntry(), TROOT::GetGlobal(), RooStats::HistFactory::GetHisto(), TMVA::MethodBase::GetMulticlassValues(), TGPicturePool::GetPicture(), TGWin32::GetProperty(), TMVA::MethodBase::GetRegressionValues(), TStreamerInfo::GetValueSTLP(), gl2psMalloc(), GRSTx509CacheProxy(), GRSTx509CreateProxyRequest(), GRSTx509MakeProxyCert(), GRSTx509MakeProxyRequest(), handle_asxml_tag_background(), handle_asxml_tag_bevel(), handle_asxml_tag_blur(), handle_asxml_tag_color(), handle_asxml_tag_color2alpha(), handle_asxml_tag_composite(), handle_asxml_tag_crop(), handle_asxml_tag_gradient(), handle_asxml_tag_hsv(), handle_asxml_tag_if(), handle_asxml_tag_img(), handle_asxml_tag_mirror(), handle_asxml_tag_pad(), handle_asxml_tag_pixelize(), handle_asxml_tag_printf(), handle_asxml_tag_recall(), handle_asxml_tag_release(), handle_asxml_tag_rotate(), handle_asxml_tag_save(), handle_asxml_tag_scale(), handle_asxml_tag_set(), handle_asxml_tag_slice(), handle_asxml_tag_solid(), handle_asxml_tag_text(), handle_asxml_tag_tile(), TGPopupMenu::HandleCrossing(), TGMenuBar::HandleKey(), TGClient::HandleMaskEvent(), TGPopupMenu::HandleMotion(), TObject::Hash(), TGPopupMenu::HideEntry(), RooWorkspace::import(), RooLinkedList::IndexOf(), TAutoInspector::Inspect(), internal_dfa_exec(), TGCompositeFrame::IsArranged(), TGPopupMenu::IsEntryChecked(), TGPopupMenu::IsEntryEnabled(), TGPopupMenu::IsEntryHidden(), TGPopupMenu::IsEntryRChecked(), TGCompositeFrame::IsVisible(), jt_read_integer(), jzero_far(), TGXYLayout::Layout(), TGTableLayout::Layout(), TGListDetailsLayout::Layout(), TGHorizontalLayout::Layout(), TGColumnLayout::Layout(), TGListLayout::Layout(), TGTileLayout::Layout(), TGRowLayout::Layout(), TGMatrixLayout::Layout(), TGVerticalLayout::Layout(), lcstring(), load_asimage_list_entry_data(), main(), RooClassFactory::makeClass(), TVirtualCollectionPtrIterators::Next(), node__delete(), node__get(), node__put(), node__try(), node_enum(), node_lookup(), node_trav(), operator delete(), TMatrixTSub_const< Element >::operator()(), TMatrixTSub< Element >::operator()(), TIsAProxy::operator()(), FTVector< const GLint *typedef const GLshort *typedef const GLubyte *typedef >::operator=(), TClassTree::Paint(), TPolyLineShape::PaintPolyMarker(), parse_xpm_cmap_entry(), parse_xpm_header(), TTreeFormula::ParseWithLeaf(), pcregrep(), TTable::piterator::piterator(), png_push_fill_buffer(), png_zalloc(), PyROOT::pp_get(), PyROOT::pp_set(), prepare_scanline(), prescan_quantize(), TGPopupMenu::RCheckEntry(), TStreamerInfo::ReadBuffer(), TBufferFile::ReadClassEmulated(), TFormLeafInfoCollection::ReadCounterValue(), TFormLeafInfoCollection::ReadValue(), TFormLeafInfoCollectionSize::ReadValue(), RooNameSet::refill(), TGPopupMenu::Reposition(), RootdGets(), scale_down_glyph_width(), TChain::SetBranchAddress(), TTree::SetBranchAddress(), TTree::SetBranchAddressImp(), TChainElement::SetBranchPtr(), TAuthenticate::SetEnvironment(), RooLinkedList::setHashTableSize(), TASImage::SetImageBuffer(), TGTableLayout::SetRowColSizesInit(), RooSuperCategory::setType(), TClassTree::ShowClassesUsedBy(), TClassTree::ShowClassesUsing(), TEmulatedCollectionProxy::Shrink(), RooLinkedList::Sort(), TClassDynamicCast(), TDirectoryGetObject(), term_alloc(), tok_line(), PyROOT::TRootObjectConverter::ToMemory(), PyROOT::TVoidArrayConverter::ToMemory(), TGPopupMenu::UnCheckEntries(), TGPopupMenu::UnCheckEntry(), TGPopupMenu::UnCheckEntryByData(), undefine(), undefine_all(), TTreeCacheUnzip::UnzipCache(), TStreamerInfoActions::UseCache(), TStreamerInfoActions::UseCacheVectorLoop(), TStreamerInfoActions::UseCacheVectorPtrLoop(), TBufferFile::WriteClassBuffer(), xml_elem_remove(), TBufferXML::XmlReadBlock(), and TASPaletteEditor::~TASPaletteEditor().
png_voidp png_rw_ptr read_data_fn |
png_read_status_ptr read_row_fn |
png_voidp png_user_chunk_ptr read_user_chunk_fn |
png_user_transform_ptr read_user_transform_fn |
int png_fixed_point red |
Definition at line 1585 of file png.h.
Referenced by TStyleManager::AddTopLevelInterface(), clip(), colormap_asimage(), TSpectrum2Painter::ColorModel(), TColor::CreateColorWheel(), TGWin32::DrawImage(), TGX11TTF::DrawImage(), EightBitSetColors(), encode_image_scanline_argb32(), fill_asimage(), gdk_color_context_get_pixels(), gdk_color_context_get_pixels_incremental(), gdk_color_context_query_colors(), gdk_colormap_alloc_colors(), gdk_colormap_alloc_colors_private(), TTermManip::GetColorIndex(), gl2psPrintPostScriptPixmap(), TGWin32::ImgPickPalette(), TGX11::ImgPickPalette(), make_12bpp_colormap(), make_6bpp_colormap(), make_9bpp_colormap(), TGX11::MakeOpaqueColors(), TGWin32::MakeOpaqueColors(), OneBitSetColors(), TGLAxis::PaintGLAxisBody(), parse_color(), png_do_rgb_to_gray(), png_do_write_intrapixel(), png_write_PLTE(), png_write_sPLT(), TGX11::ReadGIF(), TGLCameraOverlay::RenderBar(), setColor(), TColor::SetPalette(), test_colours(), test_gcs(), TestMsgBox::TestMsgBox(), TImagePalette::TImagePalette(), TrueColorSetColors(), TStyleDialog::TStyleDialog(), and TGX11::WriteGIF().
Definition at line 2209 of file png.h.
Referenced by png_handle_cHRM(), and png_set_sRGB_gAMA_and_cHRM().
Definition at line 2209 of file png.h.
Referenced by png_handle_cHRM(), and png_set_sRGB_gAMA_and_cHRM().
Definition at line 2301 of file png.h.
Referenced by gdk_font_load_internal(), and png_handle_pHYs().
Definition at line 2301 of file png.h.
Referenced by gdk_font_load_internal(), and png_handle_pHYs().
Definition at line 1716 of file png.h.
Referenced by TFITSHDU::_release_resources(), RooDataHist::add(), TResponseTable::AddElement(), TTreeResult::AddRow(), TMVA::MethodANNBase::AddWeightsXMLTo(), antialias_glyph(), ASImage2tiff(), assembly(), TMVA::VariablePCATransform::AttachXMLTo(), TTreeSQL::CheckTable(), ClassImp(), color_quantize(), color_quantize3(), TAlien::Command(), crc32_combine(), TTreeSQL::CreateBranches(), TIndexTable::CreateDescriptor(), decode_asscanline_argb32(), TSQLFile::DeleteKeyFromDB(), TUnfoldSys::DoBackgroundSubtraction(), TGWin32::DrawImage(), TGX11TTF::DrawImage(), expand_bottom_edge(), expand_right_edge(), TGTable::ExpandRows(), TTableSorter::FillIndexArray(), TGTable::FindCell(), TResponseTable::FindResponseLocation(), TGTableLayout::FindRowColSizesHomogeneous(), TGTableLayout::FindRowColSizesMultiplyAttached(), TGTableLayout::FindRowColSizesSinglyAttached(), G__G__RooFitCore3_140_0_42(), TGTable::GetCell(), TAlien::GetColumn(), TTreeSQL::GetColumnIndice(), TGTableLayout::GetDefaultSize(), TSQLFile::GetLocking(), TSQLFile::GetLongString(), TSQLObjectDataPool::GetObjectRow(), TProofServ::GetPriority(), TSQLServer::GetTableInfo(), TMySQLServer::GetTableInfo(), TODBCServer::GetTablesList(), TMySQLServer::GetTablesList(), TSQLServer::GetTablesList(), TFITSHDU::GetTabRealVectorColumn(), TFITSHDU::GetTabStringColumn(), TGTable::Init(), TMVA::LDA::Initialize(), RooFitResult::isIdentical(), jcopy_sample_rows(), TGTableLayout::Layout(), load_X11_glyph_range(), TFITSHDU::LoadHDU(), make_X11_default_glyph(), TMultiDimFit::MakeCoefficients(), TEveTrans::MultLeft(), TEveTrans::MultRight(), TPgSQLResult::Next(), TOracleResult::Next(), TTreeResult::Next(), TMySQLResult::Next(), TMatrixT< Element >::operator *=(), TMatrixTSparseDiag< Element >::operator()(), TMatrixTSparseRow< Element >::operator()(), TMatrixT< Element >::operator/=(), TMatrixTSparseRow< Element >::operator=(), pass2_fs_dither(), pass2_no_dither(), png2ASImage_int(), png_do_read_interlace(), png_free_data(), png_read_png(), pre_process_context(), prescan_quantize(), TEveTrans::Print(), TFITSHDU::PrintFullTable(), quantize3_ord_dither(), quantize_fs_dither(), quantize_ord_dither(), TMatrixTSparse< Element >::RandomizePD(), TSQLFile::ReadConfigurations(), TMVA::VariablePCATransform::ReadFromXML(), TMVA::VariableDecorrTransform::ReadFromXML(), TSQLFile::ReadSQLClassInfos(), TMVA::Tools::ReadTMatrixDFromXML(), TMVA::VariableDecorrTransform::ReadTransformationFromStream(), TMVA::VariablePCATransform::ReadTransformationFromStream(), TMVA::MethodANNBase::ReadWeightsFromXML(), RooDataHist::reduceEng(), rf402_datahandling(), TEveTrans::RotateLF(), RooDataHist::set(), TResponseTable::SetResponse(), TGTableLayout::SetRowColSizesInit(), TGTable::ShrinkRows(), RooAbsData::split(), TSQLFile::SQLMaximumValue(), TSQLFile::SQLObjectInfo(), TSQLFile::SQLObjectsInfo(), sqlselect(), start_pass(), start_pass_fdctmgr(), TSQLFile::StreamKeysForDirectory(), TUnfoldSys::SubtractBackground(), tiff2ASImage(), TRandom1::TRandom1(), TMVA::Tools::WriteTMatrixDToXML(), TMVA::VariablePCATransform::WriteTransformationToStream(), and TMVA::VariableDecorrTransform::WriteTransformationToStream().
Definition at line 2067 of file png.h.
Referenced by _rl_qsort_string_compare(), a_add(), a_sub(), TAlienCollection::Add(), TProfileHelper::Add(), TH1::Add(), TFormula::Analyze(), TSpectrum2::Background(), TSpectrum3::Background(), TGeoVolume::Browse(), RooGExpModel::calcSinConv(), CheckSTLComparator(), TH1::Chi2TestX(), TMath::ChisquareQuantile(), TString::CompareTo(), TTabCom::Complete(), Compress(), TGeoConeSeg::ComputeNormal(), TGeoPgon::ComputeNormal(), TGeoSphere::ComputeNormal(), TGeoTorus::ComputeNormal(), TGeoPcon::ComputeNormal(), TGeoCtub::ComputeNormal(), TGeoTubeSeg::ComputeNormal(), RootCsg::ConvertToMesh(), TFitEditor::CreateFunctionGroup(), ROOT::Math::Factory::CreateMinimizer(), define2(), TView3D::DefinePerspectiveView(), TView3D::DefineViewDirection(), TGeoConeSeg::DistFromInside(), TGeoPcon::DistFromInside(), TGeoSphere::DistFromInside(), TGeoCtub::DistFromInside(), TGeoTubeSeg::DistFromInside(), TGeoTorus::DistFromInside(), TGeoTubeSeg::DistFromOutside(), TGeoCtub::DistFromOutside(), TGeoPcon::DistFromOutside(), TGeoSphere::DistFromOutside(), TGeoConeSeg::DistFromOutside(), TGeoTorus::DistFromOutside(), XrdSecProtocolpwd::DoubleHash(), TEnvRec::ExpandValue(), ROOT::Fit::FillData(), ROOT::Fit::FitObject(), fitSparse1D(), fitSparse2D(), fitSparse3D(), HFit::GetDimension(), HFit::GetDrawingRange(), TAlienCollection::GetOutputFileName(), TProof::GetTreeHeader(), ChebyQuadFunction::Gradient(), H1LeastSquareSeqnd(), handle2(), TTabCom::Hook(), hserv(), hsum(), hsumanim(), hsumTimer(), TAlienPackage::InstallSinglePackage(), TH3::KolmogorovTest(), TH2::KolmogorovTest(), TH1::KolmogorovTest(), ListTreeWindow::ListTreeWindow(), m_add(), main(), TPainter3dAlgorithms::MarchingCubeSurfacePenetration(), mathcoreVectorCollection(), merge2defines(), mhs1(), mhs2(), TMinuit::mncros(), TProfile::Multiply(), operator!=(), ROOT::Minuit2::MnFunctionCross::operator()(), operator+(), operator<(), operator<=(), operator==(), operator>(), operator>=(), TAlienCollection::OverlapCollection(), TSpectrum2Painter::Paint(), RooFitResult::plotOn(), png_do_read_intrapixel(), png_do_write_intrapixel(), TPythia6::Pyinit(), R__CreateEmulatedElement(), TGeoPainter::Raytrace(), ReadPasswd(), ReadPuk(), regexp(), XrdOucString::replace(), TString::ReplaceAll(), TView3D::ResetView(), ResolveTypes(), rf508_listsetmanip(), TGeoShape::SafetyPhi(), TSpectrum3::SearchFast(), TSpectrum3::SearchHighRes(), TSpectrum2::SearchHighRes(), TUrl::SetUrl(), slookup(), stressSymPosInversion(), test1DObjects(), test2DObjects(), test_atan2(), test_rotate(), test_unit(), testAddSparse(), testBinDataData1D(), testBinDataData1DInt(), testCloneSparse(), testDivSparse1(), testDivSparse2(), testIntegPerf(), testMergeSparse(), testMulFND(), testMulFND2(), testMulSparse(), testRefReadSparse(), TMVA::MethodBase::TestRegression(), testRotation(), testSMatrix(), testSparseData1DFull(), testSparseData1DSparse(), testSparseRebin1(), testSVector(), testTrack(), testVector(), testVector34(), testWriteReadSparse(), TGLFaceSet::TGLFaceSet(), and ZEXPORT().
Definition at line 2067 of file png.h.
Referenced by _rl_qsort_string_compare(), a_add(), a_sub(), TAlienCollection::Add(), TH1::Add(), TProfileHelper::Add(), TFormula::Analyze(), TSpectrum2::Background(), TSpectrum3::Background(), RooGExpModel::calcSinConv(), CheckSTLComparator(), TH1::Chi2TestX(), TMath::ChisquareQuantile(), ClassImp(), TString::CompareTo(), TTabCom::Complete(), TLimit::ComputeLimit(), TGeoConeSeg::ComputeNormal(), TGeoPgon::ComputeNormal(), TGeoSphere::ComputeNormal(), TGeoTorus::ComputeNormal(), TGeoPcon::ComputeNormal(), TGeoCtub::ComputeNormal(), TGeoTubeSeg::ComputeNormal(), RootCsg::ConvertToMesh(), ROOT::Math::Factory::CreateMinimizer(), define2(), TView3D::DefinePerspectiveView(), TView3D::DefineViewDirection(), TSpectrum2Fit::Deramp2(), TSpectrum2Fit::Derampx(), TSpectrum2Fit::Derbx(), TSpectrum2Fit::Derby(), TSpectrum2Fit::Deri01(), TSpectrum2Fit::Deri02(), TSpectrum2Fit::Derj02(), TSpectrum2Fit::Dersigmax(), TSpectrum2Fit::Dersigmay(), TSpectrum2Fit::Dersx(), TSpectrum2Fit::Dersxy(), TSpectrum2Fit::Dersy(), TSpectrum2Fit::Dertx(), TSpectrum2Fit::Dertxy(), TSpectrum2Fit::Derty(), TGeoConeSeg::DistFromInside(), TGeoPcon::DistFromInside(), TGeoSphere::DistFromInside(), TGeoCtub::DistFromInside(), TGeoTubeSeg::DistFromInside(), TGeoTorus::DistFromInside(), TGeoTubeSeg::DistFromOutside(), TGeoCtub::DistFromOutside(), TGeoPcon::DistFromOutside(), TGeoSphere::DistFromOutside(), TGeoConeSeg::DistFromOutside(), TGeoTorus::DistFromOutside(), XrdSecProtocolpwd::DoubleHash(), TString::EndsWith(), TEnvRec::ExpandValue(), TAlienCollection::GetOutputFileName(), TRotation::GetXPhi(), TRotation::GetXPsi(), ChebyQuadFunction::Gradient(), handle2(), TTabCom::Hook(), hsum(), hsumanim(), hsumTimer(), TAlienPackage::InstallSinglePackage(), TH3::KolmogorovTest(), TH2::KolmogorovTest(), TH1::KolmogorovTest(), ListTreeWindow::ListTreeWindow(), m_add(), main(), TMatrixDSymEigen::MakeEigenVectors(), TPainter3dAlgorithms::MarchingCubeSurfacePenetration(), mathcoreVectorCollection(), merge2defines(), mhs1(), mhs2(), TMinuit::mncros(), TMinuit::mnpfit(), ROOT::Fit::FitResult::NormalizeErrors(), operator!=(), ROOT::Minuit2::MnFunctionCross::operator()(), operator+(), operator<(), operator<=(), operator==(), operator>(), operator>=(), TAlienCollection::OverlapCollection(), TSpectrum2Painter::Paint(), RooFitResult::plotOn(), png_do_read_intrapixel(), png_do_write_intrapixel(), TPythia6::Pyinit(), TGeoPainter::Raytrace(), ReadPasswd(), ReadPuk(), regexp(), XrdOucString::replace(), TString::ReplaceAll(), TView3D::ResetView(), ResolveTypes(), rf508_listsetmanip(), rf610_visualerror(), TGeoShape::SafetyPhi(), TSpectrum3::SearchFast(), TSpectrum3::SearchHighRes(), TSpectrum2::SearchHighRes(), TUrl::SetUrl(), TSpectrum2Fit::Shape2(), slookup(), TSystem::SplitAclicMode(), stressSymPosInversion(), test13(), test_atan2(), test_rotate(), test_unit(), testAddSparse(), testBinDataData2D(), testBinDataData2DInt(), testCloneSparse(), testDivSparse1(), testDivSparse2(), testIntegPerf(), testMergeSparse(), testMulFND(), testMulFND2(), testMulSparse(), testRefReadSparse(), TMVA::MethodBase::TestRegression(), testRotation(), testSparseData2DFull(), testSparseData2DSparse(), testSparseRebin1(), testVector(), testWriteReadSparse(), TGLFaceSet::TGLFaceSet(), TQMimeTypes::TQMimeTypes(), and ZEXPORT().
png_voidp int png_uint_32 size |
Definition at line 1478 of file png.h.
Referenced by _tt_face_check_patents(), TPServerSocket::Accept(), TProofServ::AcceptResults(), TMVA::MethodCommittee::AdaBoost(), TLinearFitter::Add(), add_storage_slots(), TGLScenePad::AddHistoPhysical(), TGeoManager::AddOverlap(), TLinearFitter::AddPoint(), TGFileBrowser::AddRemoteFile(), TPrincipal::AddRow(), TMultiDimFit::AddRow(), TMemStatManager::AddStamp(), RooMsgService::addStream(), TGHtml::AddStyle(), TMultiDimFit::AddTestRow(), TQtWidget::AdjustBufferSize(), TGTextView::AdjustWidth(), af_loader_load_glyph(), alien(), XrdOssCache::Alloc(), ROOT::Math::GoFTest::AndersonDarling2SamplesTest(), AnyCollectionProxy< T >::AnyCollectionProxy(), AnyCollectionStreamer< T >::AnyCollectionStreamer(), TTreeIndex::Append(), TTable::AppendRows(), pcrecpp::StringPiece::as_string(), TSpectrum::Background(), XrdCpWorkLst::BuildWorkList_xrd(), TProofServ::CatMotd(), cff_builder_init(), cff_index_init(), cff_size_done(), cff_size_get_globals_funcs(), cff_size_init(), TTimeHists::Check(), CheckedGetItem(), checkhdr(), cid_size_done(), cid_size_get_globals_funcs(), cid_size_init(), cid_size_request(), cid_slot_load_glyph(), ClassImp(), TGFileBrowser::Clicked(), TApplicationRemote::CollectInput(), RooStats::CombinedCalculator::CombinedCalculator(), compute_glyph_metrics(), TGHtml::ControlSize(), TDocOutput::CopyHtmlFile(), TStructViewer::CountMembers(), RooClassFactory::ClassFacIFace::create(), RooStats::ProposalHelper::CreateCovMatrix(), CreateDestPath_xrd(), RooStats::MCMCInterval::CreateHist(), ROOT::Math::IntegratorMultiDim::CreateIntegrator(), TGWin32::CreatePixmapFromData(), PyROOT::CreatePyStrings(), TGM::CreateSession(), RooStats::MCMCInterval::CreateSparseHist(), TASImage::CreateThumbnail(), RooStats::MCMCInterval::CreateVector(), TPolyLineShape::CreateX3DSize(), cv_delfini(), ROOT::Math::MinimizerOptions::DefaultMinimizerType(), defragment_storage_block(), TStreamerInfo::DeleteArray(), destroy_size(), TStreamerInfo::DestructorImpl(), TEveTrackProjectedGL::DirectDraw(), TGLPolyMarker::DirectDraw(), TEveArrowGL::DirectDraw(), TPointsArray3D::DistancetoPrimitive(), doCp_loc2xrd(), doCp_xrd2loc(), doCp_xrd2xrd(), TAxisEditor::DoLabelSize(), TAttMarkerEditor::DoMarkerSize(), TAxisEditor::DoTitleSize(), TGFileBrowser::DoubleClicked(), TArrow::DrawArrow(), RooStats::MCMCIntervalPlot::DrawChainScatter(), TGLViewer::DrawDebugInfo(), RooStats::MCMCIntervalPlot::DrawNLLHist(), RooStats::MCMCIntervalPlot::DrawNLLVsTime(), RooStats::MCMCIntervalPlot::DrawParameterVsTime(), TPolyLine3D::DrawPolyLine(), RooStats::MCMCIntervalPlot::DrawWeightHist(), el_builtins_init(), em_undo(), FTVector< const GLint *typedef const GLshort *typedef const GLubyte *typedef >::empty(), FTVector< const GLint *typedef const GLshort *typedef const GLubyte *typedef >::end(), TSpectrum2Transform::Enhance(), ROOT::Math::AssignItr< T, D1, D2, MatRepSym< T, D1 > >::Evaluate(), executeDirList(), executeDirListRec(), TAxis3D::ExecuteEvent(), executeStat(), TMD5::FileChecksum(), TBranchSTL::Fill(), TEveTrackPropagator::FillPointSet(), TEveProjectionAxesGL::FilterOverlappingLabels(), TSpectrum2Transform::FilterZonal(), TSystemDirectory::FindDirObj(), TZIPFile::FindEndHeader(), TSystemDirectory::FindFileObj(), TSpectrum2Fit::FitAwmi(), TSpectrum2Fit::FitStiefel(), XrdXrootdMonitor::Flush(), fnt_font_load(), FNT_Load_Glyph(), FNT_Size_Request(), FNT_Size_Select(), TSpectrum2Transform::FourCos2(), FT_Bitmap_Copy(), FT_New_Size(), FT_Open_Face(), ftc_basic_family_load_bitmap(), ftc_basic_family_load_glyph(), ftc_inode_weight(), ftc_sbit_copy_bitmap(), ftc_scaler_lookup_size(), ftc_size_node_done(), ftc_snode_compare(), ftc_snode_weight(), G__G__Base2_253_0_6(), G__G__Base2_344_0_6(), G__G__Base2_53_0_42(), G__G__Cont_172_0_6(), G__G__Eve1_156_0_9(), G__G__Eve1_179_0_7(), G__G__Eve1_584_0_6(), G__G__GenVector_208_0_6(), G__G__GenVector_212_0_6(), G__G__GenVector_216_0_6(), G__G__GenVector_220_0_6(), G__G__GenVector_224_0_6(), G__G__GenVector_228_0_6(), G__G__MathCore_132_0_6(), G__G__MathCore_237_0_6(), G__G__MathFit_156_0_6(), G__G__Meta_173_0_6(), G__G__Proof_148_0_7(), G__G__ProofDraw_150_0_6(), G__G__ProofDraw_157_0_6(), G__G__RooFitCore2_128_0_10(), G__G__RooFitCore3_147_0_12(), G__G__RooFitCore3_257_0_11(), G__G__RooFitCore3_264_0_11(), G__G__RooFitCore3_271_0_11(), G__G__RooFitCore3_437_0_11(), G__G__RooFitCore3_538_0_7(), G__G__RooFitCore3_542_0_7(), G__G__RooFitCore3_837_0_7(), G__G__RooFitCore3_932_0_11(), gdk_colormap_alloc_colors_private(), gdk_colormap_alloc_colors_writeable(), gdk_colormap_change(), gdk_colormap_new(), gdk_draw_text_handler(), gdk_pixmap_foreign_new(), ROOT::TCollectionProxyInfo::Generate(), Reflex::CFTGenerator< T >::Generate(), ROOT::TCollectionProxyInfo::Get(), get_array(), get_current_url(), get_gif_saved_images(), get_struct(), RooStats::MarkovChain::GetAsSparseHist(), TClass::GetBaseClassOffsetRecurse(), XrdSutBuffer::GetBucket(), TXNetFile::GetBytesToPrefetch(), TMemStatManager::GetCodeInfo(), TGMatrixLayout::GetDefaultSize(), TGVerticalLayout::GetDefaultSize(), TGRowLayout::GetDefaultSize(), TGLVEntry::GetDefaultSize(), TGTabLayout::GetDefaultSize(), TGHorizontalLayout::GetDefaultSize(), TGXYLayout::GetDefaultSize(), TGTableLayout::GetDefaultSize(), TGColumnLayout::GetDefaultSize(), TSAM::GetDSetFiles(), TBranchSTL::GetEntry(), TXProofMgr::GetFile(), TFTP::GetFile(), TAlienCollection::GetFileCollection(), TAlienResult::GetFileInfoList(), TGLiteResult::GetFileInfoList(), TGHtml::GetFont(), TGFontDialog::GetFontName(), getGaussRnd(), TDataSetManager::GetGroupUsed(), XrdSecProtocolgsi::getKey(), TTreeFormulaManager::GetNdata(), TApplication::GetOptions(), TXNetSystem::GetPathInfo(), ROOT::Math::GoFTest::GetSigmaN(), TStreamerSTL::GetSize(), TFile::GetSize(), TWebFile::GetSize(), THnSparse::GetSparseFractionMem(), RooCmdArg::getString(), TPoints3DABC::GetXYZ(), TTable3Points::GetXYZ(), gl2psWriteBigEndian(), GRSThttpPrintf(), gtime(), gzseek(), TGTextView::HandleButton(), TProof::HandleInputMessage(), TApplicationServer::HandleSocketInput(), TProofServ::HandleSocketInput(), TGTextView::HandleTimer(), HaveExportedObjects(), importdir(), TFile::Init(), InnerEnumFontFamExProc(), TAutoInspector::Inspect(), integral_num(), ROOT::Math::IntegratorOneDim::IntegratorOneDim(), interpolate_asim_strip_gradients(), interpolate_green_diff(), ROOT::Math::Interpolator::Interpolator(), TSystemFile::IsDirectory(), TSystemDirectory::IsItDirectory(), TDocOutput::IsModified(), ROOT::Fit::DataRange::IsSet(), TGTableLayout::Layout(), TGHorizontalLayout::Layout(), TGColumnLayout::Layout(), TGRowLayout::Layout(), TGVerticalLayout::Layout(), Line_Up(), load_asim_strip(), Load_Glyph(), TFormLeafInfoMultiVarDimCollection::LoadSizes(), TFormLeafInfoMultiVarDimClones::LoadSizes(), TFormLeafInfoMultiVarDim::LoadSizes(), XrdClientAdmin::Locate(), RooCFunction1Map< VO, VI >::lookupArgName(), RooCFunction2Map< VO, VI1, VI2 >::lookupArgName(), RooCFunction3Map< VO, VI1, VI2, VI3 >::lookupArgName(), RooCFunction4Map< VO, VI1, VI2, VI3, VI4 >::lookupArgName(), main(), XrdFrmMonitor::Map(), XrdXrootdMonitor::Map(), RooNDKeysPdf::mirrorDataSet(), TMVA::DataSetFactory::MixEvents(), TDirectory::mkdir(), TDirectoryFile::mkdir(), mkdirIfNecessary(), mmalloc_check(), TDataSetManager::MonitorUsedSpace(), mrealloc_check(), mstress_inversion(), TStreamerInfo::New(), TStreamerInfo::NewArray(), TFile::OpenFromCache(), operator new(), TMemberStreamer::operator()(), ROOT::Minuit2::Numerical2PGradientCalculator::operator()(), TASImage::operator=(), TMVA::kNN::ModulekNN::Optimize(), TPolyLineShape::Paint3d(), TQtWidget::paintEvent(), TPolyLineShape::PaintX3DLine(), TPolyLineShape::PaintX3DMarker(), parse_charstrings(), parse_subrs(), RootCsg::partition_mesh(), pcf_get_accel(), pcf_get_bitmaps(), pcf_get_encodings(), pcf_get_metrics(), pcf_get_properties(), pcf_read_TOC(), pcre_compile2(), pcre_get_substring_list(), performance(), TSQLStructure::PerformConversion(), pfr_face_get_kerning(), pfr_face_init(), pfr_get_metrics(), pfr_log_font_load(), pfr_slot_load(), png_write_sBIT(), TStructViewer::Prepare(), TQueryResult::Print(), TXNetFile::Print(), XrdMonException::printItOnce(), TEveTrackProjected::PrintLineSegments(), TDataSetManager::PrintUsedSpace(), TApplicationServer::ProcessLine(), produceSqrtMat(), FTVector< const GLint *typedef const GLshort *typedef const GLubyte *typedef >::push_back(), TFTP::PutFile(), XrdProofdAdmin::PutFile(), PyStyleIndex(), R__GenerateTClassForPair(), read_pfb_tag(), TBufferSQL2::ReadFastArray(), TBufferXML::ReadFastArray(), TMVA::Configurable::ReadOptionsFromXML(), ReadRemote(), ReadRemoteImage(), TMVA::VariableGaussTransform::ReadTransformationFromStream(), ReadUtmp(), TUnixSystem::ReadUtmpFile(), TMVA::MethodKNN::ReadWeightsFromStream(), TFile::Recover(), TEveChunkManager::Refit(), TGShapedToolTip::Refresh(), TTreeFormula::RegisterDimensions(), TGLFontManager::RegisterFont(), TStorage::RemoveStat(), TGLUtil::RenderPoints(), XrdMonDecSink::reportLostPackets(), TGQt::RescaleWindow(), TGVSlider::Resize(), TGListBox::Resize(), TGIcon::Resize(), FTVector< const GLint *typedef const GLshort *typedef const GLubyte *typedef >::resize(), TGScrollBar::Resize(), TGFrame::Resize(), TGHSlider::Resize(), TGQt::ResizePixmap(), XrdOucAvahiBonjour::ResolveReply(), RootdFstat(), RootdGets(), RootdParallel(), RootdPutFile(), RootShowerAbout::RootShowerAbout(), RootShowerMsgBox::RootShowerMsgBox(), TEveLegoEventHandler::Rotate(), ROOT::RpdKrb5Auth(), ROOT::RpdProtocol(), rs701_BayesianCalculator(), TPolyLine3D::SavePrimitive(), ScaleFont(), TSpectrum::Search(), TApplicationRemote::SendFile(), TProof::SendFile(), TProof::SendGroupView(), XrdSutBuffer::Serialized(), RooStats::MCMCInterval::SetAxes(), TLinearFitter::SetBasisFunctions(), TStyle::SetCanvasBorderSize(), TPolyLineShape::SetConnection(), ROOT::Math::Interpolator::SetData(), TLinearFitter::SetFormula(), TStyle::SetFrameBorderSize(), TAttPad::SetFrameBorderSize(), TMVA::Factory::SetInputTreesFromEventAssignTrees(), TStyle::SetLegendBorderSize(), TTree::SetMaxVirtualSize(), TAttTextEditor::SetModel(), TPieEditor::SetModel(), TStyle::SetPadBorderSize(), ROOT::Math::GoFTest::SetParameters(), TGTableLayout::SetRowColResize(), TStyle::SetStatBorderSize(), TStyle::SetStatFontSize(), TGLAxisPainter::SetTextFormat(), TStyle::SetTitleBorderSize(), TStyle::SetTitleFontSize(), TStyle::SetTitleXSize(), TStyle::SetTitleYSize(), TGLPerspectiveCamera::Setup(), TTimeHists::SetupHist(), TQtWidget::showEvent(), TFile::ShrinkCacheFileDir(), TEvePointSetArray::Size(), TGeoTrack::Size(), TGLScene::SizeOfScene(), SliderWindow::SliderWindow(), TMemStat::SortCode(), RooNDKeysPdf::sortDataIndices(), ROOT::TSchemaRuleProcessor::SplitDeclaration(), ROOT::TSchemaRuleProcessor::SplitList(), TXProofMgr::Stat(), TGLLightSet::StdSetupLights(), TEveWindowSlot::StopEmbedding(), stressIterators(), TXNetFile::SynchronizeCacheSize(), T1_Get_Private_Dict(), T1_Load_Glyph(), T1_New_Parser(), T1_Size_Get_Globals_Funcs(), t42_parser_init(), TASImage::TASImage(), TEveBoxSet::Test(), utDataSetInfo::testMethods(), TestProgress::TestProgress(), TestSliders::TestSliders(), TFileSet::TFileSet(), TFitEditor::TFitEditor(), TGFileDialog::TGFileDialog(), TListAndSTL(), TObjStringLength(), TFileIter::TotalKeys(), TSpectrum2Transform::Transform(), TMVA::VariableGaussTransform::Transform(), TSeqCollectionInsert(), tt_face_load_any(), tt_loader_init(), tt_sbit_decoder_alloc_bitmap(), tt_size_done(), tt_size_init(), tt_size_request(), TGDockableFrame::UndockContainer(), TXNetSystem::Unlink(), TGFileBrowser::Update(), TTreeFormulaManager::UpdateFormulaLeaves(), TSessionQueryFrame::UpdateInfos(), XrdClient::UseCache(), visual2visual_prop(), WorldMap::WorldMap(), TStreamerInfo::WriteBufferAux(), TBufferSQL2::WriteFastArray(), TBufferFile::WriteFastArray(), TMVA::MethodKNN::WriteWeightsToStream(), xcf_skip_string(), XrdFfsMisc_get_current_url(), and XrdMonSndDummyXrootd::~XrdMonSndDummyXrootd().
Definition at line 1453 of file png.h.
Referenced by _bdf_readstream(), TQueryResultManager::AddLogFile(), af_glyph_hints_compute_inflections(), af_latin2_hints_compute_segments(), af_latin2_metrics_init_blues(), TGeoTrack::AnimateTrack(), TGeoManager::AnimateTracks(), arb8(), asim_spool_xml_tag(), TString::Atof(), TString::Atoi(), TString::Atoll(), box(), Build_Timing_Tree(), card8_threshold(), TGeoChecker::CheckGeometry(), TTabCom::Complete(), TGFont::ComputeTextLayout(), cone(), coneseg(), Convert_Glyph(), TTVLVEntry::ConvertAliases(), TPad::CopyBackgroundPixmaps(), ctub(), TDocParser::DecorateKeywords(), TTreeFormula::DefineAlternate(), TGText::DelText(), TEveTrackProjectedGL::DirectDraw(), do_arg(), TGeoVolumeEditor::DoRemoveNode(), TGLCamera::DrawDebugAids(), TGLUtil::DrawLine(), TGLUtil::DrawSimpleAxes(), eltu(), TTreeViewer::EmptyBrackets(), TMVA::DataSet::EventResult(), THtml::TFileDefinition::ExpandSearchPath(), fillRandomMat(), fillRandomSym(), fillRandomVec(), TRootContextMenu::FindHierarchy(), TGListTree::FindItemByPathname(), ROOT::Fit::FitOptionsMake(), ft_stroke_border_close(), FTC_SNode_New(), gdk_wchar_text_handle(), get_asimage_channel_rects(), TDSetElement::GetEntries(), TDSet::GetEntries(), THtml::TFileDefinition::GetFileName(), TWebFile::GetFromWeb(), TWebFile::GetFromWeb10(), TSystem::GetLibraries(), TWinNTSystem::GetLibraries(), TMVA::MethodBase::GetLine(), THtml::TModuleDefinition::GetModule(), TKey::GetTitle(), TGTextLine::GetWord(), pcrecpp::RE::GlobalReplace(), GRSTasn1GetX509Name(), GRSTx509ChainVomsAdd(), GRSTx509ParseVomsExt(), GRSTx509VerifyVomsSig(), gtra(), gzread(), TDocParser::HandleDirective(), TGTextEdit::HandleDoubleClick(), TProofServ::HandleSocketInput(), InsertEdgeInET(), TGSelectBox::InsertText(), TGeoChecker::LegoPlot(), TSystem::ListLibraries(), TEventIter::LoadDir(), PyROOT::Utility::MapOperatorName(), TPRegexp::MatchB(), Matchs(), mmalloc(), my_strtok(), TConvertClonesArrayToProxy::operator()(), TGeoTrack::PaintTrack(), TGLPlotCamera::Pan(), para(), pcon(), pgon(), TMVA::TransformationHandler::PlotVariables(), TEveTrackProjected::PrintLineSegments(), TSQLFile::ProduceClassSelectQuery(), psh_glyph_compute_inflections(), psh_glyph_interpolate_other_points(), TBtInnerNode::PushRight(), TBtLeafNode::PushRight(), TGeoChecker::RandomRays(), TNetFile::ReadBuffer(), TXNetFile::ReadBuffer(), TStreamerInfo::ReadBuffer(), TFile::ReadBuffer(), TProofMgrLite::ReadBuffer(), TXNetFile::ReadBufferAsync(), XrdProofdNetMgr::ReadBufferLocal(), TNetFile::ReadBuffers(), TRFIOFile::ReadBuffers(), TXNetFile::ReadBuffers(), TBufferFile::ReadClassEmulated(), TStreamerInfoActions::ReadSTL(), TString::Remove(), TGText::Replace(), TGeoVolume::ReplayCreation(), pcrecpp::RE::Rewrite(), XrdOucString::rfind(), TGLAxisPainter::RnrLines(), Run_Node_Tests(), TTreePlayer::Scan(), TClassTree::ScanClasses(), TGText::Search(), TGLLine3::Set(), TGeoVolumeEditor::SetModel(), TASImage::SetTitle(), TBufferFile::SkipObjectAny(), sort(), sphere(), store_data_in_block(), TString::Strip(), SWIG_MangledTypeQueryModule(), SWIG_TypeQueryModule(), TRootGuiBuilder::SwitchToolbarButton(), T1_Read_Metrics(), T1_Read_PFM(), TString::Tokenize(), torus(), trap(), trd1(), trd2(), ROOT::TSchemaRuleProcessor::Trim(), TSeqCollectionDelItem(), TSeqCollectionGetItem(), TSeqCollectionSetItem(), tt_sbit_decoder_load_image(), tube(), tubeseg(), VectorGetItem(), TGDMLParse::VolProcess(), ROOT::WriteAutoVariables(), and TFile::WriteFree().
int strategy |
Definition at line 1889 of file png.h.
Referenced by ClassImp(), DoUnBinFit(), ROOT::Minuit2::ParametricFunction::GetGradient(), gz_open(), ROOT::Minuit2::Minuit2Minimizer::Hesse(), ROOT::Minuit2::ModularFunctionMinimizer::Minimize(), ROOT::Minuit2::FumiliMinimizer::Minimize(), ROOT::Minuit2::Minuit2Minimizer::Minimize(), ROOT::Minuit2::VariableMetricBuilder::Minimum(), ROOT::Minuit2::FumiliBuilder::Minimum(), ROOT::Minuit2::CombinedMinimumBuilder::Minimum(), PT_H1FileCollection(), and PT_H1SimpleAsync().
Definition at line 2364 of file png.h.
Referenced by png_handle_tEXt(), png_handle_zTXt(), png_push_read_tEXt(), and png_push_read_zTXt().
Definition at line 2392 of file png.h.
Referenced by TGeoTranslation::Add(), TGLPShapeObjEditor::DoGeoButton(), TStructViewerGUI::DrawNode(), TEveGeoNode::DumpShapeTree(), glViewerLOD(), MyDetector::Init(), TVolumeView::Local2Master(), TVolumePosition::Local2Master(), TEveTrackProjected::MakeTrack(), TVolumePosition::Master2Local(), TEveCalo3DGL::RenderGrid(), TEveCalo3DGL::RenderGridBarrel(), TEveCalo3DGL::RenderGridEndCap(), TVector3::Rotate(), TGeoCombiTrans::SetTranslation(), TGeoTranslation::Subtract(), TGeoCombiTrans::TGeoCombiTrans(), TEveBoxProjected::UpdateProjection(), and TEveStraightLineSetProjected::UpdateProjection().
png_infop int transforms |
png_infop int transforms |
Definition at line 2289 of file png.h.
Referenced by __mmalloc_free(), TProofServ::AcceptResults(), TGFileBrowser::AddRemoteFile(), TMVA::DataSetInfo::AddTarget(), RooThresholdCategory::addThreshold(), ROOT::TTreeProxyGenerator::AnalyzeElement(), ROOT::TTreeProxyGenerator::AnalyzeOldBranch(), ROOT::TTreeProxyGenerator::AnalyzeOldLeaf(), ROOT::TTreeProxyGenerator::AnalyzeTree(), TFile::AsyncOpen(), TTreeFormula::BranchHasMethod(), TApplicationRemote::Broadcast(), TGuiBldMenuDialog::Build(), RooSimPdfBuilder::buildPdf(), TMVA::BinarySearchTree::CalcStatistics(), TMVA::MethodMLP::CalculateEstimator(), check_image_type(), TApplicationRemote::CheckFile(), checkXproofdAt(), checkXrootdAt(), ClassImp(), XrdProofdAdmin::CleanupSessions(), closeEnough(), TApplicationRemote::CollectInput(), RooAbsCategory::copyCache(), TStructViewer::CountMembers(), cplus_demangle_opname(), create_3Bumps(), create_lin_Nvar_categories(), create_schachbrett(), create_schachbrett_2D(), create_schachbrett_3D(), create_schachbrett_4D(), create_schachbrett_5D(), TMVA::TActivationChooser::CreateActivation(), TTreeSQL::CreateBranches(), TMVA::BinarySearchTree::CreateFromXML(), TMVA::DecisionTree::CreateFromXML(), RooAbsCategory::createFundamental(), TMVA::TNeuronInputChooser::CreateNeuronInput(), Tetris::CreateNewPiece(), TDocOutput::CreateTypeIndex(), DefaultErrorHandler(), demangle_function_name(), TTabCom::DetermineClass(), TRootContextMenu::Dialog(), TQCanvasMenu::Dialog(), XrdProofdManager::DoDirectiveDataSetSrc(), TEveTrackPropagatorSubEditor::DoFitPM(), XrdProofConn::DoHandShake(), XrdClientPhyConnection::DoHandShake(), TEveTrackPropagatorSubEditor::DoRnrPM(), TGeoTrack::Draw(), TGFont::DrawCharsExp(), drr_parse_ret_type(), TDataSetIter::Du(), efficiencies(), TGLFaceSet::EnforceTriangles(), ROOT::Fit::BinData::Error(), TApplicationServer::ErrorHandler(), XrdProofdAdmin::Exec(), RooSimWSTool::executeBuild(), TQSlot::ExecuteMethod(), fastDriver(), ROOT::Fit::FillData(), TProofPlayerRemote::Finalize(), find_includes(), TTreeFormula::FindLeafForExpression(), findName(), HFit::Fit(), flip_gradient(), format_asimage_list_entry_details(), G__ManualTree2_126_0_188(), G__ManualTree2_126_0_190(), gdk_arg_context_parse(), XrdMonSndDummyXrootd::generateHostName(), get_asfont(), TClass::GetCheckSum(), TGLClipSet::GetClipType(), TVirtualBranchBrowsable::GetCollectionContainedType(), ROOT::Fit::GetDataType(), TBranchElement::GetExpectedType(), TWinNTSystem::GetHostByName(), TUnixSystem::GetHostByName(), TProofResourcesStatic::GetInfoType(), TTreeFormula::GetLeafWithDatamember(), TLDAPAttribute::GetMod(), TProofNodeInfo::GetNodeType(), TFormLeafInfo::GetObjectAddress(), TGeoNodeMatrix::GetOptimalVoxels(), TGuiBldMenuDialog::GetParameters(), TRootDialog::GetParameters(), TMySQLServer::GetTableInfo(), TROOT::GetType(), TFile::GetType(), TWinNTSystem::GetVolumes(), gl2psSplitPrimitive(), gl2psTestSplitPrimitive(), GlobusAuthenticate(), glViewerLOD(), gobble(), gxv_mort_subtables_validate(), gxv_morx_subtables_validate(), handle_asxml_tag_text(), TProofServ::HandleCache(), TGDNDManager::HandleDNDEnter(), TXProofServ::HandleInput(), TProof::HandleInputMessage(), TProofServ::HandleLibIncPath(), TProof::HandleLibIncPath(), TGTextEntry::HandleSelectionRequest(), TGTextView::HandleSelectionRequest(), TApplicationServer::HandleSocketInput(), TProof::HandleSubmerger(), TBranchClones::Init(), RooSimultaneous::initialize(), XrdMonDecSink::initRT(), RooAbsTestStatistic::initSimMode(), InputType(), ROOT::Math::IntegratorMultiDim::IntegratorMultiDim(), ROOT::Math::IntegratorOneDim::IntegratorOneDim(), interpolate(), XrdProofdProtocol::Interrupt(), RooAbsCategory::isSignType(), TBaseClass::IsSTLContainer(), TReadEnvParser::KeyValue(), Krb5Authenticate(), LibMap(), ROOT::Fit::BinData::LogTransform(), TDSetElement::Lookup(), RooAbsCategory::lookupType(), main(), TTable::MakeExpression(), TMVA::RuleEnsemble::MakeLinearTerms(), TMVA::RuleFit::MakeVisHists(), matrixOperations(), mlpHiggs(), mrealloc(), TRootGuiBuilder::NewProject(), TArchiveFile::Open(), TFile::Open(), RooDataProjBinding::operator()(), Cint::G__MethodInfo::operator=(), RooAbsCategoryLValue::operator=(), Cint::G__MethodArgInfo::operator=(), ROOT::TBranchProxyClassDescriptor::OutputDecl(), TGeoTrack::Paint(), TGeoTrack::PaintCollect(), paracoor(), TEnvParser::Parse(), TArchiveFile::ParseUrl(), TTreeFormula::ParseWithLeaf(), pcf_read_TOC(), pfr_phy_font_load(), pingXproofdAt(), pingXrootdAt(), plot_efficiencies(), png_handle_pCAL(), TGHtml::PopStyleStack(), ppm2ASImage(), TimeReport::print(), RooAbsCategory::printMultiline(), XrdProofdManager::Process(), TApplicationServer::ProcessLine(), TXSocket::ProcessUnsolicitedMsg(), RooDataSet::read(), TMVA::VariableInfo::ReadFromXML(), TDataSetManager::ReadGroupConfig(), TMVA::VariableGaussTransform::ReadTransformationFromStream(), TFormLeafInfo::ReadValue(), TMVA::MethodTMlpANN::ReadWeightsFromStream(), TMVA::MethodTMlpANN::ReadWeightsFromXML(), TTreeFormula::RegisterDimensions(), regression_averagedevs(), RooSimultaneous::RooSimultaneous(), ROOT::RpdProtocol(), rulevis(), rulevisCorr(), rulevisHists(), TProof::SendDataSetStatus(), TProofServ::SendResults(), XrdSutBuffer::Serialized(), RooAbsCategoryLValue::setBin(), TTree::SetBranchAddress(), TGWin32::SetClassHints(), TGeoMatrix::SetDefaultName(), RooCategory::setIndex(), RooSuperCategory::setIndex(), RooCategory::setLabel(), RooSuperCategory::setLabel(), XrdProofdAdmin::SetROOTVersion(), RooSuperCategory::setType(), TVirtualBranchBrowsable::SetType(), TImageDump::SetType(), ROOT::TSchemaRuleProcessor::SplitDeclaration(), RooRealIntegral::sum(), SWIG_croak_null(), SWIG_TypePrettyName(), testFitters(), testGausFit(), testNormCross(), testUserFunc(), topDriver(), XrdProofdProtocol::TouchAdminPath(), TMVA::MethodTMlpANN::Train(), TH1::TransformHisto(), Cint::G__MethodArgInfo::Type(), TAlien::Type(), Cint::G__MethodInfo::Type(), TFormLeafInfo::Update(), RooGenCategory::updateIndexList(), XrdProofdProtocol::Urgent(), and XrdSutBuffer::XrdSutBuffer().
Definition at line 2408 of file png.h.
Referenced by TMVA::Factory::AddRegressionTarget(), TMVA::Factory::AddSpectator(), TMVA::DataSetInfo::AddSpectator(), TMVA::Factory::AddTarget(), TMVA::DataSetInfo::AddTarget(), TMVA::Factory::AddVariable(), TMVA::DataSetInfo::AddVariable(), create_visual_scratch_ximage(), create_visual_ximage(), do_ls_files_server(), TFileCollection::ExportInfo(), G__G__GenVector32_178_0_31(), G__G__GenVector32_179_0_31(), G__G__GenVector32_184_0_46(), G__G__GenVector32_185_0_46(), G__G__GenVector32_186_0_46(), G__G__GenVector32_187_0_46(), G__G__GenVector32_192_0_46(), G__G__GenVector32_193_0_46(), G__G__GenVector32_194_0_46(), G__G__GenVector32_195_0_46(), G__G__GenVector_102_0_31(), G__G__GenVector_106_0_31(), G__G__GenVector_142_0_46(), G__G__GenVector_146_0_46(), G__G__GenVector_150_0_46(), G__G__GenVector_154_0_46(), TEveCaloLegoGL::GetScaleForMatrix(), TMVA::Tools::GetXTitleWithUnit(), TMVA::Tools::GetYTitleWithUnit(), gxv_LookupTable_fmt2_validate(), gxv_LookupTable_fmt4_validate(), gxv_LookupTable_fmt6_validate(), RooNDKeysPdf::loadDataSet(), mstress_inversion(), mstress_matrix_fill(), mstress_mm_multiplications(), mstress_sym_mm_multiplications(), RooAbsReal::printMultiline(), RooRealVar::printMultiline(), RooAbsRealLValue::printMultiline(), TGPack::ResizeExistingFrames(), spstress_mm_multiplications(), stress_inversion(), stress_mm_multiplications(), stress_sym_mm_multiplications(), TDataSetManager::ToBytes(), utDataSet::utDataSet(), and xtruSamples().
png_infop png_charp png_int_32 png_int_32 int int png_charp units |
png_infop png_charp png_int_32 png_int_32 int int png_charp* units |
Definition at line 2289 of file png.h.
Referenced by gl2psRescaleAndOffset(), png_handle_pCAL(), and spstress_mm_multiplications().
png_voidp int int user_transform_channels |
Definition at line 2070 of file png.h.
Referenced by _bdf_parse_properties(), TMap::Add(), TMVA::kNN::Node< T >::Add(), add_map_element(), TMVA::MethodBase::AddInfoItem(), Reflex::EnumBuilderT< T >::AddItem(), TSqlRegistry::AddLongString(), Reflex::PropertyListImpl::AddProperty(), Reflex::TypedefBuilder< T >::AddProperty(), Reflex::PropertyList::AddProperty(), Reflex::FunctionBuilderT< F >::AddProperty(), Reflex::ClassBuilderImpl::AddProperty(), Reflex::EnumBuilderT< T >::AddProperty(), Reflex::VariableBuilderT< D >::AddProperty(), ROOT::Fit::HFitInterface::AdjustError(), RooAddModel::analyticalIntegralWN(), RooAddPdf::analyticalIntegralWN(), RooRealSumPdf::analyticalIntegralWN(), PiecewiseInterpolation::analyticalIntegralWN(), apply_tool_2D_colored(), apply_tool_point(), apply_tool_point_colored(), RooMinimizerFcn::BackProp(), TSelectorDraw::Begin(), ROOT::Math::KelvinFunctions::Bei(), ROOT::Math::KelvinFunctions::Ber(), TAlienMasterJobStatus::Browse(), TAlienJobStatus::Browse(), RooProdPdf::calculate(), TFumiliBinLikelihoodFCN::Calculate_element(), TFumiliChi2FCN::Calculate_element(), TMVA::MethodFDA::CalculateMulticlassValues(), TGeoChecker::CheckGeometryFull(), ClassImp(), TGDMLParse::ConProcess(), TSqlRegistry::ConvertSqlValues(), THnSparse::CreateSparse(), ctx_draw_line_solid_aa(), TEveCaloDataHist::DataChanged(), TSQLStructure::DefineObjectId(), TRootContextMenu::Dialog(), TEveManager::DoRedraw3D(), RooStats::MCMCIntervalPlot::DrawParameterVsTime(), EightBitSetColors(), PyROOT::Utility::ErrMsgCallback(), EscInit(), RooStats::ProfileLikelihoodTestStat::Evaluate(), RooParametricStepFunction::evaluate(), RooAddPdf::evaluate(), RooRealSumPdf::evaluate(), RooRealMPFE::evaluate(), RooAddModel::evaluate(), BinCountTestStat::Evaluate(), TQRootDialog::ExecuteMethod(), TLeafI::Export(), TLeafL::Export(), TLeafF::Export(), fill_hline_notile(), fill_hline_notile_colored(), ROOT::Fit::FillData(), FillHistograms(), RooFitResult::fillLegacyCorrMatrix(), fillSparse(), TMVA::kNN::Find(), fit2DHist(), fit3DHist(), fitSparse2D(), fitSparse3D(), FT_Stream_ReadFields(), func(), G__G__RooFitCore2_449_0_25(), gdk_arg_context_parse(), gdk_color_context_get_pixel(), TGridJDL::Generate(), TZIPFile::Get(), get_struct(), TTreeSQL::GetColumnIndice(), TGridJDL::GetDescription(), TTreeIndex::GetEntryNumberWithBestIndex(), TTreeIndex::GetEntryNumberWithIndex(), TDataSetManager::GetGroupQuota(), TSQLFile::GetLongString(), TH1::GetMaximum(), TH1::GetMaximumBin(), TH1::GetMinimum(), TH1::GetMinimumBin(), TFitter::GetParameter(), TProof::GetParameter(), TFitter::GetParError(), GetRomanIndex(), TTimeStamp::GetTimeSpec(), RooAbsCachedPdf::getVal(), TNeuron::GetValue(), TGridJDL::GetValue(), gl2psDrawImageMap(), globus_l_gfs_posix_recv(), GRSTgaclCredAddValue(), gxv_bsln_LookupFmt4_transit(), gxv_lcar_LookupFmt4_transit(), gxv_LookupTable_fmt0_validate(), gxv_LookupTable_fmt2_validate(), gxv_LookupTable_fmt4_validate(), gxv_LookupTable_fmt6_validate(), gxv_LookupTable_fmt8_validate(), gxv_mort_subtable_type4_lookupfmt4_transit(), gxv_morx_subtable_type1_LookupFmt4_transit(), gxv_opbd_LookupFmt4_transit(), gxv_prop_LookupFmt4_transit(), gxv_XClassTable_lookupfmt4_transit(), hue_scanlines(), XrdOucEnv::Import(), XrdClientEnv::ImportInt(), XrdClientEnv::ImportStr(), TPostScript::Initialize(), TSqlRegistry::InsertToNormalTable(), TSqlRegistry::InsertToNormalTableOracle(), internal_dfa_exec(), RooAbsCategory::isValid(), ROOT::Math::KelvinFunctions::Kei(), ROOT::Math::KelvinFunctions::Ker(), TWriteEnvParser::KeyValue(), TReadEnvParser::KeyValue(), LDAPExample(), TPython::LoadMacro(), TSQLStructure::LocateElementColumn(), ROOT::Math::KelvinFunctions::M(), make_Cell(), THnSparse::Multiply(), ROOT::Math::KelvinFunctions::N(), OneBitSetColors(), TFile::OpenFromCache(), XrdOucAvahiBonjour::XrdOucAvahiBonjourSearchNode::operator()(), SEnumFunctor< TMap >::operator()(), XrdOucAppleBonjour::XrdOucAppleBonjourSearchNode::operator()(), operator<<(), THistPainter::PaintText(), THistPainter::PaintTH2PolyText(), TEnvParser::Parse(), TUrl::ParseOptions(), ROOT::ParseRule(), TArchiveFile::ParseUrl(), pcf_get_properties(), TAlienMasterJobStatus::PercentFinished(), TSQLStructure::PerformConversion(), pfr_face_get_kerning(), ROOT::Math::KelvinFunctions::Phi(), png_combine_row(), png_do_expand(), png_do_expand_palette(), png_do_pack(), png_do_unshift(), png_do_write_interlace(), TAlienMasterJobStatus::Print(), TAlienJobStatus::PrintJob(), TLeafO::PrintValue(), TLeafL::PrintValue(), TLeafI::PrintValue(), TLeafF::PrintValue(), TLeafD::PrintValue(), TLeafC::PrintValue(), TLeafB::PrintValue(), TLeafS::PrintValue(), TEveSceneList::ProcessSceneChanges(), PyROOT::pt_getattro(), TMVA::GeneticRange::RandomDiscrete(), TMVA::Tools::ReadAttr(), TLeafF::ReadBasketExport(), TLeafL::ReadBasketExport(), TLeafI::ReadBasketExport(), TProofResourcesStatic::ReadConfigFile(), TSQLFile::ReadConfigurations(), RooRealVar::readFromStream(), RooErrorVar::readFromStream(), XrdProofGroupMgr::ReadPriorities(), RooStreamParser::readString(), TLeafB::ReadValue(), TLeafD::ReadValue(), TLeafS::ReadValue(), TLeafO::ReadValue(), TLeafI::ReadValue(), TLeafL::ReadValue(), TLeafF::ReadValue(), TBufferSQL2::ReadVersion(), XrdOucAvahiBonjour::ResolveReply(), TMVA::PDEFoam::RootPlot2dim(), saturate_scanlines(), RooRealMPFE::serverLoop(), RooAbsCategoryLValue::setConstant(), RooAbsRealLValue::setConstant(), TPad::SetGridx(), TPad::SetGridy(), RooCmdArg::setObject(), TProofResourcesStatic::SetOption(), TDocDirective::SetParameters(), TPad::SetTickx(), TPad::SetTicky(), TProofServ::SetupCommon(), TAlienJDL::SetValueByCmd(), ROOT::Minuit2::similarity(), TMemStat::SortStack(), TBufferSQL2::SqlReadArraySize(), TBufferSQL2::SqlWriteObject(), TSQLStructure::StoreElementInNormalForm(), TSQLStructure::StoreTString(), t1_decoder_parse_charstrings(), table(), testAdd3(), testAssign1D(), testAssignVar1D(), TestBigComment(), testBinDataData1D(), testBinDataData1DInt(), TBits::TestBitNumber(), testClone1D(), testCloneVar1D(), testCopyConstructor1D(), testCopyConstructorVar1D(), testDivide1(), testDivide2(), testDivideVar1(), testDivideVar2(), testIntegration(), testLabel(), testMerge1DDiff(), testMul1(), testMul2(), testMulF1D(), testMulF1D2(), testMulVar1(), testMulVar2(), testRefRead1D(), testSparseData1DFull(), testSparseData1DSparse(), testWriteRead1D(), testWriteReadVar1D(), TGX11::TGX11(), ROOT::Math::KelvinFunctions::Theta(), PyROOT::TRootObjectConverter::ToMemory(), PyROOT::TRootObjectPtrConverter::ToMemory(), RooAbsReal::traceEval(), RooAbsString::traceEval(), RooAbsCategory::traceEval(), TMVA::MethodLikelihood::Train(), TrueColorSetColors(), tt_face_get_kerning(), PyROOT::TTreeGetAttr(), TSQLStructure::UnpackTObject(), TSQLStructure::UnpackTString(), TXMLEngine::ValidateVersion(), value_scanlines(), TGWin32::~TGWin32(), and TGX11::~TGX11().
png_voidp png_error_ptr png_error_ptr warning_fn |
Definition at line 2209 of file png.h.
Referenced by png_handle_cHRM(), and png_set_sRGB_gAMA_and_cHRM().
Definition at line 2209 of file png.h.
Referenced by png_handle_cHRM(), and png_set_sRGB_gAMA_and_cHRM().
int window_bits |
png_voidp png_rw_ptr write_data_fn |
png_write_status_ptr write_row_fn |
png_user_transform_ptr write_user_transform_fn |
Definition at line 2289 of file png.h.
Referenced by png_handle_pCAL(), tgaxis4(), and timeonaxis2().
Definition at line 2289 of file png.h.
Referenced by hz_calc(), png_handle_pCAL(), tgaxis4(), and timeonaxis2().