Searched refs:__index (Results 1 – 11 of 11) sorted by relevance
/external/stlport/stlport/stl/ |
D | _time_facets.c | 171 size_t __index = __match(__first, __last, in _STLP_WEAK() local 173 if (__index == 7) in _STLP_WEAK() 175 __t->tm_wday = __STATIC_CAST(int, __index); in _STLP_WEAK() 182 size_t __index = __match(__first, __last, in _STLP_WEAK() local 184 if (__index == 12) in _STLP_WEAK() 186 __t->tm_mon = __STATIC_CAST(int, __index); in _STLP_WEAK() 231 size_t __index = __match(__first, __last, in _STLP_WEAK() local 233 if (__index == 2) in _STLP_WEAK() 236 if (__index == 1 && __t->tm_hour != 12 ) in _STLP_WEAK() 238 if (__index == 0 && __t->tm_hour == 12 ) in _STLP_WEAK() [all …]
|
D | _valarray.c | 47 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];
|
D | _valarray.h | 1101 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 = _M_slice.start(); [all …]
|
D | _ios_base.h | 147 long& iword(int __index); 148 void*& pword(int __index); 155 typedef void (*event_callback)(event, ios_base&, int __index); 156 void register_callback(event_callback __fn, int __index);
|
D | _deque.c | 210 difference_type __index = __pos - this->_M_start; in _M_erase() local 211 if (size_type(__index) < this->size() >> 1) { in _M_erase() 239 return this->_M_start + __index; in _M_erase() 247 difference_type __index = __pos - this->_M_start; in _M_erase() local 248 if (size_type(__index) < this->size() >> 1) { in _M_erase() 256 return this->_M_start + __index; in _M_erase()
|
D | _num_get.c | 51 __get_digit_from_table(unsigned __index) in __get_digit_from_table() argument 52 { return (__index > 127 ? 0xFF : __digit_val_table(__index)); } in __get_digit_from_table()
|
/external/chromium/third_party/icu/source/common/ |
D | utrie2.h | 898 int32_t __index=utrie2_internalU8NextIndex((trie), __lead, (const uint8_t *)(src), \ 900 (src)+=__index&7; \ 901 (result)=(trie)->data[__index>>3]; \ 912 int32_t __index=utrie2_internalU8PrevIndex((trie), __b, (const uint8_t *)(start), \ 914 (src)-=__index&7; \ 915 (result)=(trie)->data[__index>>3]; \
|
/external/stlport/src/ |
D | num_get.cpp | 54 _STLP_DECLSPEC unsigned char _STLP_CALL __digit_val_table(unsigned __index) { in __digit_val_table() argument 66 return __val_table[__index]; in __digit_val_table()
|
/external/icu4c/common/ |
D | utrie2.h | 960 int32_t __index=utrie2_internalU8NextIndex((trie), __lead, (const uint8_t *)(src), \ 962 (src)+=__index&7; \ 963 (result)=(trie)->data[__index>>3]; \ 974 int32_t __index=utrie2_internalU8PrevIndex((trie), __b, (const uint8_t *)(start), \ 976 (src)-=__index&7; \ 977 (result)=(trie)->data[__index>>3]; \
|
/external/elfutils/libelf/ |
D | libelf.h | 200 extern Elf_Scn *elf_getscn (Elf *__elf, size_t __index); 263 extern char *elf_strptr (Elf *__elf, size_t __index, size_t __offset);
|
D | libelfP.h | 461 extern Elf_Scn *__elf_getscn_internal (Elf *__elf, size_t __index) 469 extern char *__elf_strptr_internal (Elf *__elf, size_t __index,
|