/external/u-boot/drivers/spi/ |
ti_qspi.c | 595 const void *blob = gd->fdt_blob; local 604 priv->max_hz = fdtdec_get_int(blob, node, "spi-max-frequency", -1); 609 priv->num_cs = fdtdec_get_int(blob, node, "num-cs", 4);
|
/external/u-boot/scripts/dtc/ |
flattree.c | 364 struct data blob = empty_data; local 376 die("Unknown device tree blob version %d\n", version); 396 "Warning: blob size %d >= minimum size %d\n", 415 * Assemble the blob: start with the header, add with alignment 419 blob = data_append_data(blob, &fdt, vi->hdr_size); 420 blob = data_append_align(blob, 8); 421 blob = data_merge(blob, reservebuf) 817 char *blob; local [all...] |
/external/u-boot/tools/ |
fdtgrep.c | 228 * @blob: FDT blob to display 232 static int display_fdt_by_regions(struct display_info *disp, const void *blob, 236 uint32_t off_mem_rsvmap = fdt_off_mem_rsvmap(blob); 237 int base = fdt_off_dt_struct(blob); 238 int version = fdt_version(blob); 251 fprintf(f, "// magic:\t\t0x%x\n", fdt_magic(blob)); 252 fprintf(f, "// totalsize:\t\t0x%x (%d)\n", fdt_totalsize(blob), 253 fdt_totalsize(blob)); 255 fdt_off_dt_struct(blob)); 783 char *blob; local [all...] |
/frameworks/av/services/camera/libcameraservice/api2/ |
HeicCompositeStream.cpp | 313 // JPEG APPS segments Blob stream info 1272 const struct CameraBlob *blob = (const struct CameraBlob*)(header); local [all...] |
/external/ImageMagick/MagickCore/ |
blob.c | 49 #include "MagickCore/blob.h" 50 #include "MagickCore/blob-private.h" 253 % AttachBlob() attaches a blob to the BlobInfo structure. 257 % void AttachBlob(BlobInfo *blob_info,const void *blob,const size_t length) 263 % o blob: the address of a character stream in one of the image formats 266 % o length: This size_t integer reflects the length in bytes of the blob. 269 MagickExport void AttachBlob(BlobInfo *blob_info,const void *blob, 281 blob_info->data=(unsigned char *) blob; 335 % BlobToFile() writes a blob to a file. It returns MagickFalse if an error 340 % MagickBooleanType BlobToFile(char *filename,const void *blob, 798 *blob; local 1372 *blob; local 1592 *blob; local 1979 *blob; local 2164 *blob; local 2381 *blob; local 2574 *blob; local 3425 *blob; local [all...] |
image.h | 131 #include "MagickCore/blob.h" 328 *blob; /* image file as in-memory string of 'extent' */ member in struct:_Image 474 *blob; member in struct:_ImageInfo
|
nt-base.c | 2176 *blob, local [all...] |
/external/ImageMagick/coders/ |
tiff.c | 49 #include "MagickCore/blob.h" 50 #include "MagickCore/blob-private.h" 3125 *blob; local [all...] |
/external/flatbuffers/include/flatbuffers/ |
flexbuffers.h | 239 class Blob : public Sized { 241 Blob(const uint8_t *data_buf, uint8_t byte_width) 244 static Blob EmptyBlob() { 246 return Blob(empty_blob + 1, 1); 551 auto blob = AsBlob(); local 552 flatbuffers::EscapeString(reinterpret_cast<const char*>(blob.data()), blob.size(), &s, true, false); 558 // This function returns the empty blob if you try to read a not-blob. 560 Blob AsBlob() const [all...] |
/external/flatbuffers/tests/ |
test.cpp | 2276 auto blob = vec[3].AsBlob(); local [all...] |