Searched defs:weight (Results 201 - 225 of 274) sorted by relevance

1234567891011

/external/srec/srec/Recognizer/src/
H A DRecognizerImpl.c1546 const LCHAR* ruleName, unsigned int weight)
1545 SR_RecognizerActivateRuleImpl(SR_Recognizer* self, SR_Grammar* grammar, const LCHAR* ruleName, unsigned int weight) argument
/external/valgrind/main/coregrind/
H A Dm_transtab.c138 /* Profiling only: the count and weight (arbitrary meaning) for
145 UShort weight; member in struct:__anon32681
299 TTEntry .count and .weight fields, if required.
1623 sectors[y].tt[i].weight = n_guest_instrs == 0 ? 1 : n_guest_instrs;
2303 return ((ULong)tte->weight) * ((ULong)tte->count);
/external/valgrind/main/include/vki/
H A Dvki-xen-domctl.h248 vki_uint32_t weight; member in struct:vki_xen_domctl_scheduler_op::__anon32987::xen_domctl_sched_sedf
251 vki_uint16_t weight; member in struct:vki_xen_domctl_scheduler_op::__anon32987::xen_domctl_sched_credit
255 vki_uint16_t weight; member in struct:vki_xen_domctl_scheduler_op::__anon32987::xen_domctl_sched_credit2
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.engine_2.0.0.v20100606.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/net/spdy/
H A Dspdy_framer.cc1470 uint8 weight = 0; local
1471 successful_read = reader.ReadUInt8(&weight);
1473 priority = MapWeightToPriority(weight);
1843 uint8 weight; local
1852 successful_read = reader.ReadUInt8(&weight);
1856 current_frame_stream_id_, parent_stream_id, weight, exclusive);
2836 builder.WriteUInt8(priority.weight());
3066 SpdyPriority SpdyFramer::MapWeightToPriority(uint8 weight) { argument
3068 return static_cast<SpdyPriority>(7.f - weight / kSteps);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPrimitiveValueMappings.h3416 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(FontWeight weight) argument
3420 switch (weight) {
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c321 /* Loop throught the Y plane raw examining levels and creating a weight
797 double weight = 0.0; local
804 weight = simple_weight(cpi->Source);
807 if (weight < 0.1)
808 weight = 0.1;
810 fps.ssim_weighted_pred_err = fps.coded_error * weight;
H A Donyx_if.c81 double *weight
3378 // For subsequent samples, use average with weight ~1/4 for new sample.
5470 double weight = 0; local
5498 &cm->post_proc_buffer, 1, &weight);
5500 cpi->summed_quality += frame_ssim2 * weight;
5501 cpi->summed_weights += weight;
5517 cpi->sum_ssim[i] += frame_ssim2 * weight;
5518 cpi->sum_weights[i] += weight;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_encoder.c2850 double frame_ssim2 = 0, weight = 0; local
2868 frame_ssim2 = vp9_calc_ssim(orig, recon, &weight);
2870 cpi->summed_quality += frame_ssim2 * weight;
2871 cpi->summed_weights += weight;
2873 frame_ssim2 = vp9_calc_ssim(orig, &cm->post_proc_buffer, &weight);
2875 cpi->summedp_quality += frame_ssim2 * weight;
2876 cpi->summedp_weights += weight;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c261 * \param w returns blend factor/weight between texture indices
1614 float weight = (float) exp(-alpha * r2); local
1615 weightLut[i] = weight;
1730 float weight = weightLut[qClamped]; local
1732 weight_buffer[buffer_next] = weight;
1756 den += weight;
2701 * each texture pixel as it is and weight it later; using linear
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_texfilter.c156 * weight = returns blend factor between texels
162 GLint *i0, GLint *i1, GLfloat *weight)
280 *weight = FRAC(u);
414 GLint *i0, GLint *i1, GLfloat *weight)
419 *weight = FRAC(u);
448 GLint *i0out, GLint *i1out, GLfloat *weight)
481 *weight = FRAC(fcol);
1626 GLfloat weight = (GLfloat) exp(-alpha * r2); local
1627 weightLut[i] = weight;
1719 GLfloat weight local
159 linear_texel_locations(GLenum wrapMode, const struct gl_texture_image *img, GLint size, GLfloat s, GLint *i0, GLint *i1, GLfloat *weight) argument
413 linear_repeat_texel_location(GLuint size, GLfloat s, GLint *i0, GLint *i1, GLfloat *weight) argument
447 clamp_rect_coord_linear(GLenum wrapMode, GLfloat coord, GLint max, GLint *i0out, GLint *i1out, GLfloat *weight) argument
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java187 /** The maximum weight of this map. UNSET_INT if there is no maximum. */
376 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
377 return (weight == 1)
379 : new WeightedStrongValueReference<K, V>(value, weight);
391 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
392 return (weight == 1)
395 segment.valueReferenceQueue, value, entry, weight);
407 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
408 return (weight == 1)
411 segment.valueReferenceQueue, value, entry, weight);
423 referenceValue( Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) argument
1778 final int weight; field in class:LocalCache.WeightedWeakValueReference
1780 WeightedWeakValueReference(ReferenceQueue<V> queue, V referent, ReferenceEntry<K, V> entry, int weight) argument
1802 final int weight; field in class:LocalCache.WeightedSoftValueReference
1804 WeightedSoftValueReference(ReferenceQueue<V> queue, V referent, ReferenceEntry<K, V> entry, int weight) argument
1825 final int weight; field in class:LocalCache.WeightedStrongValueReference
1827 WeightedStrongValueReference(V referent, int weight) argument
1882 newValueReference(ReferenceEntry<K, V> entry, V value, int weight) argument
2595 recordWrite(ReferenceEntry<K, V> entry, int weight, long now) argument
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c321 /* Loop throught the Y plane raw examining levels and creating a weight
797 double weight = 0.0; local
804 weight = simple_weight(cpi->Source);
807 if (weight < 0.1)
808 weight = 0.1;
810 fps.ssim_weighted_pred_err = fps.coded_error * weight;
H A Donyx_if.c81 double *weight
5302 double weight = 0; local
5330 &cm->post_proc_buffer, 1, &weight);
5332 cpi->summed_quality += frame_ssim2 * weight;
5333 cpi->summed_weights += weight;
5349 cpi->sum_ssim[i] += frame_ssim2 * weight;
5350 cpi->sum_weights[i] += weight;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_onyx_if.c3185 double frame_ssim2 = 0, weight = 0; local
3201 frame_ssim2 = vp9_calc_ssim(orig, recon, 1, &weight);
3203 cpi->summed_quality += frame_ssim2 * weight;
3204 cpi->summed_weights += weight;
3206 frame_ssim2 = vp9_calc_ssim(orig, &cm->post_proc_buffer, 1, &weight);
3208 cpi->summedp_quality += frame_ssim2 * weight;
3209 cpi->summedp_weights += weight;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2332 // weight: -1 = invalid match, and 0 = so-so match to 5 = good match.
2333 int weight = -1; local
2336 // of the best (highest weight) one so far.
2361 weight = getMultipleConstraintMatchWeight(OpInfo, maIndex);
2362 if (weight == -1) {
2366 weightSum += weight;
2438 /// Examine constraint type and operand type and determine a weight value.
2453 ConstraintWeight weight = local
2455 if (weight > BestWeight)
2456 BestWeight = weight;
2468 ConstraintWeight weight = CW_Invalid; local
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp3077 ConstraintWeight weight = CW_Invalid; local
3080 // but allow it at the lowest weight.
3087 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
3092 weight = CW_Constant;
3096 return weight;
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c261 * \param w returns blend factor/weight between texture indices
1614 float weight = (float) exp(-alpha * r2); local
1615 weightLut[i] = weight;
1730 float weight = weightLut[qClamped]; local
1732 weight_buffer[buffer_next] = weight;
1756 den += weight;
2701 * each texture pixel as it is and weight it later; using linear
/external/mesa3d/src/mesa/swrast/
H A Ds_texfilter.c156 * weight = returns blend factor between texels
162 GLint *i0, GLint *i1, GLfloat *weight)
280 *weight = FRAC(u);
414 GLint *i0, GLint *i1, GLfloat *weight)
419 *weight = FRAC(u);
448 GLint *i0out, GLint *i1out, GLfloat *weight)
481 *weight = FRAC(fcol);
1626 GLfloat weight = (GLfloat) exp(-alpha * r2); local
1627 weightLut[i] = weight;
1719 GLfloat weight local
159 linear_texel_locations(GLenum wrapMode, const struct gl_texture_image *img, GLint size, GLfloat s, GLint *i0, GLint *i1, GLfloat *weight) argument
413 linear_repeat_texel_location(GLuint size, GLfloat s, GLint *i0, GLint *i1, GLfloat *weight) argument
447 clamp_rect_coord_linear(GLenum wrapMode, GLfloat coord, GLint max, GLint *i0out, GLint *i1out, GLfloat *weight) argument
[all...]
/external/opencv/cv/src/
H A Dcvhaar.cpp59 float weight; member in struct:CvHidHaarFeature::__anon28085
322 if( fabs(feature->rect[2].weight) < DBL_EPSILON ||
378 ipp_weights[k] = classifier->haar_feature->rect[l].weight*ipp_weight_scale;
646 hidfeature->rect[k].weight = (float)(feature->rect[k].weight * correction_ratio);
651 sum0 += hidfeature->rect[k].weight * tr.width * tr.height;
654 hidfeature->rect[0].weight = (float)(-sum0/area0);
675 double sum = calc_sum(node->feature.rect[0],p_offset) * node->feature.rect[0].weight;
676 sum += calc_sum(node->feature.rect[1],p_offset) * node->feature.rect[1].weight;
679 sum += calc_sum(node->feature.rect[2],p_offset) * node->feature.rect[2].weight;
[all...]
/external/opencv/cvaux/include/
H A Dcvaux.h123 float* weight; /*array of mixture weights. Summ of all weights in state is 1. */ member in struct:CvEHMMState
280 float weight;
353 // Purpose: finds weight of subgraph in a graph
358 // weight_type - describes the way we measure weight.
360 // CV_NOT_WEIGHTED - weight of a clique is simply its size
361 // CV_WEIGHTED_VTX - weight of a clique is the sum of weights of its vertices
378 // weight of subgraph.
390 // Purpose: tries to find clique with maximum possible weight in a graph
397 // weight_type - describes our notion about weight.
399 // CV_NOT_WEIGHTED - weight o
1351 double weight; member in struct:CvGaussBGValues
[all...]
/external/srec/srec/test/SRecTest/src/
H A DSRecTest.c801 LCHAR weight [MAX_UINT_DIGITS+1]; local
810 MAX_UINT_DIGITS + 1, weight, MAX_LINE_LENGTH,
814 convert_string_to_num = lstrtoi (weight, &weightNumber, 10 );
1283 LCHAR weight [MAX_UINT_DIGITS+1]; local
1292 MAX_UINT_DIGITS + 1, weight, NULL, NULL );
1295 convert_string_to_num = lstrtoi ( weight, &weightNumber, 10 );
/external/srec/srec/test/SRecTestAudio/src/
H A DSRecTestAudio.c794 LCHAR weight [MAX_UINT_DIGITS+1]; local
803 MAX_UINT_DIGITS + 1, weight, MAX_LINE_LENGTH,
807 convert_string_to_num = lstrtoi (weight, &weightNumber, 10 );
1199 LCHAR weight [MAX_UINT_DIGITS+1]; local
1208 MAX_UINT_DIGITS + 1, weight, NULL, NULL );
1211 convert_string_to_num = lstrtoi ( weight, &weightNumber, 10 );
/external/chromium_org/third_party/npapi/bindings/
H A Dnpapi_extensions.h666 int weight; member in struct:_NPFontDescription
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_mac.cpp1867 // channel. This matches [LCD][yes-hint] in weight.
2056 // We normalize each axis (weight, width, italic) to be base-900
2058 return sqr(a.weight() - b.weight()) +
2071 float weight, width, slant; local
2072 if (!find_dict_float(dict, kCTFontWeightTrait, &weight)) {
2073 weight = 0;
2082 return SkFontStyle(unit_weight_to_fontstyle(weight),

Completed in 3452 milliseconds

1234567891011