/ndk/sources/cxx-stl/stlport/src/ |
D | collate.cpp | 32 string collate<char>::do_transform(const char* low, const char* high) const in do_transform() argument 33 { return string(low, high); } in do_transform() 35 long collate<char>::do_hash(const char* low, const char* high) const { in do_hash() argument 37 for ( ; low < high; ++low) in do_hash() 38 result = 5 * result + *low; in do_hash() 52 wstring collate<wchar_t>::do_transform(const wchar_t* low, const wchar_t* high) const in do_transform() argument 53 { return wstring(low, high); } in do_transform() 55 long collate<wchar_t>::do_hash(const wchar_t* low, const wchar_t* high) const { in do_hash() argument 57 for ( ; low < high; ++low) in do_hash() 58 result = 5 * result + *low; in do_hash()
|
D | ctype.cpp | 399 const wchar_t* ctype<wchar_t>::do_is(const wchar_t* low, const wchar_t* high, in do_is() argument 404 for ( ; low < high; ++low, ++vec) { in do_is() 405 c = *low; in do_is() 413 const wchar_t* low, const wchar_t* high) const { in do_scan_is() argument 414 return find_if(low, high, _Ctype_w_is_mask(m, ctype<char>::classic_table())); in do_scan_is() 420 const wchar_t* low, const wchar_t* high) const { in do_scan_not() argument 421 return find_if(low, high, not1(_Ctype_w_is_mask(m, ctype<char>::classic_table()))); in do_scan_not() 430 ctype<wchar_t>::do_toupper(wchar_t* low, const wchar_t* high) const { in do_toupper() argument 431 for ( ; low < high; ++low) { in do_toupper() 432 wchar_t c = *low; in do_toupper() [all …]
|
D | facets_byname.cpp | 131 ctype_byname<wchar_t>::do_is(const wchar_t* low, const wchar_t* high, in do_is() argument 143 for ( ; low < high; ++low, ++m) in do_is() 144 *m = ctype_base::mask (_WLocale_ctype(_M_ctype, *low, all_bits)); in do_is() 150 ::do_scan_is(ctype_base::mask m, const wchar_t* low, const wchar_t* high) const in do_scan_is() argument 151 { return find_if(low, high, _STLP_PRIV _Ctype_byname_w_is_mask(m, _M_ctype)); } in do_scan_is() 155 ::do_scan_not(ctype_base::mask m, const wchar_t* low, const wchar_t* high) const in do_scan_not() argument 156 { return find_if(low, high, not1(_STLP_PRIV _Ctype_byname_w_is_mask(m, _M_ctype))); } in do_scan_not() 162 ctype_byname<wchar_t>::do_toupper(wchar_t* low, const wchar_t* high) const { in do_toupper() argument 163 for ( ; low < high; ++low) in do_toupper() 164 *low = _WLocale_toupper(_M_ctype, *low); in do_toupper() [all …]
|
D | num_get_float.cpp | 120 uint64& high, uint64& low) { in _Stl_mult64() argument 128 low = t & low_mask; in _Stl_mult64() 135 low += (x & low_mask) << 32; in _Stl_mult64()
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0001-android-Add-locale-support.patch | 66 @@ -828,6 +830,8 @@ ctype<wchar_t>::do_toupper(char_type* low, const char_type* high) const 68 *low = isascii(*low) ? ctype<char>::__classic_upper_table()[*low] 69 : *low; 71 + *low = isascii(*low) ? _toupper_tab_[*low + 1] : *low; 73 *low = (isascii(*low) && islower_l(*low, __cloc())) ? (*low-L'a'+L'A') : *low; 84 @@ -855,6 +861,8 @@ ctype<wchar_t>::do_tolower(char_type* low, const char_type* high) const 86 *low = isascii(*low) ? ctype<char>::__classic_lower_table()[*low] 87 : *low; 89 + *low = isascii(*low) ? _tolower_tab_[*low + 1] : *low; 91 *low = (isascii(*low) && isupper_l(*low, __cloc())) ? *low-L'A'+L'a' : *low; [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | locale.cpp | 812 ctype<wchar_t>::do_is(const char_type* low, const char_type* high, mask* vec) const in do_is() argument 814 for (; low != high; ++low, ++vec) in do_is() 815 *vec = static_cast<mask>(isascii(*low) ? in do_is() 816 ctype<char>::classic_table()[*low] : 0); in do_is() 817 return low; in do_is() 821 ctype<wchar_t>::do_scan_is(mask m, const char_type* low, const char_type* high) const in do_scan_is() argument 823 for (; low != high; ++low) in do_scan_is() 824 if (isascii(*low) && (ctype<char>::classic_table()[*low] & m)) in do_scan_is() 826 return low; in do_scan_is() 830 ctype<wchar_t>::do_scan_not(mask m, const char_type* low, const char_type* high) const in do_scan_not() argument [all …]
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | UnwindCursor.hpp | 908 uint32_t low = 0; in getInfoFromCompactEncodingSection() local 911 while (low < high) { in getInfoFromCompactEncodingSection() 912 uint32_t mid = (low + high) / 2; in getInfoFromCompactEncodingSection() 918 low = mid; in getInfoFromCompactEncodingSection() 921 low = mid + 1; in getInfoFromCompactEncodingSection() 927 const uint32_t firstLevelFunctionOffset = topIndex.functionOffset(low); in getInfoFromCompactEncodingSection() 929 topIndex.functionOffset(low + 1); in getInfoFromCompactEncodingSection() 931 sects.compact_unwind_section + topIndex.secondLevelPagesSectionOffset(low); in getInfoFromCompactEncodingSection() 933 sects.compact_unwind_section + topIndex.lsdaIndexArraySectionOffset(low); in getInfoFromCompactEncodingSection() 935 sects.compact_unwind_section + topIndex.lsdaIndexArraySectionOffset(low+1); in getInfoFromCompactEncodingSection() [all …]
|
D | EHHeaderParser.hpp | 109 size_t low = 0; in findFDE() local 111 size_t mid = low + (len / 2); in findFDE() 117 low = mid; in findFDE() 120 low = mid; in findFDE() 127 tableEntry = hdrInfo.table + low * tableEntrySize; in findFDE()
|
D | UnwindRegistersSave.S | 182 rlwinm r4,r4,0,0,27 ; mask low 4-bits
|
D | UnwindRegistersRestore.S | 180 rlwinm r4,r4,0,0,27 ; mask low 4-bits
|
/ndk/sources/host-tools/nawk-20071023/ |
D | lex.c | 439 int cond, low, mid, high; in binsearch() local 441 low = 0; in binsearch() 443 while (low <= high) { in binsearch() 444 mid = (low + high) / 2; in binsearch() 448 low = mid + 1; in binsearch()
|
/ndk/tests/device/test-stlport/unit/ |
D | string_test.cpp | 389 string low( "2004-01-01" ); in data() 393 xx += low; in data() 412 string low( "2004-01-01" ); in c_str() local 421 xx += low; in c_str()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | string_test.cpp | 389 string low( "2004-01-01" ); in data() 393 xx += low; in data() 412 string low( "2004-01-01" ); in c_str() local 421 xx += low; in c_str()
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
D | fallback_malloc.ipp | 23 // for each chunk. The overhead of each chunk is kept low by keeping pointers
|
/ndk/sources/cxx-stl/stlport/src/c_locale_win32/ |
D | c_locale_win32.c | 1372 int low = 0; in __ConvertName() local 1376 while (low <= high) { in __ConvertName() 1377 i = (low + high) / 2; in __ConvertName() 1384 low = i + 1; in __ConvertName()
|
/ndk/build/core/ |
D | init.mk | 49 $(error Android NDK: GNU Make version $(MAKE_VERSION) is too low (should be >= 3.81))
|
/ndk/sources/host-tools/make-3.81/ |
D | ChangeLog | 2515 * arscan.c (VMS_get_member_info,ar_scan) [VMS]: VMS sets the low 2641 Avoid spurious rebuilds due to low resolution time stamps, 2643 (f_mtime): Archive members always have low resolution time stamps.
|
/ndk/sources/host-tools/make-3.81/doc/ |
D | make.info-1 | 505 defining editing commands include `command.h', and only low level files 2485 assumes that these files are created by commands that generate low 2509 stamps are always low resolution. You need not list archive
|
D | make.texi | 558 defining editing commands include @file{command.h}, and only low 2940 generate low resolution time stamps. The commands for 2967 are always low resolution. You need not list archive members as
|