Lines Matching refs:result
362 int result = res_create_display_surface(filename, surface); in LoadBitmap() local
363 if (result < 0) { in LoadBitmap()
364 LOGE("missing bitmap %s\n(Code %d)\n", filename, result); in LoadBitmap()
369 int result = res_create_multi_display_surface(filename, frames, surface); in LoadBitmapArray() local
370 if (result < 0) { in LoadBitmapArray()
371 LOGE("missing bitmap %s\n(Code %d)\n", filename, result); in LoadBitmapArray()
376 int result = res_create_localized_alpha_surface(filename, locale, surface); in LoadLocalizedBitmap() local
377 if (result < 0) { in LoadLocalizedBitmap()
378 LOGE("missing bitmap %s\n(Code %d)\n", filename, result); in LoadLocalizedBitmap()
383 char** result = new char*[rows]; in Alloc2d() local
385 result[i] = new char[cols]; in Alloc2d()
386 memset(result[i], 0, cols); in Alloc2d()
388 return result; in Alloc2d()