OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:low_bound
(Results
1 - 6
of
6
) sorted by null
/external/v8/src/
frames.h
558
Address
low_bound
, Address high_bound) :
559
iterator_(fp, sp,
low_bound
, high_bound) {
601
Address
low_bound
, Address high_bound);
614
Address
low_bound
, Address high_bound, Address addr) {
615
return
low_bound
<= addr && addr <= high_bound;
644
Address
low_bound
, Address high_bound);
frames.cc
204
Address fp, Address sp, Address
low_bound
, Address high_bound) :
205
low_bound_(
low_bound
), high_bound_(high_bound),
207
IsWithinBounds(
low_bound
, high_bound,
210
is_valid_fp_(IsWithinBounds(
low_bound
, high_bound, fp)),
290
Address fp, Address sp, Address
low_bound
, Address high_bound) :
291
SafeJavaScriptFrameIterator(fp, sp,
low_bound
, high_bound) {
/external/opencore/codecs_v2/video/avc_h264/enc/src/
rate_control.cpp
158
if (rateCtrl->VBV_fullness < rateCtrl->
low_bound
)
160
rateCtrl->VBV_fullness = rateCtrl->
low_bound
; // -rateCtrl->Bs/2;
161
rateCtrl->TMN_W = rateCtrl->VBV_fullness - rateCtrl->
low_bound
;
162
pMP->counter_BTsrc = pMP->counter_BTdst + (int)((OsclFloat)(rateCtrl->Bs / 2 - rateCtrl->
low_bound
) / 2.0 / (pMP->target_bits_per_frame / 10));
242
rateCtrl->
low_bound
= -rateCtrl->Bs / 2;
687
if (rateCtrl->VBV_fullness < rateCtrl->
low_bound
)
689
rateCtrl->VBV_fullness = rateCtrl->
low_bound
; // -rateCtrl->Bs/2;
690
rateCtrl->TMN_W = rateCtrl->VBV_fullness - rateCtrl->
low_bound
;
691
pMP->counter_BTsrc = pMP->counter_BTdst + (int)((OsclFloat)(rateCtrl->Bs / 2 - rateCtrl->
low_bound
) / 2.0 / (pMP->target_bits_per_frame / 10));
887
pMP->counter_BTsrc -= (int)((OsclFloat)(rateCtrl->Bs / 2 - rateCtrl->
low_bound
) / 2.0 / (pMP->target_bits_per_frame / 1 (…)
[
all
...]
avcenc_int.h
313
int
low_bound
; /* bound for underflow detection, usually
low_bound
=-Bs/2, but could be changed in H.263 mode */
member in struct:tagAVCRateControl
/external/opencore/codecs_v2/video/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:__anon3568
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
...]
Completed in 132 milliseconds