Home
last modified time | relevance | path

Searched refs:comp_data (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/buildroot/package/enlightenment/
H A D0008-wl-Support-subsurface-stacking.patch35 + if (ec->comp_data->sub.restacking == EINA_TRUE) return;
36 + ec->comp_data->sub.restacking = EINA_TRUE;
38 - if (!ec->comp_data->sub.list) return;
40 EINA_LIST_FOREACH(ec->comp_data->sub.list, l, sec)
42 - sec = eina_list_last_data_get(ec->comp_data->sub.list);
44 - EINA_LIST_REVERSE_FOREACH_SAFE(ec->comp_data->sub.list, l, ll, sec)
63 + ec->comp_data->sub.restacking = EINA_FALSE;
79 + if (ec->comp_data->sub.data)
80 + _e_comp_wl_evas_restack(ec->comp_data->sub.data->parent);
87 ec->comp_data->moved = 1;
[all …]
H A D0010-HACK-wl-Fix-embed-waylandsink-issue.patch18 if ((ec->comp_data->shell.surface) && (ec->comp_data->shell.map))
19 ec->comp_data->shell.map(ec->comp_data->shell.surface);
21 - (ec->comp_data->sub.data && ec->comp_data->sub.data->parent->comp_data->mapp…
22 + (ec->comp_data->sub.data/* && ec->comp_data->sub.data->parent->comp_data->ma…
H A D0005-xdg-shell-v6-Fix-crash-when-unbind-early.patch18 client = wl_resource_get_client(ec->comp_data->surface);
28 if (ec->comp_data->shell.surface)
29 e_shell_surface_destroy(ec->comp_data->shell.surface);
36 client = wl_resource_get_client(ec->comp_data->surface);
46 if (ec->comp_data->shell.surface)
47 e_shell_surface_destroy(ec->comp_data->shell.surface);
H A D0009-HACK-xdg-shell-Allow-setting-position-only-in-set_wi.patch22 - EINA_RECTANGLE_SET(&ec->comp_data->shell.window, x, y, w, h);
25 + ec->comp_data->shell.window.x = x;
26 + ec->comp_data->shell.window.y = y;
30 + EINA_RECTANGLE_SET(&ec->comp_data->shell.window, x, y, w, h);
H A D0007-HACK-wl-Support-setting-size-in-wl_subsurface_positi.patch22 if (!(sdata = ec->comp_data->sub.data)) return;
45 if (!(sdata = ec->comp_data->sub.data)) return;
H A D0004-xdg-shell-Avoid-conflict-with-xdg-shell-v6.patch27 shd = ec->comp_data->shell.data;
/OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlxfw/
H A Dmlxfw_mfa2.c536 struct mlxfw_mfa2_comp_data *comp_data; in mlxfw_mfa2_file_component_get() local
552 comp_data = vzalloc(sizeof(*comp_data) + comp_buf_size); in mlxfw_mfa2_file_component_get()
553 if (!comp_data) in mlxfw_mfa2_file_component_get()
555 comp_data->comp.data_size = comp_size; in mlxfw_mfa2_file_component_get()
556 comp_data->comp.index = be16_to_cpu(comp->identifier); in mlxfw_mfa2_file_component_get()
558 comp_data->buff); in mlxfw_mfa2_file_component_get()
564 if (memcmp(comp_data->buff, mlxfw_mfa2_comp_magic, in mlxfw_mfa2_file_component_get()
571 comp_data->comp.data = comp_data->buff + mlxfw_mfa2_comp_magic_len; in mlxfw_mfa2_file_component_get()
572 return &comp_data->comp; in mlxfw_mfa2_file_component_get()
574 vfree(comp_data); in mlxfw_mfa2_file_component_get()
[all …]
/OK3568_Linux_fs/kernel/drivers/rtc/
H A Drtc-tps65910.c203 unsigned char comp_data[NUM_COMP_REGS]; in tps65910_rtc_set_calibration() local
226 comp_data[0] = (u16)value & 0xFF; in tps65910_rtc_set_calibration()
227 comp_data[1] = ((u16)value >> 8) & 0xFF; in tps65910_rtc_set_calibration()
231 comp_data, NUM_COMP_REGS); in tps65910_rtc_set_calibration()
248 unsigned char comp_data[NUM_COMP_REGS]; in tps65910_rtc_get_calibration() local
264 ret = regmap_bulk_read(tps->regmap, TPS65910_RTC_COMP_LSB, comp_data, in tps65910_rtc_get_calibration()
271 value = (u16)comp_data[0] | ((u16)comp_data[1] << 8); in tps65910_rtc_get_calibration()
/OK3568_Linux_fs/kernel/tools/testing/selftests/filesystems/incfs/
H A Dincfs_test.c380 ssize_t ZSTD_compress_default(char *data, char *comp_data, size_t data_size, in ZSTD_compress_default() argument
383 return ZSTD_compress(comp_data, comp_size, data, data_size, 1); in ZSTD_compress_default()
390 uint8_t comp_data[2 * INCFS_DATA_FILE_BLOCK_SIZE]; in emit_test_blocks() local
430 (char *)comp_data, block_size, in emit_test_blocks()
431 ARRAY_SIZE(comp_data)); in emit_test_blocks()
441 memcpy(current_data, comp_data, comp_size); in emit_test_blocks()
445 size_t comp_size = ZSTD_compress(comp_data, in emit_test_blocks()
446 ARRAY_SIZE(comp_data), data, block_size, in emit_test_blocks()
457 memcpy(current_data, comp_data, comp_size); in emit_test_blocks()