Searched defs:file_bytes (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/courgette/
H A Dbase_test_unittest.cc23 std::string file_bytes; local
25 EXPECT_TRUE(base::ReadFileToString(file_path, &file_bytes));
27 return file_bytes;
/external/tremolo/Tremolo/
H A Dmisc.c47 static long *file_bytes=NULL; variable
104 file_bytes=malloc(filecount*sizeof(*file_bytes));
107 file_bytes=realloc(file_bytes,filecount*sizeof(*file_bytes));
110 file_bytes[i]=0;
113 file_bytes[i]+=bytes-HEAD_ALIGN;
122 file_bytes[i]-(bytes-HEAD_ALIGN));
125 file_bytes[
[all...]
/external/chromium_org/content/test/
H A Dimage_decoder_test.cc94 std::string file_bytes; local
95 base::ReadFileToString(md5_sum_path, &file_bytes);
97 ASSERT_EQ(sizeof expected_digest, file_bytes.size()) << path.value();
98 memcpy(&expected_digest, file_bytes.data(), sizeof expected_digest);
/external/chromium_org/tools/relocation_packer/src/
H A Delf_file.cc1000 const off_t file_bytes = elf_update(elf_, ELF_C_WRITE); local
1001 CHECK(file_bytes > 0);
1002 VLOG("elf_update returned: %lu\n", file_bytes);
1008 const int truncate = ftruncate(fd_, file_bytes);

Completed in 405 milliseconds