diff --git a/indra/llcharacter/llmotion.cpp b/indra/llcharacter/llmotion.cpp
index b28e66d22c87174de35a0faf89e2b15c516dc28e..7c0e2d43435d16f5cb3a05274263fbd94693b969 100644
--- a/indra/llcharacter/llmotion.cpp
+++ b/indra/llcharacter/llmotion.cpp
@@ -65,7 +65,7 @@ void LLMotion::fadeOut()
 {
 	if (mFadeWeight > 0.01f)
 	{
-		mFadeWeight = lerp(mFadeWeight, 0.f, LLSmoothInterpolation::getInterpolant(0.15f));
+		mFadeWeight = ll_lerp(mFadeWeight, 0.f, LLSmoothInterpolation::getInterpolant(0.15f));
 	}
 	else
 	{
@@ -80,7 +80,7 @@ void LLMotion::fadeIn()
 {
 	if (mFadeWeight < 0.99f)
 	{
-		mFadeWeight = lerp(mFadeWeight, 1.f, LLSmoothInterpolation::getInterpolant(0.15f));
+		mFadeWeight = ll_lerp(mFadeWeight, 1.f, LLSmoothInterpolation::getInterpolant(0.15f));
 	}
 	else
 	{
diff --git a/indra/llcommon/lltracerecording.cpp b/indra/llcommon/lltracerecording.cpp
index c9d87466f30bb157fcd97fec0a1371f0f4daf57e..2d2eb7e5d7baf7491b8b47a0b792ab6b9a45fd0b 100644
--- a/indra/llcommon/lltracerecording.cpp
+++ b/indra/llcommon/lltracerecording.cpp
@@ -27,16 +27,12 @@
 
 #include "lltracerecording.h"
 
+#include "llmath.h"
 #include "lltrace.h"
 #include "llfasttimer.h"
 #include "lltracethreadrecorder.h"
 #include "llthread.h"
 
-inline F64 lerp(F64 a, F64 b, F64 u) 
-{
-	return a + ((b - a) * u);
-}
-
 namespace LLTrace
 {
 
@@ -263,7 +259,7 @@ F64Kilobytes Recording::getMean(const StatType<MemAccumulator>& stat)
         {
             t = active_accumulator->mSize.getSampleCount() / div;
         }
-		return F64Bytes(lerp(accumulator.mSize.getMean(), active_accumulator->mSize.getMean(), t));
+		return F64Bytes(ll_lerp(accumulator.mSize.getMean(), active_accumulator->mSize.getMean(), t));
 	}
 	else
 	{
@@ -438,7 +434,7 @@ F64 Recording::getMean( const StatType<SampleAccumulator>& stat )
         {
             t = active_accumulator->getSampleCount() / div;
         }
-		return lerp(accumulator.getMean(), active_accumulator->getMean(), t);
+		return ll_lerp(accumulator.getMean(), active_accumulator->getMean(), t);
 	}
 	else
 	{
@@ -524,7 +520,7 @@ F64 Recording::getMean( const StatType<EventAccumulator>& stat )
         {
             t = active_accumulator->getSampleCount() / div;
         }
-		return lerp(accumulator.getMean(), active_accumulator->getMean(), t);
+		return ll_lerp(accumulator.getMean(), active_accumulator->getMean(), t);
 	}
 	else
 	{
diff --git a/indra/llinventory/llsettingsbase.cpp b/indra/llinventory/llsettingsbase.cpp
index 71d06239229e9ab8f2e24dfb2f0a77edecb1989c..e273a25c21e0e7805d884e83fef528fe255d2e3f 100644
--- a/indra/llinventory/llsettingsbase.cpp
+++ b/indra/llinventory/llsettingsbase.cpp
@@ -279,11 +279,11 @@ LLSD LLSettingsBase::interpolateSDValue(const std::string& key_name, const LLSD
     {
         case LLSD::TypeInteger:
             // lerp between the two values rounding the result to the nearest integer. 
-            new_value = LLSD::Integer(llroundf(lerp(value.asReal(), other_value.asReal(), mix)));
+            new_value = LLSD::Integer(llroundf(ll_lerp(value.asReal(), other_value.asReal(), mix)));
             break;
         case LLSD::TypeReal:
             // lerp between the two values.
-            new_value = LLSD::Real(lerp(value.asReal(), other_value.asReal(), mix));
+            new_value = LLSD::Real(ll_lerp(value.asReal(), other_value.asReal(), mix));
             break;
         case LLSD::TypeMap:
             // deep copy.
@@ -309,7 +309,7 @@ LLSD LLSettingsBase::interpolateSDValue(const std::string& key_name, const LLSD
                 for (size_t i = 0; i < len; ++i)
                 {
 
-                    new_array[i] = lerp(value[i].asReal(), other_value[i].asReal(), mix);
+                    new_array[i] = ll_lerp(value[i].asReal(), other_value[i].asReal(), mix);
                 }
             }
 
diff --git a/indra/llinventory/llsettingssky.cpp b/indra/llinventory/llsettingssky.cpp
index 953852c4a7b78b732738c735bcb9d7836866421e..09cc5cd29cc32d27060f33434fb3aa43c9dd77cd 100644
--- a/indra/llinventory/llsettingssky.cpp
+++ b/indra/llinventory/llsettingssky.cpp
@@ -475,19 +475,19 @@ void LLSettingsSky::blend(const LLSettingsBase::ptr_t &end, F64 blendf)
             // If there is no cloud texture in destination, reduce coverage to imitate disappearance
             // See LLDrawPoolWLSky::renderSkyClouds... we don't blend present texture with null
             // Note: Probably can be done by shader
-            cloud_shadow = lerp(mSettings[SETTING_CLOUD_SHADOW].asReal(), (F64)0.f, blendf);
+            cloud_shadow = ll_lerp(mSettings[SETTING_CLOUD_SHADOW].asReal(), (F64)0.f, blendf);
             cloud_noise_id_next = cloud_noise_id;
         }
         else if (cloud_noise_id.isNull() && !cloud_noise_id_next.isNull())
         {
             // Source has no cloud texture, reduce initial coverage to imitate appearance
             // use same texture as destination
-            cloud_shadow = lerp((F64)0.f, other->mSettings[SETTING_CLOUD_SHADOW].asReal(), blendf);
+            cloud_shadow = ll_lerp((F64)0.f, other->mSettings[SETTING_CLOUD_SHADOW].asReal(), blendf);
             setCloudNoiseTextureId(cloud_noise_id_next);
         }
         else
         {
-            cloud_shadow = lerp(mSettings[SETTING_CLOUD_SHADOW].asReal(), other->mSettings[SETTING_CLOUD_SHADOW].asReal(), blendf);
+            cloud_shadow = ll_lerp(mSettings[SETTING_CLOUD_SHADOW].asReal(), other->mSettings[SETTING_CLOUD_SHADOW].asReal(), blendf);
         }
 
         LLSD blenddata = interpolateSDMap(mSettings, other->mSettings, other->getParameterMap(), blendf);
diff --git a/indra/llmath/llmath.h b/indra/llmath/llmath.h
index a72abed6a0029995cc6d4b6e7b4d08387e38fbd7..f3269b38d98181fbddc86f7b7a06cf9bfd7ba455 100644
--- a/indra/llmath/llmath.h
+++ b/indra/llmath/llmath.h
@@ -339,7 +339,7 @@ inline F32 snap_to_sig_figs(F32 foo, S32 sig_figs)
 	return new_foo;
 }
 
-inline F32 lerp(F32 a, F32 b, F32 u) 
+inline F32 ll_lerp(F32 a, F32 b, F32 u) 
 {
 	return a + ((b - a) * u);
 }
@@ -359,7 +359,7 @@ inline F32 ramp(F32 x, F32 a, F32 b)
 
 inline F32 rescale(F32 x, F32 x1, F32 x2, F32 y1, F32 y2)
 {
-	return lerp(y1, y2, ramp(x, x1, x2));
+	return ll_lerp(y1, y2, ramp(x, x1, x2));
 }
 
 inline F32 clamp_rescale(F32 x, F32 x1, F32 x2, F32 y1, F32 y2)
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp
index 52d6f221b005491cc5a2f74abcda88a87d4f2ef2..50a8a4fd7016cd439a2451f5630a4b0a95125001 100644
--- a/indra/llmath/llvolume.cpp
+++ b/indra/llmath/llvolume.cpp
@@ -1370,22 +1370,22 @@ void LLPath::genNGon(const LLPathParams& params, S32 sides, F32 startOff, F32 en
 	F32 t	= params.getBegin();
 	pt		= mPath.append(1);
 	ang		= 2.0f*F_PI*revolutions * t;
-	s		= sin(ang)*lerp(radius_start, radius_end, t);	
-	c		= cos(ang)*lerp(radius_start, radius_end, t);
+	s		= sin(ang)*ll_lerp(radius_start, radius_end, t);
+	c		= cos(ang)*ll_lerp(radius_start, radius_end, t);
 
 
 	const LLVector2& shearval = params.getShear();
-	pt->mPos.set(0 + lerp(0,shearval.mV[0],s)
-					  + lerp(-skew ,skew, t) * 0.5f,
-					c + lerp(0,shearval.mV[1],s), 
+	pt->mPos.set(0 + ll_lerp(0,shearval.mV[0],s)
+					  + ll_lerp(-skew ,skew, t) * 0.5f,
+					c + ll_lerp(0,shearval.mV[1],s),
 					s);
-	pt->mScale.set(hole_x * lerp(taper_x_begin, taper_x_end, t),
-		hole_y * lerp(taper_y_begin, taper_y_end, t),
+	pt->mScale.set(hole_x * ll_lerp(taper_x_begin, taper_x_end, t),
+		hole_y * ll_lerp(taper_y_begin, taper_y_end, t),
 		0,1);
 	pt->mTexT  = t;
 
 	// Twist rotates the path along the x,y plane (I think) - DJS 04/05/02
-	twist.setQuat  (lerp(twist_begin,twist_end,t) * 2.f * F_PI - F_PI,0,0,1);
+	twist.setQuat  (ll_lerp(twist_begin,twist_end,t) * 2.f * F_PI - F_PI,0,0,1);
 	// Rotate the point around the circle's center.
 	qang.setQuat   (ang,path_axis);
 
@@ -1405,21 +1405,21 @@ void LLPath::genNGon(const LLPathParams& params, S32 sides, F32 startOff, F32 en
 		pt		= mPath.append(1);
 
 		ang = 2.0f*F_PI*revolutions * t;
-		c   = cos(ang)*lerp(radius_start, radius_end, t);
-		s   = sin(ang)*lerp(radius_start, radius_end, t);
+		c   = cos(ang)*ll_lerp(radius_start, radius_end, t);
+		s   = sin(ang)*ll_lerp(radius_start, radius_end, t);
 
-		pt->mPos.set(0 + lerp(0,params.getShear().mV[0],s)
-					      + lerp(-skew ,skew, t) * 0.5f,
-						c + lerp(0,params.getShear().mV[1],s), 
+		pt->mPos.set(0 + ll_lerp(0,params.getShear().mV[0],s)
+					      + ll_lerp(-skew ,skew, t) * 0.5f,
+						c + ll_lerp(0,params.getShear().mV[1],s),
 						s);
 
-		pt->mScale.set(hole_x * lerp(taper_x_begin, taper_x_end, t),
-					hole_y * lerp(taper_y_begin, taper_y_end, t),
+		pt->mScale.set(hole_x * ll_lerp(taper_x_begin, taper_x_end, t),
+					hole_y * ll_lerp(taper_y_begin, taper_y_end, t),
 					0,1);
 		pt->mTexT  = t;
 
 		// Twist rotates the path along the x,y plane (I think) - DJS 04/05/02
-		twist.setQuat  (lerp(twist_begin,twist_end,t) * 2.f * F_PI - F_PI,0,0,1);
+		twist.setQuat  (ll_lerp(twist_begin,twist_end,t) * 2.f * F_PI - F_PI,0,0,1);
 		// Rotate the point around the circle's center.
 		qang.setQuat   (ang,path_axis);
 		LLMatrix3 tmp(twist*qang);
@@ -1432,20 +1432,20 @@ void LLPath::genNGon(const LLPathParams& params, S32 sides, F32 startOff, F32 en
 	t = params.getEnd();
 	pt		= mPath.append(1);
 	ang = 2.0f*F_PI*revolutions * t;
-	c   = cos(ang)*lerp(radius_start, radius_end, t);
-	s   = sin(ang)*lerp(radius_start, radius_end, t);
+	c   = cos(ang)*ll_lerp(radius_start, radius_end, t);
+	s   = sin(ang)*ll_lerp(radius_start, radius_end, t);
 
-	pt->mPos.set(0 + lerp(0,params.getShear().mV[0],s)
-					  + lerp(-skew ,skew, t) * 0.5f,
-					c + lerp(0,params.getShear().mV[1],s), 
+	pt->mPos.set(0 + ll_lerp(0,params.getShear().mV[0],s)
+					  + ll_lerp(-skew ,skew, t) * 0.5f,
+					c + ll_lerp(0,params.getShear().mV[1],s),
 					s);
-	pt->mScale.set(hole_x * lerp(taper_x_begin, taper_x_end, t),
-				   hole_y * lerp(taper_y_begin, taper_y_end, t),
+	pt->mScale.set(hole_x * ll_lerp(taper_x_begin, taper_x_end, t),
+				   hole_y * ll_lerp(taper_y_begin, taper_y_end, t),
 				   0,1);
 	pt->mTexT  = t;
 
 	// Twist rotates the path along the x,y plane (I think) - DJS 04/05/02
-	twist.setQuat  (lerp(twist_begin,twist_end,t) * 2.f * F_PI - F_PI,0,0,1);
+	twist.setQuat  (ll_lerp(twist_begin,twist_end,t) * 2.f * F_PI - F_PI,0,0,1);
 	// Rotate the point around the circle's center.
 	qang.setQuat   (ang,path_axis);
 	LLMatrix3 tmp(twist*qang);
@@ -1572,16 +1572,16 @@ BOOL LLPath::generate(const LLPathParams& params, F32 detail, S32 split,
 
 			for (S32 i=0;i<np;i++)
 			{
-				F32 t = lerp(params.getBegin(),params.getEnd(),(F32)i * mStep);
-				mPath[i].mPos.set(lerp(0,params.getShear().mV[0],t),
-									 lerp(0,params.getShear().mV[1],t),
+				F32 t = ll_lerp(params.getBegin(),params.getEnd(),(F32)i * mStep);
+				mPath[i].mPos.set(ll_lerp(0,params.getShear().mV[0],t),
+									 ll_lerp(0,params.getShear().mV[1],t),
 									 t - 0.5f);
 				LLQuaternion quat;
-				quat.setQuat(lerp(F_PI * params.getTwistBegin(),F_PI * params.getTwist(),t),0,0,1);
+				quat.setQuat(ll_lerp(F_PI * params.getTwistBegin(),F_PI * params.getTwist(),t),0,0,1);
 				LLMatrix3 tmp(quat);
 				mPath[i].mRot.loadu(tmp);
-				mPath[i].mScale.set(lerp(start_scale.mV[0],end_scale.mV[0],t),
-									lerp(start_scale.mV[1],end_scale.mV[1],t),
+				mPath[i].mScale.set(ll_lerp(start_scale.mV[0],end_scale.mV[0],t),
+									ll_lerp(start_scale.mV[1],end_scale.mV[1],t),
 									0,1);
 				mPath[i].mTexT        = t;
 			}
@@ -1642,10 +1642,10 @@ BOOL LLPath::generate(const LLPathParams& params, F32 detail, S32 split,
 		{
 			F32 t = (F32)i * mStep;
 			mPath[i].mPos.set(0,
-								lerp(0,   -sin(F_PI*params.getTwist()*t)*0.5f,t),
-								lerp(-0.5f, cos(F_PI*params.getTwist()*t)*0.5f,t));
-			mPath[i].mScale.set(lerp(1,params.getScale().mV[0],t),
-								lerp(1,params.getScale().mV[1],t), 0,1);
+								ll_lerp(0,   -sin(F_PI*params.getTwist()*t)*0.5f,t),
+								ll_lerp(-0.5f, cos(F_PI*params.getTwist()*t)*0.5f,t));
+			mPath[i].mScale.set(ll_lerp(1,params.getScale().mV[0],t),
+								ll_lerp(1,params.getScale().mV[1],t), 0,1);
 			mPath[i].mTexT  = t;
 			LLQuaternion quat;
 			quat.setQuat(F_PI * params.getTwist() * t,1,0,0);
diff --git a/indra/llrender/llrender2dutils.cpp b/indra/llrender/llrender2dutils.cpp
index 5eaeea5659edccc4427681f41ac9579e825af2fb..076a55f7b8522302ac1052caf6eafc4315e0eb14 100644
--- a/indra/llrender/llrender2dutils.cpp
+++ b/indra/llrender/llrender2dutils.cpp
@@ -453,8 +453,8 @@ void gl_draw_scaled_image_with_border(S32 x, S32 y, S32 width, S32 height, LLTex
 
 			const F32 border_shrink_scale = 1.f - llmax(shrink_width_ratio, shrink_height_ratio);
 			draw_center_rect.mLeft *= border_shrink_scale;
-			draw_center_rect.mTop = lerp((F32)height, (F32)draw_center_rect.mTop, border_shrink_scale);
-			draw_center_rect.mRight = lerp((F32)width, (F32)draw_center_rect.mRight, border_shrink_scale);
+			draw_center_rect.mTop = ll_lerp((F32)height, (F32)draw_center_rect.mTop, border_shrink_scale);
+			draw_center_rect.mRight = ll_lerp((F32)width, (F32)draw_center_rect.mRight, border_shrink_scale);
 			draw_center_rect.mBottom *= border_shrink_scale;
 		}
 		else
@@ -1620,7 +1620,7 @@ void LLRender2D::loadIdentity()
 // static
 void LLRender2D::setLineWidth(F32 width)
 {
-	gGL.setLineWidth(width * lerp(LLRender::sUIGLScaleFactor.mV[VX], LLRender::sUIGLScaleFactor.mV[VY], 0.5f));
+	gGL.setLineWidth(width * ll_lerp(LLRender::sUIGLScaleFactor.mV[VX], LLRender::sUIGLScaleFactor.mV[VY], 0.5f));
 }
 
 LLPointer<LLUIImage> LLRender2D::getUIImageByID(const LLUUID& image_id, S32 priority)
diff --git a/indra/llui/llbutton.cpp b/indra/llui/llbutton.cpp
index 6e278a836d434452346487bbb67d0cb95cc9233d..1ef3372dbea80aa7d7a232b06016e5122ea24d9f 100644
--- a/indra/llui/llbutton.cpp
+++ b/indra/llui/llbutton.cpp
@@ -807,18 +807,18 @@ void LLButton::draw()
 	if (hasFocus())
 	{
 		F32 lerp_amt = gFocusMgr.getFocusFlashAmt();
-		drawBorder(imagep, gFocusMgr.getFocusColor() % alpha, ll_round(lerp(1.f, 3.f, lerp_amt)));
+		drawBorder(imagep, gFocusMgr.getFocusColor() % alpha, ll_round(ll_lerp(1.f, 3.f, lerp_amt)));
 	}
 	
 	if (use_glow_effect)
 	{
-		mCurGlowStrength = lerp(mCurGlowStrength,
+		mCurGlowStrength = ll_lerp(mCurGlowStrength,
 					mFlashing ? (mFlashingTimer->isCurrentlyHighlighted() || !mFlashingTimer->isFlashingInProgress() || mNeedsHighlight? 1.f : 0.f) : mHoverGlowStrength,
 					LLSmoothInterpolation::getInterpolant(0.05f));
 	}
 	else
 	{
-		mCurGlowStrength = lerp(mCurGlowStrength, 0.f, LLSmoothInterpolation::getInterpolant(0.05f));
+		mCurGlowStrength = ll_lerp(mCurGlowStrength, 0.f, LLSmoothInterpolation::getInterpolant(0.05f));
 	}
 
 	// Draw button image, if available.
diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp
index a02bf252c5d0ab306c33cc58aea5d71e0138ad8a..21341a11d2ff82b4ac9c4e9315abd12f79bd1463 100644
--- a/indra/llui/llfloater.cpp
+++ b/indra/llui/llfloater.cpp
@@ -2220,11 +2220,11 @@ void LLFloater::drawConeToOwner(F32 &context_cone_opacity,
 
     if (gFocusMgr.childHasMouseCapture(getDragHandle()))
     {
-        context_cone_opacity = lerp(context_cone_opacity, max_cone_opacity, LLSmoothInterpolation::getInterpolant(fade_time));
+        context_cone_opacity = ll_lerp(context_cone_opacity, max_cone_opacity, LLSmoothInterpolation::getInterpolant(fade_time));
     }
     else
     {
-        context_cone_opacity = lerp(context_cone_opacity, 0.f, LLSmoothInterpolation::getInterpolant(fade_time));
+        context_cone_opacity = ll_lerp(context_cone_opacity, 0.f, LLSmoothInterpolation::getInterpolant(fade_time));
     }
 }
 
diff --git a/indra/llui/llfocusmgr.h b/indra/llui/llfocusmgr.h
index 0e3d7d8e590be9cef09dc713940e94daa3bbad8a..afce6154351b6e1c72ee8b1a7d90e6d7f1c0e4c6 100644
--- a/indra/llui/llfocusmgr.h
+++ b/indra/llui/llfocusmgr.h
@@ -101,7 +101,7 @@ class LLFocusMgr
 	void			setKeystrokesOnly(BOOL keystrokes_only) { mKeystrokesOnly = keystrokes_only; }
 
 	F32				getFocusFlashAmt() const;
-	S32				getFocusFlashWidth() const { return ll_round(lerp(1.f, 3.f, getFocusFlashAmt())); }
+	S32				getFocusFlashWidth() const { return ll_round(ll_lerp(1.f, 3.f, getFocusFlashAmt())); }
 	LLColor4		getFocusColor() const;
 	void			triggerFocusFlash();
 	BOOL			getAppHasFocus() const { return mAppHasFocus; }
diff --git a/indra/llui/llfolderviewitem.cpp b/indra/llui/llfolderviewitem.cpp
index 7cdc9b73c94b0db9aa817e73f62e86345bcb467c..00db0f6537069143349a23b9aa2e8131557a5c2b 100644
--- a/indra/llui/llfolderviewitem.cpp
+++ b/indra/llui/llfolderviewitem.cpp
@@ -1017,11 +1017,11 @@ void LLFolderViewFolder::updateLabelRotation()
 	}
 	else if (isOpen())
 	{
-		mControlLabelRotation = lerp(mControlLabelRotation, -90.f, LLSmoothInterpolation::getInterpolant(0.04f));
+		mControlLabelRotation = ll_lerp(mControlLabelRotation, -90.f, LLSmoothInterpolation::getInterpolant(0.04f));
 	}
 	else
 	{
-		mControlLabelRotation = lerp(mControlLabelRotation, 0.f, LLSmoothInterpolation::getInterpolant(0.025f));
+		mControlLabelRotation = ll_lerp(mControlLabelRotation, 0.f, LLSmoothInterpolation::getInterpolant(0.025f));
 	}
 }
 
@@ -1171,7 +1171,7 @@ S32 LLFolderViewFolder::arrange( S32* width, S32* height )
 	// animate current height towards target height
 	if (llabs(mCurHeight - mTargetHeight) > 1.f)
 	{
-		mCurHeight = lerp(mCurHeight, mTargetHeight, LLSmoothInterpolation::getInterpolant(isOpen() ? FOLDER_OPEN_TIME_CONSTANT : FOLDER_CLOSE_TIME_CONSTANT));
+		mCurHeight = ll_lerp(mCurHeight, mTargetHeight, LLSmoothInterpolation::getInterpolant(isOpen() ? FOLDER_OPEN_TIME_CONSTANT : FOLDER_CLOSE_TIME_CONSTANT));
 
 		requestArrange();
 
diff --git a/indra/llui/lllayoutstack.cpp b/indra/llui/lllayoutstack.cpp
index 92a046583362ff417bacd79c048cc201ffe75880..0335900fda85aef6772df7db7c77e0c39745d1fa 100644
--- a/indra/llui/lllayoutstack.cpp
+++ b/indra/llui/lllayoutstack.cpp
@@ -724,7 +724,7 @@ bool LLLayoutStack::animatePanels()
 			{
 				if (!mAnimatedThisFrame)
 				{
-					panelp->mVisibleAmt = lerp(panelp->mVisibleAmt, 1.f, LLSmoothInterpolation::getInterpolant(mOpenTimeConstant));
+					panelp->mVisibleAmt = ll_lerp(panelp->mVisibleAmt, 1.f, LLSmoothInterpolation::getInterpolant(mOpenTimeConstant));
 					if (panelp->mVisibleAmt > 0.99f)
 					{
 						panelp->mVisibleAmt = 1.f;
@@ -749,7 +749,7 @@ bool LLLayoutStack::animatePanels()
 			{
 				if (!mAnimatedThisFrame)
 				{
-					panelp->mVisibleAmt = lerp(panelp->mVisibleAmt, 0.f, LLSmoothInterpolation::getInterpolant(mCloseTimeConstant));
+					panelp->mVisibleAmt = ll_lerp(panelp->mVisibleAmt, 0.f, LLSmoothInterpolation::getInterpolant(mCloseTimeConstant));
 					if (panelp->mVisibleAmt < 0.001f)
 					{
 						panelp->mVisibleAmt = 0.f;
@@ -776,7 +776,7 @@ bool LLLayoutStack::animatePanels()
 			{
 				if (!mAnimatedThisFrame)
 				{
-					panelp->mCollapseAmt = lerp(panelp->mCollapseAmt, collapse_state, LLSmoothInterpolation::getInterpolant(mCloseTimeConstant));
+					panelp->mCollapseAmt = ll_lerp(panelp->mCollapseAmt, collapse_state, LLSmoothInterpolation::getInterpolant(mCloseTimeConstant));
 				}
 			
 				if (llabs(panelp->mCollapseAmt - collapse_state) < 0.001f)
diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp
index dd92883270e8dfba856cb5542d747910a941445a..588232c792cd1ad7ab08a1929294ebd3ac9d6ead 100644
--- a/indra/llui/llmenugl.cpp
+++ b/indra/llui/llmenugl.cpp
@@ -3095,8 +3095,8 @@ BOOL LLMenuGL::handleHover( S32 x, S32 y, MASK mask )
 	LLVector2 mouse_avg_dir((F32)mMouseVelX, (F32)mMouseVelY);
 	mouse_avg_dir.normVec();
 	F32 interp = 0.5f * (llclamp(mouse_dir * mouse_avg_dir, 0.f, 1.f));
-	mMouseVelX = ll_round(lerp((F32)mouse_delta_x, (F32)mMouseVelX, interp));
-	mMouseVelY = ll_round(lerp((F32)mouse_delta_y, (F32)mMouseVelY, interp));
+	mMouseVelX = ll_round(ll_lerp((F32)mouse_delta_x, (F32)mMouseVelX, interp));
+	mMouseVelY = ll_round(ll_lerp((F32)mouse_delta_y, (F32)mMouseVelY, interp));
 	mLastMouseX = x;
 	mLastMouseY = y;
 
@@ -3929,7 +3929,7 @@ void LLTearOffMenu::draw()
 	if (getRect().getHeight() != mTargetHeight)
 	{
 		// animate towards target height
-		reshape(getRect().getWidth(), llceil(lerp((F32)getRect().getHeight(), mTargetHeight, LLSmoothInterpolation::getInterpolant(0.05f))));
+		reshape(getRect().getWidth(), llceil(ll_lerp((F32)getRect().getHeight(), mTargetHeight, LLSmoothInterpolation::getInterpolant(0.05f))));
 	}
 	LLFloater::draw();
 }
diff --git a/indra/llui/llscrollbar.cpp b/indra/llui/llscrollbar.cpp
index 7b9a8eddfabcd05be7fb906a7849df8e65d64d33..6f05438551002698243a17d32a667f7871510e48 100644
--- a/indra/llui/llscrollbar.cpp
+++ b/indra/llui/llscrollbar.cpp
@@ -507,11 +507,11 @@ void LLScrollbar::draw()
 	BOOL hovered = getEnabled() && !other_captor && (hasMouseCapture() || mThumbRect.pointInRect(local_mouse_x, local_mouse_y));
 	if (hovered)
 	{
-		mCurGlowStrength = lerp(mCurGlowStrength, mHoverGlowStrength, LLSmoothInterpolation::getInterpolant(0.05f));
+		mCurGlowStrength = ll_lerp(mCurGlowStrength, mHoverGlowStrength, LLSmoothInterpolation::getInterpolant(0.05f));
 	}
 	else
 	{
-		mCurGlowStrength = lerp(mCurGlowStrength, 0.f, LLSmoothInterpolation::getInterpolant(0.05f));
+		mCurGlowStrength = ll_lerp(mCurGlowStrength, 0.f, LLSmoothInterpolation::getInterpolant(0.05f));
 	}
 
 	// Draw background and thumb.
diff --git a/indra/llui/llstatbar.cpp b/indra/llui/llstatbar.cpp
index 6c8e63442badf14ca6498a37bad9057d2ddaadcd..667debc761d1a7aad54d7dc06b6dc2a4e97d0a22 100644
--- a/indra/llui/llstatbar.cpp
+++ b/indra/llui/llstatbar.cpp
@@ -642,8 +642,8 @@ void LLStatBar::drawTicks( F32 min, F32 max, F32 value_scale, LLRect &bar_rect )
 	if (!llisnan(min) && (mAutoScaleMax || mAutoScaleMin))
 	{
 		F32 u = LLSmoothInterpolation::getInterpolant(10.f);
-		mFloatingTargetMinBar = llmin(min, lerp(mFloatingTargetMinBar, min, u));
-		mFloatingTargetMaxBar = llmax(max, lerp(mFloatingTargetMaxBar, max, u));
+		mFloatingTargetMinBar = llmin(min, ll_lerp(mFloatingTargetMinBar, min, u));
+		mFloatingTargetMaxBar = llmax(max, ll_lerp(mFloatingTargetMaxBar, max, u));
 		F32 range_min = mAutoScaleMin ? mFloatingTargetMinBar : mTargetMinBar;
 		F32 range_max = mAutoScaleMax ? mFloatingTargetMaxBar : mTargetMaxBar;
 		F32 tick_value = 0.f;
diff --git a/indra/llui/lltabcontainer.cpp b/indra/llui/lltabcontainer.cpp
index d84732d3b9770b3fd23e3cd70d45056fb0e6154c..ae4a3e546532f95b38d980806779898d593f140f 100644
--- a/indra/llui/lltabcontainer.cpp
+++ b/indra/llui/lltabcontainer.cpp
@@ -428,7 +428,7 @@ void LLTabContainer::draw()
 		}
 	}
 
-	setScrollPosPixels((S32)lerp((F32)getScrollPosPixels(), (F32)target_pixel_scroll, LLSmoothInterpolation::getInterpolant(0.08f)));
+	setScrollPosPixels((S32)ll_lerp((F32)getScrollPosPixels(), (F32)target_pixel_scroll, LLSmoothInterpolation::getInterpolant(0.08f)));
 
 	BOOL has_scroll_arrows = !mHideScrollArrows && !getTabsHidden() && ((mMaxScrollPos > 0) || (mScrollPosPixels > 0));
 	if (!mIsVertical)
diff --git a/indra/llui/llviewborder.cpp b/indra/llui/llviewborder.cpp
index 919267dcc677fccdeefa1fa3178818619192e866..d5dba16cf386ded3225ce0e9c2fb5bfef50d245c 100644
--- a/indra/llui/llviewborder.cpp
+++ b/indra/llui/llviewborder.cpp
@@ -149,7 +149,7 @@ void LLViewBorder::drawOnePixelLines()
 		top_color = gFocusMgr.getFocusColor();
 		bottom_color = top_color;
 
-		LLUI::setLineWidth(lerp(1.f, 3.f, gFocusMgr.getFocusFlashAmt()));
+		LLUI::setLineWidth(ll_lerp(1.f, 3.f, gFocusMgr.getFocusFlashAmt()));
 	}
 
 	S32 left	= 0;
diff --git a/indra/newview/llagentcamera.cpp b/indra/newview/llagentcamera.cpp
index 646a91e3669129c1eb0cef9bb14ea23541f05caa..5befdfeda1a447cfd3e8d33972bf30c4e5af2815 100644
--- a/indra/newview/llagentcamera.cpp
+++ b/indra/newview/llagentcamera.cpp
@@ -1504,7 +1504,7 @@ void LLAgentCamera::updateCamera()
 	}
 
 	
-	mCameraCurrentFOVZoomFactor = lerp(mCameraCurrentFOVZoomFactor, mCameraFOVZoomFactor, LLSmoothInterpolation::getInterpolant(FOV_ZOOM_HALF_LIFE));
+	mCameraCurrentFOVZoomFactor = ll_lerp(mCameraCurrentFOVZoomFactor, mCameraFOVZoomFactor, LLSmoothInterpolation::getInterpolant(FOV_ZOOM_HALF_LIFE));
 
 //	LL_INFOS() << "Current FOV Zoom: " << mCameraCurrentFOVZoomFactor << " Target FOV Zoom: " << mCameraFOVZoomFactor << " Object penetration: " << mFocusObjectDist << LL_ENDL;
 
@@ -1962,7 +1962,7 @@ LLVector3d LLAgentCamera::calcCameraPositionTargetGlobal(BOOL *hit_limit)
 			{
 				F32 camera_lerp_amt = LLSmoothInterpolation::getInterpolant(CAMERA_ZOOM_HALF_LIFE);
 
-				mCurrentCameraDistance = lerp(mCurrentCameraDistance, mTargetCameraDistance, camera_lerp_amt);
+				mCurrentCameraDistance = ll_lerp(mCurrentCameraDistance, mTargetCameraDistance, camera_lerp_amt);
 			}
 
 			// Make the camera distance current
diff --git a/indra/newview/llagentpilot.cpp b/indra/newview/llagentpilot.cpp
index cfc445f9986fea6d3f9c72084fc931507318c336..a07341ee4ee1213bbfa1ce23cd5a7f20de0cd754 100644
--- a/indra/newview/llagentpilot.cpp
+++ b/indra/newview/llagentpilot.cpp
@@ -313,7 +313,7 @@ void LLAgentPilot::moveCamera()
 		Action& start = mActions[start_index];
 		Action& end = mActions[end_index];
 
-		F32 view = lerp(start.mCameraView, end.mCameraView, t);
+		F32 view = ll_lerp(start.mCameraView, end.mCameraView, t);
 		LLVector3 origin = lerp(start.mCameraOrigin, end.mCameraOrigin, t);
 		LLQuaternion start_quat(start.mCameraXAxis, start.mCameraYAxis, start.mCameraZAxis);
 		LLQuaternion end_quat(end.mCameraXAxis, end.mCameraYAxis, end.mCameraZAxis);
diff --git a/indra/newview/llfasttimerview.cpp b/indra/newview/llfasttimerview.cpp
index 6a087fab46af80992589327aaab83aac65c1e590..ab9919cbb86dce576eb92095788cd9eb85dcfa10 100644
--- a/indra/newview/llfasttimerview.cpp
+++ b/indra/newview/llfasttimerview.cpp
@@ -1142,13 +1142,13 @@ void LLFastTimerView::drawLineGraph()
 	}
 	
 	//interpolate towards new maximum
-	max_time = (F32Seconds)lerp(max_time.value(), cur_max.value(), LLSmoothInterpolation::getInterpolant(0.1f));
+	max_time = (F32Seconds)ll_lerp(max_time.value(), cur_max.value(), LLSmoothInterpolation::getInterpolant(0.1f));
 	if (llabs((max_time - cur_max).value()) <= 1)
 	{
 		max_time = llmax(F32Microseconds(1.f), F32Microseconds(cur_max));
 	}
 
-	max_calls = ll_round(lerp((F32)max_calls, (F32) cur_max_calls, LLSmoothInterpolation::getInterpolant(0.1f)));
+	max_calls = ll_round(ll_lerp((F32)max_calls, (F32) cur_max_calls, LLSmoothInterpolation::getInterpolant(0.1f)));
 	if (llabs((S32)(max_calls - cur_max_calls)) <= 1)
 	{
 		max_calls = cur_max_calls;
@@ -1158,7 +1158,7 @@ void LLFastTimerView::drawLineGraph()
 	F32 alpha_target = (max_time > cur_max)
 		? llmin(max_time / cur_max - 1.f,1.f) 
 		: llmin(cur_max/ max_time - 1.f,1.f);
-	alpha_interp = lerp(alpha_interp, alpha_target, LLSmoothInterpolation::getInterpolant(0.1f));
+	alpha_interp = ll_lerp(alpha_interp, alpha_target, LLSmoothInterpolation::getInterpolant(0.1f));
 
 	if (mHoverID != NULL)
 	{
diff --git a/indra/newview/llflexibleobject.cpp b/indra/newview/llflexibleobject.cpp
index 0ca70fac4374b2b2a594b116e079edc1d44d1759..3651c958582b8a4013e338eb49ad11e68bac88f2 100644
--- a/indra/newview/llflexibleobject.cpp
+++ b/indra/newview/llflexibleobject.cpp
@@ -279,10 +279,10 @@ void LLVolumeImplFlexible::setAttributesOfAllSections(LLVector3* inScale)
 
 	for ( int i=1; i<= num_sections; i++)
 	{
-		mSection[i].mAxisRotation.setQuat(lerp(begin_rot,end_rot,t),0,0,1);
+		mSection[i].mAxisRotation.setQuat(ll_lerp(begin_rot,end_rot,t),0,0,1);
 		mSection[i].mScale = LLVector2(
-			scale.mV[VX] * lerp(bottom_scale.mV[0], top_scale.mV[0], t), 
-			scale.mV[VY] * lerp(bottom_scale.mV[1], top_scale.mV[1], t));
+			scale.mV[VX] * ll_lerp(bottom_scale.mV[0], top_scale.mV[0], t),
+			scale.mV[VY] * ll_lerp(bottom_scale.mV[1], top_scale.mV[1], t));
 		t += t_inc;
 	}
 }//-----------------------------------------------------------------------------------
diff --git a/indra/newview/llfloaterworldmap.cpp b/indra/newview/llfloaterworldmap.cpp
index fc7edbd4e361291756a653f0542fabe9d79b8a18..cd3a57e352e691b934f3f0b6ce379d8959d9bf0a 100644
--- a/indra/newview/llfloaterworldmap.cpp
+++ b/indra/newview/llfloaterworldmap.cpp
@@ -521,7 +521,7 @@ void LLFloaterWorldMap::draw()
 		interp = 1.f;
 		mZoomTimer.stop();
 	}
-	mCurZoomVal = lerp(mCurZoomVal, (F32)getChild<LLUICtrl>("zoom slider")->getValue().asReal(), interp);
+	mCurZoomVal = ll_lerp(mCurZoomVal, (F32)getChild<LLUICtrl>("zoom slider")->getValue().asReal(), interp);
 	F32 map_scale = 256.f*pow(2.f, mCurZoomVal);
 	LLWorldMapView::setScale( map_scale );
 	
diff --git a/indra/newview/llhudtext.cpp b/indra/newview/llhudtext.cpp
index 6f5561b13e7075586a7556af68b5f972e93a4a54..c813dc11c42360db883bfd4da67b1c516461ee58 100644
--- a/indra/newview/llhudtext.cpp
+++ b/indra/newview/llhudtext.cpp
@@ -544,8 +544,8 @@ void LLHUDText::updateSize()
 
 	// *TODO: Could do some sort of timer-based resize logic here
 	F32 u = 1.f;
-	mWidth = llmax(width, lerp(mWidth, (F32)width, u));
-	mHeight = llmax(height, lerp(mHeight, (F32)height, u));
+	mWidth = llmax(width, ll_lerp(mWidth, (F32)width, u));
+	mHeight = llmax(height, ll_lerp(mHeight, (F32)height, u));
 }
 
 void LLHUDText::updateAll()
diff --git a/indra/newview/llmanipscale.cpp b/indra/newview/llmanipscale.cpp
index 4a6ceb49b8005dd93eb1365e217a8c13fa1981d3..b132ba0c9ea02459eba339f866d8d87dd911d810 100644
--- a/indra/newview/llmanipscale.cpp
+++ b/indra/newview/llmanipscale.cpp
@@ -552,11 +552,11 @@ void LLManipScale::highlightManipulators(S32 x, S32 y)
 	{
 		if (mHighlightedPart == MANIPULATOR_IDS[i])
 		{
-			mManipulatorScales[i] = lerp(mManipulatorScales[i], SELECTED_MANIPULATOR_SCALE, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE));
+			mManipulatorScales[i] = ll_lerp(mManipulatorScales[i], SELECTED_MANIPULATOR_SCALE, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE));
 		}
 		else
 		{
-			mManipulatorScales[i] = lerp(mManipulatorScales[i], 1.f, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE));
+			mManipulatorScales[i] = ll_lerp(mManipulatorScales[i], 1.f, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE));
 		}
 	}
 
diff --git a/indra/newview/llmaniptranslate.cpp b/indra/newview/llmaniptranslate.cpp
index bba75588de66e981b26d82a05ea3f7c0a9b6d90a..0feaaf18911b36163f5aba8461f4c48b211e2454 100644
--- a/indra/newview/llmaniptranslate.cpp
+++ b/indra/newview/llmaniptranslate.cpp
@@ -1916,18 +1916,18 @@ void LLManipTranslate::renderTranslationHandles()
 			{
 				if (index == mManipPart - LL_X_ARROW || index == mHighlightedPart - LL_X_ARROW)
 				{
-					mArrowScales.mV[index] = lerp(mArrowScales.mV[index], SELECTED_ARROW_SCALE, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
-					mPlaneScales.mV[index] = lerp(mPlaneScales.mV[index], 1.f, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
+					mArrowScales.mV[index] = ll_lerp(mArrowScales.mV[index], SELECTED_ARROW_SCALE, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
+					mPlaneScales.mV[index] = ll_lerp(mPlaneScales.mV[index], 1.f, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
 				}
 				else if (index == mManipPart - LL_YZ_PLANE || index == mHighlightedPart - LL_YZ_PLANE)
 				{
-					mArrowScales.mV[index] = lerp(mArrowScales.mV[index], 1.f, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
-					mPlaneScales.mV[index] = lerp(mPlaneScales.mV[index], SELECTED_ARROW_SCALE, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
+					mArrowScales.mV[index] = ll_lerp(mArrowScales.mV[index], 1.f, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
+					mPlaneScales.mV[index] = ll_lerp(mPlaneScales.mV[index], SELECTED_ARROW_SCALE, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
 				}
 				else
 				{
-					mArrowScales.mV[index] = lerp(mArrowScales.mV[index], 1.f, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
-					mPlaneScales.mV[index] = lerp(mPlaneScales.mV[index], 1.f, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
+					mArrowScales.mV[index] = ll_lerp(mArrowScales.mV[index], 1.f, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
+					mPlaneScales.mV[index] = ll_lerp(mPlaneScales.mV[index], 1.f, LLSmoothInterpolation::getInterpolant(MANIPULATOR_SCALE_HALF_LIFE ));
 				}
 			}
 
diff --git a/indra/newview/llpanelprimmediacontrols.cpp b/indra/newview/llpanelprimmediacontrols.cpp
index 7322b487e388e62aec31dde8ab3b90ad10e72806..4ea82eaef7c48d6a9283a7076dbcc84e88cfb677 100644
--- a/indra/newview/llpanelprimmediacontrols.cpp
+++ b/indra/newview/llpanelprimmediacontrols.cpp
@@ -779,7 +779,7 @@ void LLPanelPrimMediaControls::draw()
 	else if(mFadeTimer.getStarted())
 	{
 		F32 time = mFadeTimer.getElapsedTimeF32();
-		alpha *= llmax(lerp(1.0, 0.0, time / mControlFadeTime), 0.0f);
+		alpha *= llmax(ll_lerp(1.0, 0.0, time / mControlFadeTime), 0.0f);
 
 		if(time >= mControlFadeTime)
 		{
diff --git a/indra/newview/llsnapshotlivepreview.cpp b/indra/newview/llsnapshotlivepreview.cpp
index 6f015e07481f9c00fb25e66c911ab229e9ed0e71..71b7f158b9e08ff1b2d2cb9fe7f4d51db04018eb 100644
--- a/indra/newview/llsnapshotlivepreview.cpp
+++ b/indra/newview/llsnapshotlivepreview.cpp
@@ -321,7 +321,7 @@ void LLSnapshotLivePreview::draw()
 		{
 			if (mFlashAlpha < 1.f)
 			{
-				mFlashAlpha = lerp(mFlashAlpha, 1.f, LLCriticalDamp::getInterpolant(0.02f));
+				mFlashAlpha = ll_lerp(mFlashAlpha, 1.f, LLCriticalDamp::getInterpolant(0.02f));
 			}
 			else
 			{
@@ -330,7 +330,7 @@ void LLSnapshotLivePreview::draw()
 		}
 		else
 		{
-			mFlashAlpha = lerp(mFlashAlpha, 0.f, LLCriticalDamp::getInterpolant(0.15f));
+			mFlashAlpha = ll_lerp(mFlashAlpha, 0.f, LLCriticalDamp::getInterpolant(0.15f));
 		}
 
 		// Draw shining animation if appropriate.
diff --git a/indra/newview/lltoolcomp.cpp b/indra/newview/lltoolcomp.cpp
index 3f00422d2203065accdb3f02df126783cc84ef78..ab6c82451ed3a5a4f292030171522b6bc9cf72f7 100644
--- a/indra/newview/lltoolcomp.cpp
+++ b/indra/newview/lltoolcomp.cpp
@@ -887,7 +887,7 @@ void LLToolCompGun::draw()
 				LLViewerCamera::getInstance()->setDefaultFOV(mTargetFOV);
 				mTimerFOV.stop();
 			}
-			else LLViewerCamera::getInstance()->setDefaultFOV(lerp(mStartFOV, mTargetFOV, timer * ml_zoom_time));
+			else LLViewerCamera::getInstance()->setDefaultFOV(ll_lerp(mStartFOV, mTargetFOV, timer * ml_zoom_time));
 		}
 		else mTimerFOV.stop();
 	}
diff --git a/indra/newview/llviewerdisplay.cpp b/indra/newview/llviewerdisplay.cpp
index ec95e25924c0071bf1c724f1bbc22b8731a7cb81..ccfa6e08c6c2618e9cbfe4401eba8b9427326154 100644
--- a/indra/newview/llviewerdisplay.cpp
+++ b/indra/newview/llviewerdisplay.cpp
@@ -1121,7 +1121,7 @@ void render_hud_attachments()
 // [/RLVa:KB]
 
 	// smoothly interpolate current zoom level
-	gAgentCamera.mHUDCurZoom = lerp(gAgentCamera.mHUDCurZoom, gAgentCamera.getAgentHUDTargetZoom(), LLSmoothInterpolation::getInterpolant(0.03f));
+	gAgentCamera.mHUDCurZoom = ll_lerp(gAgentCamera.mHUDCurZoom, gAgentCamera.getAgentHUDTargetZoom(), LLSmoothInterpolation::getInterpolant(0.03f));
 
 	if (!ALCinematicMode::isEnabled() && LLPipeline::sShowHUDAttachments && !gDisconnected && setup_hud_matrices())
 	{
diff --git a/indra/newview/llviewerpartsim.cpp b/indra/newview/llviewerpartsim.cpp
index 34a73ad1f298e2b67516c2c29a037f7742388801..c3ade861b34f29d1c6f2ab14f396379d3bcf292c 100644
--- a/indra/newview/llviewerpartsim.cpp
+++ b/indra/newview/llviewerpartsim.cpp
@@ -390,7 +390,7 @@ void LLViewerPartGroup::updateParticles(const F32 lastdt)
 		}
 
 		// Do glow interpolation
-		part->mGlow.mV[3] = (U8) ll_round(lerp(part->mStartGlow, part->mEndGlow, frac)*255.f);
+		part->mGlow.mV[3] = (U8) ll_round(ll_lerp(part->mStartGlow, part->mEndGlow, frac)*255.f);
 
 		// Set the last update time to now.
 		part->mLastUpdateTime = cur_time;
diff --git a/indra/newview/llvisualeffect.cpp b/indra/newview/llvisualeffect.cpp
index 3a4594ff09194b8dd01df3978af125c7e2796f7d..7c1eca16c60c61c83516b41ee29d4225da341558 100644
--- a/indra/newview/llvisualeffect.cpp
+++ b/indra/newview/llvisualeffect.cpp
@@ -32,7 +32,7 @@ float LLTweenableValueLerp<float>::get()
 	{
 		float curFactor = (LLTimer::getElapsedSeconds() - m_StartTime) / m_Duration;
 		if (curFactor < 1.0)
-			return lerp(m_StartValue, m_EndValue, curFactor);
+			return ll_lerp(m_StartValue, m_EndValue, curFactor);
 		m_CurValue = m_EndValue;
 	}
 	return m_CurValue.get();
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index cd993fa94dcde212423ec0a14221ab5df89a129f..06f6a2e404fbdfae5427b4a26f1a07ce8b073ebc 100644
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -3092,7 +3092,7 @@ void LLVOAvatar::idleUpdateWindEffect()
 		mWindVec = lerp(mWindVec, wind, interp);
 	
 		F32 wind_freq = hover_strength + llclamp(8.f + (speed * 0.7f) + (noise1(mRipplePhase) * 4.f), 8.f, 25.f);
-		mWindFreq = lerp(mWindFreq, wind_freq, interp); 
+		mWindFreq = ll_lerp(mWindFreq, wind_freq, interp);
 
 		if (mBelowWater)
 		{
diff --git a/indra/newview/llworldmapview.cpp b/indra/newview/llworldmapview.cpp
index 7e0cd4e6320ce808431598cc4da6a17e323f11f7..07dc37a156044fa5086f5ace8ac8eaabab67427a 100644
--- a/indra/newview/llworldmapview.cpp
+++ b/indra/newview/llworldmapview.cpp
@@ -308,8 +308,8 @@ void LLWorldMapView::draw()
 	mVisibleRegions.clear();
 
 	// animate pan if necessary
-	sPanX = lerp(sPanX, sTargetPanX, LLSmoothInterpolation::getInterpolant(0.1f));
-	sPanY = lerp(sPanY, sTargetPanY, LLSmoothInterpolation::getInterpolant(0.1f));
+	sPanX = ll_lerp(sPanX, sTargetPanX, LLSmoothInterpolation::getInterpolant(0.1f));
+	sPanY = ll_lerp(sPanY, sTargetPanY, LLSmoothInterpolation::getInterpolant(0.1f));
 
 	const S32 width = getRect().getWidth();
 	const S32 height = getRect().getHeight();