Searched refs:expected_size (Results 1 - 20 of 20) sorted by relevance

/external/webp/src/utils/
H A Dbit_writer.h36 // Initialize the object. Allocates some initial memory based on expected_size.
37 int VP8BitWriterInit(VP8BitWriter* const bw, size_t expected_size);
94 int VP8LBitWriterInit(VP8LBitWriter* const bw, size_t expected_size);
H A Dbit_writer.c157 int VP8BitWriterInit(VP8BitWriter* const bw, size_t expected_size) { argument
166 return (expected_size > 0) ? BitWriterResize(bw, expected_size) : 1;
225 int VP8LBitWriterInit(VP8LBitWriter* const bw, size_t expected_size) { argument
227 return VP8LBitWriterResize(bw, expected_size);
/external/chromium/net/base/
H A Dmime_util_unittest.cc98 size_t expected_size; member in struct:net::__anon2810
115 EXPECT_EQ(tests[i].expected_size, codecs_out.size());
116 for (size_t j = 0; j < tests[i].expected_size; ++j) {
H A Dip_endpoint_unittest.cc87 size_t expected_size = tests[index].ipv6 ? local
89 EXPECT_EQ(expected_size, addr_len);
H A Dcookie_monster_unittest.cc1314 size_t expected_size = 4; local
1315 EXPECT_EQ(expected_size, cookies.size());
/external/chromium/chrome/browser/ui/webui/chromeos/login/
H A Dlogin_ui.cc88 size_t expected_size = 2; local
89 CHECK_EQ(args->GetSize(), expected_size);
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_file.cc167 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
[all...]
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_result_unittest.cc46 const TestData* expected, size_t expected_size);
94 const TestData* expected, size_t expected_size) {
111 AssertResultMatches(current_result, expected, expected_size);
91 RunCopyOldMatchesTest( const TestData* last, size_t last_size, const TestData* current, size_t current_size, const TestData* expected, size_t expected_size) argument
/external/protobuf/python/google/protobuf/internal/
H A Dwire_format_test.py106 expected_size = expected_value_size + tag_bytes
108 self.assertEqual(expected_size, actual_size,
111 byte_size_fn, field_number, value, expected_size, actual_size))
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertificateFactory_ImplTest.java414 int expected_size = (sequences[i][0] < 0)
440 if (expected_size == error) { // exception throwing test
450 expected_size, crls.size());
513 int expected_size = (sequences[i][0] < 0)
539 if (expected_size == error) { // exception throwing test
549 expected_size, certs.size());
/external/webp/src/enc/
H A Dalpha.c111 size_t expected_size; local
121 expected_size =
127 VP8BitWriterInit(bw, expected_size);
/external/chromium/crypto/
H A Drsa_private_key.cc225 size_t expected_size,
231 int pad = expected_size - temp.size();
233 if (out->size() == expected_size + 1) {
238 READ_ASSERT(out->size() <= expected_size);
223 ReadIntegerWithExpectedSize(uint8** pos, uint8* end, size_t expected_size, std::vector<uint8>* out) argument
H A Drsa_private_key.h106 size_t expected_size,
/external/chromium/chrome/browser/autofill/
H A Dautofill_country.cc543 int32_t expected_size = collator.getSortKey(str, buffer->get(), *buffer_size); local
544 if (expected_size > *buffer_size) {
546 *buffer_size = expected_size;
550 expected_size = collator.getSortKey(str, buffer->get(), *buffer_size);
551 DCHECK_EQ(*buffer_size, expected_size);
/external/chromium/sdch/open-vcdiff/src/
H A Daddrcache_test.cc84 void ExpectEncodedVarint(VCDAddress expected_value, int expected_size) { argument
88 EXPECT_EQ(expected_size, VarintBE<VCDAddress>::Length(expected_value));
/external/protobuf/src/google/protobuf/
H A Dextension_set_unittest.cc421 int expected_size = sizeof(cpptype) * 16 + empty_repeated_field_size; \
422 EXPECT_EQ(expected_size, message.SpaceUsed()) << #type; \
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_private.h97 uint64_t ewk_view_exceeded_database_quota(Evas_Object *o, Evas_Object *frame, const char *databaseName, uint64_t current_size, uint64_t expected_size);
H A Dewk_view.h139 uint64_t (*exceeded_database_quota)(Ewk_View_Smart_Data *sd, Evas_Object *frame, const char *databaseName, uint64_t current_size, uint64_t expected_size);
H A Dewk_view.cpp3984 * @param expected_size The expected size of this database in order to fulfill
3987 uint64_t ewk_view_exceeded_database_quota(Evas_Object* o, Evas_Object* frame, const char* databaseName, uint64_t current_size, uint64_t expected_size) argument
3995 INF("current_size=%"PRIu64" expected_size=%"PRIu64, current_size, expected_size);
3996 return sd->api->exceeded_database_quota(sd, frame, databaseName, current_size, expected_size);
/external/v8/src/
H A Djsregexp.h1053 explicit ChoiceNode(int expected_size) argument
1054 : alternatives_(new ZoneList<GuardedAlternative>(expected_size)),

Completed in 786 milliseconds