Home
last modified time | relevance | path

Searched refs:low_index (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/ntp/libparse/
H A Dmfp_mul.c103 int low_index = (i+j)/2; /* formal [0..3] - index for low long word */ in mfp_mul() local
104 int mid_index = 1+low_index; /* formal [1..4]! - index for high long word in mfp_mul()
124 if (((c[low_index] >> 1) + (result_low >> 1) + ((c[low_index] & result_low & carry) != 0)) & in mfp_mul()
129 c[low_index] += result_low; /* add up partial products */ in mfp_mul()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp2661 unsigned long low_index, high_index; in GetValueForExpressionPath_Impl() local
2663 if (sleft.getAsInteger(0, low_index) || in GetValueForExpressionPath_Impl()
2671 if (low_index > high_index) // swap indices if required in GetValueForExpressionPath_Impl()
2672 std::swap(low_index, high_index); in GetValueForExpressionPath_Impl()
2677 root = root->GetSyntheticBitFieldChild(low_index, high_index, true); in GetValueForExpressionPath_Impl()