Home
last modified time | relevance | path

Searched refs:divider (Results 1 - 24 of 24) sorted by relevance

/third_party/skia/third_party/externals/freetype/src/psaux/
H A Dpsconv.c204 FT_Long divider = 1; in FT_LOCAL_DEF() local
261 if ( divider < 0xCCCCCCCL && decimal < 0xCCCCCCCL ) in FT_LOCAL_DEF()
268 divider *= 10; in FT_LOCAL_DEF()
314 if ( divider == 1 ) in FT_LOCAL_DEF()
316 divider /= 10; in FT_LOCAL_DEF()
327 if ( divider < 0xCCCCCCCL ) in FT_LOCAL_DEF()
328 divider *= 10; in FT_LOCAL_DEF()
340 decimal = FT_DivFix( decimal, divider ); in FT_LOCAL_DEF()
/third_party/node/lib/internal/
H A Dcli_table.js74 const divider = ArrayPrototypeMap(columnWidths, (i) =>
78 ArrayPrototypeJoin(divider, tableChars.topMiddle) +
82 ArrayPrototypeJoin(divider, tableChars.rowMiddle) +
89 ArrayPrototypeJoin(divider, tableChars.bottomMiddle) +
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassMultisampleTests.cpp1518 deUint32 divider = 2; in iterateInternal() local
1523 depth += (range / (float)divider) in iterateInternal()
1525 divider *= 2; in iterateInternal()
1577 deUint32 divider = 2; in iterateInternal() local
1587 color[compNdx] += (range[compNdx] / divider) in iterateInternal()
1594 divider *= 2; in iterateInternal()
1622 deUint32 divider = 2; in iterateInternal() local
1632 color[compNdx] += (range[compNdx] / divider) in iterateInternal()
1639 divider *= 2; in iterateInternal()
1673 deUint32 divider in iterateInternal() local
1771 deUint32 divider = 2; init() local
1836 deUint32 divider = 2; init() local
1898 deUint32 divider = 2; init() local
1966 deUint32 divider = 2; init() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassMultisampleTests.cpp1511 deUint32 divider = 2; in iterateInternal() local
1516 depth += (range / (float)divider) in iterateInternal()
1518 divider *= 2; in iterateInternal()
1570 deUint32 divider = 2; in iterateInternal() local
1580 color[compNdx] += (range[compNdx] / divider) in iterateInternal()
1587 divider *= 2; in iterateInternal()
1615 deUint32 divider = 2; in iterateInternal() local
1625 color[compNdx] += (range[compNdx] / divider) in iterateInternal()
1632 divider *= 2; in iterateInternal()
1665 deUint32 divider in iterateInternal() local
1763 deUint32 divider = 2; init() local
1828 deUint32 divider = 2; init() local
1890 deUint32 divider = 2; init() local
1957 deUint32 divider = 2; init() local
[all...]
/third_party/ltp/lib/
H A Drandom_range.c99 static long long divider(long long, long long, long long, long long);
352 randnum = divider(min, max, 0, -1); in random_range()
439 randnum = divider(min, max, 0, -1); in random_rangel()
526 randnum = divider(min, max, 0, -1); in random_rangell()
547 divider(long long min, long long max, long long cnt, long long rand) in divider() function
575 printf("divider: min=%lld, max=%lld, cnt=%lld, rand=%lld\n", min, max, in divider()
596 return divider(med, max, cnt + 1, rand); in divider()
598 return divider(min, med, cnt + 1, rand); in divider()
/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-helpers-conversion.c911 double divider = 10.0; in ecma_double_to_ascii() local
913 double mod_res = fmod (val, divider); in ecma_double_to_ascii()
916 divider *= 10.0; in ecma_double_to_ascii()
921 mod_res = fmod (val, divider); in ecma_double_to_ascii()
923 buffer_p[num_of_digits - 1 - char_cnt++] = (lit_utf8_byte_t) ((int) (residual / (divider / 10.0)) + '0'); in ecma_double_to_ascii()
925 divider *= 10.0; in ecma_double_to_ascii()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
H A DCompoundTransliteratorTest.java200 private static String[] split(String s, char divider) { in split() argument
205 if (s.charAt(i) == divider) ++count; in split()
214 if (s.charAt(i) == divider) { in split()
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DCompoundTransliteratorTest.java197 private static String[] split(String s, char divider) { in split() argument
202 if (s.charAt(i) == divider) ++count; in split()
211 if (s.charAt(i) == divider) { in split()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageMismatchedWriteOpTests.cpp846 const float divider (static_cast<float>(m_params->textureHeight)); in populate()
847 const tcu::Vec4 ufloatStep (1.0f/(divider*1.0f), 1.0f/(divider*2.0f), 1.0f/(divider*3.0f), 1.0f/(divider*5.0f)); in populate()
848 const tcu::Vec4 sfloatStep (2.0f/(divider*1.0f), 2.0f/(divider*2.0f), 2.0f/(divider*3.0f), 2.0f/(divider*5.0f)); in populate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/
H A DvktImageMismatchedWriteOpTests.cpp849 const float divider (static_cast<float>(m_params->textureHeight)); in populate()
850 const tcu::Vec4 ufloatStep (1.0f/(divider*1.0f), 1.0f/(divider*2.0f), 1.0f/(divider*3.0f), 1.0f/(divider*5.0f)); in populate()
851 const tcu::Vec4 sfloatStep (2.0f/(divider*1.0f), 2.0f/(divider*2.0f), 2.0f/(divider*3.0f), 2.0f/(divider*5.0f)); in populate()
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
H A D147-define-macro-no-space.c15 #define D/ divider
/third_party/ffmpeg/libavcodec/
H A Dvc1dec.c742 const uint8_t *divider; in vc1_decode_frame() local
745 divider = find_next_marker(buf, buf + buf_size); in vc1_decode_frame()
746 if ((divider == (buf + buf_size)) || AV_RB32(divider) != VC1_CODE_FIELD) { in vc1_decode_frame()
752 buf_start_second_field = divider; in vc1_decode_frame()
764 buf_size3 = v->vc1dsp.vc1_unescape_buffer(divider + 4, buf + buf_size - divider - 4, slices[n_slices].buf); in vc1_decode_frame()
768 slices[n_slices].rawbuf = divider; in vc1_decode_frame()
769 slices[n_slices].raw_size = buf + buf_size - divider; in vc1_decode_frame()
773 buf_size2 = v->vc1dsp.vc1_unescape_buffer(buf, divider in vc1_decode_frame()
[all...]
/third_party/protobuf/src/google/protobuf/util/
H A Dtime_util.cc130 int64 RoundTowardZero(int64 value, int64 divider) { in RoundTowardZero() argument
131 int64 result = value / divider; in RoundTowardZero()
132 int64 remainder = value % divider; in RoundTowardZero()
/third_party/protobuf/python/google/protobuf/internal/
H A Dwell_known_types.py402 def _RoundTowardZero(value, divider):
409 result = value // divider
410 remainder = value % divider
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUtility.java1110 * Split a string into pieces based on the given divider character
1112 * @param divider the character on which to split. Occurrences of
1115 * instances of divider. It must be large enough on entry to
1116 * accommodate all output. Adjacent instances of the divider
1120 public static void split(String s, char divider, String[] output) { in split() argument
1125 if (s.charAt(i) == divider) { in split()
1137 * Split a string into pieces based on the given divider character
1139 * @param divider the character on which to split. Occurrences of
1142 * instances of divider. Adjacent instances of the divider
1145 split(String s, char divider) split() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DUtility.java1045 * Split a string into pieces based on the given divider character
1047 * @param divider the character on which to split. Occurrences of
1050 * instances of divider. It must be large enough on entry to
1051 * accomodate all output. Adjacent instances of the divider
1055 public static void split(String s, char divider, String[] output) { in split() argument
1060 if (s.charAt(i) == divider) { in split()
1072 * Split a string into pieces based on the given divider character
1074 * @param divider the character on which to split. Occurrences of
1077 * instances of divider. Adjacent instances of the divider
1080 split(String s, char divider) split() argument
[all...]
/third_party/lzma/CPP/7zip/UI/FileManager/
H A DProgressDialog2.cpp673 static UInt64 MyMultAndDiv(UInt64 mult1, UInt64 mult2, UInt64 divider) in MyMultAndDiv() argument
681 divider >>= 1; in MyMultAndDiv()
684 if (divider != 0) in MyMultAndDiv()
685 res /= divider; in MyMultAndDiv()
/third_party/mesa3d/src/intel/tools/
H A Daubinator_viewer.cpp972 double divider = 1024; in human_size() local
973 while (v >= divider) { in human_size()
974 v /= divider; in human_size()
/third_party/googletest/googlemock/test/
H A Dgmock-matchers-comparisons_test.cc2286 int divider() const { return divider_; } in TEST() function in testing::gmock_matchers_test::__anon3002::DivisibleByImpl
2340 EXPECT_EQ(42, impl.divider()); in TEST()
2343 EXPECT_EQ(0, m.mutable_impl().divider()); in TEST()
2350 EXPECT_EQ(42, impl.divider()); in TEST()
/third_party/lzma/CPP/7zip/UI/Common/
H A DBench.cpp2755 static void PrintPercents(IBenchPrintCallback &f, UInt64 val, UInt64 divider, unsigned size)
2758 if (divider != 0)
2759 v = (val * 100 + divider / 2) / divider;
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/descriptor_indexing/
H A DvktDescriptorSetsIndexingTests.cpp1490 int divider = 2; in createColorScheme() local
1493 cs.push_back(1.0f / float(divider)); in createColorScheme()
1494 divider *= 2; in createColorScheme()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/descriptor_indexing/
H A DvktDescriptorSetsIndexingTests.cpp1404 int divider = 2; in createColorScheme() local
1407 cs.push_back(1.0f / float(divider)); in createColorScheme()
1408 divider *= 2; in createColorScheme()
/third_party/vk-gl-cts/framework/common/
H A DtcuTexture.hpp360 ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const IVec3& pitch, const IVec3& divider, const void* data);
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 52 milliseconds