/aosp_15_r20/external/angle/src/common/spirv/ |
H A D | spirv_instruction_builder_autogen.cpp | 41 void WriteSpirvHeader(std::vector<uint32_t> *blob, uint32_t version, uint32_t idCount) in WriteSpirvHeader() argument 55 ASSERT(blob->empty()); in WriteSpirvHeader() 57 blob->push_back(spv::MagicNumber); in WriteSpirvHeader() 58 blob->push_back(version); in WriteSpirvHeader() 59 blob->push_back(kANGLEGeneratorId << 16 | kANGLEGeneratorVersion); in WriteSpirvHeader() 60 blob->push_back(idCount); in WriteSpirvHeader() 61 blob->push_back(0x00000000); in WriteSpirvHeader() 64 void WriteNop(Blob *blob) in WriteNop() argument 66 const size_t startSize = blob->size(); in WriteNop() 67 blob->push_back(0); in WriteNop() [all …]
|
H A D | spirv_instruction_builder_autogen.h | 23 void WriteSpirvHeader(std::vector<uint32_t> *blob, uint32_t version, uint32_t idCount); 24 void WriteNop(Blob *blob); 25 void WriteUndef(Blob *blob, IdResultType idResultType1, IdResult idResult2); 26 void WriteSourceContinued(Blob *blob, LiteralString continuedSource); 27 void WriteSource(Blob *blob, 32 void WriteSourceExtension(Blob *blob, LiteralString extension); 33 void WriteName(Blob *blob, IdRef target, LiteralString name); 34 void WriteMemberName(Blob *blob, IdRef type, LiteralInteger member, LiteralString name); 35 void WriteString(Blob *blob, IdResult idResult1, LiteralString string); 36 void WriteLine(Blob *blob, IdRef file, LiteralInteger line, LiteralInteger column); [all …]
|
/aosp_15_r20/external/mesa3d/src/util/ |
H A D | blob.c | 26 #include "blob.h" 39 /* Ensure that \blob will be able to fit an additional object of size 44 grow_to_fit(struct blob *blob, size_t additional) in grow_to_fit() argument 49 if (blob->out_of_memory) in grow_to_fit() 52 if (blob->size + additional <= blob->allocated) in grow_to_fit() 55 if (blob->fixed_allocation) { in grow_to_fit() 56 blob->out_of_memory = true; in grow_to_fit() 60 if (blob->allocated == 0) in grow_to_fit() 63 to_allocate = blob->allocated * 2; in grow_to_fit() 65 to_allocate = MAX2(to_allocate, blob->allocated + additional); in grow_to_fit() [all …]
|
H A D | blob.h | 36 /* The blob functions implement a simple, low-level API for serializing and 39 * All objects written to a blob will be serialized directly, (without any 42 * by knowing exactly what data is expected, or by writing to the blob 45 * A blob is efficient in that it dynamically grows by doubling in size, so 49 struct blob { struct 50 /* The data actually written to the blob. Never read or write this directly 70 * allocation blob. argument 78 * 1. blob->current should be equal to blob->end, (if not, too little was argument 81 * 2. blob->overrun should be false, (otherwise, too much was read). 91 * Init a new, empty blob. [all …]
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/apex/blobstore/service/service-blobstore/android_common/javac/ |
D | service-blobstore.jar | ... android/server/
com/android/server/blob/
com/android/server/blob/BlobAccessMode |
/aosp_15_r20/external/harfbuzz_ng/src/ |
H A D | hb-blob.cc | 29 #include "hb-blob.hh" 40 * SECTION: hb-blob 41 * @title: hb-blob 54 * @data: Pointer to blob data. 60 * Creates a new "blob" object wrapping @data. The @mode parameter is used 63 * Return value: New blob, or the empty blob if something failed or if @length is 82 hb_blob_t *blob = hb_blob_create_or_fail (data, length, mode, in hb_blob_create() local 84 return likely (blob) ? blob : hb_blob_get_empty (); in hb_blob_create() 89 * @data: Pointer to blob data. 95 * Creates a new "blob" object wrapping @data. The @mode parameter is used [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/rusqlite/src/blob/ |
D | mod.rs | 1 //! Incremental BLOB I/O. 4 //! BLOB; that must be performed through SQL statements. 6 //! There are two choices for how to perform IO on a [`Blob`]. 11 //! 2. A positional IO API, e.g. [`Blob::read_at`], [`Blob::write_at`] and 18 //! `Blob` conforms to `std::io::Read`, `std::io::Write`, and `std::io::Seek`, 21 //! with the size of the blob. For example, when using a `BufWriter`, the 22 //! `BufWriter` will accept more data than the `Blob` will allow, so make sure 28 //! `Blob`s also offer a `pread` / `pwrite`-style positional IO api in the form 29 //! of [`Blob::read_at`], [`Blob::write_at`], [`Blob::raw_read_at`], 30 //! [`Blob::read_at_exact`], and [`Blob::raw_read_at_exact`]. [all …]
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/apex/blobstore/service/service-blobstore/android_common/repackaged-jarjar/javac/ |
D | service-blobstore.jar | ... .server.blob
com.android.server.blob.BlobStoreSession extends android.app.blob.IBlobStoreSession ... |
/aosp_15_r20/external/vboot_reference/tests/futility/ |
H A D | test_gbb_utility.sh | 18 "${FUTILITY}" gbb -c 16,0x10,16,0x10 "${TMP}.blob" 21 "${FUTILITY}" gbb -s --flags=0xdeadbeef "${TMP}.blob" 22 "${FUTILITY}" gbb -g --flags "${TMP}.blob" | grep -i 0xdeadbeef 25 if "${FUTILITY}" gbb -s --hwid="0123456789ABCDEF" "${TMP}.blob"; then 29 "${FUTILITY}" gbb -s --hwid="0123456789ABCDE" "${TMP}.blob" 31 "${FUTILITY}" gbb -g "${TMP}.blob" | grep "0123456789ABCDE" 38 if "${FUTILITY}" gbb -s --rootkey "${TMP}.data1.toolong" "${TMP}.blob"; 40 if "${FUTILITY}" gbb -s --recoverykey "${TMP}.data2.toolong" "${TMP}.blob"; 48 --recoverykey "${TMP}.data2.short" "${TMP}.blob" 52 --recoverykey "${TMP}.read2" "${TMP}.blob" [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/security/ |
H A D | README.md | 12 [SECURITY.md](https://github.com/tensorflow/tensorflow/blob/master/SECURITY.md). 16 | [TFSA-2022-084](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/security/advisory… 17 | [TFSA-2022-083](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/security/advisory… 18 | [TFSA-2022-082](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/security/advisory… 19 | [TFSA-2022-081](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/security/advisory… 20 | [TFSA-2022-080](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/security/advisory… 21 | [TFSA-2022-079](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/security/advisory… 22 | [TFSA-2022-078](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/security/advisory… 23 | [TFSA-2022-077](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/security/advisory… 24 | [TFSA-2022-076](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/security/advisory… [all …]
|
/aosp_15_r20/system/security/keystore2/src/ |
H A D | legacy_blob.rs | 15 //! This module implements methods to load legacy keystore key blob files. 46 /// This flag is deprecated. It indicates that the blob was generated and thus owned by a 56 /// flow so it receives special treatment from keystore. For example this blob will not be super 60 /// The blob is associated with the security level Strongbox as opposed to TEE. 64 /// Lagacy key blob types. 66 /// A generic blob used for non sensitive unstructured blobs. 73 /// A KM key blob. 84 /// Error codes specific to the legacy blob module. 87 /// Returned by the legacy blob module functions if an input stream 91 /// This error code is returned by `Blob::decode_alias` if it encounters [all …]
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/apex/blobstore/service/service-blobstore/android_common/turbine-combined/ |
D | service-blobstore.jar | ... .blob
abstract annotation com.android.server.blob.BlobAccessMode$AccessType extends java.lang.Object ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/apex/blobstore/service/service-blobstore/android_common/repackaged-jarjar/turbine/ |
D | service-blobstore.jar | ... .server.blob
com.android.server.blob.BlobStoreSession extends android.app.blob.IBlobStoreSession ... |
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/14/libcore/ojluni/src/main/java/java/sql/ |
D | Blob.java | 34 * <code>BLOB</code> value. An SQL <code>BLOB</code> is a built-in type 36 * a database table. By default drivers implement <code>Blob</code> using 37 * an SQL <code>locator(BLOB)</code>, which means that a 38 * <code>Blob</code> object contains a logical pointer to the 39 * SQL <code>BLOB</code> data rather than the data itself. 40 * A <code>Blob</code> object is valid for the duration of the 46 * access an SQL <code>BLOB</code> value. 47 * The <code>Blob</code> interface provides methods for getting the 48 * length of an SQL <code>BLOB</code> (Binary Large Object) value, 49 * for materializing a <code>BLOB</code> value on the client, and for [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/sql/ |
D | Blob.java | 34 * <code>BLOB</code> value. An SQL <code>BLOB</code> is a built-in type 36 * a database table. By default drivers implement <code>Blob</code> using 37 * an SQL <code>locator(BLOB)</code>, which means that a 38 * <code>Blob</code> object contains a logical pointer to the 39 * SQL <code>BLOB</code> data rather than the data itself. 40 * A <code>Blob</code> object is valid for the duration of the 46 * access an SQL <code>BLOB</code> value. 47 * The <code>Blob</code> interface provides methods for getting the 48 * length of an SQL <code>BLOB</code> (Binary Large Object) value, 49 * for materializing a <code>BLOB</code> value on the client, and for [all …]
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/sql/ |
H A D | Blob.java | 34 * <code>BLOB</code> value. An SQL <code>BLOB</code> is a built-in type 36 * a database table. By default drivers implement <code>Blob</code> using 37 * an SQL <code>locator(BLOB)</code>, which means that a 38 * <code>Blob</code> object contains a logical pointer to the 39 * SQL <code>BLOB</code> data rather than the data itself. 40 * A <code>Blob</code> object is valid for the duration of the 46 * access an SQL <code>BLOB</code> value. 47 * The <code>Blob</code> interface provides methods for getting the 48 * length of an SQL <code>BLOB</code> (Binary Large Object) value, 49 * for materializing a <code>BLOB</code> value on the client, and for [all …]
|
/aosp_15_r20/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/btservice/storage/schemas/com.android.bluetooth.btservice.storage.MetadataDatabase/ |
D | 121.json | 9 …BLOB, `model_name` BLOB, `software_version` BLOB, `hardware_version` BLOB, `companion_app` BLOB, `… 175 "affinity": "BLOB" 180 "affinity": "BLOB" 185 "affinity": "BLOB" 190 "affinity": "BLOB" 195 "affinity": "BLOB" 200 "affinity": "BLOB" 205 "affinity": "BLOB" 210 "affinity": "BLOB" 215 "affinity": "BLOB" [all …]
|
D | 120.json | 9 …BLOB, `model_name` BLOB, `software_version` BLOB, `hardware_version` BLOB, `companion_app` BLOB, `… 188 "affinity": "BLOB", 194 "affinity": "BLOB", 200 "affinity": "BLOB", 206 "affinity": "BLOB", 212 "affinity": "BLOB", 218 "affinity": "BLOB", 224 "affinity": "BLOB", 230 "affinity": "BLOB", 236 "affinity": "BLOB", [all …]
|
D | 119.json | 9 …BLOB, `model_name` BLOB, `software_version` BLOB, `hardware_version` BLOB, `companion_app` BLOB, `… 182 "affinity": "BLOB", 188 "affinity": "BLOB", 194 "affinity": "BLOB", 200 "affinity": "BLOB", 206 "affinity": "BLOB", 212 "affinity": "BLOB", 218 "affinity": "BLOB", 224 "affinity": "BLOB", 230 "affinity": "BLOB", [all …]
|
D | 118.json | 9 …BLOB, `model_name` BLOB, `software_version` BLOB, `hardware_version` BLOB, `companion_app` BLOB, `… 182 "affinity": "BLOB", 188 "affinity": "BLOB", 194 "affinity": "BLOB", 200 "affinity": "BLOB", 206 "affinity": "BLOB", 212 "affinity": "BLOB", 218 "affinity": "BLOB", 224 "affinity": "BLOB", 230 "affinity": "BLOB", [all …]
|
D | 117.json | 9 …BLOB, `model_name` BLOB, `software_version` BLOB, `hardware_version` BLOB, `companion_app` BLOB, `… 176 "affinity": "BLOB", 182 "affinity": "BLOB", 188 "affinity": "BLOB", 194 "affinity": "BLOB", 200 "affinity": "BLOB", 206 "affinity": "BLOB", 212 "affinity": "BLOB", 218 "affinity": "BLOB", 224 "affinity": "BLOB", [all …]
|
/aosp_15_r20/external/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_pipeline_cache.c | 26 #include "util/blob.h" 101 struct blob blob; in v3dv_pipeline_cache_upload_nir() local 102 blob_init(&blob); in v3dv_pipeline_cache_upload_nir() 104 nir_serialize(&blob, nir, false); in v3dv_pipeline_cache_upload_nir() 105 if (blob.out_of_memory) { in v3dv_pipeline_cache_upload_nir() 106 blob_finish(&blob); in v3dv_pipeline_cache_upload_nir() 117 blob_finish(&blob); in v3dv_pipeline_cache_upload_nir() 123 ralloc_size(cache->nir_cache, sizeof(*snir) + blob.size); in v3dv_pipeline_cache_upload_nir() 125 snir->size = blob.size; in v3dv_pipeline_cache_upload_nir() 126 memcpy(snir->data, blob.data, blob.size); in v3dv_pipeline_cache_upload_nir() [all …]
|
/aosp_15_r20/external/libbrillo/brillo/ |
H A D | secure_blob_test.cc | 26 const Blob blob(std::begin(kTestBytes), std::end(kTestBytes)); in TEST() local 27 const string obtained_string = BlobToString(blob); in TEST() 30 const Blob obtained_blob = BlobFromString(obtained_string); in TEST() 31 EXPECT_EQ(blob, obtained_blob); in TEST() 36 const Blob kEmpty; in TEST() 37 const Blob kBlob1 = {1}; in TEST() 38 const Blob kBlob2 = {2}; in TEST() 39 const Blob kBlob3 = {3}; in TEST() 40 const Blob kBlob12 = {1, 2}; in TEST() 41 const Blob kBlob123 = {1, 2, 3}; in TEST() [all …]
|
/aosp_15_r20/external/pigweed/pw_blob_store/ |
H A D | blob_store_test.cc | 77 BlobStoreBuffer<kBufferSize> blob( in WriteTestBlock() local 79 EXPECT_EQ(OkStatus(), blob.Init()); in WriteTestBlock() 81 BlobStore::BlobWriterWithBuffer writer(blob); in WriteTestBlock() 86 VerifyBlob(blob, write_size_bytes); in WriteTestBlock() 89 void VerifyBlob(BlobStore& blob, size_t expected_data_size) { in VerifyBlob() argument 90 EXPECT_TRUE(blob.HasData()); in VerifyBlob() 91 BlobStore::BlobReader reader(blob); in VerifyBlob() 102 // Open a new blob instance and read the blob using the given read chunk size. 109 BlobStoreBuffer<kBufferSize> blob( in ChunkReadTest() local 111 EXPECT_EQ(OkStatus(), blob.Init()); in ChunkReadTest() [all …]
|
/aosp_15_r20/external/mesa3d/src/compiler/nir/ |
H A D | nir_serialize.c | 42 struct blob *blob; member 72 struct blob_reader *blob; member 125 return read_lookup_object(ctx, blob_read_uint32(ctx->blob)); in read_object() 179 blob_write_bytes(ctx->blob, c->values, sizeof(c->values)); in write_constant() 180 blob_write_uint32(ctx->blob, c->num_elements); in write_constant() 191 blob_copy_bytes(ctx->blob, (uint8_t *)c->values, sizeof(c->values)); in read_constant() 193 c->num_elements = blob_read_uint32(ctx->blob); in read_constant() 285 blob_write_uint32(ctx->blob, flags.u32); in write_variable() 288 encode_type_to_blob(ctx->blob, var->type); in write_variable() 293 encode_type_to_blob(ctx->blob, var->interface_type); in write_variable() [all …]
|