Lines Matching defs:bytes
36 int bytes = 0;
40 /* Carries number of Padding bytes to be appended to
47 bytes = ftell(fp);
49 append_bytes = EIGHT_BYTE_ALIGN - (bytes % EIGHT_BYTE_ALIGN);
53 printf("%s: Error in appending padding bytes.\n",
57 bytes += append_bytes;
61 while (bytes > 0) {
64 printf("%s: Error reading upper bytes.\n", __func__);
69 printf("%s: Error reading lower bytes.\n", __func__);
77 printf("%s: Error writing lower bytes.\n", __func__);
82 printf("%s: Error writing upper bytes.\n", __func__);
85 bytes -= EIGHT_BYTE_ALIGN;