Searched refs:low (Results 26 - 50 of 425) sorted by last modified time

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1331 bool Platform::CalculateMD5(const FileSpec &file_spec, uint64_t &low, argument
1338 std::tie(high, low) = Result->words();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DCompactUnwindInfo.cpp391 uint32_t low = 0; local
393 while (low < high) {
394 uint32_t mid = (low + high) / 2;
403 low = mid + 1;
421 uint32_t low = 0; local
424 while (low < high) {
425 uint32_t mid = (low + high) / 2;
442 low = mid + 1;
457 uint32_t low = 0; local
460 while (low < hig
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp786 response.PutHex64(Result->low());
H A DGDBRemoteCommunicationClient.h392 bool CalculateMD5(const FileSpec &file_spec, uint64_t &high, uint64_t &low);
H A DGDBRemoteCommunicationClient.cpp3159 const lldb_private::FileSpec &file_spec, uint64_t &high, uint64_t &low) {
3173 low = response.GetHexMaxU64(false, UINT64_MAX);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp1322 for (size_t low = 0; low < count; low++) {
1324 if (low)
1327 ValueObjectSP child = GetChildAtIndex(low, true);
1363 for (size_t low = 0; low < count; low++) {
1365 if (low)
1368 ValueObjectSP child = GetChildAtIndex(low, tru
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp1038 result.AppendError("invalid low address");
1151 lldb::addr_t FastSearch(lldb::addr_t low, lldb::addr_t high, uint8_t *buffer, argument
1153 const size_t region_size = high - low;
1160 ProcessMemoryIterator iterator(process_sp, low);
1171 return low + s;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h56 bool CalculateMD5(const FileSpec &file_spec, uint64_t &low,
H A DPlatform.h629 virtual bool CalculateMD5(const FileSpec &file_spec, uint64_t &low,
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwindCursor.hpp1555 uint32_t low = 0; local
1558 while (low < high) {
1559 uint32_t mid = (low + high) / 2;
1560 //if ( log ) fprintf(stderr, "\tmid=%d, low=%d, high=%d, *mid=0x%08X\n",
1561 //mid, low, high, topIndex.functionOffset(mid));
1565 low = mid;
1568 low = mid + 1;
1574 const uint32_t firstLevelFunctionOffset = topIndex.functionOffset(low);
1576 topIndex.functionOffset(low + 1);
1578 sects.compact_unwind_section + topIndex.secondLevelPagesSectionOffset(low);
[all...]
H A DEHHeaderParser.hpp115 size_t low = 0; local
117 size_t mid = low + (len / 2);
123 low = mid;
126 low = mid;
133 tableEntry = hdrInfo.table + low * tableEntrySize;
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp787 ctype<wchar_t>::do_is(const char_type* low, const char_type* high, mask* vec) const argument
789 for (; low != high; ++low, ++vec)
790 *vec = static_cast<mask>(isascii(*low) ?
791 ctype<char>::classic_table()[*low] : 0);
792 return low;
796 ctype<wchar_t>::do_scan_is(mask m, const char_type* low, const char_type* high) const argument
798 for (; low != high; ++low)
799 if (isascii(*low)
805 do_scan_not(mask m, const char_type* low, const char_type* high) const argument
827 do_toupper(char_type* low, const char_type* high) const argument
856 do_tolower(char_type* low, const char_type* high) const argument
878 do_widen(const char* low, const char* high, char_type* dest) const argument
894 do_narrow(const char_type* low, const char_type* high, char dfault, char* dest) const argument
940 do_toupper(char_type* low, const char_type* high) const argument
974 do_tolower(char_type* low, const char_type* high) const argument
996 do_widen(const char* low, const char* high, char_type* dest) const argument
1012 do_narrow(const char_type* low, const char_type* high, char dfault, char* dest) const argument
1211 do_toupper(char_type* low, const char_type* high) const argument
1225 do_tolower(char_type* low, const char_type* high) const argument
1280 do_is(const char_type* low, const char_type* high, mask* vec) const argument
1324 do_scan_is(mask m, const char_type* low, const char_type* high) const argument
1349 do_scan_not(mask m, const char_type* low, const char_type* high) const argument
1381 do_toupper(char_type* low, const char_type* high) const argument
1395 do_tolower(char_type* low, const char_type* high) const argument
1409 do_widen(const char* low, const char* high, char_type* dest) const argument
1424 do_narrow(const char_type* low, const char_type* high, char dfault, char* dest) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc7965 INTMAX_T low, INTMAX_T high, int *rstatus) {
7967 COMMON_INTERCEPTOR_ENTER(ctx, strtoi, nptr, endptr, base, low, high, rstatus);
7969 INTMAX_T ret = REAL(strtoi)(nptr, &real_endptr, base, low, high, rstatus);
7977 UINTMAX_T low, UINTMAX_T high, int *rstatus) {
7979 COMMON_INTERCEPTOR_ENTER(ctx, strtou, nptr, endptr, base, low, high, rstatus);
7981 UINTMAX_T ret = REAL(strtou)(nptr, &real_endptr, base, low, high, rstatus);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dudivmoddi4.c44 *rem = n.s.low % d.s.low;
45 return n.s.low / d.s.low;
51 *rem = n.s.low;
55 if (d.s.low == 0) {
61 *rem = n.s.high % d.s.low;
62 return n.s.high / d.s.low;
65 if (n.s.low == 0) {
71 r.s.low
[all...]
H A Dfp_lib.h118 uint64_t high, low; member in struct:__anon979::__anon980
122 uint64_t low, high; member in struct:__anon979::__anon981
134 word = uu.s.low;
H A Dfixxfdi.c39 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
44 di_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
45 di_int r = fb.u.low.all;
H A Dfixunsxfsi.c38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
43 return fb.u.low.s.high >> (31 - e);
H A Dfixunsxfdi.c38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
43 return fb.u.low.all >> (63 - e);
H A Dudivmodti4.c39 *rem = n.s.low % d.s.low;
40 return n.s.low / d.s.low;
46 *rem = n.s.low;
50 if (d.s.low == 0) {
56 *rem = n.s.high % d.s.low;
57 return n.s.high / d.s.low;
60 if (n.s.low == 0) {
66 r.s.low
[all...]
H A Ducmpti2.c30 if (x.s.low < y.s.low)
32 if (x.s.low > y.s.low)
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp757 return Result.low();
H A DCGBuiltin.cpp500 // will treat those bits as a different part of the i128: the low bits in
502 // we need to shift the high bits down to the low before truncating.
549 int low, int high) {
551 llvm::MDNode *RNode = MDHelper.createRange(APInt(32, low), APInt(32, high));
885 // the bit into the low position and mask it to 0 or 1.
12469 // ComparandResult, and exchange is taken as two 64bit ints (high & low).
547 emitRangedBuiltin(CodeGenFunction &CGF, unsigned IntrinsicID, int low, int high) argument
/freebsd-11-stable/share/mk/
H A Dbsd.sys.mk77 # is set to low values, these have to be disabled explicitly.
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMD5.h65 uint64_t low() const { function in struct:llvm::MD5::MD5Result
66 // Our MD5 implementation returns the result in little endian, so the low
78 return std::make_pair(high(), low());
117 return Result.low();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DRegisterContextMinidump_x86_64.h40 llvm::support::ulittle64_t low; member in struct:lldb_private::minidump::Uint128
160 // low 8 bits identify the type of context saved.

Completed in 378 milliseconds

1234567891011>>