\chapter{Auxiliary Libraries} The Yosys source distribution contains some auxiliary libraries that are bundled with Yosys. \section{SHA1} The files in {\tt libs/sha1/} provide a public domain SHA1 implementation written by Steve Reid, Bruce Guenter, and Volker Grabsch. It is used for generating unique names when specializing parameterized modules. \section{BigInt} The files in {\tt libs/bigint/} provide a library for performing arithmetic with arbitrary length integers. It is written by Matt McCutchen \citeweblink{bigint}. The BigInt library is used for evaluating constant expressions, e.g.~using the {\tt ConstEval} class provided in {\tt kernel/consteval.h}. \section{SubCircuit} \label{sec:SubCircuit} The files in {\tt libs/subcircuit} provide a library for solving the subcircuit isomorphism problem. It is written by Clifford Wolf and based on the Ullmann Subgraph Isomorphism Algorithm \cite{UllmannSubgraphIsomorphism}. It is used by the {\tt extract} pass (see {\tt help extract} or Sec.~\ref{cmd:extract}). \section{ezSAT} The files in {\tt libs/ezsat} provide a library for simplifying generating CNF formulas for SAT solvers. It also contains bindings of MiniSAT. The ezSAT library is written by Clifford Wolf. It is used by the {\tt sat} pass (see {\tt help sat} or Sec.~\ref{cmd:sat}). '>staging-4.3 xenJames
aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/string.h
blob: f26b9949b207793013c762df6fa3c6e62bd538e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97