P4C
The P4 Compiler
Toggle main menu visibility
Main Page
P4C Repository Organization
Getting Started
P4C Intermediate Representation (IR)
Frontend
Midend
Backends
Behavioral Model Backend
DPDK Backend
eBPF Backend
TC Backend
uBPF Backend
P4test Backend
Graphs Backend
p4fmt (P4 Formatter)
P4Tools
P4Smith
P4Testgen
Contribute to the P4 Compiler Project
Releases
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
w
x
z
Functions
a
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
w
x
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Typedefs
Enumerations
Enumerator
Related Symbols
•
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Modules
Pages
Loading...
Searching...
No Matches
wordlist.h
1
#ifndef BACKENDS_P4TOOLS_MODULES_SMITH_UTIL_WORDLIST_H_
2
#define BACKENDS_P4TOOLS_MODULES_SMITH_UTIL_WORDLIST_H_
3
#include <array>
4
#include <cstddef>
5
6
#define WORDLIST_LENGTH 10000
7
8
namespace
P4::P4Tools::P4Smith {
9
12
class
Wordlist
{
13
public
:
14
Wordlist
() =
default
;
15
16
~Wordlist
() =
default
;
17
20
static
const
char
*
getFromWordlist
();
21
22
private
:
24
static
std::size_t counter;
25
27
static
const
std::array<const char *, WORDLIST_LENGTH> WORDS;
28
};
12
class
Wordlist
{
…
};
29
30
}
// namespace P4::P4Tools::P4Smith
31
32
#endif
/* BACKENDS_P4TOOLS_MODULES_SMITH_UTIL_WORDLIST_H_ */
P4::P4Tools::P4Smith::Wordlist
Definition
wordlist.h:12
P4::P4Tools::P4Smith::Wordlist::getFromWordlist
static const char * getFromWordlist()
Definition
wordlist.cpp:695
backends
p4tools
modules
smith
util
wordlist.h
Generated by
1.12.0