Home
last modified time | relevance | path

Searched refs:_f (Results 1 – 16 of 16) sorted by relevance

/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sparc/soft-fp/
A Dop-4.h35 (D##_f[0] = S##_f[0], D##_f[1] = S##_f[1], \
36 D##_f[2] = S##_f[2], D##_f[3] = S##_f[3])
123 X##_f[3], X##_f[2], X##_f[1], X##_f[0], \
124 Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
128 X##_f[3], X##_f[2], X##_f[1], X##_f[0], \
129 Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
133 Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
148 (X##_f[0] == Y##_f[0] && X##_f[1] == Y##_f[1] \
149 && X##_f[2] == Y##_f[2] && X##_f[3] == Y##_f[3])
153 (X##_f[3] == Y##_f[3] && (X##_f[2] > Y##_f[2] || \
[all …]
A Dop-1.h44 X##_f += X##_f; \
65 #define _FP_FRAC_ADD_1(R,X,Y) (R##_f = X##_f + Y##_f)
66 #define _FP_FRAC_SUB_1(R,X,Y) (R##_f = X##_f - Y##_f)
142 R##_f = X##_f * Y##_f; \
205 X##_f <<= (X##_f < Y##_f \
225 if (X##_f < Y##_f) \
244 if (X##_f < Y##_f) \
270 T##_f = S##_f + q; \
271 if (T##_f <= X##_f) \
274 X##_f -= T##_f; \
[all …]
A Dop-8.h47 X##_f[_i] = X##_f[_i-_skip]; \
51 X##_f[_i] = X##_f[_i-_skip] << _up \
53 X##_f[_i--] = X##_f[0] << _up; \
56 X##_f[_i] = 0; \
67 X##_f[_i] = X##_f[_i+_skip]; \
71 X##_f[_i] = X##_f[_i+_skip] >> _down \
73 X##_f[_i++] = X##_f[7] >> _down; \
76 X##_f[_i] = 0; \
96 X##_f[_i] = X##_f[_i+_skip]; \
101 X##_f[_i] = X##_f[_i+_skip] >> _down \
[all …]
A Dextended.h213 T##_f[1] = S##_f[1] + q; \
214 if (T##_f[1] <= X##_f[1]) \
216 S##_f[1] = T##_f[1] + q; \
217 X##_f[1] -= T##_f[1]; \
226 T##_f[0] = S##_f[0] + q; \
227 T##_f[1] = S##_f[1]; \
228 if (T##_f[1] < X##_f[1] || \
230 T##_f[0] <= X##_f[0])) \
233 S##_f[1] += (T##_f[0] > S##_f[0]); \
243 if (S##_f[1] < X##_f[1] || \
[all …]
A Dop-2.h38 #define _FP_FRAC_WORD_2(X,w) (X##_f##w)
612 #define _FP_FRAC_COPY_1_2(D, S) (D##_f = S##_f0)
614 #define _FP_FRAC_COPY_2_1(D, S) ((D##_f0 = S##_f), (D##_f1 = 0))
/l4re-core-master/cxx/lib/tl/include/bits/
A Dsmart_ptr_list.h108 this->_f = cxx::move(e); in push_front()
110 if (_b == &_f) in push_front()
111 _b = &(_f->_n); in push_front()
118 this->_f = e; in push_front()
120 if (_b == &_f) in push_front()
121 _b = &(_f->_n); in push_front()
140 { return _f.get(); } in front()
156 if (!_f) in pop_front()
157 _b = &_f; in pop_front()
164 { return !_f; } in empty()
[all …]
A Dlist_basics.h123 Basic_list() : _f(0) {} in Basic_list()
126 bool empty() const { return !_f; } in empty()
128 Value_type front() const { return static_cast<Value_type>(_f); } in front()
135 void clear() { _f = 0; } in clear()
138 Iterator begin() { return Iterator(&_f); } in begin()
140 Const_iterator begin() const { return Const_iterator(_f); } in begin()
159 typename POLICY::Head_type _f; variable
/l4re-core-master/cxx/lib/tl/include/
A Dslist69 e->_n = this->_f;
70 this->_f = e;
78 e->_n = this->_f;
80 while (!c(&this->_f, e->_n, e));
94 if (this->_f)
95 this->_f = this->_f->_n;
145 S_list_tail() : Base(), _tail(&this->_f) {}
157 _tail = &this->_f;
170 { t._f = this->_f; t._tail = _tail; clear(); }
A Ddlist169 Sd_list() { if (!BSS) H::set_head(_f, 0); }
171 bool empty() const { return !H::head(_f); }
172 T *front() const { return H::head(_f); }
176 T *h = H::head(_f);
180 H::set_head(_f, 0);
184 if (e == H::head(_f))
199 T *h = H::head(_f);
201 H::set_head(_f, Base::self_insert(e));
206 H::set_head(_f, e);
212 void rotate_to(T *h) { H::set_head(_f, h); }
[all …]
A Dlist48 Iter(List_item *c, List_item *f) throw() : _c(c), _f(f) {}
49 Iter(List_item *f = 0) throw() : _c(f), _f(f) {}
55 if (!_f)
60 if (_c == _f)
71 if (!_f)
76 if (_c == _f)
95 if (_f == l)
96 _f = _c;
102 List_item *_c, *_f;
A Dhlist112 if (this->_f)
113 this->_f->_pn = &e->Item::_n;
114 e->Item::_n = this->_f;
115 e->Item::_pn = &this->_f;
116 this->_f = static_cast<Item*>(e);
146 Item **x = &this->_f;
/l4re-core-master/l4re/util/include/
A Dname_space_svr60 unsigned _f;
85 unsigned flags() const { return _f; }
89 bool is_rw() const { return (_f & F_rw) == F_rw; }
90 bool is_strong() const { return _f & F_strong; }
92 bool is_valid() const { return _f & F_cap; }
94 bool is_local() const { return _f & F_local; }
96 bool is_trusted() const { return _f & F_trusted; }
116 : _f(flags), _cap(L4_INVALID_CAP)
120 : _f((f & ~F_base_mask) | F_cap), _cap(cap.cap())
124 : _f((f & ~F_base_mask) | F_cap | F_local), _obj(o)
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/include/sys/
A Dsysinfo.h43 char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */ member
/l4re-core-master/ned/server/src/
A Dlua_exec.cc308 bool _f = true; in push_env_strings() local
319 if (_f) in push_env_strings()
322 _f = false; in push_env_strings()
/l4re-core-master/l4sys/include/
A D__typeinfo.h292 static int _f(THIS self, A1, A2 &a2, True::type)
299 static int _f(THIS self, A1 a1, A2 &a2, False::type)
310 return _f(self, a1, a2, Bool<I::Proto == (long)L4_PROTO_META>());
/l4re-core-master/l4sys/include/cxx/
A Dipc_epiface459 static l4_msgtag_t _f(THIS *, l4_msgtag_t tag, unsigned r,
470 static l4_msgtag_t _f(THIS *self, l4_msgtag_t t, unsigned r,
483 return _f(self, tag, r, utcb, Bool<I::Proto == (long)L4_PROTO_META>());

Completed in 23 milliseconds