Searched refs:__w (Results 1 - 6 of 6) sorted by relevance
/external/stlport/stlport/stl/ |
H A D | _tree.c | 216 _Rb_tree_node_base* __w = __x_parent->_M_right; local 217 if (__w->_M_color == _S_rb_tree_red) { 218 __w->_M_color = _S_rb_tree_black; 221 __w = __x_parent->_M_right; 223 if ((__w->_M_left == 0 || 224 __w->_M_left->_M_color == _S_rb_tree_black) && (__w->_M_right == 0 || 225 __w->_M_right->_M_color == _S_rb_tree_black)) { 226 __w->_M_color = _S_rb_tree_red; 230 if (__w 244 _Rb_tree_node_base* __w = __x_parent->_M_left; local [all...] |
H A D | _string_io.c | 45 const streamsize __w = __os.width(0); local 48 const bool __need_pad = (((sizeof(streamsize) > sizeof(size_t)) && (__STATIC_CAST(streamsize, __n) < __w)) || 49 ((sizeof(streamsize) <= sizeof(size_t)) && (__n < __STATIC_CAST(size_t, __w)))); 50 streamsize __pad_len = __need_pad ? __w - __n : 0;
|
H A D | _rope.c | 853 streamsize __w = __o.width(); local 858 const bool __need_pad = (((sizeof(streamsize) > sizeof(size_t)) && (__STATIC_CAST(streamsize, __rope_len) < __w)) || 859 ((sizeof(streamsize) <= sizeof(size_t)) && (__rope_len < __STATIC_CAST(size_t, __w)))); 860 streamsize __pad_len = __need_pad ? __w - __rope_len : 0; 875 streamsize __w = __o.width(); local 879 __o.width(__w /__rope_len); 882 __o.width(__w); 884 _STLP_UNWIND(__o.width(__w))
|
/external/bluetooth/glib/glib/ |
H A D | gtypes.h | 203 guint32 __l[2]; } __w, __r; \ 204 __w.__ll = ((guint64) (val)); \ 205 if (__builtin_constant_p (__w.__ll)) \ 206 __r.__ll = GUINT64_SWAP_LE_BE_CONSTANT (__w.__ll); \ 209 __r.__l[0] = GUINT32_SWAP_LE_BE (__w.__l[1]); \ 210 __r.__l[1] = GUINT32_SWAP_LE_BE (__w.__l[0]); \
|
/external/clang/lib/Headers/ |
H A D | mmintrin.h | 412 _mm_set1_pi16(short __w) argument 414 return _mm_set_pi16(__w, __w, __w, __w);
|
/external/valgrind/main/perf/ |
H A D | test_input_for_tinycc.c | 5174 typedef int __io_seek_fn (void *__cookie, __off64_t *__pos, int __w); 5428 extern int putw (int __w, FILE *__stream);
|
Completed in 462 milliseconds