/third_party/rust/crates/memchr/bench/src/memchr/ |
H A D | inputs.rs | 109 /// Return all of this input's "never" bytes only if there are at least 131 /// Return all of this input's "rare" bytes only if there are at least 153 /// Return all of this input's "uncommon" bytes only if there are at least 175 /// Return all of this input's "common" bytes only if there are at least 198 /// least `min` of them. 220 /// least `min` of them.
|
/third_party/skia/src/pathops/ |
H A D | SkOpCubicHull.cpp | 130 int least = yMin ^ mask; in convexHull() local 133 order[1] = least; in convexHull() 135 // see if mid value is on same side of line (least, most) as yMin in convexHull() 137 if (!rotate(*this, least, most, midPath)) { // ! if cbc[least]==cbc[most] in convexHull() 141 int midSides = side(midPath[yMin].fY - midPath[least].fY); in convexHull() 142 midSides ^= side(midPath[midX].fY - midPath[least].fY); in convexHull()
|
/third_party/zlib/examples/ |
H A D | enough.c | 275 // we need to use at least this many bit patterns so that the code won't be in count() 277 int least = (left << 1) - syms; in count() local 278 if (least < 0) in count() 279 least = 0; in count() 289 for (int use = least; use <= most; use++) { in count() 412 // we need to use at least this many bit patterns so that the code won't be in examine() 414 int least = (left << 1) - syms; in examine() local 415 if (least < 0) in examine() 416 least = 0; in examine() 424 // occupy least tabl in examine() [all...] |
/third_party/skia/experimental/graphite/include/private/ |
H A D | MtlTypesPriv.h | 27 #error Must use at least 11.00 SDK to build Metal backend for MacOS 35 #error Must use at least 14.00 SDK to build Metal backend for iOS
|
/third_party/skia/include/private/ |
H A D | GrMtlTypesPriv.h | 28 #error Must use at least 10.14 SDK to build Metal backend for MacOS 38 #error Must use at least 12.00 SDK to build Metal backend for iOS
|
/third_party/node/test/common/ |
H A D | heap.js | 118 `Expect to find at least ${expected.length} '${rootName}', ` + 151 `Expect to find at least ${rootNodes.length} with ` + 171 `Expect to find at least ${expected.length} '${rootName}', ` +
|
/third_party/skia/modules/pathkit/tests/ |
H A D | pathops.spec.js | 150 // Don't worry about it, at least it didn't crash. 205 // Don't worry about it, at least it didn't crash.
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | MutableCodePointTrie.java | 683 int least = -1; in add() 688 least = i; in add() 692 assert(least >= 0); in add() 693 mostRecent = least; in add() 694 indexes[least] = index; in add() 695 values[least] = value; in add() 696 refCounts[least] = count; in add()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | MutableCodePointTrie.java | 675 int least = -1; in add() 680 least = i; in add() 684 assert(least >= 0); in add() 685 mostRecent = least; in add() 686 indexes[least] = index; in add() 687 values[least] = value; in add() 688 refCounts[least] = count; in add()
|
/third_party/rust/crates/aho-corasick/src/ |
H A D | error.rs | 93 represent at least a state ID of {}, but the chosen \ in fmt()
|
/third_party/node/test/async-hooks/ |
H A D | test-pipewrap.js | 80 // 2 events without any IO and at least one more for the node version data. 82 assert.ok(ioEvents >= 3, `at least 3 stdout io events, got ${ioEvents}`);
|
/third_party/libunwind/libunwind/doc/ |
H A D | unw_get_proc_name.tex | 22 that is at least \Var{len} bytes long. This buffer is used to return 30 the procedure is at least 0x80 bytes long).
|
H A D | unw_set_cache_size.tex | 20 address space \Var{as} to hold at least as many items as given by
|
H A D | unw_getcontext.tex | 22 platform-specific, but, in general, at least all preserved
|
H A D | unw_set_caching_policy.tex | 41 \Func{unw\_flush\_cache}() would have to be called (at least) for the
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
H A D | vktRayTracingNonUniformArgsTests.cpp | 222 deUint32 joinMostLeast (deUint32 most, deUint32 least) in joinMostLeast() argument 226 DE_ASSERT(most <= kMaxUint16 && least <= kMaxUint16); in joinMostLeast() 227 return ((most << 16) | least); in joinMostLeast()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/ |
H A D | vktRayTracingNonUniformArgsTests.cpp | 222 deUint32 joinMostLeast (deUint32 most, deUint32 least) in joinMostLeast() argument 226 DE_ASSERT(most <= kMaxUint16 && least <= kMaxUint16); in joinMostLeast() 227 return ((most << 16) | least); in joinMostLeast()
|
/third_party/gn/src/gn/ |
H A D | function_filter_labels.cc | 102 "gn help label_pattern"). Only elements from labels matching at least 129 "gn help label_pattern"). Only elements from labels matching at least
|
/third_party/rust/crates/bindgen/bindgen/ir/analysis/ |
H A D | sizedness.rs | 72 /// Take the least upper bound of `self` and `rhs`. 265 trace!(" obj-c interfaces always have at least the `isa` pointer"); in constrain()
|
/third_party/icu/icu4c/source/common/ |
H A D | umutablecptrie.cpp | 722 int32_t least = -1; in add() local 727 least = i; in add() 731 U_ASSERT(least >= 0); in add() 732 mostRecent = least; in add() 733 indexes[least] = index; in add() 734 values[least] = value; in add() 735 refCounts[least] = count; in add()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | umutablecptrie.cpp | 722 int32_t least = -1; in add() local 727 least = i; in add() 731 U_ASSERT(least >= 0); in add() 732 mostRecent = least; in add() 733 indexes[least] = index; in add() 734 values[least] = value; in add() 735 refCounts[least] = count; in add()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | umutablecptrie.cpp | 722 int32_t least = -1; in add() local 727 least = i; in add() 731 U_ASSERT(least >= 0); in add() 732 mostRecent = least; in add() 733 indexes[least] = index; in add() 734 values[least] = value; in add() 735 refCounts[least] = count; in add()
|
/third_party/ffmpeg/tools/ |
H A D | patcheck | 180 write a regression test containing at least a line that triggers each warning once
|
/third_party/ffmpeg/libavcodec/arm/ |
H A D | startcode_armv6.S | 76 @ Ensure there are at least (PRELOAD_DISTANCE+2) complete cachelines to go
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2posix.c | 67 warning/error-free compilation and testing with MSVC compilers back to at least 170 been at least two cases where a program links with two others, one of which
|