HomeSort by relevance Sort by last modified time
    Searched defs:BPF (Results 1 - 7 of 7) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
random.py 62 BPF = 53 # Number of bits in a float
63 RECIP_BPF = 2**-BPF
175 def randrange(self, start, stop=None, step=1, _int=int, _maxwidth=1L<<BPF):
244 def _randbelow(self, n, _log=_log, _int=int, _maxwidth=1L<<BPF,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
random.py 62 BPF = 53 # Number of bits in a float
63 RECIP_BPF = 2**-BPF
174 maxwidth=1L<<BPF):
243 def _randbelow(self, n, _log=_log, int=int, _maxwidth=1L<<BPF,
    [all...]
  /external/bcc/src/cc/api/
BPF.h 29 #include "compat/linux/bpf.h"
45 class BPF {
49 explicit BPF(unsigned int flag = 0, TableStorage* ts = nullptr,
57 ~BPF();
156 // to use when polling. BPF class owns the opened Perf Buffer and will free
281 friend class BPF;
BPF.cc 17 #include <linux/bpf.h>
39 #include "BPF.h"
57 StatusTuple BPF::init(const std::string& bpf_program,
78 return StatusTuple(-1, "Unable to initialize BPF program");
83 BPF::~BPF() {
90 StatusTuple BPF::detach_all() {
152 error_msg += "Failed to unload BPF program for " + it.first + ": ";
164 StatusTuple BPF::attach_kprobe(const std::string& kernel_func,
192 StatusTuple BPF::attach_uprobe(const std::string& binary_path
    [all...]
  /external/python/cpython2/Lib/
random.py 62 BPF = 53 # Number of bits in a float
63 RECIP_BPF = 2**-BPF
177 def randrange(self, start, stop=None, step=1, _int=int, _maxwidth=1L<<BPF):
246 def _randbelow(self, n, _log=_log, _int=int, _maxwidth=1L<<BPF,
  /external/python/cpython3/Lib/
random.py 62 BPF = 53 # Number of bits in a float
63 RECIP_BPF = 2**-BPF
224 def _randbelow(self, n, int=int, maxsize=1<<BPF, type=type,
  /external/bcc/src/python/bcc/
__init__.py 47 # Debug output loaded BPF bytecode and register state on branches.
130 class BPF(object):
131 # From bpf_prog_type in uapi/linux/bpf.h
151 # from xdp_action uapi/linux/bpf.h
176 # BPF timestamps come from the monotonic clock. To be able to filter
205 that appear in the BPF program, and the output is a (possibly empty)
220 def __init__(self, bpf, name, fd):
221 self.bpf = bpf
269 """Create a new BPF module with the given source code
    [all...]

Completed in 320 milliseconds