Home
last modified time | relevance | path

Searched refs:blob2 (Results 1 – 12 of 12) sorted by relevance

/aosp_15_r20/external/libbrillo/brillo/
H A Dsecure_blob_test.cc155 SecureBlob blob2; in TEST_F() local
156 blob2.assign(blob.begin(), blob.end()); in TEST_F()
158 EXPECT_EQ(blob, blob2); in TEST_F()
185 SecureBlob blob2(32); in TEST_F() local
187 std::iota(blob2.begin(), blob2.end(), 32); in TEST_F()
188 SecureBlob combined_blob = SecureBlob::Combine(blob1, blob2); in TEST_F()
189 EXPECT_EQ(combined_blob.size(), (blob1.size() + blob2.size())); in TEST_F()
191 EXPECT_TRUE(SecureBlobTest::FindBlobInBlob(combined_blob, blob2)); in TEST_F()
193 int blob2_index = SecureBlobTest::FindBlobIndexInBlob(combined_blob, blob2); in TEST_F()
H A Dsecure_blob.cc84 const SecureBlob& blob2) { in Combine() argument
86 result.reserve(blob1.size() + blob2.size()); in Combine()
88 result.insert(result.end(), blob2.begin(), blob2.end()); in Combine()
H A Dsecure_blob.h49 static SecureBlob Combine(const SecureBlob& blob1, const SecureBlob& blob2);
/aosp_15_r20/external/mesa3d/src/util/tests/
H A Dcache_test.cpp800 char blob2[] = "This is a RW blob"; in TEST_F() local
831 disk_cache_compute_key(cache_sf_wr, blob2, sizeof(blob2), blob_key2); in TEST_F()
913 disk_cache_put(cache_mesa_db, blob_key2, blob2, sizeof(blob2), NULL); in TEST_F()
919 EXPECT_STREQ(blob2, result) << "disk_cache_get of existing item (pointer)"; in TEST_F()
920 EXPECT_EQ(size, sizeof(blob2)) << "disk_cache_get of existing item (size)"; in TEST_F()
935 EXPECT_STREQ(blob2, result) << "disk_cache_get of existing item (pointer)"; in TEST_F()
936 EXPECT_EQ(size, sizeof(blob2)) << "disk_cache_get of existing item (size)"; in TEST_F()
977 disk_cache_put(cache_multifile, blob_key2, blob2, sizeof(blob2), NULL); in TEST_F()
983 EXPECT_STREQ(blob2, result) << "disk_cache_get of existing item (pointer)"; in TEST_F()
984 EXPECT_EQ(size, sizeof(blob2)) << "disk_cache_get of existing item (size)"; in TEST_F()
[all …]
/aosp_15_r20/system/update_engine/payload_consumer/
H A Dextent_reader_unittest.cc86 brillo::Blob blob2; in TEST_F() local
87 ReadExtents(extents, &blob2); in TEST_F()
88 ExpectVectorsEq(blob1, blob2); in TEST_F()
/aosp_15_r20/external/skia/docs/examples/
H A Dskpaint_skia.cpp24 sk_sp<SkTextBlob> blob2 = in draw() local
30 canvas->drawTextBlob(blob2.get(), 20.0f, 224.0f, paint3); in draw()
H A Dtext_rendering.cpp21 sk_sp<SkTextBlob> blob2 = SkTextBlob::MakeFromString("Skia", font2); in draw() local
39 canvas->drawTextBlob(blob2.get(), 20.0f, 224.0f, paint3); in draw()
/aosp_15_r20/external/pytorch/test/cpp/rpc/
H A Dtest_tensorpipe_serialization.cpp136 std::vector<float> blob2{.7, .5, .9}; in TEST() local
138 at::Tensor t2 = torch::from_blob((float*)(blob2.data()), blob2.size()); in TEST()
/aosp_15_r20/packages/modules/AppSearch/testing/coretests/src/android/app/appsearch/external/safeparcel/
DGenericDocumentParcelTest.java113 AppSearchBlobHandle blob2 = in testPropertyParcel_blobHandleSet_success() local
115 AppSearchBlobHandle[] blobHandles = {blob1, blob2}; in testPropertyParcel_blobHandleSet_success()
119 assertThat(parcel.getBlobHandleValues()).asList().containsExactly(blob1, blob2).inOrder(); in testPropertyParcel_blobHandleSet_success()
/aosp_15_r20/external/XNNPACK/test/
H A Dworkspace.cc223 xnn_blob* blob2 = &runtime2->blobs[i]; in TEST() local
224 ASSERT_TRUE(BlobInWorkspace(blob2, runtime2->workspace)); in TEST()
/aosp_15_r20/external/skia/modules/canvaskit/npm_build/types/
H A Dcanvaskit-wasm-tests.ts997 const blob2 = tb.MakeFromRSXform('cdf', mXforms, font); // $ExpectType TextBlob constant
/aosp_15_r20/external/vixl/test/aarch64/
H A Dtest-assembler-aarch64.cc4717 Label blob2; in TEST() local
4718 __ Bind(&blob2); in TEST()
4720 VIXL_CHECK(__ GetSizeOfCodeGeneratedSince(&blob2) != 0); in TEST()