Lines Matching defs:image
83 /* Download image contains bad data */
85 /* Download image not compatible with current hardware */
1366 uchar_t *image;
1381 if ((image = (uchar_t *)calloc(image_size, 1)) == NULL) {
1387 /* Read the fcode image file */
1389 read(fcode_fd, image, image_size);
1401 /* Search entire image for pattern string */
1404 byte1 = image[i++];
1405 byte2 = image[i++];
1460 /* Search entire 32bit endian image for pattern string */
1463 byte1 = image[i++];
1464 byte2 = image[i++];
1465 byte3 = image[i++];
1466 byte4 = image[i++];
1545 free(image);
1549 free(image);
1593 "Bad fcode image.\n"));