/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | MeasureUnitTest.java | 2194 Number amount = (Number) row[1]; in testSimplePer() 2208 new Measure(amount, MeasureUnit.POUND), in testSimplePer()
|
/third_party/skia/tests/ |
H A D | ImageFilterTest.cpp | 305 static sk_sp<SkImageFilter> make_scale(float amount, sk_sp<SkImageFilter> input) { in make_scale() argument 306 float s = amount; in make_scale()
|
/third_party/mesa3d/src/amd/llvm/ |
H A D | ac_llvm_build.c | 3276 static inline enum dpp_ctrl dpp_row_sr(unsigned amount) in dpp_row_sr() argument 3278 assert(amount > 0 && amount < 16); in dpp_row_sr() 3279 return _dpp_row_sr | amount; in dpp_row_sr()
|
/third_party/vixl/src/aarch64/ |
H A D | assembler-aarch64.h | 7385 static Instr ImmDPShift(unsigned amount) { 7386 VIXL_ASSERT(IsUint6(amount)); 7387 return amount << ImmDPShift_offset; 8090 unsigned amount);
|
H A D | simulator-aarch64.h | 2434 // The amount of space to leave for a register name. This is used to keep the 3312 unsigned amount) const;
|
/third_party/ffmpeg/libavresample/x86/ |
H A D | audio_convert.asm | 281 ; pointers, but the extra complexity and amount of code is not worth
|
/third_party/gn/src/gn/ |
H A D | variables.cc | 2082 pass an unlimited amount of data to a script in a temporary file for an
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/poly1305/ |
H A D | poly1305-armv4.S | 476 @ of 52-bit numbers as long as the amount of addends is not a 495 @ to minimize amount of instructions [as well as amount of
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/poly1305/ |
H A D | poly1305-armv4.S | 476 @ of 52-bit numbers as long as the amount of addends is not a 495 @ to minimize amount of instructions [as well as amount of
|
/third_party/rust/crates/clang-sys/src/ |
H A D | lib.rs | 1668 pub amount: c_ulong,
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | MeasureUnitTest.java | 2984 Number amount = (Number) row[1]; in testSimplePer() 2998 new Measure(amount, MeasureUnit.POUND), in testSimplePer()
|
/third_party/node/deps/v8/src/wasm/baseline/ |
H A D | liftoff-compiler.cc | 1872 LiftoffRegister amount) { \ in BinOp() 1874 amount.is_gp_pair() ? amount.low_gp() : amount.gp()); \ in BinOp()
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 9077 int64_t amount = i_isolate->heap()->update_external_memory(change_in_bytes); in AdjustAmountOfExternalAllocatedMemory() local 9079 if (change_in_bytes <= 0) return amount; in AdjustAmountOfExternalAllocatedMemory() 9081 if (amount > i_isolate->heap()->external_memory_limit()) { in AdjustAmountOfExternalAllocatedMemory() 9084 return amount; in AdjustAmountOfExternalAllocatedMemory()
|
/third_party/node/deps/v8/src/execution/arm64/ |
H A D | simulator-arm64.h | 1538 T ShiftOperand(T value, Shift shift_type, unsigned amount);
|
/third_party/glfw/deps/ |
H A D | nuklear.h | 572 /// and only the required amount of memory will actually be committed. 4131 /* total amount of memory allocated */ 5802 NK_LIB struct nk_rect nk_shrink_rect(struct nk_rect r, float amount); 6221 nk_shrink_rect(struct nk_rect r, float amount) in nk_shrink_rect() argument 6224 r.w = NK_MAX(r.w, 2 * amount); in nk_shrink_rect() 6225 r.h = NK_MAX(r.h, 2 * amount); in nk_shrink_rect() 6226 res.x = r.x + amount; in nk_shrink_rect() 6227 res.y = r.y + amount; in nk_shrink_rect() 6228 res.w = r.w - 2 * amount; in nk_shrink_rect() 6229 res.h = r.h - 2 * amount; in nk_shrink_rect() [all...] |
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |
/third_party/ffmpeg/ |
H A D | configure | 472 --assert-level=level 0(default), 1 or 2, amount of assertion testing, 501 --disable-large-tests disable tests that use a large amount of memory
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 755 % This records the amount of indent in the innermost environment. 6665 \newdimen\tabw \setbox0=\hbox{\tt\space} \tabw=8\wd0 % tab amount 9683 % using an old version of TeX, don't do anything. We want the amount of
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.cpp | 611 GetCursorPos()/SetCursorPos() functions now include the scrolled amount. It shouldn't affect the majority of users, but take note that SetCursorPosX(100.0f) puts you at +100 from the starting x position which may include scrolling, not at +100 from the window left side. 612 GetContentRegionMax()/GetWindowContentRegionMin()/GetWindowContentRegionMax() functions allow include the scrolled amount. Typically those were used in cases where no scrolling would happen so it may not be a problem, but watch out! 618 - 2015/07/08 (1.43) - switched rendering data to use indexed rendering. this is saving a fair amount of CPU/GPU and enables us to get anti-aliasing for a marginal cost. 632 - 2015/07/02 (1.42) - renamed GetScrollPosY() to GetScrollY(). Necessary to reduce confusion along with other scrolling functions, because positions (e.g. cursor position) are not equivalent to scrolling amount. 1029 DisplayWindowPadding = ImVec2(19,19); // Window position are clamped to be visible within the display area or monitors by at least this amount. Only applies to regular windows. in ImGuiStyle() 4750 int amount = CalcTypematicRepeatAmount(t - g.IO.DeltaTime, t, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate * 0.50f); in IsMouseClicked() local 4751 if (amount > 0) in IsMouseClicked() 7595 // spacing_w >= 0 : enforce spacing amount 8749 float horizontal_overlap = g.Style.ItemInnerSpacing.x; // We want some overlap to convey the relative depth of each menu (currently the amount of overlap is hard-coded to style.ItemSpacing.x). in FindBestWindowPosForPopup() 8962 // (with higher index) to the right/downwards by an infinitesimal amount sinc in NavScoreItem() [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |