Home
last modified time | relevance | path

Searched refs:low_bound (Results 1 – 6 of 6) sorted by relevance

/external/opencore/codecs_v2/video/avc_h264/enc/src/
Drate_control.cpp158 if (rateCtrl->VBV_fullness < rateCtrl->low_bound) in RCUpdateBuffer()
160 rateCtrl->VBV_fullness = rateCtrl->low_bound; // -rateCtrl->Bs/2; in RCUpdateBuffer()
161 rateCtrl->TMN_W = rateCtrl->VBV_fullness - rateCtrl->low_bound; in RCUpdateBuffer()
162 …c = pMP->counter_BTdst + (int)((OsclFloat)(rateCtrl->Bs / 2 - rateCtrl->low_bound) / 2.0 / (pMP->t… in RCUpdateBuffer()
242 rateCtrl->low_bound = -rateCtrl->Bs / 2; in InitRateControlModule()
687 if (rateCtrl->VBV_fullness < rateCtrl->low_bound) in updateRC_PostProc()
689 rateCtrl->VBV_fullness = rateCtrl->low_bound; // -rateCtrl->Bs/2; in updateRC_PostProc()
690 rateCtrl->TMN_W = rateCtrl->VBV_fullness - rateCtrl->low_bound; in updateRC_PostProc()
691 …c = pMP->counter_BTdst + (int)((OsclFloat)(rateCtrl->Bs / 2 - rateCtrl->low_bound) / 2.0 / (pMP->t… in updateRC_PostProc()
887 …pMP->counter_BTsrc -= (int)((OsclFloat)(rateCtrl->Bs / 2 - rateCtrl->low_bound) / 2.0 / (pMP->targ… in updateRateControl()
[all …]
Davcenc_int.h313 …int low_bound; /* bound for underflow detection, usually low_bound=-Bs/2, but cou… member
/external/webkit/V8Binding/v8/src/
Dframes.h577 Address low_bound, Address high_bound) : in JavaScriptFrameIteratorTemp() argument
578 iterator_(fp, sp, low_bound, high_bound) { in JavaScriptFrameIteratorTemp()
617 Address low_bound, Address high_bound);
631 Address low_bound, Address high_bound, Address addr) { in IsWithinBounds() argument
632 return low_bound <= addr && addr <= high_bound; in IsWithinBounds()
659 Address low_bound, Address high_bound);
Dframes.cc196 Address fp, Address sp, Address low_bound, Address high_bound) : in SafeStackFrameIterator() argument
197 low_bound_(low_bound), high_bound_(high_bound), in SafeStackFrameIterator()
199 IsWithinBounds(low_bound, high_bound, in SafeStackFrameIterator()
202 is_valid_fp_(IsWithinBounds(low_bound, high_bound, fp)), in SafeStackFrameIterator()
282 Address fp, Address sp, Address low_bound, Address high_bound) : in SafeStackTraceFrameIterator() argument
283 SafeJavaScriptFrameIterator(fp, sp, low_bound, high_bound) { in SafeStackTraceFrameIterator()
/external/opencore/codecs_v2/video/m4v_h263/enc/src/
Drate_control.cpp119 rc[n]->low_bound = -rc[n]->Bs / 2; in RC_Initialize()
129 rc[n]->low_bound = -rc[n]->Bs / 2 + video->encParams->maxFrameSize; /* too high */ in RC_Initialize()
395 if (rc->VBV_fullness < rc->low_bound) in RC_UpdateBuffer()
397 rc->VBV_fullness = rc->low_bound; // -rc->Bs/2; in RC_UpdateBuffer()
398 rc->TMN_W = rc->VBV_fullness - rc->low_bound; in RC_UpdateBuffer()
399 …pMP->counter_BTsrc = pMP->counter_BTdst + (Int)((float)(rc->Bs / 2 - rc->low_bound) / 2.0 / (pMP->… in RC_UpdateBuffer()
878 if (rc->VBV_fullness < rc->low_bound) in updateRC_PostProc()
880 rc->VBV_fullness = rc->low_bound; // -rc->Bs/2; in updateRC_PostProc()
881 rc->TMN_W = rc->VBV_fullness - rc->low_bound; in updateRC_PostProc()
882 …pMP->counter_BTsrc = pMP->counter_BTdst + (Int)((float)(rc->Bs / 2 - rc->low_bound) / 2.0 / (pMP->… in updateRC_PostProc()
Drate_control.h89 …Int low_bound; /* bound for underflow detection, usually low_bound=-Bs/2, but cou… member