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

1 2 3 4 5 6 7 8

  /external/bison/lib/
ldexpl.c 42 long double factor; local
54 factor = 0.5L;
57 factor = 2.0L;
62 /* Invariant: Here bit = 2^i, factor = 2^-2^i or = 2^2^i,
65 x *= factor;
69 factor = factor * factor;
  /external/chromium_org/ui/base/webui/
web_ui_util_unittest.cc 19 ui::ScaleFactor factor; local
22 webui::ParsePathAndScale(url, &path, &factor);
24 EXPECT_EQ(ui::SCALE_FACTOR_100P, factor);
27 webui::ParsePathAndScale(url2, &path, &factor);
29 EXPECT_EQ(ui::SCALE_FACTOR_100P, factor);
32 webui::ParsePathAndScale(url3, &path, &factor);
34 EXPECT_EQ(ui::SCALE_FACTOR_100P, factor);
37 webui::ParsePathAndScale(url4, &path, &factor);
39 EXPECT_EQ(ui::SCALE_FACTOR_100P, factor);
42 webui::ParsePathAndScale(url5, &path, &factor);
    [all...]
web_ui_util.cc 82 LOG(WARNING) << "Invalid scale factor format: " << identifier;
87 LOG(WARNING) << "Invalid scale factor format: " << identifier;
95 LOG(WARNING) << "Invalid scale factor format: " << identifier;
116 ui::ScaleFactor factor; local
119 pos + 1, stripped_path.length() - pos - 1), &factor)) {
120 // Strip scale factor specification from path.
125 *scale_factor = factor;
  /art/test/004-annotations/src/android/test/anno/
AnnoFancyParameter.java 9 double factor(); method in interface:AnnoFancyParameter
  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoFancyParameter.java 9 double factor(); method in interface:AnnoFancyParameter
  /external/webrtc/src/common_audio/signal_processing/
get_hanning_window.c 62 WebRtc_Word32 factor = ((WebRtc_Word32)0x40000000); local
64 factor = WebRtcSpl_DivW32W16(factor, size);
73 index += factor;
  /frameworks/av/libvideoeditor/osal/src/
M4OSA_Clock.c 64 M4OSA_UInt32 factor; local
74 factor = 1000000 / timescale;
81 u32_time_lo += tv.tv_usec / factor;
  /libcore/benchmarks/src/benchmarks/
MultiplicationBenchmark.java 43 int factor = 10; local
45 result *= factor;
51 int factor = 8; local
53 result *= factor;
  /libcore/benchmarks/src/benchmarks/regression/
IntConstantRemainderBenchmark.java 63 int factor = 2; local
65 result %= factor;
72 int factor = 10;
74 result %= factor;
IntConstantDivisionBenchmark.java 68 int factor = 2; local
70 result /= factor;
76 int factor = 10; local
78 result /= factor;
IntConstantMultiplicationBenchmark.java 89 int factor = 10; local
91 result *= factor;
97 int factor = 8; local
99 result *= factor;
  /external/chromium_org/chrome/browser/
chrome_page_zoom_unittest.cc 33 double factor = *i; local
34 EXPECT_GT(factor, last_value);
35 if (content::ZoomValuesEqual(factor, custom_value))
37 if (content::ZoomValuesEqual(factor, 1.0))
39 last_value = factor;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControlMultiLine.cpp 66 int factor = toHTMLTextAreaElement(node())->cols(); local
67 return static_cast<LayoutUnit>(ceilf(charWidth * factor)) + scrollbarThickness();
  /external/eigen/Eigen/src/Geometry/
Scaling.h 50 inline const Scalar& factor() const { return m_factor; } function in class:Eigen::UniformScaling
51 inline Scalar& factor() { return m_factor; } function in class:Eigen::UniformScaling
55 { return UniformScaling(m_factor * other.factor()); }
66 res.prescale(factor());
96 { m_factor = Scalar(other.factor()); }
103 { return internal::isApprox(m_factor, other.factor(), prec); }
112 { return derived() * s.factor(); }
114 /** Constructs a uniform scaling from scale factor \a s */
116 /** Constructs a uniform scaling from scale factor \a s */
118 /** Constructs a uniform scaling from scale factor \a s *
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
chrono.cpp 84 static const double factor = compute_steady_factor(); local
85 return static_cast<steady_clock::rep>(mach_absolute_time() * factor);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv04_context.h 45 uint32_t factor; member in struct:nv04_context
  /external/chromium_org/v8/src/
dateparser.cc 201 int factor = 1; local
203 ASSERT(factor <= 100000000); // factor won't overflow.
204 factor *= 10;
207 number /= factor;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_context.h 45 uint32_t factor; member in struct:nv04_context
  /external/v8/src/
dateparser.cc 200 int factor = 1; local
202 ASSERT(factor <= 100000000); // factor won't overflow.
203 factor *= 10;
206 number /= factor;
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_CalcCoef.c 66 /* Q is the Q factor, 0.25 to 12 (represented by 25 to 1200) */
110 LVM_INT32 factor; local
142 factor = 0x7fff; /* Initialise to 1.0 for the a0 coefficient */
147 CosErr += (factor * coef) >> 5; /* The nth partial sum */
148 factor = (factor * t0) >> 15; /* Calculate t0^n */
204 /* Q is the Q factor, 0.25 to 12 */
241 LVM_INT32 factor; local
273 factor = 0x7fff; /* Initialise to 1.0 for the a0 coefficient */
278 COS_T0 += (factor * coef) >> 5; /* The nth partial sum *
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
Duration.java 143 long factor = 1000 * sign; local
144 return factor * ((7*24*60*60*weeks)
  /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/chromium_org/third_party/WebKit/Source/platform/geometry/
RoundedRect.cpp 43 void RoundedRect::Radii::scale(float factor)
45 if (factor == 1)
49 m_topLeft.scale(factor);
52 m_topRight.scale(factor);
55 m_bottomLeft.scale(factor);
58 m_bottomRight.scale(factor);
89 // Considering the inflation factor of shorter size to scale the radii seems appropriate here
90 float factor; local
92 factor = old.width() ? (float)m_rect.width() / old.width() : int(0);
94 factor = old.height() ? (float)m_rect.height() / old.height() : int(0)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_bld_blend_soa.c 102 * Indexes are: factor[src,dst][color,term][r,g,b,a]
104 LLVMValueRef factor[2][2][4]; member in struct:lp_build_blend_soa_context
115 * Build a single SOA blend factor for a color channel.
120 unsigned factor, unsigned i)
125 switch (factor) {
252 bld.factor[0][0][i] = src[i];
253 bld.factor[0][1][i] = lp_build_blend_soa_factor(&bld, src_factor, i);
254 bld.factor[1][0][i] = dst[i];
255 bld.factor[1][1][i] = lp_build_blend_soa_factor(&bld, dst_factor, i);
264 bld.factor[0][0][i]
    [all...]
  /external/chromium_org/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;

Completed in 1070 milliseconds

1 2 3 4 5 6 7 8