Searched refs:SK_MALLOC_THROW (Results 1 – 4 of 4) sorted by relevance
41 SK_MALLOC_THROW = 1 << 1, enumerator59 return sk_malloc_flags(size, SK_MALLOC_THROW); in sk_malloc_throw()63 return sk_malloc_flags(size, SK_MALLOC_THROW | SK_MALLOC_ZERO_INITIALIZE); in sk_calloc_throw()
35 return (flags & SK_MALLOC_THROW) ? moz_xcalloc(size, 1) : calloc(size, 1); in sk_malloc_flags()37 return (flags & SK_MALLOC_THROW) ? moz_xmalloc(size) : malloc(size); in sk_malloc_flags()
95 if (flags & SK_MALLOC_THROW) { in sk_malloc_flags()
44 unsigned flags = SK_MALLOC_THROW; in AllocImage()