HomeSort by relevance Sort by last modified time
    Searched full:weight (Results 301 - 325 of 2039) sorted by null

<<11121314151617181920>>

  /external/libavc/common/armv8/
ih264_weighted_pred_av8.s 69 //* weight for the weighted prediction
146 mul v4.8h, v4.8h , v2.h[0] //weight mult. for rows 1,2
147 mul v6.8h, v6.8h , v2.h[0] //weight mult. for rows 3,4
178 mul v4.8h, v4.8h , v2.h[0] //weight mult. for row 1
180 mul v6.8h, v6.8h , v2.h[0] //weight mult. for row 2
181 mul v8.8h, v8.8h , v2.h[0] //weight mult. for row 3
182 mul v10.8h, v10.8h , v2.h[0] //weight mult. for row 4
217 mul v12.8h, v12.8h , v2.h[0] //weight mult. for row 1L
219 mul v14.8h, v14.8h , v2.h[0] //weight mult. for row 1H
221 mul v16.8h, v16.8h , v2.h[0] //weight mult. for row 2
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_engine.cpp 72 int weight; local
73 weight = FXSYS_round((FX_FLOAT)(src_pos - pixel_weights.m_SrcStart - 1.0f / 2) * 256);
75 pixel_weights.m_Weights[0] = (SDP_Table[256 + weight] + SDP_Table[weight] + SDP_Table[256 - weight] + SDP_Table[512 - weight]) << 8;
79 pixel_weights.m_Weights[0] = SDP_Table[256 + weight] << 8;
80 pixel_weights.m_Weights[1] = (SDP_Table[weight] + SDP_Table[256 - weight] + SDP_Table[512 - weight]) << 8
169 double weight = area_start >= area_end ? 0.0f : area_end - area_start; local
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-resource-browser.css 30 font-weight: normal;
  /dalvik/docs/
java-bytecode.css 52 font-weight: bold;
  /developers/build/prebuilts/gradle/PermissionRequest/Application/src/main/assets/
sample.css 28 font-weight: bold;
  /developers/samples/android/content/webview/PermissionRequest/Application/src/main/assets/
sample.css 28 font-weight: bold;
  /development/samples/HeavyWeight/res/values/
strings.xml 19 <string name="content_text">A heavy-weight application will not be killed until explicitly stopped.</string>
  /docs/source.android.com/
hal_doxygen.css 6 font-weight:300;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
PolynomialFitter.java 53 * @param weight weight of the observed point in the fit
58 public void addObservedPoint(double weight, double x, double y) {
59 fitter.addObservedPoint(weight, x, y);
  /external/icu/icu4j/
stylesheet.css 70 /* font-weight:bold; */
72 font-weight: bold;
96 font-weight: bold;
107 font-weight: bold;
  /external/iproute2/include/linux/
gen_stats.h 59 * @ewma_log: the log of measurement window weight
  /external/libnl/include/linux/
gen_stats.h 51 * @ewma_log: the log of measurement window weight
  /external/libvpx/libvpx/vp9/encoder/
vp9_ssim.h 21 int lumamask, double *weight);
  /external/openfst/src/bin/
fstmap.cc 30 "\"plus (--weight)\", \"quantize (--delta)\", \"rmweight\", "
31 "\"superfinal\", \"times (--weight)\", \"to_log\", \"to_log64\", "
33 DEFINE_string(weight, "", "Weight parameter");
  /external/openfst/src/include/fst/
compose.h 119 typedef typename A::Weight Weight;
160 Weight Final(StateId s) {
162 Weight final = ComputeFinal(s);
196 virtual Weight ComputeFinal(StateId s) = 0;
210 typedef typename Arc::Weight Weight;
299 Weight::One(), sb);
334 Arc oarc(arc1.ilabel, arc2.olabel, Times(arc1.weight, arc2.weight),
    [all...]
product-weight.h 1 // product-weight.h
19 // Product weight set and associated semiring operation definitions.
27 #include <fst/pair-weight.h>
28 #include <fst/weight.h>
state-map.h 56 // // Specifies state's final weight in result
57 // B::Weight Final(B::StateId s) const;
92 typedef typename A::Weight Weight;
132 typedef typename A::Weight Weight;
205 typedef typename B::Weight Weight;
245 Weight Final(StateId s) {
334 typedef typename B::Weight Weight
    [all...]
  /external/pdfium/core/src/fxge/android/
fx_android_font.h 23 virtual void* MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR face, FX_BOOL& bExact);
  /external/pdfium/fpdfsdk/src/
fpdf_sysfontinfo.cpp 32 virtual void* MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR family, FX_BOOL& bExact) FX_OVERRIDE
35 return m_pInfo->MapFont(m_pInfo, weight, bItalic, charset, pitch_family, family, &bExact);
118 static void* DefaultMapFont(struct _FPDF_SYSFONTINFO* pThis, int weight, int bItalic, int charset, int pitch_family, const char* family, int* bExact)
120 return ((FPDF_SYSFONTINFO_DEFAULT*)pThis)->m_pFontInfo->MapFont(weight, bItalic, charset, pitch_family, family, *bExact);
  /external/skia/src/pathops/
SkPathWriter.h 16 void conicTo(const SkPoint& pt1, const SkPoint& pt2, SkScalar weight);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
bandwidth_estimator.c 143 float weight = 0.0f; local
349 /* constant weight after initiation part */
350 weight = 0.01f;
354 /* weight decreases with number of updates */
355 weight = 1.0f / (float) bwest_str->count_tot_updates_rec;
386 bwest_str->rec_bw_inv = weight * curr_bw_inv +
387 (1.0f - weight) * bwest_str->rec_bw_inv;
407 bwest_str->rec_jitter = weight * arr_time_noise_abs +
408 (1.0f - weight) * bwest_str->rec_jitter;
605 const float weight = 0.1f local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
Weight.java 24 public class Weight extends Activity {
  /frameworks/base/docs/html/images/media/
mediacodec_buffers.svg 5 <font-face font-family="Roboto" font-size="20" panose-1="2 0 0 0 0 0 0 0 0 0" units-per-em="1000" underline-position="-73.242188" underline-thickness="48.828125" slope="0" x-height="538.08594" cap-height="720.70312" ascent="927.7344" descent="-244.14062" font-weight="500">
10 <font-face font-family="Roboto" font-size="12" panose-1="2 0 0 0 0 0 0 0 0 0" units-per-em="1000" underline-position="-73.242188" underline-thickness="48.828125" slope="0" x-height="538.08594" cap-height="720.70312" ascent="927.7344" descent="-244.14062" font-weight="300">
27 <tspan font-family="Roboto" font-size="20" font-weight="500" fill="#aadcc2" x="19.555664" y="19" textLength="50.888672">Client</tspan>
31 <tspan font-family="Roboto" font-size="20" font-weight="500" fill="#bad0fb" x="16.616211" y="19" textLength="56.767578">Codec</tspan>
43 <tspan font-family="Roboto" font-size="12" font-weight="300" fill="#262626" x=".19238281" y="11" textLength="86.44336">empty input buff</tspan>
44 <tspan font-family="Roboto" font-size="12" font-weight="300" fill="#262626" x="86.495117" y="11" textLength="16.3125">ers</tspan>
48 <tspan font-family="Roboto" font-size="20" font-weight="500" fill="#aadcc2" x="19.555664" y="19" textLength="50.888672">Client</tspan>
69 <tspan font-family="Roboto" font-size="12" font-weight="300" fill="#262626" x=".3671875" y="11" textLength="6.4453125">fi</tspan>
70 <tspan font-family="Roboto" font-size="12" font-weight="300" fill="#262626" x="6.8125" y="11" textLength="71.648438">lled input buff</tspan>
71 <tspan font-family="Roboto" font-size="12" font-weight="300" fill="#262626" x="78.320312" y="11" textLength="16.3125">ers</tspan
    [all...]
  /frameworks/minikin/include/minikin/
AnalyzeStyle.h 22 bool analyzeStyle(const uint8_t* os2_data, size_t os2_size, int* weight, bool* italic);
  /hardware/invensense/6515/libsensors_iio/software/core/mpl/
quat_accuracy_monitor.h 39 void set_accuracy_weight(enum accuracy_signal_type_e type, int weight);

Completed in 1844 milliseconds

<<11121314151617181920>>