HomeSort by relevance Sort by last modified time
    Searched refs:expected_size (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_format_test.cc 30 const void* end, size_t expected_size, size_t written_size) {
35 EXPECT_EQ(expected_size, actual_size);
41 const void* end, size_t expected_size) {
42 CheckBytesWritten(end, expected_size, expected_size);
  /external/chromium_org/ppapi/thunk/
ppb_file_system_api.h 21 virtual int32_t Open(int64_t expected_size,
ppb_file_system_thunk.cc 37 int64_t expected_size,
43 return enter.SetResult(enter.object()->Open(expected_size, enter.callback()));
  /external/chromium_org/ppapi/cpp/
file_system.cc 43 int32_t FileSystem::Open(int64_t expected_size,
48 pp_resource(), expected_size, cc.pp_completion_callback());
file_system.h 54 /// @param[in] expected_size The expected size of the file system. Note that
65 int32_t Open(int64_t expected_size, const CompletionCallback& cc);
  /external/chromium_org/ppapi/c/
ppb_file_system.h 66 * @param[in] expected_size The expected size of the file system. Note that
81 int64_t expected_size,
  /external/chromium_org/ppapi/api/
ppb_file_system.idl 52 * @param[in] expected_size The expected size of the file system. Note that
65 [in] int64_t expected_size,
  /external/chromium_org/ppapi/proxy/
file_system_resource.cc 39 int32_t FileSystemResource::Open(int64_t expected_size,
46 PpapiHostMsg_FileSystem_Open(expected_size),
51 PpapiHostMsg_FileSystem_Open(expected_size),
file_system_resource.h 37 virtual int32_t Open(int64_t expected_size,
  /external/chromium_org/third_party/libwebp/utils/
bit_writer.h 38 // Initialize the object. Allocates some initial memory based on expected_size.
39 int VP8BitWriterInit(VP8BitWriter* const bw, size_t expected_size);
96 int VP8LBitWriterInit(VP8LBitWriter* const bw, size_t expected_size);
bit_writer.c 159 int VP8BitWriterInit(VP8BitWriter* const bw, size_t expected_size) {
168 return (expected_size > 0) ? BitWriterResize(bw, expected_size) : 1;
227 int VP8LBitWriterInit(VP8LBitWriter* const bw, size_t expected_size) {
229 return VP8LBitWriterResize(bw, expected_size);
  /external/webp/src/utils/
bit_writer.h 38 // Initialize the object. Allocates some initial memory based on expected_size.
39 int VP8BitWriterInit(VP8BitWriter* const bw, size_t expected_size);
96 int VP8LBitWriterInit(VP8LBitWriter* const bw, size_t expected_size);
bit_writer.c 159 int VP8BitWriterInit(VP8BitWriter* const bw, size_t expected_size) {
168 return (expected_size > 0) ? BitWriterResize(bw, expected_size) : 1;
227 int VP8LBitWriterInit(VP8LBitWriter* const bw, size_t expected_size) {
229 return VP8LBitWriterResize(bw, expected_size);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videoframe.cc 299 size_t expected_size = (w * expected_bpp + 7) / 8 * h; local
303 expected_size = ((w + 15) / 16) * ((h + 15) / 16) * 4 / 8;
310 << " expected: " << expected_size
314 if (sample_size < expected_size) {
320 << " expected: " << expected_size
333 << " expected: " << 2 * expected_size
342 size_t large_expected_size = expected_size * 2;
367 << " expected: " << expected_size
382 << " expected: " << expected_size
  /external/chromium/net/base/
mime_util_unittest.cc 98 size_t expected_size; member in struct:net::__anon5381
115 EXPECT_EQ(tests[i].expected_size, codecs_out.size());
116 for (size_t j = 0; j < tests[i].expected_size; ++j) {
  /external/chromium/chrome/browser/ui/webui/chromeos/login/
login_ui.cc 88 size_t expected_size = 2; local
89 CHECK_EQ(args->GetSize(), expected_size);
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
media_file_validator_browsertest.cc 40 void HandleCheckFileResult(int64 expected_size,
45 if (!file_info.is_directory && expected_size != kNoFileSize &&
46 file_info.size == expected_size) {
51 if (expected_size == kNoFileSize) {
171 // Helper that checks a file has the |expected_size|, which may be
175 int64 expected_size,
179 expected_size, callback));
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file.cc 167 int64 expected_size = sizeof(FileHeader);
168 expected_size += header.add_chunk_count * sizeof(int32);
169 expected_size += header.sub_chunk_count * sizeof(int32);
170 expected_size += header.add_prefix_count * sizeof(SBAddPrefix);
171 expected_size += header.sub_prefix_count * sizeof(SBSubPrefix);
172 expected_size += header.add_hash_count * sizeof(SBAddFullHash);
173 expected_size += header.sub_hash_count * sizeof(SBSubFullHash);
174 expected_size += sizeof(MD5Digest);
175 if (size != expected_size)
568 int64 expected_size = ofs + sizeof(ChunkHeader)
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_store_file.cc 141 int64 expected_size = sizeof(FileHeader);
142 expected_size += header.add_chunk_count * sizeof(int32);
143 expected_size += header.sub_chunk_count * sizeof(int32);
144 expected_size += header.add_prefix_count * sizeof(SBAddPrefix);
145 expected_size += header.sub_prefix_count * sizeof(SBSubPrefix);
146 expected_size += header.add_hash_count * sizeof(SBAddFullHash);
147 expected_size += header.sub_hash_count * sizeof(SBSubFullHash);
148 expected_size += sizeof(base::MD5Digest);
149 if (size != expected_size)
573 int64 expected_size = ofs + sizeof(ChunkHeader)
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_result_unittest.cc 46 const TestData* expected, size_t expected_size);
94 const TestData* expected, size_t expected_size) {
111 AssertResultMatches(current_result, expected, expected_size);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_html5fs.cc 118 int64_t expected_size = 0; local
127 } else if (iter->first == "expected_size") {
128 expected_size = strtoull(iter->second.c_str(), NULL, 10);
148 ->Open(filesystem_resource_, expected_size, cc);
  /external/chromium_org/content/renderer/pepper/
pepper_file_system_host.cc 99 int64_t expected_size) {
131 file_system_type, expected_size, true /* create */,
pepper_file_system_host.h 46 int64_t expected_size);
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_file_system_browser_host.h 57 int64_t expected_size);
  /external/chromium_org/chrome/browser/history/
in_memory_url_index_types_unittest.cc 18 size_t expected_size,
20 if (expected_size != actual.size())
22 for (size_t i = 0; i < expected_size; ++i)

Completed in 1242 milliseconds

1 2 3 4