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

  /external/skia/include/core/
SkTypes.h 48 SK_MALLOC_TEMP = 0x01, //!< hint to sk_malloc that the requested memory will be freed in the scope of the stack frame
53 return null (if SK_MALLOC_TEMP bit is clear) or call sk_throw()
54 (if SK_MALLOC_TEMP bit is set). To free the memory, call sk_free().
347 : SkAutoFree(sk_malloc_flags(size, SK_MALLOC_THROW | SK_MALLOC_TEMP)) {}
354 unsigned flags = (SK_MALLOC_THROW | SK_MALLOC_TEMP)) {
367 fPtr = sk_malloc_flags(size, SK_MALLOC_THROW | SK_MALLOC_TEMP);
SkTemplates.h 180 fPtr = (T*)sk_malloc_flags(count * sizeof(T), SK_MALLOC_THROW | SK_MALLOC_TEMP);
199 fPtr = (T*)sk_malloc_flags(count * sizeof(T), SK_MALLOC_THROW | SK_MALLOC_TEMP);

Completed in 171 milliseconds