/third_party/vk-gl-cts/framework/common/ |
D | tcuFloatFormat.cpp | 141 double FloatFormat::round (double d, bool upward) const in round() 147 const double roundFrac = upward ? deCeil(shiftFrac) : deFloor(shiftFrac); in round() 202 double FloatFormat::roundOut (double d, bool upward, bool roundUnderOverflow) const in roundOut() argument 207 if (roundUnderOverflow && exp > m_maxExp && (upward == (d < 0.0))) in roundOut() 210 return round(d, upward); in roundOut() 304 double NormalizedFormat::round(double d, bool upward) const in round() 313 const double normValue = upward ? deCeil(value) : deFloor(value); in round() 326 double NormalizedFormat::roundOut (double d, bool upward, bool roundUnderOverflow) const in roundOut() argument 328 if (roundUnderOverflow && deAbs(d) > 1.0 && (upward == (d < 0.0))) in roundOut() 331 return round(d, upward); in roundOut()
|
D | tcuFloatFormat.hpp | 63 virtual double round (double d, bool upward) const; 64 virtual double roundOut (double d, bool upward, bool roundUnderOverflow) const; 94 double round (double d, bool upward) const override; 95 double roundOut (double d, bool upward, bool roundUnderOverflow) const override;
|
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/ |
D | QrTemplate.java | 200 boolean upward = ((right + 1) & 2) == 0; in generateZigzagScan() 201 int y = upward ? size - 1 - vert : vert; // Actual y coordinate in generateZigzagScan()
|
/third_party/flutter/skia/third_party/externals/icu/source/data/locales/ |
D | en_AU.txt | 184 downwards_upwards_arrows{"downward upward arrow"} 191 upwards_arrows{"upward arrows"}
|
D | en_CA.txt | 342 downwards_upwards_arrows{"downward upward arrow"} 349 upwards_arrows{"upward arrows"}
|
/third_party/flutter/skia/third_party/externals/angle2/ |
D | .gn | 6 # and searching upward ends here). See "gn help dotfile."
|
/third_party/skia/third_party/externals/angle2/ |
D | .gn | 6 # and searching upward ends here). See "gn help dotfile."
|
/third_party/libexif/ |
D | configure.ac | 43 dnl It denotes upward compatibility. 48 dnl change does not break upward compatibility (ie it is an addition),
|
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/ |
D | QrCode.java | 482 boolean upward = ((right + 1) & 2) == 0; in drawCodewords() 483 int y = upward ? size - 1 - vert : vert; // Actual y coordinate in drawCodewords()
|
/third_party/icu/icu4c/source/data/locales/ |
D | en_AU.txt | 588 downwards_upwards_arrows{"downward upward arrow"} 595 upwards_arrows{"upward arrows"}
|
D | en_CA.txt | 342 downwards_upwards_arrows{"downward upward arrow"} 350 upwards_arrows{"upward arrows"}
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | en_AU.txt | 588 downwards_upwards_arrows{"downward upward arrow"} 595 upwards_arrows{"upward arrows"}
|
D | en_CA.txt | 342 downwards_upwards_arrows{"downward upward arrow"} 350 upwards_arrows{"upward arrows"}
|
/third_party/qrcodegen/typescript-javascript/ |
D | qrcodegen.ts | 414 const upward: boolean = ((right + 1) & 2) == 0; constant 415 const y: int = upward ? this.size - 1 - vert : vert; // Actual y coordinate
|
/third_party/qrcodegen/python/ |
D | qrcodegen.py | 389 upward: bool = (right + 1) & 2 == 0 390 y: int = (self._size - 1 - vert) if upward else vert # Actual y coordinate
|
/third_party/qrcodegen/cpp/ |
D | qrcodegen.cpp | 548 bool upward = ((right + 1) & 2) == 0; in drawCodewords() local 549 size_t y = static_cast<size_t>(upward ? size - 1 - vert : vert); // Actual y coordinate in drawCodewords()
|
/third_party/qrcodegen/rust/src/ |
D | lib.rs | 573 let upward: bool = (right + 1) & 2 == 0; in draw_codewords() localVariable 574 let y: i32 = if upward { self.size - 1 - vert } else { vert }; // Actual y coordinate in draw_codewords()
|
/third_party/qrcodegen/c/ |
D | qrcodegen.c | 587 bool upward = ((right + 1) & 2) == 0; in drawCodewords() local 588 int y = upward ? qrsize - 1 - vert : vert; // Actual y coordinate in drawCodewords()
|
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/ |
D | hit_test.dart | 102 /// upward walk of the tree being hit tested.
|
/third_party/qrcodegen/rust-no-heap/src/ |
D | lib.rs | 659 let upward: bool = (right + 1) & 2 == 0; in draw_codewords() localVariable 660 let y = (if upward { size - 1 - vert } else { vert }) as u8; // Actual y coordinate in draw_codewords()
|
/third_party/openssl/doc/man3/ |
D | SSL_CTX_set_verify.pod | 178 (the root CA certificate) and worked upward to the peer's certificate.
|
/third_party/littlefs/ |
D | DESIGN.md | 223 would be needed for the original data. On top of this, the upward motion 247 can write atomically!), but what it does do is prevent the upward motion of 1840 brings back the issue of upward propagation of wear.
|
/third_party/flutter/skia/site/user/api/ |
D | SkIRect_Reference.md | 1017 …t_dy'>dy</a> is negative, <a href='SkIRect_Reference#SkIRect'>SkIRect</a> returned is moved upward. 1155 …fset_dy'>dy</a> is negative, moves <a href='SkIRect_Reference#SkIRect'>SkIRect</a> returned upward. 1197 …oint_fY'>fY</a> is negative, moves <a href='SkIRect_Reference#SkIRect'>SkIRect</a> returned upward.
|
/third_party/python/Doc/library/ |
D | curses.rst | 1220 Scroll the screen or scrolling region upward by *lines* lines. 1442 | ``KEY_HOME`` | Home key (upward+left arrow) |
|
/third_party/rust/crates/memchr/bench/data/sliceslice/ |
D | words.txt | 4370 upward
|