/l4re-core-master/sigma0/server/src/ |
A D | region.h | 18 mutable unsigned long _l, _h; 23 Region() : _l(0), _h(0), _rights(L4_FPAGE_RWX) {} in Region() 26 : _l((start & ~Owner_mask) | owner), _h(end), _rights(rights) 30 unsigned owner() const { return _l & Owner_mask; } in owner() 32 unsigned long start() const { return _l & ~Owner_mask; } in start() 40 void owner(unsigned owner) const { _l = (_l & ~Owner_mask) | owner; } in owner() 43 { _l = (_l & Owner_mask) | (_start & ~Owner_mask); } in start()
|
/l4re-core-master/cxx/lib/tl/include/ |
A D | static_vector | 21 IDX _l; 28 static_vector(value_type *v, index_type length) : _v(v), _l(length) {} 32 constexpr static_vector(Z &v) : _v(v), _l(array_size(v)) 38 static_vector(static_vector<X, IDX> const &o) : _v(o._v), _l(o._l) {} 40 index_type size() const { return _l; } 41 bool empty() const { return _l == 0; } 47 value_type *end() { return _v + _l; } 49 value_type const *end() const { return _v + _l; } 51 value_type const *cend() const { return _v + _l; }
|
A D | list | 376 List(Alloc<Node> const &a = Alloc<Node>()) throw() : _h(0), _l(0), _a(a) {} 384 ++_l; 393 ++_l; 398 { E *e = i; _h = E::remove(_h, e); --_l; _a.free(e); } 401 unsigned long size() const throw() { return _l; } 416 unsigned _l;
|
/l4re-core-master/moe/server/src/ |
A D | log.h | 25 unsigned long _l; variable 30 Log() : _tag(0), _l(0), _color(0), _in_line(false) {} in Log() 32 { _tag = tag; _l = len; } in set_tag()
|
A D | log.cc | 132 ob.outnstring(_tag, cxx::min<unsigned long>(_l, Max_tag)); in op_dispatch() 133 if (_l < Max_tag) in op_dispatch() 134 ob.outnstring(" ", Max_tag-_l); in op_dispatch()
|
/l4re-core-master/l4re_vfs/include/ |
A D | vfs.h | 483 unsigned _l; variable 486 Path() throw() : _p(0), _l(0) {} in Path() 489 { for (_l = 0; *p; ++p, ++_l) ; } in Path() 491 Path(char const *p, unsigned l) throw() : _p(p), _l(l) in Path() 502 unsigned length() const { return _l; } in length() 505 bool empty() const { return _l == 0; } in empty() 512 for (; __is_sep(*_p) && _l; ++_p, --_l) in strip_sep() 520 for (i = 0; i < _l && !is_sep(i); ++i) in first() 530 _l -= r.length(); in strip_first() 604 return Path(p, _l - (p - _p)); in cmp_path()
|
/l4re-core-master/l4sys/include/ |
A D | kip | 81 unsigned long _l, _h; 168 : _l((start & ~0x3ffUL) | (t & 0x0f) | ((st << 4) & 0x0f0) 177 unsigned long start() const noexcept { return _l & ~0x3ffUL; } 198 Mem_type type() const noexcept { return (Mem_type)(_l & 0x0f); } 205 unsigned char sub_type() const noexcept { return (_l >> 4) & 0x0f; } 213 unsigned is_virtual() const noexcept { return _l & 0x200; } 227 _l = (start & ~0x3ffUL) | (t & 0x0f) | ((st << 4) & 0x0f0)
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/locale/ |
A D | tst-C-locale.c | 389 if (is##name (c) != is##name##_l (c, loc)) \ in run_test() 410 if (to##name (c) != to##name##_l (c, loc)) \ in run_test() 414 to##name (c), to##name##_l (c, loc)); \ in run_test() 428 if (isw##name (c) != isw##name##_l (c, loc)) \ in run_test() 452 if (tow##name (c) != tow##name##_l (c, loc)) \ in run_test() 456 tow##name (c), tow##name##_l (c, loc)); \ in run_test()
|
/l4re-core-master/l4re/util/include/ |
A D | debug | 42 { cprintf("%s: %s", _component, levels[_l]); } 50 Err(Level l, char const *component) : _l(l), _component(component) 54 Level _l;
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/ctype/ |
A D | ctype.c | 70 #warning TODO: Fix asserts in to{upper|lower}{_l}. 85 #define CTYPE_NAME(X) __is ## X ## _l 87 #define CTYPE_ALIAS(NAME) strong_alias( __is ## NAME ## _l , is ## NAME ## _l) 88 #define CTYPE_DEF(NAME) libc_hidden_def(is ## NAME ## _l)
|
A D | Makefile.in | 23 CSRC-$(UCLIBC_HAS_XLOCALE) += $(patsubst %.c,%_l.c,$(COM_SRC-y))
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/ |
A D | Makefile.in | 77 STRING_ALL_WXSRC := $(wildcard $(STRING_DIR)/w*_l.c) 85 STRING_ALL_XLSRC := $(filter-out $(STRING_ALL_WXSRC),$(wildcard $(STRING_DIR)/*_l.c))
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/wctype/ |
A D | Makefile.in | 19 CSRC-$(UCLIBC_HAS_XLOCALE) += $(patsubst %.c,%_l.c,$(COM_SRC))
|
A D | _wctype.c | 139 int __PASTE3(isw,NAME,_l) (wint_t wc, __locale_t l) \
|
/l4re-core-master/uclibc/lib/contrib/uclibc/docs/ |
A D | wchar_and_locale.txt | 48 __XL_NPP(N) - "add _l suffix if locale support is on" 49 #defined to N ## _l if __UCLIBC_HAS_XLOCALE__ && __UCLIBC_DO_XLOCALE,
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/bits/ |
A D | uClibc_locale.h | 356 # define __XL_NPP(N) N ## _l
|
/l4re-core-master/ned/server/src/ |
A D | lua_exec.cc | 243 Loader _l; in launch_loader() local 245 _l.launch(this, kernel, ldr); in launch_loader()
|