HomeSort by relevance Sort by last modified time
    Searched refs:low_bound (Results 1 - 6 of 6) sorted by null

  /external/v8/src/
frames.h 728 Address low_bound,
730 iterator_(fp, sp, low_bound, high_bound) {
737 Address low_bound,
739 iterator_(isolate, fp, sp, low_bound, high_bound) {
785 Address low_bound, Address high_bound);
800 Address low_bound, Address high_bound, Address addr) {
801 return low_bound <= addr && addr <= high_bound;
807 StackAddressValidator(Address low_bound, Address high_bound)
808 : low_bound_(low_bound), high_bound_(high_bound) { }
821 ExitFrameValidator(Address low_bound, Address high_bound
    [all...]
frames.cc 273 Address fp, Address sp, Address low_bound, Address high_bound) :
275 stack_validator_(low_bound, high_bound),
276 is_valid_top_(IsValidTop(isolate, low_bound, high_bound)),
277 is_valid_fp_(IsWithinBounds(low_bound, high_bound, fp)),
289 Address low_bound, Address high_bound) {
292 ExitFrameValidator validator(low_bound, high_bound);
370 Address fp, Address sp, Address low_bound, Address high_bound) :
371 SafeJavaScriptFrameIterator(isolate, fp, sp, low_bound, high_bound) {
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
rate_control.h 89 Int low_bound; /* bound for underflow detection, usually low_bound=-Bs/2, but could be changed in H.263 mode */ member in struct:__anon19358
rate_control.cpp 119 rc[n]->low_bound = -rc[n]->Bs / 2;
122 else /* this part doesn't work in some cases, the low_bound is too high, Jan 4,2006 */
129 rc[n]->low_bound = -rc[n]->Bs / 2 + video->encParams->maxFrameSize; /* too high */
395 if (rc->VBV_fullness < rc->low_bound)
397 rc->VBV_fullness = rc->low_bound; // -rc->Bs/2;
398 rc->TMN_W = rc->VBV_fullness - rc->low_bound;
399 pMP->counter_BTsrc = pMP->counter_BTdst + (Int)((float)(rc->Bs / 2 - rc->low_bound) / 2.0 / (pMP->target_bits_per_frame / 10));
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
rate_control.cpp 156 if (rateCtrl->VBV_fullness < rateCtrl->low_bound)
158 rateCtrl->VBV_fullness = rateCtrl->low_bound; // -rateCtrl->Bs/2;
159 rateCtrl->TMN_W = rateCtrl->VBV_fullness - rateCtrl->low_bound;
160 pMP->counter_BTsrc = pMP->counter_BTdst + (int)((OsclFloat)(rateCtrl->Bs / 2 - rateCtrl->low_bound) / 2.0 / (pMP->target_bits_per_frame / 10));
238 rateCtrl->low_bound = -rateCtrl->Bs / 2;
683 if (rateCtrl->VBV_fullness < rateCtrl->low_bound)
685 rateCtrl->VBV_fullness = rateCtrl->low_bound; // -rateCtrl->Bs/2;
686 rateCtrl->TMN_W = rateCtrl->VBV_fullness - rateCtrl->low_bound;
687 pMP->counter_BTsrc = pMP->counter_BTdst + (int)((OsclFloat)(rateCtrl->Bs / 2 - rateCtrl->low_bound) / 2.0 / (pMP->target_bits_per_frame / 10));
883 pMP->counter_BTsrc -= (int)((OsclFloat)(rateCtrl->Bs / 2 - rateCtrl->low_bound) / 2.0 / (pMP->target_bits_per_frame / 10))
    [all...]
avcenc_int.h 315 int low_bound; /* bound for underflow detection, usually low_bound=-Bs/2, but could be changed in H.263 mode */ member in struct:tagAVCRateControl

Completed in 81 milliseconds