Home
last modified time | relevance | path

Searched refs:core (Results 1 - 25 of 1477) sorted by relevance

12345678910>>...60

/third_party/mesa3d/src/mapi/glapi/gen/
H A Dapiexec.py28 Each of the four attributes of this class, compatibility, core, es1, and
32 compatibility=20 and core=31.
35 API. For example, glNewList was removed from core profiles, so
36 compatibility=10 and core=None.
42 core: [31, )
48 def __init__(self, compatibility=None, core=None, es1=None, es2=None):
53 if core is not None:
54 assert isinstance(core, int)
55 assert core >= 31
66 self.core
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/runner/
H A DglcKhronosMustpassGl.hpp25 { glu::ApiType::core(4, 6), "master", DE_NULL, "unspecified", 1, DE_NULL, 64, 64 },
26 { glu::ApiType::core(4, 6), "master", DE_NULL, "unspecified", 2, DE_NULL, 113, 47 },
27 { glu::ApiType::core(4, 6), "master", DE_NULL, "unspecified", 3, "rgba8888d24s8", 64, -1 },
28 { glu::ApiType::core(4, 6), "master", DE_NULL, "unspecified", 3, "rgba8888d24s8", -1, 64 },
29 { glu::ApiType::core(4, 5), "master", DE_NULL, "unspecified", 1, DE_NULL, 64, 64 },
30 { glu::ApiType::core(4, 5), "master", DE_NULL, "unspecified", 2, DE_NULL, 113, 47 },
31 { glu::ApiType::core(4, 5), "master", DE_NULL, "unspecified", 3, "rgba8888d24s8", 64, -1 },
32 { glu::ApiType::core(4, 5), "master", DE_NULL, "unspecified", 3, "rgba8888d24s8", -1, 64 },
33 { glu::ApiType::core(4, 4), "master", DE_NULL, "unspecified", 1, DE_NULL, 64, 64 },
34 { glu::ApiType::core(
[all...]
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/common/
H A Dmali_gp.c31 struct mali_gp_core *core = NULL; in mali_gp_create() local
34 MALI_DEBUG_PRINT(MALI_KERNEL_LEVEL_INFORMATOIN, ("Mali GP: Creating Mali GP core: %s\n", resource->description)); in mali_gp_create()
36 core = mali_osk_malloc(sizeof(struct mali_gp_core)); in mali_gp_create()
37 if (core != NULL) { in mali_gp_create()
38 if (MALI_OSK_ERR_OK == mali_hw_core_create(&core->hw_core, resource, MALIGP2_REGISTER_ADDRESS_SPACE_SIZE)) { in mali_gp_create()
41 ret = mali_gp_reset(core); in mali_gp_create()
43 ret = mali_group_add_gp_core(group, core); in mali_gp_create()
46 core->irq = in mali_gp_create()
48 mali_gp_irq_probe_ack, core, resource->description); in mali_gp_create()
49 if (core in mali_gp_create()
75 mali_gp_delete(struct mali_gp_core *core) mali_gp_delete() argument
85 mali_gp_stop_bus(struct mali_gp_core *core) mali_gp_stop_bus() argument
92 mali_gp_stop_bus_wait(struct mali_gp_core *core) mali_gp_stop_bus_wait() argument
116 mali_gp_hard_reset(struct mali_gp_core *core) mali_gp_hard_reset() argument
149 mali_gp_reset_async(struct mali_gp_core *core) mali_gp_reset_async() argument
160 mali_gp_reset_wait(struct mali_gp_core *core) mali_gp_reset_wait() argument
186 mali_gp_reset(struct mali_gp_core *core) mali_gp_reset() argument
192 mali_gp_job_start(struct mali_gp_core *core, struct mali_gp_job *job) mali_gp_job_start() argument
260 mali_gp_resume_with_new_heap(struct mali_gp_core *core, u32 start_addr, u32 end_addr) mali_gp_resume_with_new_heap() argument
285 mali_gp_core_get_version(struct mali_gp_core *core) mali_gp_core_get_version() argument
299 struct mali_gp_core *core = (struct mali_gp_core *)data; mali_gp_irq_probe_trigger() local
308 struct mali_gp_core *core = (struct mali_gp_core *)data; mali_gp_irq_probe_ack() local
323 mali_gp_dump_state(struct mali_gp_core *core, char *buf, u32 size) mali_gp_dump_state() argument
333 mali_gp_update_performance_counters(struct mali_gp_core *core, struct mali_gp_job *job) mali_gp_update_performance_counters() argument
[all...]
H A Dmali_hw_core.c17 mali_osk_errcode_t mali_hw_core_create(struct mali_hw_core *core, const _mali_osk_resource_t *resource, u32 reg_size) in mali_hw_core_create() argument
19 core->phys_addr = resource->base; in mali_hw_core_create()
20 core->phys_offset = resource->base - mali_osk_resource_base_address(); in mali_hw_core_create()
21 core->description = resource->description; in mali_hw_core_create()
22 core->size = reg_size; in mali_hw_core_create()
24 MALI_DEBUG_ASSERT(core->phys_offset < core->phys_addr); in mali_hw_core_create()
26 if (MALI_OSK_ERR_OK == _mali_osk_mem_reqregion(core->phys_addr, core->size, core in mali_hw_core_create()
43 mali_hw_core_delete(struct mali_hw_core *core) mali_hw_core_delete() argument
[all...]
H A Dmali_pp.c39 struct mali_pp_core *core = NULL; in mali_pp_create() local
41 MALI_DEBUG_PRINT(MALI_KERNEL_LEVEL_INFORMATOIN, ("Mali PP: Creating Mali PP core: %s\n", resource->description)); in mali_pp_create()
42 MALI_DEBUG_PRINT(MALI_KERNEL_LEVEL_INFORMATOIN, ("Mali PP: Base address of PP core: 0x%x\n", resource->base)); in mali_pp_create()
45 MALI_PRINT_ERROR(("Mali PP: Too many PP core objects created\n")); in mali_pp_create()
49 core = mali_osk_calloc(1, sizeof(struct mali_pp_core)); in mali_pp_create()
50 if (core != NULL) { in mali_pp_create()
51 core->core_id = mali_global_num_pp_cores; in mali_pp_create()
52 core->bcast_id = bcast_id; in mali_pp_create()
54 if (MALI_OSK_ERR_OK == mali_hw_core_create(&core->hw_core, resource, MALI200_REG_SIZEOF_REGISTER_BANK)) { in mali_pp_create()
58 ret = mali_pp_reset(core); in mali_pp_create()
97 mali_pp_delete(struct mali_pp_core *core) mali_pp_delete() argument
126 mali_pp_stop_bus(struct mali_pp_core *core) mali_pp_stop_bus() argument
133 mali_pp_stop_bus_wait(struct mali_pp_core *core) mali_pp_stop_bus_wait() argument
205 mali_pp_hard_reset(struct mali_pp_core *core) mali_pp_hard_reset() argument
244 mali_pp_reset_async(struct mali_pp_core *core) mali_pp_reset_async() argument
256 mali_pp_reset_wait(struct mali_pp_core *core) mali_pp_reset_wait() argument
283 mali_pp_reset(struct mali_pp_core *core) mali_pp_reset() argument
289 mali_pp_job_start(struct mali_pp_core *core, struct mali_pp_job *job, u32 sub_job, mali_bool restart_virtual) mali_pp_job_start() argument
410 mali_pp_core_get_version(struct mali_pp_core *core) mali_pp_core_get_version() argument
433 struct mali_pp_core *core = (struct mali_pp_core *)data; mali_pp_irq_probe_trigger() local
441 struct mali_pp_core *core = (struct mali_pp_core *)data; mali_pp_irq_probe_ack() local
487 mali_pp_dump_state(struct mali_pp_core *core, char *buf, u32 size) mali_pp_dump_state() argument
[all...]
H A Dmali_pp.h24 * Definition of the PP core struct
25 * Used to track a PP core in the system.
30 u32 core_id; /**< Unique core ID */
39 void mali_pp_delete(struct mali_pp_core *core);
41 void mali_pp_stop_bus(struct mali_pp_core *core);
42 mali_osk_errcode_t mali_pp_stop_bus_wait(struct mali_pp_core *core);
43 void mali_pp_reset_async(struct mali_pp_core *core);
44 mali_osk_errcode_t mali_pp_reset_wait(struct mali_pp_core *core);
45 mali_osk_errcode_t mali_pp_reset(struct mali_pp_core *core);
46 mali_osk_errcode_t mali_pp_hard_reset(struct mali_pp_core *core);
52 mali_pp_core_get_id(struct mali_pp_core *core) mali_pp_core_get_id() argument
58 mali_pp_core_get_bcast_id(struct mali_pp_core *core) mali_pp_core_get_bcast_id() argument
85 mali_pp_core_description(struct mali_pp_core *core) mali_pp_core_description() argument
90 mali_pp_get_interrupt_result(struct mali_pp_core *core) mali_pp_get_interrupt_result() argument
103 mali_pp_get_rawstat(struct mali_pp_core *core) mali_pp_get_rawstat() argument
109 mali_pp_is_active(struct mali_pp_core *core) mali_pp_is_active() argument
115 mali_pp_mask_all_interrupts(struct mali_pp_core *core) mali_pp_mask_all_interrupts() argument
120 mali_pp_enable_interrupts(struct mali_pp_core *core) mali_pp_enable_interrupts() argument
125 mali_pp_write_addr_renderer_list(struct mali_pp_core *core, struct mali_pp_job *job, u32 subjob) mali_pp_write_addr_renderer_list() argument
131 mali_pp_write_addr_stack(struct mali_pp_core *core, struct mali_pp_job *job) mali_pp_write_addr_stack() argument
[all...]
H A Dmali_gp.h23 * Definition of the GP core struct
24 * Used to track a GP core in the system.
35 void mali_gp_delete(struct mali_gp_core *core);
37 void mali_gp_stop_bus(struct mali_gp_core *core);
38 mali_osk_errcode_t mali_gp_stop_bus_wait(struct mali_gp_core *core);
39 void mali_gp_reset_async(struct mali_gp_core *core);
40 mali_osk_errcode_t mali_gp_reset_wait(struct mali_gp_core *core);
41 void mali_gp_hard_reset(struct mali_gp_core *core);
42 mali_osk_errcode_t mali_gp_reset(struct mali_gp_core *core);
44 void mali_gp_job_start(struct mali_gp_core *core, struc
57 mali_gp_core_description(struct mali_gp_core *core) mali_gp_core_description() argument
62 mali_gp_get_interrupt_result(struct mali_gp_core *core) mali_gp_get_interrupt_result() argument
81 mali_gp_get_rawstat(struct mali_gp_core *core) mali_gp_get_rawstat() argument
87 mali_gp_is_active(struct mali_gp_core *core) mali_gp_is_active() argument
93 mali_gp_mask_all_interrupts(struct mali_gp_core *core) mali_gp_mask_all_interrupts() argument
98 mali_gp_enable_interrupts(struct mali_gp_core *core, enum mali_interrupt_result exceptions) mali_gp_enable_interrupts() argument
115 mali_gp_read_plbu_alloc_start_addr(struct mali_gp_core *core) mali_gp_read_plbu_alloc_start_addr() argument
[all...]
H A Dmali_hw_core.h20 * This struct is embedded inside all core specific structs.
34 * GP and PP core translate their int_stat/rawstat into one of these
45 mali_osk_errcode_t mali_hw_core_create(struct mali_hw_core *core, const _mali_osk_resource_t *resource, u32 reg_size);
46 void mali_hw_core_delete(struct mali_hw_core *core);
48 MALI_STATIC_INLINE u32 mali_hw_core_register_read(struct mali_hw_core *core, u32 relative_address) in mali_hw_core_register_read() argument
51 read_val = _mali_osk_mem_ioread32(core->mapped_registers, relative_address); in mali_hw_core_register_read()
52 MALI_DEBUG_PRINT(MALI_KERNEL_LEVEL_MATE, ("register_read for core %s, relative addr=0x%04X, val=0x%08X\n", in mali_hw_core_register_read()
53 core->description, relative_address, read_val)); in mali_hw_core_register_read()
57 MALI_STATIC_INLINE void mali_hw_core_register_write_relaxed(struct mali_hw_core *core, u32 relative_address, in mali_hw_core_register_write_relaxed() argument
60 MALI_DEBUG_PRINT(MALI_KERNEL_LEVEL_MATE, ("register_write_relaxed for core in mali_hw_core_register_write_relaxed()
68 mali_hw_core_register_write_relaxed_conditional(struct mali_hw_core *core, u32 relative_address, u32 new_val, const u32 old_val) mali_hw_core_register_write_relaxed_conditional() argument
78 mali_hw_core_register_write(struct mali_hw_core *core, u32 relative_address, u32 new_val) mali_hw_core_register_write() argument
85 mali_hw_core_register_write_array_relaxed(struct mali_hw_core *core, u32 relative_address, u32 *write_array, u32 nr_of_regs) mali_hw_core_register_write_array_relaxed() argument
102 mali_hw_core_register_write_array_relaxed_conditional(struct mali_hw_core *core, u32 relative_address, u32 *write_array, u32 nr_of_regs, const u32 *old_array) mali_hw_core_register_write_array_relaxed_conditional() argument
[all...]
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/common/
H A Dmali_gp.c30 struct mali_gp_core *core = NULL; in mali_gp_create() local
33 MALI_DEBUG_PRINT(2, ("Mali GP: Creating Mali GP core: %s\n", resource->description)); in mali_gp_create()
35 core = _mali_osk_malloc(sizeof(struct mali_gp_core)); in mali_gp_create()
36 if (NULL != core) { in mali_gp_create()
37 if (_MALI_OSK_ERR_OK == mali_hw_core_create(&core->hw_core, resource, MALIGP2_REGISTER_ADDRESS_SPACE_SIZE)) { in mali_gp_create()
40 ret = mali_gp_reset(core); in mali_gp_create()
43 ret = mali_group_add_gp_core(group, core); in mali_gp_create()
46 core->irq = _mali_osk_irq_init(resource->irq, in mali_gp_create()
51 core, in mali_gp_create()
53 if (NULL != core in mali_gp_create()
77 mali_gp_delete(struct mali_gp_core *core) mali_gp_delete() argument
87 mali_gp_stop_bus(struct mali_gp_core *core) mali_gp_stop_bus() argument
94 mali_gp_stop_bus_wait(struct mali_gp_core *core) mali_gp_stop_bus_wait() argument
117 mali_gp_hard_reset(struct mali_gp_core *core) mali_gp_hard_reset() argument
150 mali_gp_reset_async(struct mali_gp_core *core) mali_gp_reset_async() argument
162 mali_gp_reset_wait(struct mali_gp_core *core) mali_gp_reset_wait() argument
189 mali_gp_reset(struct mali_gp_core *core) mali_gp_reset() argument
195 mali_gp_job_start(struct mali_gp_core *core, struct mali_gp_job *job) mali_gp_job_start() argument
257 mali_gp_resume_with_new_heap(struct mali_gp_core *core, u32 start_addr, u32 end_addr) mali_gp_resume_with_new_heap() argument
282 mali_gp_core_get_version(struct mali_gp_core *core) mali_gp_core_get_version() argument
296 struct mali_gp_core *core = (struct mali_gp_core *)data; mali_gp_irq_probe_trigger() local
305 struct mali_gp_core *core = (struct mali_gp_core *)data; mali_gp_irq_probe_ack() local
320 mali_gp_dump_state(struct mali_gp_core *core, char *buf, u32 size) mali_gp_dump_state() argument
330 mali_gp_update_performance_counters(struct mali_gp_core *core, struct mali_gp_job *job) mali_gp_update_performance_counters() argument
[all...]
H A Dmali_pp.c37 struct mali_pp_core *core = NULL; in mali_pp_create() local
39 MALI_DEBUG_PRINT(2, ("Mali PP: Creating Mali PP core: %s\n", resource->description)); in mali_pp_create()
40 MALI_DEBUG_PRINT(2, ("Mali PP: Base address of PP core: 0x%x\n", resource->base)); in mali_pp_create()
43 MALI_PRINT_ERROR(("Mali PP: Too many PP core objects created\n")); in mali_pp_create()
47 core = _mali_osk_calloc(1, sizeof(struct mali_pp_core)); in mali_pp_create()
48 if (NULL != core) { in mali_pp_create()
49 core->core_id = mali_global_num_pp_cores; in mali_pp_create()
50 core->bcast_id = bcast_id; in mali_pp_create()
52 if (_MALI_OSK_ERR_OK == mali_hw_core_create(&core->hw_core, resource, MALI200_REG_SIZEOF_REGISTER_BANK)) { in mali_pp_create()
56 ret = mali_pp_reset(core); in mali_pp_create()
98 mali_pp_delete(struct mali_pp_core *core) mali_pp_delete() argument
127 mali_pp_stop_bus(struct mali_pp_core *core) mali_pp_stop_bus() argument
134 mali_pp_stop_bus_wait(struct mali_pp_core *core) mali_pp_stop_bus_wait() argument
203 mali_pp_hard_reset(struct mali_pp_core *core) mali_pp_hard_reset() argument
241 mali_pp_reset_async(struct mali_pp_core *core) mali_pp_reset_async() argument
252 mali_pp_reset_wait(struct mali_pp_core *core) mali_pp_reset_wait() argument
280 mali_pp_reset(struct mali_pp_core *core) mali_pp_reset() argument
286 mali_pp_job_start(struct mali_pp_core *core, struct mali_pp_job *job, u32 sub_job, mali_bool restart_virtual) mali_pp_job_start() argument
391 mali_pp_core_get_version(struct mali_pp_core *core) mali_pp_core_get_version() argument
414 struct mali_pp_core *core = (struct mali_pp_core *)data; mali_pp_irq_probe_trigger() local
422 struct mali_pp_core *core = (struct mali_pp_core *)data; mali_pp_irq_probe_ack() local
494 mali_pp_dump_state(struct mali_pp_core *core, char *buf, u32 size) mali_pp_dump_state() argument
[all...]
H A Dmali_hw_core.c16 _mali_osk_errcode_t mali_hw_core_create(struct mali_hw_core *core, const _mali_osk_resource_t *resource, u32 reg_size) in mali_hw_core_create() argument
18 core->phys_addr = resource->base; in mali_hw_core_create()
19 core->phys_offset = resource->base - _mali_osk_resource_base_address(); in mali_hw_core_create()
20 core->description = resource->description; in mali_hw_core_create()
21 core->size = reg_size; in mali_hw_core_create()
23 MALI_DEBUG_ASSERT(core->phys_offset < core->phys_addr); in mali_hw_core_create()
25 if (_MALI_OSK_ERR_OK == _mali_osk_mem_reqregion(core->phys_addr, core->size, core in mali_hw_core_create()
40 mali_hw_core_delete(struct mali_hw_core *core) mali_hw_core_delete() argument
[all...]
H A Dmali_pp.h23 * Definition of the PP core struct
24 * Used to track a PP core in the system.
29 u32 core_id; /**< Unique core ID */
37 void mali_pp_delete(struct mali_pp_core *core);
39 void mali_pp_stop_bus(struct mali_pp_core *core);
40 _mali_osk_errcode_t mali_pp_stop_bus_wait(struct mali_pp_core *core);
41 void mali_pp_reset_async(struct mali_pp_core *core);
42 _mali_osk_errcode_t mali_pp_reset_wait(struct mali_pp_core *core);
43 _mali_osk_errcode_t mali_pp_reset(struct mali_pp_core *core);
44 _mali_osk_errcode_t mali_pp_hard_reset(struct mali_pp_core *core);
50 mali_pp_core_get_id(struct mali_pp_core *core) mali_pp_core_get_id() argument
56 mali_pp_core_get_bcast_id(struct mali_pp_core *core) mali_pp_core_get_bcast_id() argument
82 mali_pp_core_description(struct mali_pp_core *core) mali_pp_core_description() argument
87 mali_pp_get_interrupt_result(struct mali_pp_core *core) mali_pp_get_interrupt_result() argument
100 mali_pp_get_rawstat(struct mali_pp_core *core) mali_pp_get_rawstat() argument
108 mali_pp_is_active(struct mali_pp_core *core) mali_pp_is_active() argument
114 mali_pp_mask_all_interrupts(struct mali_pp_core *core) mali_pp_mask_all_interrupts() argument
119 mali_pp_enable_interrupts(struct mali_pp_core *core) mali_pp_enable_interrupts() argument
124 mali_pp_write_addr_renderer_list(struct mali_pp_core *core, struct mali_pp_job *job, u32 subjob) mali_pp_write_addr_renderer_list() argument
132 mali_pp_write_addr_stack(struct mali_pp_core *core, struct mali_pp_job *job) mali_pp_write_addr_stack() argument
[all...]
H A Dmali_gp.h22 * Definition of the GP core struct
23 * Used to track a GP core in the system.
34 void mali_gp_delete(struct mali_gp_core *core);
36 void mali_gp_stop_bus(struct mali_gp_core *core);
37 _mali_osk_errcode_t mali_gp_stop_bus_wait(struct mali_gp_core *core);
38 void mali_gp_reset_async(struct mali_gp_core *core);
39 _mali_osk_errcode_t mali_gp_reset_wait(struct mali_gp_core *core);
40 void mali_gp_hard_reset(struct mali_gp_core *core);
41 _mali_osk_errcode_t mali_gp_reset(struct mali_gp_core *core);
43 void mali_gp_job_start(struct mali_gp_core *core, struc
56 mali_gp_core_description(struct mali_gp_core *core) mali_gp_core_description() argument
61 mali_gp_get_interrupt_result(struct mali_gp_core *core) mali_gp_get_interrupt_result() argument
82 mali_gp_get_rawstat(struct mali_gp_core *core) mali_gp_get_rawstat() argument
89 mali_gp_is_active(struct mali_gp_core *core) mali_gp_is_active() argument
95 mali_gp_mask_all_interrupts(struct mali_gp_core *core) mali_gp_mask_all_interrupts() argument
100 mali_gp_enable_interrupts(struct mali_gp_core *core, enum mali_interrupt_result exceptions) mali_gp_enable_interrupts() argument
122 mali_gp_read_plbu_alloc_start_addr(struct mali_gp_core *core) mali_gp_read_plbu_alloc_start_addr() argument
[all...]
H A Dmali_hw_core.h19 * This struct is embedded inside all core specific structs.
33 * GP and PP core translate their int_stat/rawstat into one of these
44 _mali_osk_errcode_t mali_hw_core_create(struct mali_hw_core *core, const _mali_osk_resource_t *resource, u32 reg_size);
45 void mali_hw_core_delete(struct mali_hw_core *core);
47 MALI_STATIC_INLINE u32 mali_hw_core_register_read(struct mali_hw_core *core, u32 relative_address) in mali_hw_core_register_read() argument
50 read_val = _mali_osk_mem_ioread32(core->mapped_registers, relative_address); in mali_hw_core_register_read()
51 MALI_DEBUG_PRINT(6, ("register_read for core %s, relative addr=0x%04X, val=0x%08X\n", in mali_hw_core_register_read()
52 core->description, relative_address, read_val)); in mali_hw_core_register_read()
56 MALI_STATIC_INLINE void mali_hw_core_register_write_relaxed(struct mali_hw_core *core, u32 relative_address, u32 new_val) in mali_hw_core_register_write_relaxed() argument
58 MALI_DEBUG_PRINT(6, ("register_write_relaxed for core in mali_hw_core_register_write_relaxed()
66 mali_hw_core_register_write_relaxed_conditional(struct mali_hw_core *core, u32 relative_address, u32 new_val, const u32 old_val) mali_hw_core_register_write_relaxed_conditional() argument
75 mali_hw_core_register_write(struct mali_hw_core *core, u32 relative_address, u32 new_val) mali_hw_core_register_write() argument
82 mali_hw_core_register_write_array_relaxed(struct mali_hw_core *core, u32 relative_address, u32 *write_array, u32 nr_of_regs) mali_hw_core_register_write_array_relaxed() argument
97 mali_hw_core_register_write_array_relaxed_conditional(struct mali_hw_core *core, u32 relative_address, u32 *write_array, u32 nr_of_regs, const u32 *old_array) mali_hw_core_register_write_array_relaxed_conditional() argument
[all...]
/third_party/elfutils/tests/
H A Dbacktrace-subr.sh45 # when the core was generated through the tests backtrace --gencore.
115 testfiles backtrace.$arch.{exec,core}
117 echo ./backtrace ./backtrace.$arch.{exec,core}
118 testrun ${abs_builddir}/backtrace -e ./backtrace.$arch.exec --core=./backtrace.$arch.core 1>backtrace.$arch.bt 2>backtrace.$arch.err || true
120 check_unsupported backtrace.$arch.err backtrace.$arch.core
121 check_all backtrace.$arch.{bt,err} backtrace.$arch.core
122 check_backtracegen backtrace.$arch.bt backtrace.$arch.core
138 # Backtrace core file.
141 # systemd-coredump/coredumpctl doesn't seem to like concurrent core dump
[all...]
/third_party/mesa3d/src/etnaviv/drm/
H A Detnaviv_gpu.c30 static uint64_t get_param(struct etna_device *dev, uint32_t core, uint32_t param) in get_param() argument
33 .pipe = core, in get_param()
47 struct etna_gpu *etna_gpu_new(struct etna_device *dev, unsigned int core) in etna_gpu_new() argument
58 gpu->core = core; in etna_gpu_new()
60 gpu->model = get_param(dev, core, ETNAVIV_PARAM_GPU_MODEL); in etna_gpu_new()
61 gpu->revision = get_param(dev, core, ETNAVIV_PARAM_GPU_REVISION); in etna_gpu_new()
85 unsigned int core = gpu->core; in etna_gpu_get_param() local
95 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_ in etna_gpu_get_param()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
H A Dthread_test.cpp21 marl::Thread::Core core(int idx) { in core() function
32 core(10), in TEST_F()
33 core(20), in TEST_F()
34 core(30), in TEST_F()
35 core(40), in TEST_F()
44 core(10), in TEST_F()
45 core(20), in TEST_F()
46 core(30), in TEST_F()
47 core(40), in TEST_F()
54 core(2 in TEST_F()
[all...]
/third_party/mesa3d/bin/pick/
H A Dcore_test.py21 """Tests for pick's core data structures and routines."""
30 from . import core namespace
36 def unnominated_commit(self) -> 'core.Commit':
37 return core.Commit('abc123', 'sub: A commit', main_sha='45678')
40 def nominated_commit(self) -> 'core.Commit':
41 return core.Commit('abc123', 'sub: A commit', True,
42 core.NominationType.CC, core.Resolution.UNRESOLVED)
46 def test_not_nominated(self, unnominated_commit: 'core.Commit'):
50 'nomination_type': None, 'resolution': core
[all...]
/third_party/libdrm/etnaviv/
H A Detnaviv_gpu.c30 static uint64_t get_param(struct etna_device *dev, uint32_t core, uint32_t param) in get_param() argument
33 .pipe = core, in get_param()
47 drm_public struct etna_gpu *etna_gpu_new(struct etna_device *dev, unsigned int core) in etna_gpu_new() argument
58 gpu->core = core; in etna_gpu_new()
60 gpu->model = get_param(dev, core, ETNAVIV_PARAM_GPU_MODEL); in etna_gpu_new()
61 gpu->revision = get_param(dev, core, ETNAVIV_PARAM_GPU_REVISION); in etna_gpu_new()
85 unsigned int core = gpu->core; in etna_gpu_get_param() local
95 *value = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_ in etna_gpu_get_param()
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Duse-core.rs8 extern crate core;
13 pub a: ::core::ffi::c_int,
14 pub b: ::core::ffi::c_int,
15 pub bar: *mut ::core::ffi::c_void,
19 const UNINIT: ::core::mem::MaybeUninit<foo> = in bindgen_test_layout_foo()
20 ::core::mem::MaybeUninit::uninit(); in bindgen_test_layout_foo()
23 ::core::mem::size_of::<foo>(), in bindgen_test_layout_foo()
28 ::core::mem::align_of::<foo>(), in bindgen_test_layout_foo()
33 unsafe { ::core::ptr::addr_of!((*ptr).a) as usize - ptr as usize }, in bindgen_test_layout_foo()
38 unsafe { ::core in bindgen_test_layout_foo()
[all...]
H A Dcore_ffi_c.rs8 pub type c_char = ::core::ffi::c_char;
9 pub type c_double = ::core::ffi::c_double;
10 pub type c_float = ::core::ffi::c_float;
11 pub type c_int = ::core::ffi::c_int;
12 pub type c_long = ::core::ffi::c_long;
13 pub type c_longlong = ::core::ffi::c_longlong;
14 pub type c_schar = ::core::ffi::c_schar;
15 pub type c_short = ::core::ffi::c_short;
16 pub type c_uchar = ::core::ffi::c_uchar;
17 pub type c_uint = ::core
[all...]
/third_party/lwip/src/
H A DFilelists.mk33 COREFILES=$(LWIPDIR)/core/init.c \
34 $(LWIPDIR)/core/def.c \
35 $(LWIPDIR)/core/dns.c \
36 $(LWIPDIR)/core/inet_chksum.c \
37 $(LWIPDIR)/core/ip.c \
38 $(LWIPDIR)/core/mem.c \
39 $(LWIPDIR)/core/memp.c \
40 $(LWIPDIR)/core/netif.c \
41 $(LWIPDIR)/core/pbuf.c \
42 $(LWIPDIR)/core/ra
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dclient.c32 #include <pulsecore/core-subscribe.h>
35 #include <pulsecore/core-util.h>
54 pa_client *pa_client_new(pa_core *core, pa_client_new_data *data) { in pa_client_new() argument
57 pa_core_assert_ref(core); in pa_client_new()
60 if (pa_hook_fire(&core->hooks[PA_CORE_HOOK_CLIENT_NEW], data) < 0) in pa_client_new()
64 c->core = core; in pa_client_new()
72 pa_assert_se(pa_idxset_put(core->clients, c, &c->index) >= 0); in pa_client_new()
75 pa_subscription_post(core, PA_SUBSCRIPTION_EVENT_CLIENT|PA_SUBSCRIPTION_EVENT_NEW, c->index); in pa_client_new()
77 pa_hook_fire(&core in pa_client_new()
85 pa_core *core; pa_client_free() local
[all...]
H A Dcore.c38 #include <pulsecore/core-rtclock.h>
39 #include <pulsecore/core-util.h>
41 #include <pulsecore/core-scache.h>
42 #include <pulsecore/core-subscribe.h>
48 #include "core.h"
98 pa_assert(pa_safe_streq(object_path, "/core")); in core_message_handler()
153 pa_message_handler_register(c, "/core", "Core message handler", core_message_handler, (void *) c); in pa_core_new()
252 pa_message_handler_unregister(c, "/core"); in core_free()
279 void pa_core_set_configured_default_sink(pa_core *core, const char *sink) { in pa_core_set_configured_default_sink() argument
282 pa_assert(core); in pa_core_set_configured_default_sink()
301 pa_core_set_configured_default_source(pa_core *core, const char *source) pa_core_set_configured_default_source() argument
327 pa_core *core; compare_sinks() local
361 pa_core_update_default_sink(pa_core *core) pa_core_update_default_sink() argument
408 pa_core *core; compare_sources() local
452 pa_core_update_default_source(pa_core *core) pa_core_update_default_source() argument
489 pa_core_set_exit_idle_time(pa_core *core, int time) pa_core_set_exit_idle_time() argument
[all...]
/third_party/rust/crates/libc/src/
H A Dlib.rs36 extern crate rustc_std_workspace_core as core;
38 use core::iter;
40 use core::ops;
42 use core::option;
50 use core::ffi;
52 use core::fmt;
54 use core::hash;
56 use core::num;
58 use core::mem;
61 use core
[all...]

Completed in 8 milliseconds

12345678910>>...60