Home
last modified time | relevance | path

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

/xnu-8792.81.2/tools/lldbmacros/core/
H A Dcompat.py21 if cls == valueint:
30 class valueint(with_metaclass(BaseValueInt, long)): class
45 result = super(valueint, self).__floordiv__(other)
H A D__init__.py8 from .compat import valueint as int
H A Dcvalue.py21 from .compat import valueint as int
H A Dkernelcore.py11 from .compat import valueint as int
/xnu-8792.81.2/doc/
H A Ddebugging.md230 xnu’s macros provide a custom integer type called **valueint** that is a replacement for **int**
235 # Replaces all int()s to be valueint
245 xnu’s **value** class. The **valueint** class inherits from **newint** and fixes problematic behavi…
253 # BAD: int may have been replaced with valueint.