Home
last modified time | relevance | path

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

/xnu-10002.41.9/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 Dcaching.py84 from .compat import valueint
357 fasttypes = {valueint, int, str}, tuple=tuple, type=type, len=len):
H A Dkernelcore.py11 from .compat import valueint as int
H A Dcvalue.py21 from .compat import valueint as int
H A Dlldbwrap.py15 from .compat import valueint as int
/xnu-10002.41.9/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.