Home
last modified time | relevance | path

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

12345678910>>...31

/third_party/curl/lib/
Dsplay.c49 N.smaller = N.larger = NULL; in Curl_splay()
55 if(!t->smaller) in Curl_splay()
57 if(compare(i, t->smaller->key) < 0) { in Curl_splay()
58 y = t->smaller; /* rotate smaller */ in Curl_splay()
59 t->smaller = y->larger; in Curl_splay()
62 if(!t->smaller) in Curl_splay()
65 r->smaller = t; /* link smaller */ in Curl_splay()
67 t = t->smaller; in Curl_splay()
74 t->larger = y->smaller; in Curl_splay()
75 y->smaller = t; in Curl_splay()
[all …]
Dsplay.h30 struct Curl_tree *smaller; /* smaller node */ member
/third_party/skia/third_party/externals/icu/source/data/rbnf/
Dko.txt125 "0: =%%spellout-ordinal-native-count-smaller= \uBC88\uC9F8;",
126 "10: =%%spellout-ordinal-sinokorean-count-smaller= \uBC88\uC9F8;",
127 "%%spellout-ordinal-sinokorean-count-smaller:",
173 "0: =%%spellout-ordinal-native-count-smaller= \uBC88\uC9F8;",
174 "%%spellout-ordinal-native-count-smaller:",
212 "3: =%%spellout-ordinal-native-smaller=;",
213 "%%spellout-ordinal-native-smaller:",
234 "100: \uBC31[>%%spellout-ordinal-native-smaller-x02>];",
235 "200: <%spellout-cardinal-sinokorean<\uBC31[>%%spellout-ordinal-native-smaller-x02>];",
236 "1000: \uCC9C[>%%spellout-ordinal-native-smaller-x02>];",
[all …]
/third_party/icu/icu4c/source/data/rbnf/
Dko.txt125 "0: =%%spellout-ordinal-native-count-smaller= \uBC88\uC9F8;",
126 "10: =%%spellout-ordinal-sinokorean-count-smaller= \uBC88\uC9F8;",
127 "%%spellout-ordinal-sinokorean-count-smaller:",
173 "0: =%%spellout-ordinal-native-count-smaller= \uBC88\uC9F8;",
174 "%%spellout-ordinal-native-count-smaller:",
212 "3: =%%spellout-ordinal-native-smaller=;",
213 "%%spellout-ordinal-native-smaller:",
234 "100: \uBC31[>%%spellout-ordinal-native-smaller-x02>];",
235 "200: <%spellout-cardinal-sinokorean<\uBC31[>%%spellout-ordinal-native-smaller-x02>];",
236 "1000: \uCC9C[>%%spellout-ordinal-native-smaller-x02>];",
[all …]
/third_party/skia/tests/
DPDFJpegEmbedTest.cpp17 static bool is_subset_of(SkData* smaller, SkData* larger) { in is_subset_of() argument
18 SkASSERT(smaller && larger); in is_subset_of()
19 if (smaller->size() > larger->size()) { in is_subset_of()
22 size_t size = smaller->size(); in is_subset_of()
25 if (0 == memcmp(larger->bytes() + i, smaller->bytes(), size)) { in is_subset_of()
/third_party/skia/src/codec/
DSkAndroidCodec.cpp243 auto smaller = this->getSampledDimensions(sampleSize + 1); in computeSampleSize() local
244 if (smaller == *desiredSize) { in computeSampleSize()
247 if (smaller == computedSize || smaller_than(smaller, *desiredSize)) { in computeSampleSize()
254 computedSize = smaller; in computeSampleSize()
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/
Dint128_test.cc738 absl::int128 smaller; in TEST() member
748 SCOPED_TRACE(::testing::Message() << "pair.smaller = " << pair.smaller in TEST()
751 EXPECT_TRUE(pair.smaller == pair.smaller); // NOLINT(readability/check) in TEST()
753 EXPECT_FALSE(pair.smaller == pair.larger); // NOLINT(readability/check) in TEST()
755 EXPECT_TRUE(pair.smaller != pair.larger); // NOLINT(readability/check) in TEST()
756 EXPECT_FALSE(pair.smaller != pair.smaller); // NOLINT(readability/check) in TEST()
759 EXPECT_TRUE(pair.smaller < pair.larger); // NOLINT(readability/check) in TEST()
760 EXPECT_FALSE(pair.larger < pair.smaller); // NOLINT(readability/check) in TEST()
762 EXPECT_TRUE(pair.larger > pair.smaller); // NOLINT(readability/check) in TEST()
763 EXPECT_FALSE(pair.smaller > pair.larger); // NOLINT(readability/check) in TEST()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/duration/
DPeriodBuilderFactoryTest.java44 for (TimeUnit unit = YEAR; unit != null; unit = unit.smaller()) { in testSetAvailableUnitRange()
52 for (TimeUnit unit = YEAR; unit != null; unit = unit.smaller()) { in testSetAvailableUnitRange()
58 for (TimeUnit unit = YEAR; unit != null; unit = unit.smaller()) { in testSetAvailableUnitRange()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
DPeriodBuilderFactoryTest.java41 for (TimeUnit unit = YEAR; unit != null; unit = unit.smaller()) { in testSetAvailableUnitRange()
49 for (TimeUnit unit = YEAR; unit != null; unit = unit.smaller()) { in testSetAvailableUnitRange()
55 for (TimeUnit unit = YEAR; unit != null; unit = unit.smaller()) { in testSetAvailableUnitRange()
/third_party/cJSON/
DcJSON_Utils.c537 cJSON *smaller = NULL; in sort_list() local
540 smaller = first; in sort_list()
544 smaller = second; in sort_list()
550 result_tail = smaller; in sort_list()
551 result = smaller; in sort_list()
556 result_tail->next = smaller; in sort_list()
557 smaller->prev = result_tail; in sort_list()
558 result_tail = smaller; in sort_list()
561 if (first == smaller) in sort_list()
/third_party/python/Lib/test/
Dtest_dict.py629 smaller = fn({1:1, 2:2})
634 self.assertTrue(smaller < larger)
635 self.assertTrue(smaller <= larger)
636 self.assertTrue(larger > smaller)
637 self.assertTrue(larger >= smaller)
639 self.assertFalse(smaller >= larger)
640 self.assertFalse(smaller > larger)
641 self.assertFalse(larger <= smaller)
642 self.assertFalse(larger < smaller)
644 self.assertFalse(smaller < larger3)
[all …]
/third_party/libffi/patch/
Driscv-extend-return-types-smaller-than-ffi_arg-680.patch4 Subject: [PATCH] riscv: extend return types smaller than ffi_arg (#680)
24 + /* Integer types smaller than ffi_arg need to be extended. */
/third_party/openGLES/extensions/SGIX/
DGLX_SGIX_fbconfig.txt305 3. smaller GLX_INDEX_BITS,
308 5. smaller GLX_AUX_BUFFERS,
309 6. smaller GLX_SAMPLE_BUFFERS_SGIS,
310 7. smaller GLX_SAMPLES_SGIS,
312 9. smaller GLX_STENCIL_BITS,
416 GLX_BUFFER_SIZE 0 smaller
418 GLX_DOUBLEBUFFER don't care smaller
420 GLX_AUX_BUFFERS 0 smaller
431 GLX_SAMPLE_BUFFERS_SGIS 0 smaller
432 GLX_SAMPLES_SGIS 0 smaller
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/
DGLX_SGIX_fbconfig.txt305 3. smaller GLX_INDEX_BITS,
308 5. smaller GLX_AUX_BUFFERS,
309 6. smaller GLX_SAMPLE_BUFFERS_SGIS,
310 7. smaller GLX_SAMPLES_SGIS,
312 9. smaller GLX_STENCIL_BITS,
416 GLX_BUFFER_SIZE 0 smaller
418 GLX_DOUBLEBUFFER don't care smaller
420 GLX_AUX_BUFFERS 0 smaller
431 GLX_SAMPLE_BUFFERS_SGIS 0 smaller
432 GLX_SAMPLES_SGIS 0 smaller
[all …]
/third_party/mbedtls/tests/suites/
Dtest_suite_psa_crypto_metadata.function317 * of the outer truncation (even if the outer length is smaller than
328 * length of the outer truncation (even if the outer length is smaller
348 * length of the outer truncation (even if the outer length is smaller
359 * the outer truncation (even if the outer length is smaller than the
443 * smaller than the inner length). */
454 * smaller than the inner length). */
476 * smaller than the inner length). */
487 * smaller than the inner length). */
/third_party/vk-gl-cts/external/openglcts/docs/specs/
DCTS_ARB_texture_filter_minmax.txt66 Render polygon smaller or bigger than texture to a frame buffer.
81 Render polygon smaller than texture size to the frame buffer.
/third_party/protobuf/examples/
DBUILD82 # The lite version has a smaller code size, and you can see that by comparing
90 # In the above example, the lite .jar file is 6 times smaller. With proper
/third_party/icu/tools/colprobe/
Dcolprobe.cpp368 UBool trySwamped(Line **smaller, Line **greater, UChar chars[2], CompareFn comparer) { in trySwamped() argument
369 u_strcpy(gSource->name, (*smaller)->name); in trySwamped()
370 gSource->name[(*smaller)->len] = separatorChar; in trySwamped()
371 gSource->name[(*smaller)->len+1] = chars[0]; in trySwamped()
372 gSource->name[(*smaller)->len+2] = 0; in trySwamped()
373 gSource->len = (*smaller)->len+2; in trySwamped()
388 UBool trySwamps(Line **smaller, Line **greater, UChar chars[2], CompareFn comparer) { in trySwamps() argument
391 u_strcpy(gSource->name+2, (*smaller)->name); in trySwamps()
392 gSource->len = (*smaller)->len+2; in trySwamps()
/third_party/skia/third_party/externals/freetype/docs/markdown/stylesheets/
Dextra.css136 /* Change table layout for smaller screens. This query will take effect for any screen smaller than
/third_party/curl/docs/libcurl/
Dlibcurl-env-dbg.md88 An alternative size of HTTP data to be sent at a time only if smaller than the
93 An alternative size of socket data to be sent at a time only if smaller than
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/
DTimeUnit.java66 public TimeUnit smaller() { in smaller() method in TimeUnit
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
DTimeUnit.java64 public TimeUnit smaller() { in smaller() method in TimeUnit
/third_party/icu/docs/userguide/format_parse/numbers/
Drounding-modes.md95 Values exactly on the 0.5 (half) mark are rounded down (next smaller absolute
105 All values are rounded towards the next smaller absolute value (rounded towards
/third_party/skia/src/pathops/
DSkPathOpsTSect.cpp1259 SkTSpan* smaller = nullptr; in mergeCoincidence() local
1268 if (smaller && smaller->fEndT < test->fStartT) { in mergeCoincidence()
1271 smaller = test; in mergeCoincidence()
1273 if (!smaller) { in mergeCoincidence()
1276 smallLimit = smaller->fEndT; in mergeCoincidence()
1283 if (test->fStartT < smaller->fEndT) { in mergeCoincidence()
1286 SkOPASSERT(test->fStartT != smaller->fEndT); in mergeCoincidence()
1297 double midT = (smaller->fEndT + larger->fStartT) / 2; in mergeCoincidence()
1302 smaller->fEndT = larger->fEndT; in mergeCoincidence()
1303 smaller->fCoinEnd = larger->fCoinEnd; in mergeCoincidence()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcLimitTest.inl86 // check if limit is not smaller or greater then boundary defined in specification
192 // value should be smaller or euqual to boundary
214 << "when it should not be smaller than "

12345678910>>...31