text
stringlengths
14
100k
source
stringclasses
1 value
repo
stringclasses
810 values
language
stringclasses
13 values
<|fim_suffix|>server_handler_new() { return nullptr; } __attribute__((weak)) int aws_tls_client_handler_start_negotiation() { return 0; } __attribute__((weak)) void *aws_tls_handler_protocol() { return nullptr; } __attribute__((weak)) int aws_tls_is_alpn_available() { return 0; } } // extern "C" <|fim_prefix|>extern "...
fim
ClickHouse/ClickHouse
cpp
<|fim_suffix|> AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include <cstdint> #include <string> #include <vector> namespace bech32 { enum class Encoding { INVALID, BECH32, //! Bech32 encoding as def...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* Copyright (c) 2017, 2021 Pieter Wuille * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, mod...
fim
ClickHouse/ClickHouse
cpp
<|fim_suffix|> <windows.h> #endif typedef CARES_TYPEOF_ARES_SOCKLEN_T ares_socklen_t; typedef CARES_TYPEOF_ARES_SSIZE_T ares_ssize_t; #endif /* __CARES_BUILD_H */ <|fim_prefix|>#ifndef __CARES_BUILD_H #define __CARES_BUILD_H #define CARES_TYPEOF_ARES_SOCKLEN_T socklen_t #define CARES_TYPEOF_ARES_SSIZE_T ssize_t /*...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* Generated from ares_config.h.cmake */ /* Define if building universal (internal helper macro) */ #undef AC_APPLE_UNIVERSAL_BUILD /* define this if ares is built for a big endian system */ #undef ARES_BIG_ENDIAN /* when building as static part of libcurl */ #undef BUILDING_LIBCURL /* Defined for bui...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|> may be system specific * for C-Ares */ #define CARES_HAVE_SYS_TYPES_H #define CARES_HAVE_SYS_SOCKET_H /* #undef CARES_HAVE_WINDOWS_H */ /* #undef CARES_HAVE_WS2TCPIP_H */ /* #undef CARES_HAVE_WINSOCK2_H */ /* #undef CARES_HAVE_WINDOWS_H */ #define CARES_HAVE_ARPA_NAMESER_H #define CARES_HAVE_ARPA_NAMESE...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|> HAVE_SIG_ATOMIC_T /* Define to 1 if sig_atomic_t is already defined as volatile. */ /* #undef HAVE_SIG_ATOMIC_T_VOLATILE */ /* Define to 1 if your struct sockaddr_in6 has sin6_scope_id. */ #define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID /* Define to 1 if you have the socket function. */ #define HAVE_SOCKET /...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>T ares_socklen_t; typedef CARES_TYPEOF_ARES_SSIZE_T ares_ssize_t; #endif /* __CARES_BUILD_H */ <|fim_prefix|>#ifndef __CARES_BUILD_H #define __CARES_BUILD_H #define CARES_TYPEOF_ARES_SOCKLEN_T socklen_t #define CARES_TYPEOF_ARES_SSIZE_T ssize_t /* Prefix names with CARES_ to make sure they don't confli...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>om is void. */ #define RECVFROM_TYPE_ARG5_IS_VOID 0 /* Define to the type pointed by arg 6 for recvfrom. */ #define RECVFROM_TYPE_ARG6 socklen_t * /* Define to 1 if the type pointed by arg 6 for recvfrom is void. */ #define RECVFROM_TYPE_ARG6_IS_VOID 0 /* Define to the function return type for recvfrom...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/ares_build.h. Generated from ares_build.h.in by configure. */ #ifndef __CARES_BUILD_H #define __CARES_BUILD_H /* Copyright (C) 2009 - 2021 by Daniel Stenberg et al * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>4 int /* Define to the type pointed by arg 5 for recvfrom. */ #define RECVFROM_TYPE_ARG5 struct sockaddr /* Define to 1 if the type pointed by arg 5 for recvfrom is void. */ /* #undef RECVFROM_TYPE_ARG5_IS_VOID */ /* Define to the type pointed by arg 6 for recvfrom. */ #define RECVFROM_TYPE_ARG6 void ...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>4 bits of output. // This is intended to be a reasonably good hash function. inline uint64 Hash128to64(const uint128& x) { // Murmur-inspired hashing. const uint64 kMul = 0x9ddfea08eb382d69ULL; uint64 a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul; a ^= (a >> 47); uint64 b = (Uint128High64(x) ^...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>unction for a byte array. uint128 CityHashCrc128(const char *s, size_t len); // Hash function for a byte array. For convenience, a 128-bit seed is also // hashed into the result. uint128 CityHashCrc128WithSeed(const char *s, size_t len, uint128 seed); // Hash function for a byte array. Sets result[0] ...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>shLen16(Rotate(a - b, 43) + Rotate(c, 30) + d, a + Rotate(b ^ k3, 20) - c + len); } // Return a 16-byte hash for 48 bytes. Quick and dirty. // Callers do best to use "random-looking" values for a and b. static pair<uint64, uint64> WeakHashLen32WithSeeds( uint64 w, uint64 x, uint64...
fim
ClickHouse/ClickHouse
cpp
<|fim_prefix|>/* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.ac by autoheader. */ /* Define if building universal (internal helper macro) */ /* #undef AC_APPLE_UNIVERSAL_BUILD */ /* Define to 1 if the compiler supports __builtin_expect. */ #if _MSC_VER #define HA...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>#pragma once #include <stdint.h> #include <limits> #include <type_traits> inline uint16_t LO_16(uint32_t x) { return static_cast<uint16_t>(x & 0x0000FFFF); } inline uint16_t HI_16(uint32_t x) { return static_cast<uint16_t>(x >> 16); } inline uint32_t LO_32(uint64_t x) { return static_cast<uint32_t>(x &...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>#include "consistent_hashing.h" #include "bitops.h" #include "popcount.h" #include <stdexcept> /* * (all numbers are written in big-endian manner: the least significant digit on the right) * (only bit representations are used - no hex or octal, leading zeroes are omitted) * * Consistent hashing sc...
fim
ClickHouse/ClickHouse
cpp
<|fim_suffix|>t is faster than classic * consistent hashing algos with points on circle. */ std::size_t ConsistentHashing(std::uint64_t x, std::size_t n); // Works for n <= 32768 std::size_t ConsistentHashing(std::uint64_t lo, std::uint64_t hi, std::size_t n); // Works for n <= 2^31 <|fim_prefix|>#pragma once #inclu...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>#include "popcount.h" static const uint8_t PopCountLUT8Impl[1 << 8] = { #define B2(n) n, n + 1, n + 1, n + 2 #define B4(n) B2(n), B2(n + 1), B2(n + 1), B2(n + 2) #define B6(n) B4(n), B4(n + 1), B4(n + 1), B4(n + 2) B6(0), B6(1), B6(1), B6(2)}; uint8_t const* PopCountLUT8 = PopCountLUT8Impl; #if !de...
fim
ClickHouse/ClickHouse
cpp
#pragma once #include <stdint.h> #include <cstddef> #include <type_traits> using std::size_t; #include "bitops.h" #if defined(_MSC_VER) #include <intrin.h> #endif static inline uint32_t PopCountImpl(uint8_t n) { extern uint8_t const* PopCountLUT8; return PopCountLUT8[n]; } static inline uint32_t PopCountI...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>}, /* x^177152 mod p(x)` << 1, x^177216 mod p(x)` << 1 */ { 0x00000000003c0ea0, 0x0000000095c19b34 }, /* x^176128 mod p(x)` << 1, x^176192 mod p(x)` << 1 */ { 0x000000014d73abf6, 0x00000001a78496f2 }, /* x^175104 mod p(x)` << 1, x^175168 mod p(x)` << 1 */ { 0x00000001620eb844, 0x00000001ac5390...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|> size_t len) { assert(buffer); crc = crc32_vpmsum(crc, buffer, (unsigned long)len); return crc; } #ifdef __cplusplus } #endif #endif <|fim_prefix|>#ifndef VEC_CRC32 #define VEC_CRC32 #if ! ((defined(__PPC64__) || defined(__powerpc64__)) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) # er...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>// Copyright 2017 The CRC32C Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. See the AUTHORS file for names of contributors. #ifndef CRC32C_CRC32C_CONFIG_H_ #define CRC32C_CRC32C_CONFIG_H_ // Define to 1 if building fo...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>#define HAVE_MM_PREFETCH 0 // Define to 1 if targeting X86 and the compiler has the _mm_crc32_u{8,32,64} // intrinsics. #define HAVE_SSE42 0 // Define to 1 if targeting ARM and the compiler has the __crc32c{b,h,w,d} and // the vmull_p64 intrinsics. #define HAVE_ARM64_CRC32C 0 // Define to 1 if the syst...
fim
ClickHouse/ClickHouse
c
// Copyright 2017 The CRC32C Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. See the AUTHORS file for names of contributors. #ifndef CRC32C_CRC32C_CONFIG_H_ #define CRC32C_CRC32C_CONFIG_H_ // Define to 1 if building for a big-endian...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|> #define HAVE_SETJMP_H #define HAVE_STDINT_H #define HAVE_UNISTD_H #define HAVE_POLL_H #define HAVE_PTHREAD_H #define ENABLE_IPV6 #define USE_OPENSSL #define HAVE_THREADS_POSIX #define USE_ARES #define USE_RESOLV_ARES #ifdef __illumos__ #define HAVE_POSIX_STRERROR_R 1 #define HAVE_STRERROR_R 1 #endif <|...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.ac by autoheader. */ /* acconfig.h - autoheader configuration input */ /* * Copyright (c) 1998-2003 Carnegie Mellon University. All rights reserved. * * Redistribution and use in source and binary f...
fim
ClickHouse/ClickHouse
c
#ifndef JEMALLOC_PREAMBLE_H #define JEMALLOC_PREAMBLE_H #include "jemalloc_internal_defs.h" #include "jemalloc/internal/jemalloc_internal_decls.h" #if defined(JEMALLOC_UTRACE) || defined(JEMALLOC_UTRACE_LABEL) #include <sys/ktrace.h> # if defined(JEMALLOC_UTRACE) # define UTRACE_CALL(p, l) utrace(p, l) # else # ...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>#pragma once #ifdef __cplusplus extern "C" { #endif #if !defined(__clang__) #pragma GCC diagnostic push #pragma GCC d<|fim_suffix|>lang__) #pragma GCC diagnostic pop #endif #ifdef __cplusplus } #endif <|fim_middle|>iagnostic ignored "-Wredundant-decls" #endif #include <jemalloc/jemalloc_defs.h> #incl...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/jemalloc/jemalloc_defs.h. Generated from jemalloc_defs.h.in by configure. */ /* Defined if __attribute__((...)) syntax is supported. */ #define JEMALLOC_HAVE_ATTR /* Defined if alloc_size attribute is supported. */ #define JEMALLOC_HAVE_ATTR_ALLOC_SIZE /* Defined if format_arg(...) attribut...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>te__((s)) # define JEMALLOC_ALIGNED(s) JEMALLOC_ATTR(aligned(s)) # ifdef JEMALLOC_HAVE_ATTR_ALLOC_SIZE # define JEMALLOC_ALLOC_SIZE(s) JEMALLOC_ATTR(alloc_size(s)) # define JEMALLOC_ALLOC_SIZE2(s1, s2) JEMALLOC_ATTR(alloc_size(s1, s2)) # else # define JEMALLOC_ALLOC_SIZE(s) # define JEMALLO...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>// OSX does not have this for system alloc functions, so you will get // "exception specification in declaration" error. #if defined(__APPLE__) || defined(__FreeBSD__) || defined(USE_MUSL) # undef JEMALLOC_NOTHROW # define JEMALLOC_NOTHROW # undef JEMALLOC_SYS_NOTHROW # define JEMALLOC_SYS_NOTHROW # und...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>ALLOC_EXPORT void (*jet_malloc_message)(void *cbopaque, const char *s); JEMALLOC_EXPORT JEMALLOC_ALLOCATOR JEMALLOC_RESTRICT_RETURN void JEMALLOC_SYS_NOTHROW *jet_malloc(size_t size) JEMALLOC_CXX_THROW JEMALLOC_ATTR(malloc) JEMALLOC_ALLOC_SIZE(1); JEMALLOC_EXPORT JEMALLOC_ALLOCATOR JEMALLOC_...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* * Name mangling for public symbols is controlled by --with-mangling and * --with-jemalloc-prefix. With default set<|fim_suffix|>xallocx # define je_memalign memalign # define je_valloc valloc #endif <|fim_middle|>tings the je_ prefix is stripped by * these macro definitions. * * When JEMALLOC_P...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>y_t *destroy; extent_commit_t *commit; extent_decommit_t *decommit; extent_purge_t *purge_lazy; extent_purge_t *purge_forced; extent_split_t *split; extent_merge_t *merge; }; <|fim_prefix|>typedef struct extent_hooks_s extent_hooks_t; /* * void * * extent_alloc(extent_hooks_t *extent_hooks, ...
fim
ClickHouse/ClickHouse
c
/* include/autoconf.h. Generated from autoconf.h.in by configure. */ /* include/autoconf.h.in. Generated from configure.in by autoheader. */ #ifndef KRB5_AUTOCONF_H #define KRB5_AUTOCONF_H /* Define if AES-NI support is enabled */ /* #undef AESNI */ /* Define if socket can't be bound to 0.0.0.0 */ /* #undef BR...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>ce */ /* #undef POSIX_SETJMP */ /* Define if POSIX signal handling is used */ #define POSIX_SIGNALS 1 /* Define if POSIX signal handlers are used */ #define POSIX_SIGTYPE 1 /* Define if termios.h exists and tcsetattr exists */ #define POSIX_TERMIOS 1 /* Define to necessary symbol if this constant uses...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* * Copyright 1990,1991,2008 by the Massachusetts Institute of Technology. * All Rights Reserved. * * Export of this software from the United States of America may * require a specific license from the United States Government. * I...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>rofile.hin" #include "util/profile/prof_err.h" <|fim_prefix|>#include "util<|fim_middle|>/profile/p<|endoftext|>
fim
ClickHouse/ClickHouse
c
/* config.h. Generated from build/cmake/config.h.in by cmake configure */ #define __LIBARCHIVE_CONFIG_H_INCLUDED 1 /* * Ensure we have C99-style int64_t, etc, all defined. */ /* First, we need to know if the system has already defined them. */ #define HAVE_INT16_T #define HAVE_INT32_T #define HAVE_INT64_T #define ...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* config.h. Generated from build/cmake/config.h.in by cmake configure */ #define __LIBARCHIVE_CONFIG_H_INCLUDED 1 /* * Ensure we have C99-style int64_t, etc, all defined. */ /* First, we need to know if the system has already defined them. */ #define HAVE_INT16_T #define HAVE_INT32_T #define HAVE_IN...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>#if defined(__AVX512F__) || defined(__AVX512BW__) || defined(__AVX512VL__) # define LIBDIVIDE_AVX512 #elif defined(__AVX2__) # define LIBDIVIDE_AVX2 #elif defined(__SSE2__) # define LIBDIVIDE_SSE2 #elif def<|fim_suffix|>IBDIVIDE_NEON #endif <|fim_middle|>ined(__aarch64__) && defined(__ARM_NEON) #...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>// Copyright (c) 2014 Google, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, me...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>ared even after undefining macros. */ #define HAVE_RAW_DECL_TMPFILE 1 /* Define to 1 if ttyname_r is declared even after undefining macros. */ #define HAVE_RAW_DECL_TTYNAME_R 1 /* Define to 1 if unlink is declared even after undefining macros. */ #define HAVE_RAW_DECL_UNLINK 1 /* Define to 1 if unlinka...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>def METROHASH_METROHASH_H <|fim_prefix|>// metrohash.h // // Copyright 2015-2018 J. Andrew Rogers // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>// metrohash128.cpp // // Copyright 2015-2018 J. Andrew Rogers // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unl...
fim
ClickHouse/ClickHouse
cpp
<|fim_suffix|>nt8_t * key, uint64_t len, uint32_t seed, uint8_t * out); void metrohash128_2(const uint8_t * key, uint64_t len, uint32_t seed, uint8_t * out); // NOLINTEND(readability-avoid-const-params-in-decls) #endif // #ifndef METROHASH_METROHASH_128_H <|fim_prefix|>// metrohash128.h // // Copyright 2015-2018 J. A...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>// metrohash128crc.cpp // // Copyright 2015-2018 J. Andrew Rogers // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // ...
fim
ClickHouse/ClickHouse
cpp
<|fim_prefix|>// metrohash128crc.h // // Copyright 2015-2018 J. Andrew Rogers // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Un...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>// metrohash64.cpp // // Copyright 2015-2018 J. Andrew Rogers // // Licensed under the Apache License, Version 2.0 (the "License<|fim_suffix|>ngth) { const uint8_t * ptr = reinterpret_cast<const uint8_t*>(buffer); const uint8_t * const end = ptr + length; // input buffer may be partially fill...
fim
ClickHouse/ClickHouse
cpp
<|fim_suffix|>ors? static bool ImplementationVerified(); // test vectors -- Hash(test_string, seed=0) => test_seed_0 static const char * test_string; static const uint8_t test_seed_0[8]; static const uint8_t test_seed_1[8]; private: static const uint64_t k0 = 0xD6D018F5; static const uint6...
fim
ClickHouse/ClickHouse
c
// platform.h // // Copyright 2015-2018 J. Andrew Rogers // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by appl...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>e governing permissions and // limitations under the License. #ifndef METROHASH_TESTVECTOR_H #define METROHASH_TESTVECTOR_H #include "metrohash.h" typedef void (*HashFunction) (const uint8_t * key, uint64_t len, uint32_t seed, uint8_t * hash); struct TestVectorData { HashFunction function; uint32_...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>#if __has_include(<rdkafka.h>) // maybe bundled # includ<|fim_suffix|>se // system # include_next <librdkafka/rdkafka.h> #endif <|fim_middle|>e_next <rdkafka.h> #el<|endoftext|>
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>e to 1 if you have OpenSSL with Ed25519 support */ #define HAVE_OPENSSL_ED25519 1 /* Define to 1 if you have OpenSSL with X25519 support */ #define HAVE_OPENSSL_X25519 1 /*************************** FUNCTIONS ***************************/ /* Define to 1 if you have the `EVP_aes128_ctr' function. */ #def...
fim
ClickHouse/ClickHouse
c
/* Name of package */ #define PACKAGE "libssh" /* Version number of package */ #define VERSION "0.9.7" #define SYSCONFDIR "etc" #define BINARYDIR "/home/ubuntu/workdir/ClickHouse/build/freebsd" #define SOURCEDIR "/home/ubuntu/workdir/ClickHouse" /* Global bind configuration file path */ #define GLOBAL_BIND_CONFIG "/...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* Name of package */ #define PACKAGE "libssh" /* Version number of package */ #define VERSION "0.9.7" #define SYSCONFDIR "etc" #define BINARYDIR "/home/ubuntu/workdir/ClickHouse/build/aarch64" #define SOURCEDIR "/home/ubuntu/workdir/ClickHouse" /* Global bind configuration file path */ #define GLOBAL_...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>519 1 /*************************** FUNCTIONS ***************************/ /* Define to 1 if you have the `EVP_aes128_ctr' function. */ #define HAVE_OPENSSL_EVP_AES_CTR 1 /* Define to 1 if you have the `EVP_aes128_cbc' function. */ #define HAVE_OPENSSL_EVP_AES_CBC 1 /* Define to 1 if you have the `EVP_...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* Name of package */ #define PACKAGE "libssh" /* Version number of package */ #define VERSION "0.9.7" #define SYSCONFDIR "etc" #define BINARYDIR "/home/ubuntu/workdir/ClickHouse/build/loongarch64" #define SOURCEDIR "/home/ubuntu/workdir/ClickHouse" /* Global bind configuration file path */ #define GLO...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* Name of package */ #define PACKAGE "libssh" /* Version number of package */ #define VERSION "0.9.7" #define SYSCONFDIR "etc" #define BINARYDIR "/home/ubuntu/workdir/ClickHouse/build/ppc64le" #define SOURCEDIR "/home/ubuntu/workdir/ClickHouse" /* Global bind configuration file path */ #define GLOBAL_...
fim
ClickHouse/ClickHouse
c
/* Name of package */ #define PACKAGE "libssh" /* Version number of package */ #define VERSION "0.9.7" #define SYSCONFDIR "etc" #define BINARYDIR "/home/ubuntu/workdir/ClickHouse/build/riscv64" #define SOURCEDIR "/home/ubuntu/workdir/ClickHouse" /* Global bind configuration file path */ #define GLOBAL_BIND_CONFIG "/...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|> /* Define to 1 if you have the `SecureZeroMemory' function. */ /* #undef HAVE_SECURE_ZERO_MEMORY */ /* Define to 1 if you have the `cmocka_set_test_filter' function. */ /* #undef HAVE_CMOCKA_SET_TEST_FILTER */ /*************************** LIBRARIES ***************************/ /* Define to 1 if you h...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* Name of package */ #define PACKAGE "libssh" /* Version number of package */ #define VERSION "0.9.7" #define SYSCONFDIR "etc" #define BINARYDIR "/home/ubuntu/workdir/ClickHouse/build/Debug" #define SOURCEDIR "/home/ubuntu/workdir/ClickHouse" /* Global bind configuration file path */ #define GLOBAL_BI...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>e the <wspiapi.h> header file. */ /* #undef HAVE_WSPIAPI_H */ /* Define to 1 if you have the <openssl/blowfish.h> header file. */ /* #undef HAVE_OPENSSL_BLOWFISH_H */ /* Define to 1 if you have the <openssl/des.h> header file. */ #define HAVE_OPENSSL_DES_H 1 /* Define to 1 if you have the <openssl/ecdh...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>ace(void ** buffer, int size) { return unw_backtrace(buffer, size); } #endif <|fim_prefix|>#include <libunwind.h> <|fim_middle|>/// On MacOS this function will be replaced with a dynamic symbol /// from the system library. #if !defined(OS_DARWIN) int backtr<|endoftext|>
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if you have the declaration of `getentropy', and to 0 if you don't. */ #define HAVE_DECL_GETENTROPY 0 /* Define to 1 if you have the declaration of `glob', and to ...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/** * @file * * @brief compile-time version information * * compile-time version information for the XML library * * @copyright See Copyright for the status of this software. * * @author Daniel Veillard */ #ifndef __XML_VERSION_H__ #define __XML_VERSION_H__ /** * the version string like "1.2....
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>------ #endif // _MURMURHASH2_H_ <|fim_prefix|>//----------------------------------------------------------------------------- // MurmurHash2 was written by Austin Appleby, and is placed in the public // domain. The author hereby disclaims copyright to this source code. #ifndef MURMURHASH2_H #define MU...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>//----------------------------------------------------------------------------- // MurmurHash3 was written by Austin Appleby, and is placed in the public // domain. The author hereby disclaims copyright to this source code. #ifndef MURMURHASH3_H #define MURMURHASH3_H #include <stddef.h> //-------------...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>//----------------------------------------------------------------------------- // MurmurHash2 was written by Austin Appleby, and is placed in the public // domain. The author hereby disclaims copyright to this source code. // Note - This code makes a few assumptions about how your machine behaves - // ...
fim
ClickHouse/ClickHouse
cpp
<|fim_prefix|>//----------------------------------------------------------------------------- // MurmurHash3 was written by Austin Appleby, and is placed in the public // domain. The author hereby disclaims copyright to this source code. // Note - The x86 and x64 versions do _not_ produce the same results, as the // a...
fim
ClickHouse/ClickHouse
cpp
<|fim_suffix|>* Version number of package */ #define VERSION "2.1" /* Number of bits in a file offset, on hosts where this is settable. */ /* #undef _FILE_OFFSET_BITS */ /* Define to 1 on platforms where this makes off_t a 64-bit type. */ /* #undef _LARGE_FILES */ /* Number of bits in time_t, on hosts where this is ...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/lber_types.h. Generated from lber_types.hin by configu<|fim_suffix|>permitted only as authorized by the OpenLDAP * Public License. * * A copy of this license is available in file LICENSE in the * top-level directory of the distribution or, alternatively, at * <http://www.OpenLDAP.org/licen...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>_tmpdir #elif defined( _PATH_TMPDIR ) # define LDAP_TMPDIR _PATH_TMPDIR #else # define LDAP_TMPDIR LDAP_DIRSEP "tmp" #endif /* directories */ #ifndef LDAP_BINDIR #define LDAP_BINDIR "/tmp/ldap-prefix/bin" #endif #ifndef LDAP_SBINDIR #define LDAP_SBINDIR "/tmp/ldap-prefix/sbin" #endif #ifndef...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/ldap_features.h. Generated from ldap_features.hin by configure. */ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or w...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>Define to 1 if you have the `strerror' function. */ #define HAVE_STRERROR 1 /* Define to 1 if you have the `strerror_r' function. */ #define HAVE_STRERROR_R 1 /* Define to 1 if you have the `strftime' function. */ #define HAVE_STRFTIME 1 /* Define to 1 if you have the <strings.h> header file. */ #defin...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>) */ #define LBER_TAG_T long /* LBER socket descriptor */ #define LBER_SOCKET_T int /* LBER lengths (32 bits or larger) */ #define LBER_LEN_T long /* ------------------------------------------------------------ */ /* booleans, enumerations, and integers */ typedef LBER_INT_T ber_int_t; /* signed and ...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>_H #define _LDAP_CONFIG_H /* directory separator */ #ifndef LDAP_DIRSEP #ifndef _WIN32 #define LDAP_DIRSEP "/" #else #define LDAP_DIRSEP "\\" #endif #endif /* directory for temporary files */ #if defined(_WIN32) # define LDAP_TMPDIR "C:\\." /* we don't have much of a choice */ #elif defined( _P_tmpdir )...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>p_r available or not */ #define LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE 1 /* LDAP v2 Referrals */ /* #undef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */ #endif /* LDAP_FEATURES */ <|fim_prefix|>/* include/ldap_features.h. Generated from ldap_features.hin by configure. */ /* $OpenLDAP$ */ /* This work is ...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/portable.h. Generated from portable.hin by configure. */ /* include/portable.hin. Generated from configure.in by autoheader. */ /* begin of portable.h.pre */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation * All rights r...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>-------------------------------------- */ /* booleans, enumerations, and integers */ typedef LBER_INT_T ber_int_t; /* signed and unsigned versions */ typedef signed LBER_INT_T ber_sint_t; typedef unsigned LBER_INT_T ber_uint_t; /* tags */ typedef unsigned LBER_TAG_T ber_tag_t; /* "socket" descriptors ...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/ldap_config.h. Generated from ldap_config.hin by configure. */ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software <http://ww<|fim_suffix|>) # define LDAP_TMPDIR _PATH_TMPDIR #else # define LDAP_TMPDIR LDAP_DIRSEP "tmp" #endif /* directories */ #ifndef LDAP_BINDIR #define LDAP_BINDIR ...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>rrect. ** */ /* is -lldap_r available or not */ #define LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE 1 /* LDAP v2 Referrals */ /* #undef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */ #endif /* LDAP_FEATURES */ <|fim_prefix|>/* include/ldap_features.h. Generated from ldap_features.hin by configure. */ /* $Open...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>have the <utime.h> header file. */ #define HAVE_UTIME_H 1 /* define if you have uuid_generate() */ /* #undef HAVE_UUID_GENERATE */ /* define if you have uuid_to_str() */ /* #undef HAVE_UUID_TO_STR */ /* Define to 1 if you have the <uuid/uuid.h> header file. */ /* #undef HAVE_UUID_UUID_H */ /* Define t...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>is available in file LICENSE in the * top-level directory of the distribution or, alternatively, at * <http://www.OpenLDAP.org/license.html>. */ /* * LBER types */ #ifndef _LBER_TYPES_H #define _LBER_TYPES_H #include <ldap_cdefs.h> LDAP_BEGIN_DECL /* LBER boolean, enum, integers (32 bits or larg...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/ldap_config.h. Generated from ldap_config.hin by configure. */ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or witho...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/*<|fim_suffix|>nary forms, with or without * modification, are permitted only as authorized by the OpenLDAP * Public License. * * A copy of this license is available in file LICENSE in the * top-level directory of the distribution or, alternatively, at * <http://www.OpenLDAP.org/license.html>. */ ...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/portable.h. Generated from portable.hin by configure. */ /* include/portable.hin. Generated from configure.in by autoheader. */ /* begin of portable.h.pre */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation * All rights r...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/lber_types.h. Generated from lber_types.hin by configure. */ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 <|fim_suffix|>penLDAP.org/license.html>. */ /* * LBER types */ #ifndef _LBER_TYPES_H #define _LBER_TYPES_H #include...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>ch of a choice */ #elif defined( _P_tmpdir ) # define LDAP_TMPDIR _P_tmpdir #elif defined( P_tmpdir ) # define LDAP_TMPDIR P_tmpdir #elif defined( _PATH_TMPDIR ) # define LDAP_TMPDIR _PATH_TMPDIR #else # define LDAP_TMPDIR LDAP_DIRSEP "tmp" #endif /* directories */ #ifndef LDAP_BINDIR #define LDAP_BINDIR...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/ldap_features.h. Generated from ldap_features.hin by configure. */ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or w...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/portable.h. Generated from portable.hin by configure. */ /* include/portable.hin. Generated from configure.in by autoheader. */ /* begin of portable.h.pre */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation * All rights r...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/lber_types.h. Generated from lber_types.hin by configure. */ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>_P_tmpdir ) # define LDAP_TMPDIR _P_tmpdir #elif defined( P_tmpdir ) # define LDAP_TMPDIR P_tmpdir #elif defined( _PATH_TMPDIR ) # define LDAP_TMPDIR _PATH_TMPDIR #else # define LDAP_TMPDIR LDAP_DIRSEP "tmp" #endif /* directories */ #ifndef LDAP_BINDIR #define LDAP_BINDIR "/tmp/ldap-prefix/bin" #e...
fim
ClickHouse/ClickHouse
c
/* include/ldap_features.h. Generated from ldap_features.hin by configure. */ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modi...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/portable.h. Generated from portable.hin by configure. */ /* include/portable.hin. Generated from configure.in by autoheader. */ /* begin of portable.h.pre */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation * All rights r...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/lber_types.h. Generated from lber_types.hin by configure. */ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation. * All rights reserved. * * Redistri<|fim_suffix|>------------------ */ /* booleans, enumerat...
fim
ClickHouse/ClickHouse
c
<|fim_suffix|>"/tmp/ldap-prefix/bin" #endif #ifndef LDAP_SBINDIR #define LDAP_SBINDIR "/tmp/ldap-prefix/sbin" #endif #ifndef LDAP_DATADIR #define LDAP_DATADIR "/tmp/ldap-prefix/share/openldap" #endif #ifndef LDAP_SYSCONFDIR #define LDAP_SYSCONFDIR "/tmp/ldap-prefix/etc/openldap" #endif #ifndef LDAP_LIBEX...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/ldap_features.h. Generated from ldap_features.hin by configure. */ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or w...
fim
ClickHouse/ClickHouse
c
<|fim_prefix|>/* include/portable.h. Generated from portable.hin by configure. */ /* include/portable.hin. Generated from configure.in by autoheader. */ /* begin of portable.h.pre */ /* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 1998-2020 The OpenLDAP Foundation * All rights r...
fim
ClickHouse/ClickHouse
c