HomeSort by: relevance | last modified time | path
    Searched defs:new_blob (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/
drm_property.c 706 struct drm_property_blob *new_blob = NULL; local in function:drm_property_replace_global_blob
715 new_blob = drm_property_create_blob(dev, length, data);
716 if (IS_ERR(new_blob))
717 return PTR_ERR(new_blob);
723 new_blob ?
724 new_blob->base.id : 0);
730 *replace = new_blob;
735 drm_property_blob_put(new_blob);
743 * @new_blob: the new blob to replace with
748 struct drm_property_blob *new_blob)
    [all...]
drm_atomic_uapi.c 399 struct drm_property_blob *new_blob = NULL; local in function:drm_atomic_replace_property_blob_from_id
402 new_blob = drm_property_lookup_blob(dev, blob_id);
403 if (new_blob == NULL)
407 new_blob->length != expected_size) {
408 drm_property_blob_put(new_blob);
412 new_blob->length % expected_elem_size != 0) {
413 drm_property_blob_put(new_blob);
418 *replaced |= drm_property_replace_blob(blob, new_blob);
419 drm_property_blob_put(new_blob);
  /src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/
amdgpu_dm.c 4703 struct drm_property_blob *new_blob = new_state->hdr_output_metadata; local in function:is_hdr_metadata_different
4705 if (old_blob != new_blob) {
4706 if (old_blob && new_blob &&
4707 old_blob->length == new_blob->length)
4708 return memcmp(old_blob->data, new_blob->data,

Completed in 17 milliseconds