HomeSort by relevance Sort by last modified time
    Searched refs:Wide (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/skia/src/core/
Sk4px.h 53 class Wide : public Sk16h {
55 Wide(const Sk16h& v) : Sk16h(v) {}
63 // These just keep the types as Wide so the user doesn't have to keep casting.
64 Wide operator * (const Wide& o) const { return INHERITED::operator*(o); }
65 Wide operator + (const Wide& o) const { return INHERITED::operator+(o); }
66 Wide operator - (const Wide& o) const { return INHERITED::operator-(o); }
67 Wide operator >> (int bits) const { return INHERITED::operator>>(bits);
    [all...]
  /external/skqp/src/core/
Sk4px.h 53 class Wide : public Sk16h {
55 Wide(const Sk16h& v) : Sk16h(v) {}
63 // These just keep the types as Wide so the user doesn't have to keep casting.
64 Wide operator * (const Wide& o) const { return INHERITED::operator*(o); }
65 Wide operator + (const Wide& o) const { return INHERITED::operator+(o); }
66 Wide operator - (const Wide& o) const { return INHERITED::operator-(o); }
67 Wide operator >> (int bits) const { return INHERITED::operator>>(bits);
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
thumb-w-bad.d 1 #name: Wide instruction rejected in non-Thumb2 cores.
thumb-w-good.d 1 #name: Wide instruction acceptance in Thumb-2 cores
armv8-a-it-bad.s 5 @ Wide instruction in IT block is deprecated.
29 @ This one is too wide.
  /external/skia/src/opts/
Sk4px_none.h 42 inline Sk4px::Wide Sk4px::widenLo() const {
49 inline Sk4px::Wide Sk4px::widenHi() const { return this->widenLo() << 8; }
51 inline Sk4px::Wide Sk4px::widenLoHi() const { return this->widenLo() + this->widenHi(); }
53 inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const {
57 inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const {
58 Sk4px::Wide r = (*this + other) >> 8;
65 inline Sk4px Sk4px::Wide::div255() const {
Sk4px_NEON.h 33 inline Sk4px::Wide Sk4px::widenLo() const {
38 inline Sk4px::Wide Sk4px::widenHi() const {
43 inline Sk4px::Wide Sk4px::widenLoHi() const {
49 inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const {
54 inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const {
55 const Sk4px::Wide o(other); // Should be no code, but allows us to access fLo, fHi.
60 inline Sk4px Sk4px::Wide::div255() const {
Sk4px_SSE2.h 24 inline Sk4px::Wide Sk4px::widenLo() const {
29 inline Sk4px::Wide Sk4px::widenHi() const {
34 inline Sk4px::Wide Sk4px::widenLoHi() const {
39 inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const {
43 inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const {
44 Sk4px::Wide r = (*this + other) >> 8;
48 inline Sk4px Sk4px::Wide::div255() const {
  /external/skqp/src/opts/
Sk4px_none.h 42 inline Sk4px::Wide Sk4px::widenLo() const {
49 inline Sk4px::Wide Sk4px::widenHi() const { return this->widenLo() << 8; }
51 inline Sk4px::Wide Sk4px::widenLoHi() const { return this->widenLo() + this->widenHi(); }
53 inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const {
57 inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const {
58 Sk4px::Wide r = (*this + other) >> 8;
65 inline Sk4px Sk4px::Wide::div255() const {
Sk4px_NEON.h 33 inline Sk4px::Wide Sk4px::widenLo() const {
38 inline Sk4px::Wide Sk4px::widenHi() const {
43 inline Sk4px::Wide Sk4px::widenLoHi() const {
49 inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const {
54 inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const {
55 const Sk4px::Wide o(other); // Should be no code, but allows us to access fLo, fHi.
60 inline Sk4px Sk4px::Wide::div255() const {
Sk4px_SSE2.h 24 inline Sk4px::Wide Sk4px::widenLo() const {
29 inline Sk4px::Wide Sk4px::widenHi() const {
34 inline Sk4px::Wide Sk4px::widenLoHi() const {
39 inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const {
43 inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const {
44 Sk4px::Wide r = (*this + other) >> 8;
48 inline Sk4px Sk4px::Wide::div255() const {
  /sdk/emulator/mksdcard/src/source/
mksdcard.c 48 #define MAX_DISK_SIZE ((Wide)MAX_SECTORS_PER_DISK * BYTES_PER_SECTOR)
50 typedef long long Wide; /* might be something else if you don't use GCC */
93 get_sectors_per_cluster( Wide disk_size )
95 Wide disk_MB = disk_size/(1024*1024);
113 get_sectors_per_fat( Wide disk_size, int sectors_per_cluster )
115 Wide divider;
126 boot_sector_init( Bytes boot, Bytes info, Wide disk_size, const char* label )
200 write_empty( FILE* file, Wide count )
236 Wide disk_size;
  /external/llvm/unittests/ADT/
APSIntTest.cpp 28 APInt Wide(256, 0);
29 const uint64_t *Bits = Wide.getRawData();
30 APSInt D(std::move(Wide));
32 EXPECT_EQ(Bits, D.getRawData()); // Verify that "Wide" was really moved.
37 Wide = APInt(128, 1);
38 Bits = Wide.getRawData();
39 A = std::move(Wide);
41 EXPECT_EQ(Bits, A.getRawData()); // Verify that "Wide" was really moved.
  /external/skia/src/sfnt/
SkPanose.h 474 Wide = 6,
487 Wide = 6,
500 Wide = 6,
513 Wide = 6,
  /external/skqp/src/sfnt/
SkPanose.h 474 Wide = 6,
487 Wide = 6,
500 Wide = 6,
513 Wide = 6,
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 10 // dynamic zone that will be accepting Wide-Area Bonjour DNS updates.
  /prebuilts/go/darwin-x86/src/net/
port_unix.go 23 // "http 80/tcp www www-http # World Wide Web HTTP"
  /prebuilts/go/linux-x86/src/net/
port_unix.go 23 // "http 80/tcp www www-http # World Wide Web HTTP"
  /external/pdfium/third_party/lcms/src/
cmsnamed.c 246 // Add a wide entry. Do not add any \0 terminator (ICC1v43_2010-12.pdf page 61)
370 // Obtain an ASCII representation of the wide string. Setting buffer to NULL returns the len
375 const wchar_t *Wide;
386 Wide = _cmsMLUgetWide(mlu, &StrLen, Lang, Cntry, NULL, NULL);
387 if (Wide == NULL) return 0;
404 if (Wide[i] == 0)
407 Buffer[i] = (char) Wide[i];
415 // Obtain a wide representation of the MLU, on depending on current locale settings
420 const wchar_t *Wide;
429 Wide = _cmsMLUgetWide(mlu, &StrLen, Lang, Cntry, NULL, NULL)
    [all...]
  /external/libxcam/
README.md 27 - Wide dynamic range (WDR).
  /external/vixl/src/aarch32/
instructions-aarch32.cc 443 case Wide:
disasm-aarch32.cc     [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilts/tools/common/jasmin/
jasmin.jar 
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
Font.c 175 EFI_WIDE_GLYPH Wide;
194 // default system font is the fixed font (narrow or wide glyph).
236 // Search the wide glyph array
240 CopyMem (&Wide, WidePtr + Index, sizeof (EFI_WIDE_GLYPH));
241 if (Wide.UnicodeWeight == Char) {
249 CopyMem (*GlyphBuffer, Wide.GlyphCol1, EFI_GLYPH_HEIGHT);
250 CopyMem (*GlyphBuffer + EFI_GLYPH_HEIGHT, Wide.GlyphCol2, EFI_GLYPH_HEIGHT);
252 *Attributes = (UINT8) (Wide.Attributes | EFI_GLYPH_WIDE);
524 // This character is wide glyph, i.e. 16 pixels * 19 pixels.
    [all...]

Completed in 1235 milliseconds

1 2 3