Result for 0CBD504F25BEFF7A42DED8260F2614FA3F2F9A9C

Query result

Key Value
FileName./usr/share/doc/libboost1.67-tools-dev/changelog.Debian.gz
FileSize25747
MD58508357BEB8B2B69DE12428427ED9F86
SHA-10CBD504F25BEFF7A42DED8260F2614FA3F2F9A9C
SHA-2565ED18304C55336E116D6557B1023C98EAAFD9D4A593CC8B773F8572B77F567EF
SSDEEP768:2NfzH2IXQOZLYOyJfW3fy6LDsoJtKS0cb:2NLWIAIX2Uy2NKS0cb
TLSHT1E1C2E1001C6C9EF1AD88039A741E19FFA5230ADCAD53A29578712AB5433BD9FDD71E14
hashlookup:parent-total649
hashlookup:trust100

Network graph view

Parents (Total: 649)

The searched file hash is included in 649 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
FileSize225136
MD56E0FFFB130DF2E0452CE0948D0AE367D
PackageDescriptionatomic data types, operations, and memory ordering constraints This package forms part of the Boost C++ Libraries collection. . Boost.Atomic is a library that provides atomic data types and operations on these data types, as well as memory ordering constraints required for coordinating multiple threads through atomic variables. It implements the interface as defined by the C++11 standard, but makes this feature available for platforms lacking system/compiler support for this particular C++11 feature. . Users of this library should already be familiar with concurrency in general, as well as elementary concepts such as "mutual exclusion". . The implementation makes use of processor-specific instructions where possible (via inline assembler, platform libraries or compiler intrinsics), and falls back to "emulating" atomic operations through locking.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-atomic1.67-dev
PackageSectionlibdevel
PackageVersion1.67.0-13+deb10u1~bpo9+1
SHA-1008678BBEBA2CDB2B03477290A4241C46991E5F9
SHA-256B45D0E76C51B02AFB077709D40D61C16798F390BC6D9BB72A47B96B92908B817
Key Value
FileSize238726
MD52C3310C4A70C25BC72BF4AE581D844B5
PackageDescriptionC++ runtime polymorphism based on concepts This package forms part of the Boost C++ Libraries collection. . C++ has two distinct kinds of polymorphism, virtual functions and templates, each of which has its own advantages and disadvantages. The Boost.TypeErasure library combines the superior abstraction capabilities of templates, with the runtime flexibility of virtual functions.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-type-erasure1.67-dev
PackageSectionlibdevel
PackageVersion1.67.0-13+deb10u1~bpo9+1
SHA-100C74F3092164FA550DE2124635D62E6E7B436D3
SHA-2566CB542E500AAB5CF503A241E4EB93A1DF44E90F5065124080A7E9B44A0DC7247
Key Value
FileSize1110326
MD52C156B09B18A8F7197B385209086686F
PackageDescriptionBoost.Math Library development files This package forms part of the Boost C++ Libraries collection. . This library is divided into three interconnected parts: * Statistical Distributions: Provides a reasonably comprehensive set of statistical distributions, upon which higher level statistical tests can be built. * Mathematical Special Functions: Provides a small number of high quality special functions, initially these were concentrated on functions used in statistical applications along with those in the Technical Report on C++ Library Extensions. * Implementation Toolkit: Provides many of the tools required to implement mathematical special functions.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-math1.67-dev
PackageSectionlibdevel
PackageVersion1.67.0-13+deb10u1~bpo9+1
SHA-10146AB03552EBED834616E3573F3113B35A73714
SHA-256EBCAEBEEF4E4E8791BBF603B5DA7CABC394867CADA00EF5BA84285FC6F86868C
Key Value
FileSize231616
MD56C1DBD5FDBE908BD398EA50EA5D7DA2F
PackageDescriptionOperating system (e.g. diagnostics support) library This package forms part of the Boost C++ Libraries collection. . The Boost System library provides simple, light-weight error_code objects that encapsulate system-specific error code values, yet also provide access to more abstract and portable error conditions via error_condition objects. Because error_code objects can represent errors from sources other than the operating system, including user-defined sources, each error_code and error_condition has an associated error_category.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-system1.67-dev
PackageSectionlibdevel
PackageVersion1.67.0-13+deb10u1~bpo9+1
SHA-1017003556E13FE7825ED750FACDE01C767E0EBED
SHA-2560D5ADFF2A11D07FB14526116BA89A38D4247F4BF08BD41FFF0B8975C39E8DC7C
Key Value
FileSize282784
MD518472FF08104285A36A0C28DC92507B2
PackageDescriptiongeneric graph components and algorithms in C++ This package forms part of the Boost C++ Libraries collection. . The Parallel Boost Graph Library is an extension to the Boost Graph Library (BGL) for parallel and distributed computing. It offers distributed graphs and graph algorithms to exploit coarse-grained parallelism along with parallel algorithms that exploit fine-grained parallelism, while retaining the same interfaces as the (sequential) BGL. Code written using the sequential BGL should be easy to parallelize with the parallel BGL.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-graph-parallel1.67-dev
PackageSectionlibdevel
PackageVersion1.67.0-13+deb10u1~bpo9+1
SHA-101A68A099F77C8724B66A9BF73C0DCA499CDB1CC
SHA-256E5606018F80BE8A575691D84C6071DFB4BA8AFFEE176D0ADBC0CBD67DCBF094D
Key Value
FileSize342304
MD51F339F49BAA39174DC1931FF630B5D62
PackageDescriptioncooperatively-scheduled micro-/userland-threads This package forms part of the Boost C++ Libraries collection. . Boost.Fiber provides a framework for micro-/userland-threads (fibers) scheduled cooperatively. The API contains classes and functions to manage and synchronize fibers similarly to standard thread support library. . Each fiber has its own stack. . A fiber can save the current execution state, including all registers and CPU flags, the instruction pointer, and the stack pointer and later restore this state. The idea is to have multiple execution paths running on a single thread using cooperative scheduling (versus threads, which are preemptively scheduled). The running fiber decides explicitly when it should yield to allow another fiber to run (context switching). Boost.Fiber internally uses execution_context from Boost.Context; the classes in this library manage, schedule and, when needed, synchronize those execution contexts. A context switch between threads usually costs thousands of CPU cycles on x86, compared to a fiber switch with less than a hundred cycles. A fiber runs on a single thread at any point in time.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-fiber1.67-dev
PackageSectionlibdevel
PackageVersion1.67.0-13+deb10u1~bpo9+1
SHA-101B1647C4AF4729C61324E9E351B359D5F7B784A
SHA-2567A0EC9B7FB6F6C097A608E25EA85714F7D41E2F4C2CD403C3D2B3BE04DDFA5FB
Key Value
FileSize224216
MD5270FA30B954AB32FB4F87DE27C66BD16
PackageDescriptionBoost C++ Libraries development files (ALL) The Boost web site provides free, peer-reviewed, portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. One goal is to establish "existing practice" and provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's upcoming C++ Standard Library Technical Report. . This metapackage provides the complete Boost development environment, including all separately-packaged libraries.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost1.67-all-dev
PackageSectionlibdevel
PackageVersion1.67.0-13+deb10u1~bpo9+1
SHA-101B2C10D4C41EE9593411A34B8252476EC9A916D
SHA-2560C06C16C4E619172FF44A7B723FEC805AACEBB9484CCF694DEE5D96224A65ED2
Key Value
FileSize232076
MD5FA41B9FD838101AC6C147403D5F7AB7C
PackageDescriptionBoost Random Number Library This package forms part of the Boost C++ Libraries collection. . The Boost Random Number Library (Boost.Random for short) provides a variety of generators and distributions to produce random numbers having useful properties, such as uniform distribution.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-random1.67.0
PackageSectionlibs
PackageVersion1.67.0-13+deb10u1~bpo9+1
SHA-1023D5066B6F1A3B1E1DE2CF8909B038589F89FED
SHA-256350C269E26B10B3BF9346FDE506B1A36DE0A30000E3EE605ED943E77F636E541
Key Value
FileSize525320
MD59EB5D78641F1BC57B4BC5D6FE6EE484D
PackageDescriptionregular expression library for C++ This package forms part of the Boost C++ Libraries collection. . Regular expressions are a form of pattern-matching that are often used in text processing; many users will be familiar with the Unix utilities grep, sed and awk, and the programming language perl, each of which make extensive use of regular expressions. Traditionally C++ users have been limited to the POSIX C APIs for manipulating regular expressions, and while regex does provide these APIs, they do not represent the best way to use the library. For example regex can cope with wide character strings, or search and replace operations (in a manner analogous to either sed or perl), something that traditional C libraries can not do.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-regex1.67-dev
PackageSectionlibdevel
PackageVersion1.67.0-13+deb10u1~bpo9+1
SHA-102443657AD8AD7657C35E57F4BCB00609ABE6621
SHA-2566F354761EFD103E1A54DF49704D5ED1FAD884B7AF0E33F2F3704A0FAD400AF16
Key Value
FileSize418192
MD5F2DB475FA26DF29A8FEF998B3232D4C1
PackageDescriptionC99/C++ preprocessor library This package forms part of the Boost C++ Libraries collection. . The Wave C++ preprocessor library is a Standards conformant implementation of the mandated C99/C++ preprocessor functionality packed behind a simple to use interface, which integrates well with the well known idioms of the Standard Template Library (STL).
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-wave1.67.0
PackageSectionlibs
PackageVersion1.67.0-13+deb10u1~bpo9+1
SHA-102EE3CA97B41809DCF34E32F51715764D382E26C
SHA-25630DE101A40710B24A6B31C1B62EBE219D6B0D1518C6AF9A5146AC959AB06B2DB