Home
last modified time | relevance | path

Searched refs:__e (Results 1 – 25 of 139) sorted by relevance

123456

/netbsd-src/sys/arch/sh3/include/
H A Dcache_sh4.h102 uint32_t __e, __a; \
105 for (__e = 0; __e < (SH4_DCACHE_SIZE / SH4_CACHE_LINESZ); __e++) {\
106 __a = SH4_CCDA | (__e << CCDA_ENTRY_SHIFT); \
110 for (__e = 0; __e < (SH4_ICACHE_SIZE / SH4_CACHE_LINESZ); __e++) {\
111 __a = SH4_CCIA | (__e << CCIA_ENTRY_SHIFT); \
118 uint32_t __e, __a; \
121 for (__e = 0;__e < (SH4_EMODE_DCACHE_SIZE / SH4_CACHE_LINESZ);__e++) {\
122 __a = SH4_CCDA | (__e << CCDA_ENTRY_SHIFT); \
126 for (__e = 0;__e < (SH4_EMODE_ICACHE_SIZE / SH4_CACHE_LINESZ);__e++) {\
127 __a = SH4_CCIA | (__e << CCIA_ENTRY_SHIFT); \
H A Dcache_sh3.h111 uint32_t __e, __w, __wa, __a; \
115 for (__e = 0; __e < CCA_8K_ENTRY; __e++) { \
116 __a = __wa |(__e << CCA_ENTRY_SHIFT); \
125 uint32_t __e, __w, __wa, __a; \
129 for (__e = 0; __e < CCA_16K_ENTRY; __e++) { \
130 __a = __wa |(__e << CCA_ENTRY_SHIFT); \
/netbsd-src/sys/arch/hpc/stand/hpcboot/sh3/cpu/
H A D7750.h37 uint32_t __e, __a; \
40 for (__e = 0; __e < (SH4_DCACHE_SIZE / SH4_CACHE_LINESZ); __e++) {\
41 __a = SH4REG_CCDA | (__e << CCDA_ENTRY_SHIFT); \
45 for (__e = 0; __e < (SH4_ICACHE_SIZE / SH4_CACHE_LINESZ); __e++) {\
46 __a = SH4REG_CCIA | (__e << CCIA_ENTRY_SHIFT); \
H A D7709.h48 uint32_t __e, __w, __wa, __a; \
52 for (__e = 0; __e < SH7709_CACHE_ENTRY; __e++) { \
53 __a = __wa |(__e << SH7709_CACHE_ENTRY_SHIFT); \
H A D7709a.h48 uint32_t __e, __w, __wa, __a; \
52 for (__e = 0; __e < SH7709A_CACHE_ENTRY; __e++) { \
53 __a = __wa |(__e << SH7709A_CACHE_ENTRY_SHIFT); \
H A D7707.h59 uint32_t __e, __w, __wa, __a; \
63 for (__e = 0; __e < SH7707_CACHE_ENTRY; __e++) { \
64 __a = __wa |(__e << SH7707_CACHE_ENTRY_SHIFT); \
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstd_mutex.h113 int __e = __gthread_mutex_lock(&_M_mutex); in _GLIBCXX_VISIBILITY() local
116 if (__e) in _GLIBCXX_VISIBILITY()
117 __throw_system_error(__e); in _GLIBCXX_VISIBILITY()
156 int __e __attribute__((__unused__)) = __gthread_cond_destroy(&_M_cond); in _GLIBCXX_VISIBILITY() local
157 __glibcxx_assert(__e != EBUSY); // threads are still blocked in _GLIBCXX_VISIBILITY()
169 int __e __attribute__((__unused__)) in _GLIBCXX_VISIBILITY() local
171 __glibcxx_assert(__e == 0); in _GLIBCXX_VISIBILITY()
192 int __e __attribute__((__unused__)) = __gthread_cond_signal(&_M_cond); in _GLIBCXX_VISIBILITY() local
193 __glibcxx_assert(__e == 0); in _GLIBCXX_VISIBILITY()
199 int __e __attribute__((__unused__)) = __gthread_cond_broadcast(&_M_cond); in _GLIBCXX_VISIBILITY() local
[all …]
H A Dvalarray_array.tcc142 __valarray_copy(const _Expr<_Dom, _Tp>& __e, size_t __n, _Array<_Tp> __a) in __valarray_copy() argument
146 *__p = __e[__i]; in __valarray_copy()
153 __valarray_copy(const _Expr<_Dom, _Tp>& __e, size_t __n, in __valarray_copy() argument
158 *__p = __e[__i]; in __valarray_copy()
165 __valarray_copy(const _Expr<_Dom, _Tp>& __e, size_t __n, in __valarray_copy() argument
170 __a._M_data[*__j] = __e[__k]; in __valarray_copy()
177 __valarray_copy(_Array<_Tp> __e, _Array<size_t> __f, in __valarray_copy() argument
184 __a._M_data[*__j] = __e._M_data[*__g]; in __valarray_copy()
195 __valarray_copy(const _Expr<_Dom, _Tp>& __e, size_t __n, in __valarray_copy() argument
207 *__p = __e[__i]; in __valarray_copy()
[all …]
H A Dvalarray_array.h73 _S_do_it(_Tp* __b, _Tp* __e) in _GLIBCXX_VISIBILITY()
75 while (__b != __e) in _GLIBCXX_VISIBILITY()
85 _S_do_it(_Tp* __b, _Tp* __e) in _GLIBCXX_VISIBILITY()
86 { __builtin_memset(__b, 0, (__e - __b) * sizeof(_Tp)); } in _GLIBCXX_VISIBILITY()
91 __valarray_default_construct(_Tp* __b, _Tp* __e) in _GLIBCXX_VISIBILITY()
93 _Array_default_ctor<_Tp, __is_scalar<_Tp>::__value>::_S_do_it(__b, __e); in _GLIBCXX_VISIBILITY()
105 _S_do_it(_Tp* __b, _Tp* __e, const _Tp __t) in _GLIBCXX_VISIBILITY()
107 while (__b != __e) in _GLIBCXX_VISIBILITY()
116 _S_do_it(_Tp* __b, _Tp* __e, const _Tp __t) in _GLIBCXX_VISIBILITY()
118 while (__b != __e) in _GLIBCXX_VISIBILITY()
[all …]
H A Dregex_compiler.tcc66 _Compiler(const _CharT* __b, const _CharT* __e, in _Compiler() argument
69 _M_scanner(__b, __e, _M_flags, __loc), in _Compiler()
188 auto __e = _M_pop(); in _M_quantifier() local
191 __e._M_start, __neg)); in _M_quantifier()
192 __e._M_append(__r); in _M_quantifier()
198 auto __e = _M_pop(); in _M_quantifier() local
199 __e._M_append(_M_nfa->_M_insert_repeat(_S_invalid_state_id, in _M_quantifier()
200 __e._M_start, __neg)); in _M_quantifier()
201 _M_stack.push(__e); in _M_quantifier()
206 auto __e = _M_pop(); in _M_quantifier() local
[all …]
H A Dvalarray_after.h52 _GBase (const _Dom& __e, const valarray<size_t>& __i) in _GLIBCXX_VISIBILITY()
53 : _M_expr (__e), _M_index(__i) {} in _GLIBCXX_VISIBILITY()
97 _GClos (const _Dom& __e, const valarray<size_t>& __i) in _GLIBCXX_VISIBILITY()
98 : _Base (__e, __i) {} in _GLIBCXX_VISIBILITY()
121 _IBase (const _Dom& __e, const valarray<size_t>& __i) in _GLIBCXX_VISIBILITY()
122 : _M_expr (__e), _M_index (__i) {} in _GLIBCXX_VISIBILITY()
144 _IClos (const _Dom& __e, const valarray<size_t>& __i) in _GLIBCXX_VISIBILITY()
145 : _Base (__e, __i) {} in _GLIBCXX_VISIBILITY()
383 operator _Op(const _Expr<_Dom,typename _Dom::value_type>& __e, \ in _GLIBCXX_VISIBILITY()
389 return _Expr<_Closure, _Value>(_Closure(__e(), __v)); \ in _GLIBCXX_VISIBILITY()
[all …]
H A Dvalarray_before.h433 _FunBase(const _Dom& __e, value_type __f(_Arg)) in _GLIBCXX_VISIBILITY()
434 : _M_expr(__e), _M_func(__f) {} in _GLIBCXX_VISIBILITY()
453 _ValFunClos(const _Dom& __e, _Tp __f(_Tp)) : _Base(__e, __f) {} in _GLIBCXX_VISIBILITY()
473 _RefFunClos(const _Dom& __e, _Tp __f(const _Tp&)) in _GLIBCXX_VISIBILITY()
474 : _Base(__e, __f) {} in _GLIBCXX_VISIBILITY()
499 _UnBase(const _Arg& __e) : _M_expr(__e) {} in _GLIBCXX_VISIBILITY()
518 _UnClos(const _Arg& __e) : _Base(__e) {} in _GLIBCXX_VISIBILITY()
529 _UnClos(const _Arg& __e) : _Base(__e) {} in _GLIBCXX_VISIBILITY()
565 _BinBase2(const _Clos& __e, const _Vt& __t) in _GLIBCXX_VISIBILITY()
566 : _M_expr1(__e), _M_expr2(__t) {} in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dthread.cc107 int __e = EINVAL; in join() local
110 __e = __gthread_join(_M_id._M_thread, 0); in join()
112 if (__e) in join()
113 __throw_system_error(__e); in join()
121 int __e = EINVAL; in detach() local
124 __e = __gthread_detach(_M_id._M_thread); in detach()
126 if (__e) in detach()
127 __throw_system_error(__e); in detach()
174 int __e = __gthread_create(&_M_id._M_thread, in _M_start_thread() local
176 if (__e) in _M_start_thread()
[all …]
H A Dcondition_variable.cc53 int __e = __gthread_cond_wait(&_M_cond, __lock.mutex()->native_handle()); in wait() local
55 if (__e) in wait()
62 int __e = __gthread_cond_signal(&_M_cond); in notify_one() local
66 if (__e) in notify_one()
67 __throw_system_error(__e); in notify_one()
73 int __e = __gthread_cond_broadcast(&_M_cond); in notify_all() local
77 if (__e) in notify_all()
78 __throw_system_error(__e); in notify_all()
H A Dsnprintf_lite.cc58 char *const __e in __throw_insufficient_space() local
61 __builtin_memcpy(__e, __err, __errlen); in __throw_insufficient_space()
62 __builtin_memcpy(__e + __errlen, __buf, __len - 1); in __throw_insufficient_space()
63 __e[__errlen + __len - 1] = '\0'; in __throw_insufficient_space()
64 std::__throw_logic_error(__e); in __throw_insufficient_space()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dthread.cc109 int __e = EINVAL; in join() local
112 __e = __gthread_join(_M_id._M_thread, 0); in join()
114 if (__e) in join()
115 __throw_system_error(__e); in join()
123 int __e = EINVAL; in detach() local
126 __e = __gthread_detach(_M_id._M_thread); in detach()
128 if (__e) in detach()
129 __throw_system_error(__e); in detach()
176 int __e = __gthread_create(&_M_id._M_thread, in _M_start_thread() local
178 if (__e) in _M_start_thread()
[all …]
H A Dsnprintf_lite.cc49 char *const __e in __throw_insufficient_space() local
52 __builtin_memcpy(__e, __err, __errlen); in __throw_insufficient_space()
53 __builtin_memcpy(__e + __errlen, __buf, __len - 1); in __throw_insufficient_space()
54 __e[__errlen + __len - 1] = '\0'; in __throw_insufficient_space()
55 std::__throw_logic_error(__e); in __throw_insufficient_space()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dvalarray_array.tcc142 __valarray_copy(const _Expr<_Dom, _Tp>& __e, size_t __n, _Array<_Tp> __a) in __valarray_copy() argument
146 *__p = __e[__i]; in __valarray_copy()
153 __valarray_copy(const _Expr<_Dom, _Tp>& __e, size_t __n, in __valarray_copy() argument
158 *__p = __e[__i]; in __valarray_copy()
165 __valarray_copy(const _Expr<_Dom, _Tp>& __e, size_t __n, in __valarray_copy() argument
170 __a._M_data[*__j] = __e[__k]; in __valarray_copy()
177 __valarray_copy(_Array<_Tp> __e, _Array<size_t> __f, in __valarray_copy() argument
184 __a._M_data[*__j] = __e._M_data[*__g]; in __valarray_copy()
195 __valarray_copy(const _Expr<_Dom, _Tp>& __e, size_t __n, in __valarray_copy() argument
207 *__p = __e[__i]; in __valarray_copy()
[all …]
H A Dvalarray_array.h73 _S_do_it(_Tp* __b, _Tp* __e) in _GLIBCXX_VISIBILITY()
75 while (__b != __e) in _GLIBCXX_VISIBILITY()
85 _S_do_it(_Tp* __b, _Tp* __e) in _GLIBCXX_VISIBILITY()
86 { __builtin_memset(__b, 0, (__e - __b) * sizeof(_Tp)); } in _GLIBCXX_VISIBILITY()
91 __valarray_default_construct(_Tp* __b, _Tp* __e) in _GLIBCXX_VISIBILITY()
93 _Array_default_ctor<_Tp, __is_scalar<_Tp>::__value>::_S_do_it(__b, __e); in _GLIBCXX_VISIBILITY()
105 _S_do_it(_Tp* __b, _Tp* __e, const _Tp __t) in _GLIBCXX_VISIBILITY()
107 while (__b != __e) in _GLIBCXX_VISIBILITY()
116 _S_do_it(_Tp* __b, _Tp* __e, const _Tp __t) in _GLIBCXX_VISIBILITY()
118 while (__b != __e) in _GLIBCXX_VISIBILITY()
[all …]
H A Drange_access.h492 operator()(_Tp&& __e) const in _GLIBCXX_VISIBILITY()
493 noexcept(noexcept(_Begin{}(__cust_access::__as_const((_Tp&&)__e)))) in _GLIBCXX_VISIBILITY()
494 requires requires { _Begin{}(__cust_access::__as_const((_Tp&&)__e)); } in _GLIBCXX_VISIBILITY()
496 return _Begin{}(__cust_access::__as_const(std::forward<_Tp>(__e))); in _GLIBCXX_VISIBILITY()
504 operator()(_Tp&& __e) const in _GLIBCXX_VISIBILITY()
505 noexcept(noexcept(_End{}(__cust_access::__as_const((_Tp&&)__e)))) in _GLIBCXX_VISIBILITY()
506 requires requires { _End{}(__cust_access::__as_const((_Tp&&)__e)); } in _GLIBCXX_VISIBILITY()
508 return _End{}(__cust_access::__as_const(std::forward<_Tp>(__e))); in _GLIBCXX_VISIBILITY()
637 operator()(_Tp&& __e) const in _GLIBCXX_VISIBILITY()
638 noexcept(noexcept(_RBegin{}(__cust_access::__as_const((_Tp&&)__e)))) in _GLIBCXX_VISIBILITY()
[all …]
H A Dregex_compiler.tcc66 _Compiler(_IterT __b, _IterT __e, in _Compiler() argument
69 _M_scanner(__b, __e, _M_flags, __loc), in _Compiler()
190 auto __e = _M_pop(); in _M_quantifier() local
193 __e._M_start, __neg)); in _M_quantifier()
194 __e._M_append(__r); in _M_quantifier()
200 auto __e = _M_pop(); in _M_quantifier() local
201 __e._M_append(_M_nfa->_M_insert_repeat(_S_invalid_state_id, in _M_quantifier()
202 __e._M_start, __neg)); in _M_quantifier()
203 _M_stack.push(__e); in _M_quantifier()
208 auto __e = _M_pop(); in _M_quantifier() local
[all …]
H A Dvalarray_after.h52 _GBase (const _Dom& __e, const valarray<size_t>& __i) in _GLIBCXX_VISIBILITY()
53 : _M_expr (__e), _M_index(__i) {} in _GLIBCXX_VISIBILITY()
97 _GClos (const _Dom& __e, const valarray<size_t>& __i) in _GLIBCXX_VISIBILITY()
98 : _Base (__e, __i) {} in _GLIBCXX_VISIBILITY()
121 _IBase (const _Dom& __e, const valarray<size_t>& __i) in _GLIBCXX_VISIBILITY()
122 : _M_expr (__e), _M_index (__i) {} in _GLIBCXX_VISIBILITY()
144 _IClos (const _Dom& __e, const valarray<size_t>& __i) in _GLIBCXX_VISIBILITY()
145 : _Base (__e, __i) {} in _GLIBCXX_VISIBILITY()
383 operator _Op(const _Expr<_Dom,typename _Dom::value_type>& __e, \ in _GLIBCXX_VISIBILITY()
389 return _Expr<_Closure, _Value>(_Closure(__e(), __v)); \ in _GLIBCXX_VISIBILITY()
[all …]
H A Dvalarray_before.h433 _FunBase(const _Dom& __e, value_type __f(_Arg)) in _GLIBCXX_VISIBILITY()
434 : _M_expr(__e), _M_func(__f) {} in _GLIBCXX_VISIBILITY()
453 _ValFunClos(const _Dom& __e, _Tp __f(_Tp)) : _Base(__e, __f) {} in _GLIBCXX_VISIBILITY()
473 _RefFunClos(const _Dom& __e, _Tp __f(const _Tp&)) in _GLIBCXX_VISIBILITY()
474 : _Base(__e, __f) {} in _GLIBCXX_VISIBILITY()
499 _UnBase(const _Arg& __e) : _M_expr(__e) {} in _GLIBCXX_VISIBILITY()
518 _UnClos(const _Arg& __e) : _Base(__e) {} in _GLIBCXX_VISIBILITY()
529 _UnClos(const _Arg& __e) : _Base(__e) {} in _GLIBCXX_VISIBILITY()
565 _BinBase2(const _Clos& __e, const _Vt& __t) in _GLIBCXX_VISIBILITY()
566 : _M_expr1(__e), _M_expr2(__t) {} in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dlocale243 // Scans [__b, __e) until a match is found in the basic_strings range
254 // If on exit __b == __e, eofbit is set in __err. If __case_sensitive is false,
263 __scan_keyword(_InputIterator& __b, _InputIterator __e,
299 for (size_t __indx = 0; __b != __e && __n_might_match > 0; ++__indx)
359 if (__b == __e)
592 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
595 return do_get(__b, __e, __iob, __err, __v);
599 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
602 return do_get(__b, __e, __iob, __err, __v);
606 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Dsystem_error190 error_code(_ErrorCodeEnum __e) noexcept
191 { *this = make_error_code(__e); }
208 operator=(_ErrorCodeEnum __e) noexcept
209 { return *this = make_error_code(__e); }
239 make_error_code(errc __e) noexcept
240 { return error_code(static_cast<int>(__e), generic_category()); }
262 operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __e)
263 { return (__os << __e.category().name() << ':' << __e.value()); }
288 error_condition(_ErrorConditionEnum __e) noexcept
289 { *this = make_error_condition(__e); }
[all …]

123456