Home
last modified time | relevance | path

Searched refs:midpoint (Results 1 – 25 of 25) sorted by relevance

/third_party/icu/icu4c/source/test/perf/howExpensiveIs/
Dsieve.cpp85 double midpoint(double *times, double i, int n) { in midpoint() function
99 return midpoint(times,n/4,n); in medianof()
101 return midpoint(times,n/2,n); in medianof()
103 return midpoint(times,(n/2)+(n/4),n); in medianof()
/third_party/mesa3d/src/mesa/main/
Dtexcompress_bptc_tmp.h1209 int midpoint; in get_rgba_endpoints_unorm() local
1279 midpoint = (endpoint_luminances[0] + endpoint_luminances[1]) / 2; in get_rgba_endpoints_unorm()
1281 if ((src[0] + src[1] + src[2] <= midpoint) != in get_rgba_endpoints_unorm()
1282 (endpoint_luminances[0] <= midpoint)) { in get_rgba_endpoints_unorm()
1290 midpoint = (endpoints[0][3] + endpoints[1][3]) / 2; in get_rgba_endpoints_unorm()
1292 if ((src[3] <= midpoint) != (endpoints[0][3] <= midpoint)) { in get_rgba_endpoints_unorm()
1513 float midpoint; in get_endpoints_float() local
1572 midpoint = (endpoint_luminances[0] + endpoint_luminances[1]) / 2.0f; in get_endpoints_float()
1574 if ((src[0] + src[1] + src[2] <= midpoint) != in get_endpoints_float()
1575 (endpoint_luminances[0] <= midpoint)) { in get_endpoints_float()
/third_party/skia/src/gpu/tessellate/
DPatchWriter.cpp88 float2 midpoint = abc.xy() / abc.w(); in chopAndWriteConics() local
91 << midpoint in chopAndWriteConics()
94 *this << innerTriangulator.pushVertex(to_skpoint(midpoint)); in chopAndWriteConics()
/third_party/pulseaudio/src/modules/bluetooth/
Da2dp-codec-sbc.c278 size_t midpoint = (upper_bound + lower_bound) / 2; in sbc_get_max_bitpool_below_rate() local
280 sbc_info.initial_bitpool = midpoint; in sbc_get_max_bitpool_below_rate()
286 upper_bound = midpoint; in sbc_get_max_bitpool_below_rate()
288 lower_bound = midpoint; in sbc_get_max_bitpool_below_rate()
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_KHR_sampler_ycbcr_conversion.txt73 - Added cosited option/midpoint requirement for formats,
/third_party/vk-gl-cts/modules/egl/
DteglResizeTests.cpp472 const IVec2 winPpi (int(winPpiI.x().midpoint()), int(winPpiI.y().midpoint())); in getNativePixelsPerInch()
/third_party/python/Modules/
Dmathmodule.c1933 unsigned long midpoint, num_operands; in factorial_partial_product() local
1964 midpoint = (start + num_operands) | 1; in factorial_partial_product()
1965 left = factorial_partial_product(start, midpoint, in factorial_partial_product()
1966 _Py_bit_length(midpoint - 2)); in factorial_partial_product()
1969 right = factorial_partial_product(midpoint, stop, max_bits); in factorial_partial_product()
/third_party/skia/third_party/externals/freetype/src/psaux/
Dpshints.c693 CF2_Fixed midpoint = in cf2_hintmap_insertHint() local
704 firstHintEdge->dsCoord = SUB_INT32( midpoint, halfWidth ); in cf2_hintmap_insertHint()
705 secondHintEdge->dsCoord = ADD_INT32( midpoint, halfWidth ); in cf2_hintmap_insertHint()
/third_party/vk-gl-cts/framework/common/
DtcuInterval.hpp168 double midpoint (void) const in midpoint() function in tcu::Interval
/third_party/skia/third_party/externals/abseil-cpp/absl/time/
Dduration_test.cc1427 double midpoint = low_edge + (high_edge - low_edge) / 2; in TEST() local
1428 if (midpoint == low_edge || midpoint == high_edge) break; in TEST()
1429 absl::Duration mid_duration = absl::Seconds(midpoint); in TEST()
1431 low_edge = midpoint; in TEST()
1434 high_edge = midpoint; in TEST()
/third_party/python/Doc/library/
Dstatistics.rst297 the midpoint of data classes, e.g. 1 is the midpoint of the class 0.5--1.5, 2
298 is the midpoint of 1.5--2.5, 3 is the midpoint of 2.5--3.5, etc. With the data
Drandom.rst296 default to zero and one. The *mode* argument defaults to the midpoint
/third_party/rust/crates/cxx/book/src/
Dcontext.md82 You should think of the `cxx` crate as being the midpoint of the Rust&ndash;C++
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderBuiltinPrecisionTests.cpp2521 const double a = iargs.a.midpoint(); in doApply()
2522 const double b = iargs.b.midpoint(); in doApply()
5694 const double midpoint = inputRange.midpoint(); in randomDouble() local
5706 case 0: return inputRange.contains(0) ? 0 : midpoint; in randomDouble()
5707 case 1: return inputRange.contains(TCU_INFINITY) ? TCU_INFINITY : midpoint; in randomDouble()
5708 case 2: return inputRange.contains(-TCU_INFINITY) ? -TCU_INFINITY : midpoint; in randomDouble()
5709 case 3: return inputRange.contains(TCU_NAN) ? TCU_NAN : midpoint; in randomDouble()
5739 return inputRange.contains(value) ? value : midpoint; in randomDouble()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp1327 APInt midpoint((nextSquare - square).udiv(two)); in sqrt() local
1329 if (offset.ult(midpoint)) in sqrt()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp1166 APInt midpoint((nextSquare - square).udiv(two)); in sqrt() local
1168 if (offset.ult(midpoint)) in sqrt()
/third_party/vk-gl-cts/modules/gles3/performance/
Des3pBufferDataUploadTests.cpp969 const float midpoint = (xmin + xmax) / 2.0f; in getAreaBetweenLines() local
972 const float lineAHeight = lineAOffset + lineACoefficient * midpoint; in getAreaBetweenLines()
973 const float lineBHeight = lineBOffset + lineBCoefficient * midpoint; in getAreaBetweenLines()
/third_party/python/Objects/
Dlistsort.txt201 element near the midpoint. \sort, /sort, =sort are the trivial one-run
/third_party/musl/
DWHATSNEW1760 - printf float rounding was wrong for some midpoint cases
/third_party/ffmpeg/doc/
Dencoders.texi2175 midpoint is passed in rather than calculated for a specific clip or chunk.
/third_party/openGLES/extensions/ARB/
DARB_tessellation_shader.txt3459 edge don't move -- new vertices are introduced at the midpoint of each
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_tessellation_shader.txt3449 edge don't move -- new vertices are introduced at the midpoint of each
/third_party/icu/icu4j/main/shared/data/
DTransliterator_Han_Latin_Definition.txt14190 间 < midpoint;
45778 间 > midpoint;
/third_party/NuttX/
DReleaseNotes20880 levels but have 'shifted' them to be based around the midpoint of the
/third_party/icu/icu4j/perf-tests/data/collation/
Dulyss10.txt11352 swingswong from its midpoint, lightly.