Searched refs:AbsoluteValue (Results 1 – 3 of 3) sorted by relevance
21 def AbsoluteValue : DiagGroup<"absolute-value">;
41 InGroup<AbsoluteValue>;46 "of type %2 which may cause truncation of value">, InGroup<AbsoluteValue>;50 InGroup<AbsoluteValue>;54 InGroup<AbsoluteValue>;
27 #define AbsoluteValue(x) ((x) < 0 ? -(x) : (x)) macro