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

  /external/skia/src/effects/gradients/
SkGradientShaderPriv.h 165 mutable uint16_t* fCache16Storage; // storage for fCache16, allocated on demand
  /external/skia/legacy/src/effects/
SkGradientShader.cpp 213 mutable uint16_t* fCache16Storage; // storage for fCache16, allocated on demand
250 fCache16 = fCache16Storage = NULL;
359 fCache16 = fCache16Storage = NULL;
388 if (fCache16Storage) {
389 sk_free(fCache16Storage);
632 if (fCache16Storage == NULL) { // set the storage and our working ptr
633 fCache16Storage = (uint16_t*)sk_malloc_throw(allocSize);
635 fCache16 = fCache16Storage;
655 fCache16Storage = (uint16_t*)sk_malloc_throw(allocSize);
657 uint16_t* mapped = fCache16Storage; // storage for mapped dat
    [all...]

Completed in 32 milliseconds