/src/sys/arch/arm/gemini/ |
gemini_ipm.h | 16 uint8_t blob[15]; member in struct:ipm_desc
|
/src/sys/arch/evbmips/ingenic/ |
autoconf.c | 74 prop_data_t blob; local in function:device_register 78 blob = prop_data_create_data(enaddr, ETHER_ADDR_LEN); 79 prop_dictionary_set(dict, "mac-address", blob); 80 prop_object_release(blob);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/ |
nouveau_nvkm_subdev_fb_gp102.c | 46 struct nvkm_blob *blob = &fb->vpr_scrubber; local in function:gp102_fb_vpr_scrub 56 hsbin_hdr = nvfw_bin_hdr(subdev, blob->data); 57 fw_hdr = nvfw_hs_header(subdev, blob->data + hsbin_hdr->header_offset); 58 lhdr = nvfw_hs_load_header(subdev, blob->data + fw_hdr->hdr_offset); 59 scrub_data = blob->data + hsbin_hdr->data_offset; 61 patch_loc = *(u32 *)(blob->data + fw_hdr->patch_loc); 62 patch_sig = *(u32 *)(blob->data + fw_hdr->patch_sig); 65 blob->data + fw_hdr->sig_dbg_offset + patch_sig, 69 blob->data + fw_hdr->sig_prod_offset + patch_sig,
|
/src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/ |
intel_guc_ads.c | 76 struct __guc_ads_blob *blob = guc->ads_blob; local in function:__guc_ads_init 82 guc_policies_init(&blob->policies); 99 blob->ads.golden_context_lrca[engine_class] = 0; 100 blob->ads.eng_state_size[engine_class] = 107 blob->system_info.slice_enabled = hweight8(RUNTIME_INFO(dev_priv)->sseu.slice_mask); 108 blob->system_info.rcs_enabled = 1; 109 blob->system_info.bcs_enabled = 1; 111 blob->system_info.vdbox_enable_mask = VDBOX_MASK(dev_priv); 112 blob->system_info.vebox_enable_mask = VEBOX_MASK(dev_priv); 113 blob->system_info.vdbox_sfc_support_mask = RUNTIME_INFO(dev_priv)->vdbox_sfc_access [all...] |
intel_uc_fw.c | 123 const struct uc_fw_blob *blob = local in function:__uc_fw_auto_select 125 uc_fw->path = blob->path; 126 uc_fw->major_ver_wanted = blob->major; 127 uc_fw->minor_ver_wanted = blob->minor; 142 pr_err("invalid FW blob order: %s r%u comes before %s r%u\n", 233 /* non-existing blob */ 296 /* Check the size of the blob before examining buffer contents */
|
intel_guc_ct.c | 136 void *blob; local in function:intel_guc_ct_init 164 err = intel_guc_allocate_and_map_vma(guc, PAGE_SIZE, &ct->vma, &blob); 176 ct->ctbs[i].desc = blob + PAGE_SIZE/4 * i; 177 ct->ctbs[i].cmds = blob + PAGE_SIZE/4 * i + PAGE_SIZE/2; 217 * cmds buffers are in the second half of the blob page 227 * descriptors are in first half of the blob
|
/src/sys/arch/sparc/sparc/ |
pci_fixup.c | 507 prop_data_t blob; local in function:set_pci_props 522 blob = prop_data_create_data(eaddr, ETHER_ADDR_LEN); 523 prop_dictionary_set(dict, "mac-address", blob); 524 prop_object_release(blob);
|
autoconf.c | 1635 prop_data_t blob; local in function:set_network_props 1660 blob = prop_data_create_copy(eaddr, ETHER_ADDR_LEN); 1661 prop_dictionary_set(dict, "mac-address", blob); 1662 prop_object_release(blob);
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_mode_config.c | 475 struct drm_property_blob *blob, *bt; local in function:drm_mode_config_cleanup 515 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list, 517 drm_property_blob_put(blob);
|
drm_property.c | 522 * NOTE: The idea seems to have been to use this to read all the blob 525 * read the value for a blob property. It also doesn't make a lot of 537 struct drm_property_blob *blob = local in function:drm_property_free_blob 540 mutex_lock(&blob->dev->mode_config.blob_lock); 541 list_del(&blob->head_global); 542 mutex_unlock(&blob->dev->mode_config.blob_lock); 544 drm_mode_object_unregister(blob->dev, &blob->base); 546 kvfree(blob); 550 * drm_property_create_blob - Create new blob propert 567 struct drm_property_blob *blob; local in function:drm_property_create_blob 621 struct drm_property_blob *blob, *bt; local in function:drm_property_destroy_user_blobs 663 struct drm_property_blob *blob = NULL; local in function:drm_property_lookup_blob 767 struct drm_property_blob *blob; local in function:drm_mode_getblob_ioctl 796 struct drm_property_blob *blob; local in function:drm_mode_createblob_ioctl 832 struct drm_property_blob *blob = NULL, *bt; local in function:drm_mode_destroyblob_ioctl 911 struct drm_property_blob *blob; local in function:drm_property_change_valid_get [all...] |
drm_plane.c | 80 formats_ptr(struct drm_format_modifier_blob *blob) 82 return (u32 *)(((char *)blob) + blob->formats_offset); 86 modifiers_ptr(struct drm_format_modifier_blob *blob) 88 return (struct drm_format_modifier *)(((char *)blob) + blob->modifiers_offset); 94 struct drm_property_blob *blob; local in function:create_in_format_blob 117 blob = drm_property_create_blob(dev, blob_size, NULL); 118 if (IS_ERR(blob)) 121 blob_data = blob->data [all...] |
drm_atomic_helper.c | 3493 struct drm_property_blob *blob = NULL; local in function:drm_atomic_helper_legacy_gamma_set 3502 blob = drm_property_create_blob(dev, 3505 if (IS_ERR(blob)) { 3506 ret = PTR_ERR(blob); 3507 blob = NULL; 3512 blob_data = blob->data; 3529 replaced |= drm_property_replace_blob(&crtc_state->gamma_lut, blob); 3536 drm_property_blob_put(blob);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr/ |
nouveau_nvkm_engine_gr_gk20a.c | 46 struct nvkm_blob blob; local in function:gk20a_gr_av_to_init 53 ret = nvkm_firmware_load_blob(subdev, path, name, ver, &blob); 57 nent = (blob.size / sizeof(struct gk20a_fw_av)); 69 struct gk20a_fw_av *av = &((struct gk20a_fw_av *)blob.data)[i]; 80 nvkm_blob_dtor(&blob); 96 struct nvkm_blob blob; local in function:gk20a_gr_aiv_to_init 103 ret = nvkm_firmware_load_blob(subdev, path, name, ver, &blob); 107 nent = (blob.size / sizeof(struct gk20a_fw_aiv)); 119 struct gk20a_fw_aiv *av = &((struct gk20a_fw_aiv *)blob.data)[i]; 130 nvkm_blob_dtor(&blob); 139 struct nvkm_blob blob; local in function:gk20a_gr_av_to_method [all...] |
/src/sys/dev/i2c/ |
nxt2k.c | 268 uint8_t *blob; local in function:nxt2k4_load_firmware 282 blob = firmware_malloc(fwsize); 283 if ( blob == NULL ) { 289 error = firmware_read(fh, 0, blob, fwsize); 292 firmware_free(blob, fwsize); 300 crc = nxt2k_crc_ccit(crc, blob[position]); 325 nxt2k_writedata(nxt, 0x2c, &blob[position], xfercnt); 341 firmware_free(blob, fwsize);
|
/src/sys/net/npf/ |
npf_ctl.c | 147 const void *blob; local in function:npf_mk_table 171 blob = dnvlist_get_binary(req, "data", &size, NULL, 0); 172 if (type == NPF_TABLE_CONST && (blob == NULL || size == 0)) { 178 t = npf_table_create(name, (unsigned)tid, type, blob, size);
|
/src/usr.sbin/npf/npfctl/ |
npfctl.c | 298 void *blob; local in function:npfctl_import 315 blob = mmap(NULL, blen, PROT_READ, MAP_FILE | MAP_PRIVATE, fd, 0); 316 if (blob == MAP_FAILED) { 319 ncf = npf_config_import(blob, blen); 320 munmap(blob, blen);
|
npf_build.c | 143 void *blob; local in function:npfctl_config_save 147 blob = npf_config_export(ncf, &len); 148 if (!blob) { 154 if (write(fd, blob, len) != (ssize_t)len) { 157 free(blob);
|
/src/sys/compat/linux/common/ |
linux_misc.h | 166 unsigned long blob[128 / sizeof(long)]; member in struct:linux_getcpu_cache
|
/src/sys/arch/usermode/usermode/ |
pmap.c | 1231 char *blob; local in function:pmap_zero_page 1238 blob = thunk_mmap(pm_tmp_p0, PAGE_SIZE, 1242 if (blob != pm_tmp_p0) 1245 memset(blob, 0, PAGE_SIZE); 1247 thunk_munmap(blob, PAGE_SIZE);
|
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_color.c | 410 const struct drm_property_blob *blob) 424 if (blob) { 425 const struct drm_color_lut *lut = blob->data; 511 const struct drm_property_blob *blob) 514 const struct drm_color_lut *lut = blob->data; 515 int i, lut_size = drm_color_lut_size(blob); 542 const struct drm_property_blob *blob) 545 const struct drm_color_lut *lut = blob->data; 546 int i, lut_size = drm_color_lut_size(blob); 578 const struct drm_property_blob *blob, 675 const struct drm_property_blob *blob = gamma_lut ?: degamma_lut; local in function:ivb_load_luts 698 const struct drm_property_blob *blob = gamma_lut ?: degamma_lut; local in function:bdw_load_luts 831 const struct drm_property_blob *blob = crtc_state->hw.gamma_lut; local in function:icl_program_gamma_superfine_segment 863 const struct drm_property_blob *blob = crtc_state->hw.gamma_lut; local in function:icl_program_gamma_multi_segment 1657 struct drm_property_blob *blob; local in function:i9xx_read_lut_8 1701 struct drm_property_blob *blob; local in function:i965_read_lut_10p6 1753 struct drm_property_blob *blob; local in function:chv_read_cgm_lut 1795 struct drm_property_blob *blob; local in function:ilk_read_lut_10 1842 struct drm_property_blob *blob; local in function:glk_read_lut_10 [all...] |
/src/sys/fs/udf/ |
udf_strat_rmw.c | 112 void *blob; member in struct:udf_eccline 232 pool_put(&priv->ecclineblob_pool, eccline->blob); 443 eccline_blob = eccline->blob; 451 eccline->blob = eccline_blob; 455 /* initialise eccline blob */ 457 memset(eccline->blob, 0, blobsize); 566 mem = ((uint8_t *) eccline->blob) + eccsect * lb_size; 664 (((uint8_t *) eccline->blob) + eccsect * sector_size); 740 (((uint8_t *) eccline->blob) + eccsect * sector_size); 828 src = (uint8_t *) eccline->blob + [all...] |
udf.h | 156 #define UDF_C_ABSOLUTE 0 /* blob to write at absolute */ 233 uint8_t *blob; /* allocated */ member in struct:udf_bitmap
|
udf_allocation.c | 818 uint8_t *blob; local in function:udf_search_free_vatloc 825 blob = malloc(lb_size, M_UDFTEMP, M_WAITOK); 838 error = udf_vat_read(ump->vat_node, blob, chunk, 846 udf_rw32_lbmap = *((uint32_t *) (blob + entry * 4)); 872 free(blob, M_UDFTEMP); 1531 sbd = (struct space_bitmap_desc *) bitmap->blob; 1547 bitmap->blob = (uint8_t *) new_sbd;
|
/src/sys/arch/sparc64/sparc64/ |
autoconf.c | 1238 prop_data_t blob; local in function:device_register 1276 blob = prop_data_create_copy(eaddr, ETHER_ADDR_LEN); 1277 prop_dictionary_set(dict, "mac-address", blob); 1278 prop_object_release(blob);
|
/src/sys/dev/scsipi/ |
cd.c | 3355 uint8_t blob[MS5LEN], *page5; local in function:mmc_do_close_or_finalise 3366 memset(blob, 0, sizeof(blob)); 3367 page5 = blob+8; 3371 (void *)blob, sizeof(blob), flags, CDRETRIES, 20000); 3382 (void *)blob, sizeof(blob), flags, CDRETRIES, 20000); 3542 uint8_t blob[MS5LEN]; local in function:mmc_setup_writeparams 3551 memset(blob, 0, sizeof(blob)) [all...] |