Home
last modified time | relevance | path

Searched refs:new_bytes (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/lldb/examples/summaries/cocoa/
H A DCFString.py94 new_bytes = bytearray(content)
95 b0 = new_bytes[0]
96 b1 = new_bytes[1]
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
H A Dlldbgdbserverutils.py886 new_bytes = self._sock.recv(4096)
887 self._process_new_bytes(new_bytes)
890 def _process_new_bytes(self, new_bytes): argument
892 self._receive_buffer += new_bytes
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DEvent.cpp181 void EventDataBytes::SwapBytes(std::string &new_bytes) { in SwapBytes() argument
182 m_bytes.swap(new_bytes); in SwapBytes()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DEvent.h82 void SwapBytes(std::string &new_bytes);
/openbsd-src/usr.bin/systat/
H A Dpftop.c1594 calc_rate(u_int64_t new_bytes, u_int64_t last_bytes, double interval) in calc_rate() argument
1598 rate = (double)(new_bytes - last_bytes) / interval; in calc_rate()