HomeSort by relevance Sort by last modified time
    Searched refs:factor (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoFancyParameter.java 9 double factor(); method in interface:AnnoFancyParameter
FullyNoted.java 13 FullyNoted(@AnnoFancyParameter(factor=0.5) int bar)
21 @AnnoFancyParameter(factor=3.7879912899761) long two)
30 @AnnoFancyParameter(factor=3.7879912899761) long two)
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
armtime 45 factor=0; # we are measuring after-before as (-before) + (after),
46 # so the factor before the test is -1, after the test is
71 # the first time an uptime line is encountered factor should be -1, the
74 factor = factor ? 1 : -1
76 uptime_total += factor * $1
77 uptime_idle += factor * $2
80 print "got(/proc/uptime):", $0, "=>", factor, uptime_total, uptime_idle
86 MHZtime[$1] += factor * $2 * 0.01
87 cpu_time += factor * $2 * 0.0
    [all...]
perf 34 # scale factor size => scale a size by factor percent
263 factor=2x+
267 [ $rgb_size ] && EVAL="$EVAL $factor$cmd_VPPRrate+size=$rgb_size"
268 [ $yuv_size ] && EVAL="$EVAL $factor$cmd_VPPYrate+size=$yuv_size"
  /system/core/libpixelflinger/codeflinger/
blending.cpp 50 integer_t factor(scratches.obtain(), 16, CORRUPTIBLE);
51 CONTEXT_LOAD(factor.reg, generated_vars.f);
53 // clamp fog factor (TODO: see if there is a way to guarantee
55 BIC(AL, 0, factor.reg, factor.reg, reg_imm(factor.reg, ASR, 31));
56 CMP(AL, factor.reg, imm( 0x10000 ));
57 MOV(HS, 0, factor.reg, imm( 0x10000 ));
59 build_blendFOneMinusF(temp, factor, fragment, fogColor);
169 integer_t factor;
    [all...]
  /frameworks/base/core/java/android/view/animation/
AccelerateInterpolator.java 40 * @param factor Degree to which the animation should be eased. Seting
41 * factor to 1.0f produces a y=x^2 parabola. Increasing factor above
45 public AccelerateInterpolator(float factor) {
46 mFactor = factor;
DecelerateInterpolator.java 35 * @param factor Degree to which the animation should be eased. Setting factor to 1.0f produces
36 * an upside-down y=x^2 parabola. Increasing factor above 1.0f makes exaggerates the
39 public DecelerateInterpolator(float factor) {
40 mFactor = factor;
  /external/apache-http/src/org/apache/http/impl/client/
BasicCredentialsProvider.java 103 int factor = authscope.match(current); local
104 if (factor > bestMatchFactor) {
105 bestMatchFactor = factor;
  /external/apache-http/src/org/apache/http/auth/
AuthScope.java 193 * @return the match factor. Negative value signifies no match.
198 int factor = 0; local
200 factor += 1;
207 factor += 2;
214 factor += 4;
221 factor += 8;
227 return factor;
  /external/v8/test/cctest/
test-hashmap.cc 129 const int factor = 13; local
137 x = x * factor + offset;
145 x = x * factor + offset;
156 x = x * factor + offset;
166 y = y * factor + offset;
  /packages/apps/Email/src/com/android/exchange/utility/
Duration.java 123 long factor = 1000 * sign; local
124 return factor * ((7*24*60*60*weeks) + (24*60*60*days) + (60*60*hours) + (60*minutes) +
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
Duration.java 140 long factor = 1000 * sign; local
141 return factor * ((7*24*60*60*weeks)
  /external/webkit/WebKit/mac/WebView/
WebWindowAnimation.m 37 static NSRect scaledRect(NSRect _initialFrame, NSRect _finalFrame, double factor)
40 currentRect.origin.x += (NSMinX(_finalFrame) - NSMinX(_initialFrame)) * factor;
41 currentRect.origin.y += (NSMinY(_finalFrame) - NSMinY(_initialFrame)) * factor;
42 currentRect.size.width += (NSWidth(_finalFrame) - NSWidth(_initialFrame)) * factor;
43 currentRect.size.height += (NSHeight(_finalFrame) - NSHeight(_initialFrame)) * factor;
  /dalvik/libcore/math/src/main/java/java/math/
Multiplication.java 91 * @param factor a positive {@code int} number
92 * @return {@code val * factor}
94 static BigInteger multiplyByPositiveInt(BigInteger val, int factor) {
97 bi.multiplyByPositiveInt(factor);
  /external/webkit/WebCore/rendering/
RenderTextControlMultiLine.cpp 85 int factor = static_cast<HTMLTextAreaElement*>(node())->cols(); local
86 return static_cast<int>(ceilf(charWidth * factor)) + scrollbarThickness();
  /external/dhcpcd/
common.c 221 static double factor = 0.0; local
227 factor = (double)info.numer / (double)info.denom;
233 if ((info.denom != 1 || info.numer != 1) && factor != 0.0)
234 nano *= factor;
  /system/core/sh/
miscbltin.c 294 int factor; /* multiply by to get rlim_{cur,max} values */ member in struct:limits
390 val *= l->factor;
406 val /= l->factor;
435 val /= l->factor;
  /external/clearsilver/imd/
imd.c 294 int factor=1; local
315 factor = 2;
316 if (srcW / factor > maxW)
318 factor = 4;
319 if (srcW / factor > maxW)
320 factor = 8;
325 /* ne_warn("factor %d\n", factor); */
326 snprintf (cmd, sizeof(cmd), "/usr/bin/djpeg -fast -scale 1/%d '%s' | /usr/bin/cjpeg -quality 60 -progressive -dct fast -outfile '%s'", factor, fname, cachepath);
432 factor = 0.125
625 int factor; local
723 int i, x, factor, y; local
    [all...]
  /external/webkit/WebCore/rendering/style/
RenderStyle.cpp 741 float factor = 1; local
747 factor = min(static_cast<float>(r.width()) / radiiSum, factor);
752 factor = min(static_cast<float>(r.width()) / radiiSum, factor);
757 factor = min(static_cast<float>(r.height()) / radiiSum, factor);
762 factor = min(static_cast<float>(r.height()) / radiiSum, factor);
765 if (factor < 1)
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebview.h 94 void setZoomFactor(qreal factor);
96 void setTextSizeMultiplier(qreal factor);
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
Sequencer.java 143 void setTempoFactor(float factor);
  /system/extras/tests/sdcard/
plot_sdcard.py 68 factor = len(self.data) / length
70 if factor > 1:
77 if idx % factor == 0:
79 new_data.append(accum / factor)
  /dalvik/libcore/xml/src/main/java/javax/xml/datatype/
Duration.java 623 * <p>Computes a new duration whose value is <code>factor</code> times
629 * multiply(new BigDecimal(String.valueOf(factor)))
632 * @param factor Factor times longer of new <code>Duration</code> to create.
634 * @return New <code>Duration</code> that is <code>factor</code>times longer than this <code>Duration</code>.
638 public Duration multiply(int factor) {
639 return multiply(BigDecimal.valueOf(factor));
643 * Computes a new duration whose value is <code>factor</code> times
677 * @param factor to multiply by
685 * @throws NullPointerException if the <code>factor</code> parameter is
    [all...]
  /external/opencore/codecs_v2/audio/aac/dec/src/
ps_decorrelate.cpp 381 Int32 factor = aTransRatio[NO_BINS-2]; local
414 aRightReal[sb] = fxp_mul32_Q31(factor, tmp) << 1;
415 aRightImag[sb] = fxp_mul32_Q31(factor, tmp2) << 1;
  /frameworks/base/media/libstagefright/codecs/aacdec/
ps_decorrelate.cpp 381 Int32 factor = aTransRatio[NO_BINS-2]; local
414 aRightReal[sb] = fxp_mul32_Q31(factor, tmp) << 1;
415 aRightImag[sb] = fxp_mul32_Q31(factor, tmp2) << 1;

Completed in 1894 milliseconds

1 2 3 4 5