Searched refs:__index (Results 1 - 7 of 7) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_time_facets.c170 size_t __index = __match(__first, __last, local
172 if (__index == 7)
174 __t->tm_wday = __STATIC_CAST(int, __index);
181 size_t __index = __match(__first, __last, local
183 if (__index == 12)
185 __t->tm_mon = __STATIC_CAST(int, __index);
230 size_t __index = __match(__first, __last, local
232 if (__index == 2)
235 if (__index == 1 && __t->tm_hour != 12 )
237 if (__index
281 size_t __index = __match(__first, __last, __table._M_dayname + 0, __table._M_dayname + 14); local
292 size_t __index = __match(__first, __last, __table._M_monthname + 0, __table._M_monthname + 24); local
[all...]
H A D_valarray.c47 size_t __index = __x._M_slice.start();
50 ++__i, __index += __x._M_slice.stride())
51 (*this)[__i] = __x._M_array[__index];
58 size_t __index = __slice.start();
61 ++__i, __index += __slice.stride())
62 __tmp[__i] = (*this)[__index];
H A D_valarray.h1101 size_t __index = _M_slice.start();
1104 ++__i, __index += _M_slice.stride())
1105 _M_array[__index] = __x[__i];
1109 size_t __index = _M_slice.start();
1112 ++__i, __index += _M_slice.stride())
1113 _M_array[__index] *= __x[__i];
1117 size_t __index = _M_slice.start();
1120 ++__i, __index += _M_slice.stride())
1121 _M_array[__index] /= __x[__i];
1125 size_t __index
[all...]
H A D_ios_base.h149 long& iword(int __index);
150 void*& pword(int __index);
157 typedef void (*event_callback)(event, ios_base&, int __index);
158 void register_callback(event_callback __fn, int __index);
H A D_deque.c210 difference_type __index = __pos - this->_M_start; local
211 if (size_type(__index) < this->size() >> 1) {
239 return this->_M_start + __index;
247 difference_type __index = __pos - this->_M_start; local
248 if (size_type(__index) < this->size() >> 1) {
256 return this->_M_start + __index;
H A D_num_get.c51 __get_digit_from_table(unsigned __index) argument
52 { return (__index > 127 ? 0xFF : __digit_val_table(__index)); }
/ndk/sources/cxx-stl/stlport/src/
H A Dnum_get.cpp54 _STLP_DECLSPEC unsigned char _STLP_CALL __digit_val_table(unsigned __index) { argument
66 return __val_table[__index];

Completed in 116 milliseconds