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

1 2 3 4 5 6 7 8

  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpPostRequestTest.java 73 String divider = UUID.randomUUID().toString(); local
74 String header = "POST " + HttpServerTest.URI + " HTTP/1.1\nContent-Type: " + "multipart/form-data, boundary=" + divider + "\r\n";
76 "--" + divider + "\r\n" + "Content-Disposition: form-data; name=\"" + HttpPostRequestTest.FIELD + "\"; filename=\"" + fileName + "\"\r\n"
77 + "Content-Type: image/jpeg\r\n" + "\r\n" + fileContent + "\r\n" + "--" + divider + "--\r\n";
117 String divider = UUID.randomUUID().toString(); local
118 String header = "POST " + HttpServerTest.URI + " HTTP/1.1\nContent-Type: " + "multipart/form-data; boundary=" + divider + "\n";
120 "--" + divider + "\r\n" + "Content-Disposition: form-data; name=\"" + HttpPostRequestTest.FIELD + "\"\r\n" + "\r\n" + HttpPostRequestTest.VALUE + "\r\n"
121 + "--" + divider + "\r\n" + "Content-Disposition: form-data; name=\"" + HttpPostRequestTest.FIELD2 + "\"\r\n" + "\r\n" + HttpPostRequestTest.VALUE2
122 + "\r\n" + "--" + divider + "--\r\n";
136 String divider = UUID.randomUUID().toString() local
155 String divider = UUID.randomUUID().toString(); local
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorIntDiv.h 110 static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE uint32_t computeMultiplier(const int log_div, const T divider) {
112 return static_cast<uint32_t>((static_cast<uint64_t>(1) << (N+log_div)) / divider - (static_cast<uint64_t>(1) << N) + 1);
118 static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE uint64_t computeMultiplier(const int log_div, const T divider) {
120 return static_cast<uint64_t>((static_cast<__uint128_t>(1) << (64+log_div)) / static_cast<__uint128_t>(divider) - (static_cast<__uint128_t>(1) << 64) + 1);
123 TensorUInt128<uint64_t, uint64_t> result = TensorUInt128<uint64_t, static_val<0> >(shift, 0) / TensorUInt128<static_val<0>, uint64_t>(divider)
142 // Must have 0 < divider < 2^31. This is relaxed to
143 // 0 < divider < 2^63 when using 64-bit indices on platforms that support
145 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorIntDivisor(const T divider) {
147 eigen_assert(static_cast<typename UnsignedTraits<T>::type>(divider) < NumTraits<UnsignedType>::highest()/2);
148 eigen_assert(divider > 0)
    [all...]
  /external/eigen/unsupported/test/
cxx11_tensor_intdiv.cpp 100 Eigen::internal::TensorIntDivisor<int32_t> divider = local
103 int32_t result_op = divider.divide(num);
119 Eigen::internal::TensorIntDivisor<int64_t> divider(div);
121 int64_t result_op = divider.divide(num);
132 Eigen::internal::TensorIntDivisor<int64_t> divider(div);
134 int64_t result_op = divider.divide(num);
cxx11_tensor_uint128.cpp 134 for (int64_t divider = 1; divider <= 1000000 * incr; divider += incr) {
135 uint64_t expected = (static_cast<uint128_t>(1) << (64+log_div)) / static_cast<uint128_t>(divider) - (static_cast<uint128_t>(1) << 64) + 1;
138 TensorUInt128<uint64_t, uint64_t> result = (TensorUInt128<uint64_t, static_val<0> >(shift, 0) / TensorUInt128<static_val<0>, uint64_t>(divider) - TensorUInt128<static_val<1>, static_val<0> >(1, 0) + TensorUInt128<static_val<0>, static_val<1> >(1));
  /frameworks/base/libs/hwui/
ProfileData.cpp 82 uint32_t divider = 0; local
84 divider = 4;
87 mJankTypeCounts[i] >>= divider; local
91 mFrameCounts[i] >>= divider; local
94 mJankFrameCount >>= divider; local
96 mTotalFrameCount >>= divider; local
  /frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/
DividerItemDecoration.java 35 * {@link #setDivider(android.graphics.drawable.Drawable)} as the divider in between each item by
36 * default, and the behavior of whether the divider is shown can be customized by subclassing
52 * Returns whether divider is allowed above this item. A divider will be shown only if both
53 * items immediately above and below it allows this divider.
58 * Returns whether divider is allowed below this item. A divider will be shown only if both
59 * items immediately above and below it allows this divider.
94 final Drawable divider = a.getDrawable( local
103 setDivider(divider);
    [all...]
  /device/generic/goldfish/dhcp/server/
main.cpp 42 char* divider = strchr(argv[i + 1], ','); local
43 if (divider != nullptr) {
44 *divider = '\0';
53 char* next = divider + 1;
  /frameworks/opt/setupwizard/library/recyclerview/test/instrumentation/src/com/android/setupwizardlib/template/
RecyclerMixinTest.java 105 final Drawable divider = mixin.getDivider(); local
106 InsetDrawable insetDrawable = (InsetDrawable) divider;
121 final Drawable divider = mixin.getDivider(); local
122 InsetDrawable insetDrawable = (InsetDrawable) divider;
139 final Drawable divider = mixin.getDivider(); local
140 InsetDrawable insetDrawable = (InsetDrawable) divider;
160 final Drawable divider = mixin.getDivider(); local
161 InsetDrawable insetDrawable = (InsetDrawable) divider;
  /frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/template/
ListMixinTest.java 110 final Drawable divider = mListView.getDivider(); local
111 InsetDrawable insetDrawable = (InsetDrawable) divider;
126 final Drawable divider = mListView.getDivider(); local
127 InsetDrawable insetDrawable = (InsetDrawable) divider;
144 final Drawable divider = mListView.getDivider(); local
145 InsetDrawable insetDrawable = (InsetDrawable) divider;
165 final Drawable divider = mListView.getDivider(); local
166 InsetDrawable insetDrawable = (InsetDrawable) divider;
  /frameworks/opt/setupwizard/library/recyclerview/test/instrumentation/src/com/android/setupwizardlib/test/
DividerItemDecorationTest.java 51 Drawable divider = new ColorDrawable(); local
52 decoration.setDivider(divider);
53 assertSame("Divider should be same as set", divider, decoration.getDivider());
60 assertEquals("Divider height should be 123", 123, decoration.getDividerHeight());
65 // Set up the item decoration, with 1px red divider line
67 Drawable divider = new ColorDrawable(Color.RED); local
68 decoration.setDivider(divider);
91 // last item should not have a divider below it now
108 // Set up the item decoration, with 1px green divider lin
110 Drawable divider = new ColorDrawable(Color.GREEN); local
    [all...]
GlifRecyclerLayoutTest.java 116 assertEquals("Divider inset should be 10", 10, layout.getDividerInset());
118 final Drawable divider = layout.getDivider(); local
119 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
131 assertEquals("Divider inset start should be 10", 10, layout.getDividerInsetStart());
132 assertEquals("Divider inset end should be 15", 15, layout.getDividerInsetEnd());
134 final Drawable divider = layout.getDivider(); local
135 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
SetupWizardRecyclerLayoutTest.java 117 assertEquals("Divider inset should be 10", 10, layout.getDividerInset());
119 final Drawable divider = layout.getDivider(); local
120 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
132 assertEquals("Divider inset start should be 10", 10, layout.getDividerInsetStart());
133 assertEquals("Divider inset end should be 15", 15, layout.getDividerInsetEnd());
135 final Drawable divider = layout.getDivider(); local
136 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
GlifPreferenceLayoutTest.java 88 assertEquals("Divider inset should be 10", 10, layout.getDividerInset());
90 final Drawable divider = layout.getDivider(); local
91 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
SetupWizardPreferenceLayoutTest.java 88 assertEquals("Divider inset should be 10", 10, layout.getDividerInset());
90 final Drawable divider = layout.getDivider(); local
91 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
TwoTargetPreference.java 97 final View divider = holder.findViewById(R.id.two_target_divider); local
100 if (divider != null) {
101 divider.setVisibility(shouldHideSecondTarget ? View.GONE : View.VISIBLE);
  /packages/apps/Settings/src/com/android/settings/notification/
ZenCustomRadioButtonPreference.java 29 * A radio button preference with a divider and a settings icon that links to another screen.
89 final View divider = holder.findViewById(R.id.two_target_divider); local
91 divider.setVisibility(View.VISIBLE);
95 divider.setVisibility(View.GONE);
  /packages/services/Telephony/src/com/android/phone/
RestrictedPreference.java 77 final View divider = view.findViewById(com.android.settingslib.R.id.two_target_divider); local
81 if (divider != null) {
82 divider.setVisibility(mDisabledByAdmin ? View.VISIBLE : View.GONE);
  /frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
GlifListLayoutTest.java 116 assertEquals("Divider inset should be 10", 10, layout.getDividerInset());
118 final Drawable divider = layout.getDivider(); local
119 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
131 assertEquals("Divider inset should be 10", 10, layout.getDividerInsetStart());
132 assertEquals("Divider inset should be 15", 15, layout.getDividerInsetEnd());
134 final Drawable divider = layout.getDivider(); local
135 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
SetupWizardListLayoutTest.java 103 assertEquals("Divider inset should be 10", 10, layout.getDividerInset());
105 final Drawable divider = layout.getDivider(); local
106 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
118 assertEquals("Divider inset start should be 10", 10, layout.getDividerInsetStart());
119 assertEquals("Divider inset end should be 15", 15, layout.getDividerInsetEnd());
121 final Drawable divider = layout.getDivider(); local
122 assertTrue("Divider should be instance of InsetDrawable", divider instanceof InsetDrawable);
  /external/freetype/src/psaux/
psconv.c 205 FT_Long divider = 1; local
262 if ( divider < 0xCCCCCCCL && decimal < 0xCCCCCCCL )
269 divider *= 10;
315 if ( divider == 1 )
317 divider /= 10;
328 if ( divider < 0xCCCCCCCL )
329 divider *= 10;
341 decimal = FT_DivFix( decimal, divider );
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
and_constructor.c 295 unsigned char divider; local
308 divider = 4; // 4 means 200Hz DMP
311 inv_set_gyro_sample_rate(1000L*(divider+1)*(fifo_divider+1));
314 inv_set_quat_sample_rate(1000L*(divider+1)*(fifo_divider+1));
317 inv_set_compass_sample_rate(1000L*(divider+1)*(fifo_divider+1));
320 inv_set_accel_sample_rate(1000L*(divider+1)*(fifo_divider+1));
329 divider = fifo_dmp_cfg.sample_divider;
346 divider = 9;
348 inv_set_gyro_sample_rate(1000L*(divider+1));
350 inv_set_compass_sample_rate(1000L*(divider+1))
    [all...]
  /external/curl/docs/cmdline-opts/
next.d 6 Magic: divider
  /prebuilts/go/darwin-x86/src/runtime/
os_nacl_arm.go 7 var hardDiv bool // TODO: set if a hardware divider is available
os_plan9_arm.go 7 var hardDiv bool // TODO: set if a hardware divider is available
  /prebuilts/go/linux-x86/src/runtime/
os_nacl_arm.go 7 var hardDiv bool // TODO: set if a hardware divider is available

Completed in 372 milliseconds

1 2 3 4 5 6 7 8