Searched refs:AbsoluteValue (Results 1 – 10 of 10) sorted by relevance
20 void ScopedString::appendNumber(u64 AbsoluteValue, u8 Base, u8 MinNumberLength, in appendNumber() argument25 RAW_CHECK(AbsoluteValue || !Negative); in appendNumber()37 NumBuffer[Pos++] = static_cast<uptr>(AbsoluteValue % Base); in appendNumber()38 AbsoluteValue /= Base; in appendNumber()39 } while (AbsoluteValue > 0); in appendNumber()
35 void appendNumber(u64 AbsoluteValue, u8 Base, u8 MinNumberLength,
138 bool AbsoluteValue(); // Returns true on success
4 * Copyright 2009 AbsoluteValue Systems <solomon@linux-wlan.com>
473 bool Scalar::AbsoluteValue() { in AbsoluteValue() function in Scalar
601 constexpr U AbsoluteValue(T X) { in AbsoluteValue() function
1377 if (!stack.back().ResolveValue(exe_ctx).AbsoluteValue()) { in Evaluate()
22 def AbsoluteValue : DiagGroup<"absolute-value">;
96 InGroup<AbsoluteValue>;101 "of type %2 which may cause truncation of value">, InGroup<AbsoluteValue>;105 InGroup<AbsoluteValue>;109 InGroup<AbsoluteValue>;
19686 uint64_t AbsImm = AbsoluteValue(Imm); in isLegalAddImmediate()