Searched defs:metrics (Results 1 - 25 of 306) sorted by last modified time

1234567891011>>

/external/webrtc/src/modules/audio_processing/aec/
H A Decho_cancellation.c702 WebRtc_Word32 WebRtcAec_GetMetrics(void *aecInst, AecMetrics *metrics) argument
713 if (metrics == NULL) {
724 metrics->erl.instant = (short) aecpc->aec->erl.instant;
729 metrics->erl.average = (short) dtmp;
732 metrics->erl.average = offsetLevel;
735 metrics->erl.max = (short) aecpc->aec->erl.max;
738 metrics->erl.min = (short) aecpc->aec->erl.min;
741 metrics->erl.min = offsetLevel;
745 metrics->erle.instant = (short) aecpc->aec->erle.instant;
750 metrics
[all...]
/external/webrtc/src/modules/audio_processing/
H A Decho_cancellation_impl.cc238 // TODO(ajm): we currently just use the metrics from the first AEC. Think more
240 int EchoCancellationImpl::GetMetrics(Metrics* metrics) { argument
242 if (metrics == NULL) {
252 memset(metrics, 0, sizeof(Metrics));
260 metrics->residual_echo_return_loss.instant = my_metrics.rerl.instant;
261 metrics->residual_echo_return_loss.average = my_metrics.rerl.average;
262 metrics->residual_echo_return_loss.maximum = my_metrics.rerl.max;
263 metrics->residual_echo_return_loss.minimum = my_metrics.rerl.min;
265 metrics->echo_return_loss.instant = my_metrics.erl.instant;
266 metrics
[all...]
/external/webrtc/src/modules/audio_processing/test/
H A Dprocess_test.cc120 printf("\n Level metrics (enabled by default)\n");
892 printf("\n--Level metrics--\n");
896 EchoCancellation::Metrics metrics; local
897 apm->echo_cancellation()->GetMetrics(&metrics);
898 printf("\n--Echo metrics--\n");
901 PrintStat(metrics.echo_return_loss);
903 PrintStat(metrics.echo_return_loss_enhancement);
905 PrintStat(metrics.a_nlp);
911 printf("\n--Delay metrics--\n");
H A Dunit_test.cc512 EchoCancellation::Metrics metrics; local
514 apm_->echo_cancellation()->GetMetrics(&metrics));
/external/tcpdump/
H A Dospf.h161 struct tos_metric metrics; member in union:un_tos
/external/skia/src/animator/
H A DSkDrawPaint.cpp177 SkPaint::FontMetrics metrics; local
180 paint.getFontMetrics(&metrics);
183 value->fOperand.fScalar = metrics.fAscent;
186 value->fOperand.fScalar = metrics.fDescent;
/external/skia/src/core/
H A DSkBBoxRecord.cpp91 SkPaint::FontMetrics metrics; local
92 paint.getFontMetrics(&metrics);
102 bbox.fBottom += metrics.fBottom;
103 bbox.fTop += metrics.fTop;
113 // Set vertical bounds to max extents from font metrics
114 bbox.fTop = metrics.fTop;
115 bbox.fBottom = metrics.fBottom;
122 SkScalar pad = (metrics.fBottom - metrics.fTop) / 2;
184 SkPaint::FontMetrics metrics; local
255 SkPaint::FontMetrics metrics; local
[all...]
H A DSkPaint.cpp1290 SkScalar SkPaint::getFontMetrics(FontMetrics* metrics, SkScalar zoom) const { argument
1302 if (NULL == metrics) {
1303 metrics = &storage;
1306 paint.descriptorProc(NULL, zoomPtr, FontMetricsDescProc, metrics, true);
1309 metrics->fTop = SkScalarMul(metrics->fTop, scale);
1310 metrics->fAscent = SkScalarMul(metrics->fAscent, scale);
1311 metrics->fDescent = SkScalarMul(metrics
[all...]
H A DSkPictureRecord.cpp1209 SkPaint::FontMetrics metrics; local
1210 paint.getFontMetrics(&metrics);
1214 bounds.set(0, metrics.fTop, SK_Scalar1, metrics.fBottom);
/external/skia/src/fonts/
H A DSkGScalerContext.cpp142 SkPaint::FontMetrics* metrics) {
143 fProxy->getFontMetrics(metrics);
144 if (metrics) {
146 metrics->fTop = SkScalarMul(metrics->fTop, scale);
147 metrics->fAscent = SkScalarMul(metrics->fAscent, scale);
148 metrics->fDescent = SkScalarMul(metrics->fDescent, scale);
149 metrics
141 generateFontMetrics(SkPaint::FontMetrics*, SkPaint::FontMetrics* metrics) argument
[all...]
/external/skia/src/ports/
H A DSkFontMgr_win_dw.cpp595 NONCLIENTMETRICSW metrics; local
596 metrics.cbSize = sizeof(metrics);
598 sizeof(metrics),
599 &metrics,
603 HRM(this->getByFamilyName(metrics.lfMessageFont.lfFaceName, fontFamily),
H A DSkRemotableFontMgr_win_dw.cpp223 NONCLIENTMETRICSW metrics; local
224 metrics.cbSize = sizeof(metrics);
226 sizeof(metrics),
227 &metrics,
232 size_t len = wcsnlen_s(metrics.lfMessageFont.lfFaceName, LF_FACESIZE) + 1;
233 if (0 != wcsncpy_s(name->reset(len), len, metrics.lfMessageFont.lfFaceName, _TRUNCATE)) {
H A DSkTypeface_win_dw.cpp119 DWRITE_FONT_METRICS metrics; local
120 fDWriteFontFace->GetMetrics(&metrics);
121 return metrics.designUnitsPerEm;
/external/skia/src/utils/
H A DSkGatherPixelRefsAndRects.h171 SkPaint::FontMetrics metrics; variable
172 paint.getFontMetrics(&metrics);
180 bounds.fBottom += metrics.fBottom;
181 bounds.fTop += metrics.fTop;
191 bounds.fTop = metrics.fTop;
192 bounds.fBottom = metrics.fBottom;
195 SkScalar pad = (metrics.fBottom - metrics.fTop) / 2;
237 SkPaint::FontMetrics metrics; variable
238 paint.getFontMetrics(&metrics);
259 SkPaint::FontMetrics metrics; variable
[all...]
/external/skia/src/views/
H A DSkTextBox.cpp180 SkPaint::FontMetrics metrics; local
195 fontHeight = paint.getFontMetrics(&metrics);
222 y += fBox.fTop - metrics.fAscent;
229 if (y + metrics.fDescent + metrics.fLeading > 0)
235 if (y + metrics.fAscent >= fBox.fBottom)
/external/smack/asmack-master/lib/
H A Dhttpcore-4.1.4.jar ... private org.apache.http.impl.HttpConnectionMetricsImpl metrics public void " href="/5.1.0_r1/s? ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dhttpcore-4.0.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/protocol/ ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTypedValue.java47 public static float complexToDimension(int data, DisplayMetrics metrics) argument
52 metrics);
57 DisplayMetrics metrics)
62 metrics);
67 DisplayMetrics metrics)
73 metrics);
82 public static float complexToDimensionNoisy(int data, DisplayMetrics metrics) argument
84 float res = complexToDimension(data, metrics);
97 public static float applyDimension(int unit, float value, DisplayMetrics metrics) { argument
102 return value * metrics
56 complexToDimensionPixelOffset(int data, DisplayMetrics metrics) argument
66 complexToDimensionPixelSize(int data, DisplayMetrics metrics) argument
116 getDimension(DisplayMetrics metrics) argument
[all...]
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dfreetype.h204 /* A structure used to model the metrics of a single glyph. The */
266 /* This structure models the metrics of a bitmap strike (i.e., a set */
420 /* transformation which is used to load and hint glyphs and metrics. */
450 /* i.e., the glyph's metrics, its image (bitmap or outline), and */
899 /* vertical metrics. Only relevant for */
1013 /* Indicates that the face contains horizontal glyph metrics. This */
1017 /* Indicates that the face contains vertical glyph metrics. This */
1105 * horizontal metrics (this is true for all font formats though).
1108 * @FT_HAS_VERTICAL can be used to check for vertical metrics.
1122 * vertical metrics (an
1412 FT_Size_Metrics metrics; /* size metrics */ member in struct:FT_SizeRec_
1626 FT_Glyph_Metrics metrics; member in struct:FT_GlyphSlotRec_
[all...]
/external/pdfium/core/include/thirdparties/freetype/freetype/internal/
H A Dtttypes.h146 /* A structure modeling the long metrics of the `hmtx' and `vmtx' */
168 /* A simple type to model the short metrics of the `hmtx' and `vmtx' */
333 /* A structure used to hold the big metrics of a given glyph bitmap */
376 /* A structure used to hold the small metrics of a given glyph bitmap */
409 /* A structure used to describe the text line metrics of a given */
496 /* metrics for each glyph bitmap. */
518 TT_SBit_MetricsRec metrics; member in struct:TT_SBit_RangeRec_
551 /* hori :: The line metrics for horizontal layouts. */
553 /* vert :: The line metrics for vertical layouts. */
629 /* hori :: The horizontal line metrics
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dfreetype.h204 /* A structure used to model the metrics of a single glyph. The */
266 /* This structure models the metrics of a bitmap strike (i.e., a set */
420 /* transformation which is used to load and hint glyphs and metrics. */
450 /* i.e., the glyph's metrics, its image (bitmap or outline), and */
899 /* vertical metrics. Only relevant for */
1013 /* Indicates that the face contains horizontal glyph metrics. This */
1017 /* Indicates that the face contains vertical glyph metrics. This */
1105 * horizontal metrics (this is true for all font formats though).
1108 * @FT_HAS_VERTICAL can be used to check for vertical metrics.
1122 * vertical metrics (an
1412 FT_Size_Metrics metrics; /* size metrics */ member in struct:FT_SizeRec_
1626 FT_Glyph_Metrics metrics; member in struct:FT_GlyphSlotRec_
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
H A Dtttypes.h146 /* A structure modeling the long metrics of the `hmtx' and `vmtx' */
168 /* A simple type to model the short metrics of the `hmtx' and `vmtx' */
333 /* A structure used to hold the big metrics of a given glyph bitmap */
376 /* A structure used to hold the small metrics of a given glyph bitmap */
409 /* A structure used to describe the text line metrics of a given */
496 /* metrics for each glyph bitmap. */
518 TT_SBit_MetricsRec metrics; member in struct:TT_SBit_RangeRec_
551 /* hori :: The line metrics for horizontal layouts. */
553 /* vert :: The line metrics for vertical layouts. */
629 /* hori :: The horizontal line metrics
[all...]

Completed in 4080 milliseconds

1234567891011>>