Home
last modified time | relevance | path

Searched refs:low (Results 1 – 18 of 18) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/
Dcollate.cpp32 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()
Dctype.cpp399 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 …]
Dfacets_byname.cpp131 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 …]
Dnum_get_float.cpp120 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/host-tools/ndk-stack/elff/
Ddwarf_die.cc137 AddrType low; in contains_address() local
140 while (elf_file()->get_range(range_off, &low, &high) && in contains_address()
141 (low != 0 || high != 0)) { in contains_address()
142 if (address >= low && address < high) { in contains_address()
212 Elf_Xword low, high; in dump() local
213 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) && in dump()
214 (low != 0 || high != 0)) { in dump()
216 (unsigned long long)low, (unsigned long long)high); in dump()
220 Elf_Word low, high; in dump() local
221 while (elf_file()->get_range<Elf_Word>(off, &low, &high) && in dump()
[all …]
Delf_file.h478 bool get_range(Elf_Word offset, AddrType* low, AddrType* high) { in get_range() argument
485 *low = pull_val(ptr); in get_range()
/ndk/build/tools/toolchain-patches/gdb/
D0002-ndk-Fix-signal-handling-in-gdbserver-6.6.patch8 gdb-6.6/gdb/gdbserver/linux-low.c | 12 ++++++++++++
11 diff --git a/gdb-6.6/gdb/gdbserver/linux-low.c b/gdb-6.6/gdb/gdbserver/linux-low.c
13 --- a/gdb-6.6/gdb/gdbserver/linux-low.c
14 +++ b/gdb-6.6/gdb/gdbserver/linux-low.c
D0003-ndk-Fix-missing-files-checking-in-gdbserver-7.1.x.patch8 gdb-7.1.x/gdb/gdbserver/linux-x86-low.c | 6 ++++++
11 diff --git a/gdb-7.1.x/gdb/gdbserver/linux-x86-low.c b/gdb-7.1.x/gdb/gdbserver/linux-x86-low.c
13 --- a/gdb-7.1.x/gdb/gdbserver/linux-x86-low.c
14 +++ b/gdb-7.1.x/gdb/gdbserver/linux-x86-low.c
/ndk/sources/host-tools/nawk-20071023/
Dlex.c439 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/sources/host-tools/sed-4.2.1/lib/
Dregex_internal.c610 Idx low = 0, high = pstr->valid_len, mid; in re_string_reconstruct() local
613 mid = (high + low) / 2; in re_string_reconstruct()
617 low = mid + 1; in re_string_reconstruct()
621 while (low < high); in re_string_reconstruct()
638 for (low = 0; low < pstr->valid_len; low++) in re_string_reconstruct()
639 pstr->offsets[low] = pstr->offsets[low + offset] - offset; in re_string_reconstruct()
662 for (low = 0; low < pstr->valid_len; ++low) in re_string_reconstruct()
663 pstr->wcs[low] = WEOF; in re_string_reconstruct()
/ndk/tests/device/test-gnustl-full/unit/
Dstring_test.cpp389 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-stlport/unit/
Dstring_test.cpp389 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/stlport/src/c_locale_win32/
Dc_locale_win32.c1372 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/
Dinit.mk46 $(error Android NDK: GNU Make version $(MAKE_VERSION) is too low (should be >= 3.81))
/ndk/sources/host-tools/make-3.81/
DChangeLog2515 * 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/
Dmake.info-1505 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
Dmake.texi558 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
/ndk/sources/host-tools/sed-4.2.1/
DChangeLog2831 to low numbered subexpressions.