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

1 2

  /external/skia/src/opts/
Sk4px_SSE2.h 22 inline Sk4px::Wide Sk4px::widenLo() const {
27 inline Sk4px::Wide Sk4px::widenHi() const {
32 inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const {
36 inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const {
37 Sk4px::Wide r = (*this + other) >> 8;
Sk4px_NEON.h 31 inline Sk4px::Wide Sk4px::widenLo() const {
36 inline Sk4px::Wide Sk4px::widenHi() const {
41 inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const {
46 inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const {
47 const Sk4px::Wide o(other); // Should be no code, but allows us to access fLo, fHi.
Sk4px_none.h 38 inline Sk4px::Wide Sk4px::widenLo() const {
45 inline Sk4px::Wide Sk4px::widenHi() const { return this->widenLo() << 8; }
47 inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const {
51 inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const {
52 Sk4px::Wide r = (*this + other) >> 8;
  /external/skia/src/core/
Sk4px.h 44 class Wide : public Sk16h {
46 Wide(const Sk16h& v) : Sk16h(v) {}
53 return Sk4px::Wide(*this + Sk16h(128)).div255TruncNarrow();
60 Wide widenLo() const; // ARGB -> 0A 0R 0G 0B
61 Wide widenHi() const; // ARGB -> A0 R0 G0 B0
62 Wide mulWiden(const Sk16b&) const; // 8-bit x 8-bit -> 16-bit components.
63 Wide mul255Widen() const {
SkXfermode.cpp     [all...]
  /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 */
80 get_sectors_per_cluster( Wide disk_size )
82 Wide disk_MB = disk_size/(1024*1024);
100 get_sectors_per_fat( Wide disk_size, int sectors_per_cluster )
102 Wide divider;
113 boot_sector_init( Bytes boot, Bytes info, Wide disk_size, const char* label )
187 write_empty( FILE* file, Wide count )
223 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/mdnsresponder/mDNSShared/
dnsextd.conf 10 // dynamic zone that will be accepting Wide-Area Bonjour DNS updates.
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsnamed.c 220 // Add a wide entry
344 // Obtain an ASCII representation of the wide string. Setting buffer to NULL returns the len
349 const wchar_t *Wide;
360 Wide = _cmsMLUgetWide(mlu, &StrLen, Lang, Cntry, NULL, NULL);
361 if (Wide == NULL) return 0;
378 if (Wide[i] == 0)
381 Buffer[i] = (char) Wide[i];
389 // Obtain a wide representation of the MLU, on depending on current locale settings
394 const wchar_t *Wide;
403 Wide = _cmsMLUgetWide(mlu, &StrLen, Lang, Cntry, NULL, NULL)
    [all...]
cmstypes.c 953 wchar_t *Wide = NULL;
980 Wide = (wchar_t*) _cmsDupMem(self ->ContextID, L"", sizeof(wchar_t));
987 Wide = (wchar_t*) _cmsCalloc(self ->ContextID, len, sizeof(wchar_t));
988 if (Wide == NULL) goto Error;
992 cmsMLUgetWide(mlu, cmsNoLanguage, cmsNoCountry, Wide, len * sizeof(wchar_t));
    [all...]
  /art/compiler/dex/
type_inference.h 84 static Type ArtMethodType(bool wide) {
85 return Type(kFlagLowWord | kFlagRef | (wide ? kFlagWide : kFlagNarrow));
125 return (Wide() && Narrow()) || (HighWord() && LowWord());
158 bool Wide() const {
236 DCHECK(low_word_type.Wide() && low_word_type.LowWord());
type_inference.cc 299 } else if (merged_type.Wide()) {
427 // Special-case handling for Phi comes first because we have 2 Phis instead of a wide one.
561 loc->wide = type.Wide();
610 DCHECK_EQ(info.MemAccessType() == kDexMemAccessWide, ifields[i].Wide());
703 entry_param_s_reg += param_type.Wide() ? 2 : 1;
    [all...]
type_inference_test.cc 552 EXPECT_EQ((flags & kExpectWide) != 0u, loc.wide) << s_reg;
559 EXPECT_EQ((flags & kExpectWide) != 0u, type.Wide()) << s_reg;
578 EXPECT_EQ((flags & kExpectArrayWide) != 0u, nested_type.Wide()) << s_reg;
    [all...]
  /external/skia/src/sfnt/
SkPanose.h 575 ((Wide, 6))
591 ((Wide, 6))
607 ((Wide, 6))
623 ((Wide, 6))
  /system/extras/perfprofd/tests/
perfprofd_test.cc 589 I: starting Android Wide Profiling daemon
596 I: finishing Android Wide Profiling daemon
645 I: starting Android Wide Profiling daemon
660 I: finishing Android Wide Profiling daemon
  /dalvik/dx/etc/
jasmin.jar 
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/AST/
Expr.cpp 815 case Wide:
872 case Wide: OS << 'L'; break;
898 // If this is a wide string, output characters over 0xff using \x
901 if (getKind() == Wide ||
    [all...]
StmtPrinter.cpp 1015 case CharacterLiteral::Wide: OS << 'L'; break;
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 54 // ObjC strings can't be wide or UTF.
273 case CharacterLiteral::Wide:
547 case CharacterLiteral::Wide:
    [all...]
SemaExpr.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaInit.cpp 35 /// \brief Check whether T is compatible with a wide character type (wchar_t,
91 // version of wchar_t, char16_t, or char32_t may be initialized by a wide
110 case StringLiteral::Wide:
    [all...]
SemaTemplate.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
scsi.h     [all...]

Completed in 527 milliseconds

1 2