Searched refs:new_res (Results 1 – 6 of 6) sorted by relevance
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | bss.c | 475 const struct wpa_scan_res *new_res, u32 ie) in are_ies_equal() argument 485 new_ie = wpa_scan_get_vendor_ie(new_res, ie); in are_ies_equal() 490 new_ie_buff = wpa_scan_get_vendor_ie_multi(new_res, ie); in are_ies_equal() 497 new_ie = wpa_scan_get_ie(new_res, ie); in are_ies_equal() 531 const struct wpa_scan_res *new_res) in wpa_bss_compare_res() argument 534 int caps_diff = old->caps ^ new_res->caps; in wpa_bss_compare_res() 536 if (old->freq != new_res->freq) in wpa_bss_compare_res() 539 if (old->level != new_res->level) in wpa_bss_compare_res() 548 if (old->ie_len == new_res->ie_len && in wpa_bss_compare_res() 549 os_memcmp(old + 1, new_res + 1, old->ie_len) == 0) in wpa_bss_compare_res() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | bss.c | 484 const struct wpa_scan_res *new_res, u32 ie) in are_ies_equal() argument 494 new_ie = wpa_scan_get_vendor_ie(new_res, ie); in are_ies_equal() 499 new_ie_buff = wpa_scan_get_vendor_ie_multi(new_res, ie); in are_ies_equal() 506 new_ie = wpa_scan_get_ie(new_res, ie); in are_ies_equal() 540 const struct wpa_scan_res *new_res) in wpa_bss_compare_res() argument 543 int caps_diff = old->caps ^ new_res->caps; in wpa_bss_compare_res() 545 if (old->freq != new_res->freq) in wpa_bss_compare_res() 548 if (old->level != new_res->level) in wpa_bss_compare_res() 557 if (old->ie_len == new_res->ie_len && in wpa_bss_compare_res() 558 os_memcmp(wpa_bss_ie_ptr(old), new_res + 1, old->ie_len) == 0) in wpa_bss_compare_res() [all …]
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
D | iris_resource.c | 1563 struct iris_resource *new_res = in iris_reallocate_resource_inplace() local 1566 assert(iris_bo_is_real(new_res->bo)); in iris_reallocate_resource_inplace() 1576 iris_copy_region(&ice->blorp, batch, &new_res->base.b, 0, 0, 0, 0, in iris_reallocate_resource_inplace() 1586 iris_copy_region(&ice->blorp, batch, &new_res->base.b, l, 0, 0, 0, in iris_reallocate_resource_inplace() 1591 iris_flush_resource(&ice->ctx, &new_res->base.b); in iris_reallocate_resource_inplace() 1599 old_res->bo = new_res->bo; in iris_reallocate_resource_inplace() 1600 old_res->aux.surf = new_res->aux.surf; in iris_reallocate_resource_inplace() 1601 old_res->aux.bo = new_res->aux.bo; in iris_reallocate_resource_inplace() 1602 old_res->aux.offset = new_res->aux.offset; in iris_reallocate_resource_inplace() 1603 old_res->aux.extra_aux.surf = new_res->aux.extra_aux.surf; in iris_reallocate_resource_inplace() [all …]
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_vdpau.c | 215 struct pipe_resource *new_res = NULL; in st_vdpau_map_surface() local 224 new_res = screen->resource_from_handle(screen, res, &whandle, usage); in st_vdpau_map_surface() 229 res = new_res; in st_vdpau_map_surface()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_context.c | 1298 struct zink_resource *new_res = zink_resource(buffer); in zink_set_constant_buffer() local 1299 if (new_res) { in zink_set_constant_buffer() 1300 if (new_res != res) { in zink_set_constant_buffer() 1302 new_res->ubo_bind_count[shader == PIPE_SHADER_COMPUTE]++; in zink_set_constant_buffer() 1303 new_res->ubo_bind_mask[shader] |= BITFIELD_BIT(index); in zink_set_constant_buffer() 1304 new_res->gfx_barrier |= zink_pipeline_flags_from_pipe_stage(shader); in zink_set_constant_buffer() 1305 new_res->barrier_access[shader == PIPE_SHADER_COMPUTE] |= VK_ACCESS_UNIFORM_READ_BIT; in zink_set_constant_buffer() 1306 update_res_bind_count(ctx, new_res, shader == PIPE_SHADER_COMPUTE, false); in zink_set_constant_buffer() 1308 zink_batch_resource_usage_set(&ctx->batch, new_res, false); in zink_set_constant_buffer() 1309 zink_resource_buffer_barrier(ctx, new_res, VK_ACCESS_UNIFORM_READ_BIT, in zink_set_constant_buffer() [all …]
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | buffer9.c | 462 … struct pipe_resource *new_res = nine_resource_create_with_retry(device, screen, &This->base.info); in NineBuffer9_Lock() local 463 if (new_res) { in NineBuffer9_Lock() 465 pipe_resource_reference(&This->base.resource, new_res); in NineBuffer9_Lock() 466 pipe_resource_reference(&new_res, NULL); in NineBuffer9_Lock()
|