HomeSort by relevance Sort by last modified time
    Searched defs:ctable (Results 1 - 21 of 21) sorted by null

  /external/skia/gm/
tinybitmap.cpp 18 SkColorTable* ctable = new SkColorTable(c, SK_ARRAY_COUNT(c)); local
22 bm.allocPixels(ctable);
23 ctable->unref();
bitmapfilters.cpp 21 SkColorTable* ctable = new SkColorTable(colorsPM, 4); local
24 bm->allocPixels(ctable);
25 ctable->unref();
  /external/chromium_org/third_party/skia/src/gpu/
SkGr.cpp 22 Ganesh wants a full 256 palette entry, even though Skia's ctable is only as big
34 SkColorTable* ctable = bitmap.getColorTable(); local
38 const uint32_t* colorTableSrc = reinterpret_cast<const uint32_t*>(ctable->lockColors());
41 ctable->count(), 1);
42 ctable->unlockColors();
  /external/skia/bench/
RepeatTileBench.cpp 71 SkColorTable* ctable = new SkColorTable(storage, 216, aType); local
73 dst->allocPixels(ctable);
74 ctable->unref();
BitmapBench.cpp 50 SkColorTable* ctable = new SkColorTable(storage, 216, local
53 dst->allocPixels(ctable);
54 ctable->unref();
  /external/skia/src/gpu/
SkGr.cpp 22 Ganesh wants a full 256 palette entry, even though Skia's ctable is only as big
34 SkColorTable* ctable = bitmap.getColorTable(); local
38 const uint32_t* colorTableSrc = reinterpret_cast<const uint32_t*>(ctable->lockColors());
41 ctable->count(), 1);
42 ctable->unlockColors();
  /frameworks/base/core/jni/android/graphics/
NinePatchImpl.cpp 53 SkColorTable* ctable = bitmap.getColorTable(); local
55 (*ctable)[*bitmap.getAddr8(x, y)]);
Bitmap.cpp 223 SkColorTable* ctable) {
226 const SkPMColor* colors = ctable->lockColors();
230 ctable->unlockColors();
234 SkColorTable* ctable) {
237 const SkPMColor* colors = ctable->lockColors();
243 ctable->unlockColors();
247 SkColorTable* ctable) {
250 const SkPMColor* colors = ctable->lockColors();
256 ctable->unlockColors();
495 SkColorTable* ctable = NULL; local
553 SkColorTable* ctable = bitmap->getColorTable(); local
647 SkColorTable* ctable = bitmap->getColorTable(); local
    [all...]
  /external/opencv/cvaux/src/
cvbgfg_acmmm2003.cpp 138 buf_size = pixel_count*params.N2c*sizeof(p_model->pixel_stat[0].ctable[0]);
139 CV_CALL( p_model->pixel_stat[0].ctable = (CvBGPixelCStatTable*)cvAlloc(buf_size) );
140 memset( p_model->pixel_stat[0].ctable, 0, buf_size );
149 p_model->pixel_stat[k].ctable = p_model->pixel_stat[0].ctable + k*params.N2c;
195 cvFree( &model->pixel_stat[0].ctable );
316 #define V_C(k,l) ctable[k].v[l]
317 #define PV_C(k) ctable[k].Pv
318 #define PVB_C(k) ctable[k].Pvb
366 CvBGPixelCStatTable* ctable = stat->ctable local
491 CvBGPixelCStatTable* ctable = stat->ctable; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmap.cpp 111 1. no pixelref, in which case we just copy/ref the pixels/ctable
112 2. unlocked pixelref, pixels/ctable should be null
117 SkSafeRef(fColorTable); // ref the user's ctable if present
118 } else { // we have a pixelref, so pixels/ctable reflect it
450 void SkBitmap::setPixels(void* p, SkColorTable* ctable) {
462 SkPixelRef* pr = SkMallocPixelRef::NewDirect(info, p, fRowBytes, ctable);
475 bool SkBitmap::allocPixels(Allocator* allocator, SkColorTable* ctable) {
481 return allocator->allocPixelRef(this, ctable);
533 SkColorTable* ctable) {
541 ctable);
1081 SkColorTable* ctable = (dstConfig == kIndex8_Config) ? local
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libpng.cpp 203 // call only if color_type is PALETTE. Returns true if the ctable has alpha
1176 SkColorTable* ctable = bitmap.getColorTable(); local
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 111 1. no pixelref, in which case we just copy/ref the pixels/ctable
112 2. unlocked pixelref, pixels/ctable should be null
117 SkSafeRef(fColorTable); // ref the user's ctable if present
118 } else { // we have a pixelref, so pixels/ctable reflect it
450 void SkBitmap::setPixels(void* p, SkColorTable* ctable) {
462 SkPixelRef* pr = SkMallocPixelRef::NewDirect(info, p, fRowBytes, ctable);
475 bool SkBitmap::allocPixels(Allocator* allocator, SkColorTable* ctable) {
481 return allocator->allocPixelRef(this, ctable);
533 SkColorTable* ctable) {
541 ctable);
1081 SkColorTable* ctable = (dstConfig == kIndex8_Config) ? local
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 203 // call only if color_type is PALETTE. Returns true if the ctable has alpha
1175 SkColorTable* ctable = bitmap.getColorTable(); local
    [all...]
  /external/stlport/src/c_locale_dummy/
c_locale_dummy.c 54 static _Locale_mask_t ctable[256]; variable
63 if (isalpha(c)) ctable[(unsigned char)c] |= _Locale_ALPHA;
64 if (iscntrl(c)) ctable[(unsigned char)c] |= _Locale_CNTRL;
65 if (isdigit(c)) ctable[(unsigned char)c] |= _Locale_DIGIT;
66 if (isprint(c)) ctable[(unsigned char)c] |= _Locale_PRINT;
67 if (ispunct(c)) ctable[(unsigned char)c] |= _Locale_PUNCT;
68 if (isspace(c)) ctable[(unsigned char)c] |= _Locale_SPACE;
69 if (isxdigit(c)) ctable[(unsigned char)c] |= _Locale_XDIGIT;
70 if (isupper(c)) ctable[(unsigned char)c] |= _Locale_UPPER;
71 if (islower(c)) ctable[(unsigned char)c] |= _Locale_LOWER
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 681 SkColorTable* ctable = bitmap.getColorTable(); local
682 memcpy(data, ctable->lockColors(), ctable->count() * sizeof(SkPMColor));
684 ctable->unlockColors();
  /ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
c_locale_dummy.c 54 static _Locale_mask_t ctable[256]; variable
63 if (isalpha(c)) ctable[(unsigned char)c] |= _Locale_ALPHA;
64 if (iscntrl(c)) ctable[(unsigned char)c] |= _Locale_CNTRL;
65 if (isdigit(c)) ctable[(unsigned char)c] |= _Locale_DIGIT;
66 if (isprint(c)) ctable[(unsigned char)c] |= _Locale_PRINT;
67 if (ispunct(c)) ctable[(unsigned char)c] |= _Locale_PUNCT;
68 if (isspace(c)) ctable[(unsigned char)c] |= _Locale_SPACE;
69 if (isxdigit(c)) ctable[(unsigned char)c] |= _Locale_XDIGIT;
70 if (isupper(c)) ctable[(unsigned char)c] |= _Locale_UPPER;
71 if (islower(c)) ctable[(unsigned char)c] |= _Locale_LOWER
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 793 CountersTable ctable = transformer.getCountersTable(); local
815 list[0] = ctable.countNode(xctxt, this, sourceNode);
832 list[lastIndex - i] = ctable.countNode(xctxt, this, target);
    [all...]
  /external/stlport/src/c_locale_win32/
c_locale_win32.c 186 unsigned short ctable[256]; member in struct:_Locale_ctype
353 GetStringTypeW(CT_CTYPE1, wbuffer, 256, ltype->ctable);
354 MapCtypeMasks(ltype->ctable, ltype->ctable + 256);
358 unsigned short ctable[256]; local
360 GetStringTypeA(ltype->lc.id, CT_CTYPE1, (const char*)Buffer, 256, ctable);
376 ltype->ctable[TargetBuffer[i]] = MapCtypeMask(ctable[i]);
381 GetStringTypeA(ltype->lc.id, CT_CTYPE1, (const char*)Buffer, 256, ltype->ctable);
382 MapCtypeMasks(ltype->ctable, ltype->ctable + 256)
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_win32/
c_locale_win32.c 186 unsigned short ctable[256]; member in struct:_Locale_ctype
353 GetStringTypeW(CT_CTYPE1, wbuffer, 256, ltype->ctable);
354 MapCtypeMasks(ltype->ctable, ltype->ctable + 256);
358 unsigned short ctable[256]; local
360 GetStringTypeA(ltype->lc.id, CT_CTYPE1, (const char*)Buffer, 256, ctable);
376 ltype->ctable[TargetBuffer[i]] = MapCtypeMask(ctable[i]);
381 GetStringTypeA(ltype->lc.id, CT_CTYPE1, (const char*)Buffer, 256, ltype->ctable);
382 MapCtypeMasks(ltype->ctable, ltype->ctable + 256)
    [all...]
  /external/opencv/cvaux/include/
cvaux.h 1292 CvBGPixelCStatTable* ctable; member in struct:CvBGPixelStat
    [all...]
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 248 milliseconds