OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ZALLOC
(Results
1 - 25
of
153
) sorted by relevancy
1
2
3
4
5
6
7
/src/external/gpl3/gdb/dist/sim/ppc/
sim_callbacks.h
119
void *
zalloc
122
#define
ZALLOC
(TYPE) (TYPE*)
zalloc
(sizeof (TYPE))
cap.c
42
return
ZALLOC
(cap);
106
cap_mapping *new_map =
ZALLOC
(cap_mapping);
hw_cpu.c
99
hw_cpu_device *hw_cpu =
ZALLOC
(hw_cpu_device);
ld-cache.c
53
(*table) =
ZALLOC
(cache_table);
os_emul.c
97
chosen_emulation =
ZALLOC
(os_emul);
ld-insn.c
85
insn_fields *fields =
ZALLOC
(insn_fields);
88
fields->first =
ZALLOC
(insn_field);
94
fields->last =
ZALLOC
(insn_field);
148
new_field =
ZALLOC
(insn_field);
155
new_field->val_string = (char*)
zalloc
(strlen_val+1);
169
new_field->pos_string = (char*)
zalloc
(strlen_pos+1);
238
model *new_model =
ZALLOC
(model);
265
insn *ptr =
ZALLOC
(insn);
280
insn *new_function =
ZALLOC
(insn);
302
insn *new_insn =
ZALLOC
(insn)
[
all
...]
hw_memory.c
103
hw_memory_device *hw_memory =
ZALLOC
(hw_memory_device);
132
available =
zalloc
(sizeof_available);
203
hw_memory_chunk *new_chunk =
ZALLOC
(hw_memory_chunk);
221
new_chunk =
ZALLOC
(hw_memory_chunk);
351
hw_memory_chunk *next_chunk =
ZALLOC
(hw_memory_chunk);
368
hw_memory_chunk *next_chunk =
ZALLOC
(hw_memory_chunk);
/src/external/gpl3/gdb.old/dist/sim/ppc/
sim_callbacks.h
119
void *
zalloc
122
#define
ZALLOC
(TYPE) (TYPE*)
zalloc
(sizeof (TYPE))
cap.c
42
return
ZALLOC
(cap);
106
cap_mapping *new_map =
ZALLOC
(cap_mapping);
hw_cpu.c
99
hw_cpu_device *hw_cpu =
ZALLOC
(hw_cpu_device);
ld-cache.c
53
(*table) =
ZALLOC
(cache_table);
os_emul.c
97
chosen_emulation =
ZALLOC
(os_emul);
ld-insn.c
85
insn_fields *fields =
ZALLOC
(insn_fields);
88
fields->first =
ZALLOC
(insn_field);
94
fields->last =
ZALLOC
(insn_field);
148
new_field =
ZALLOC
(insn_field);
155
new_field->val_string = (char*)
zalloc
(strlen_val+1);
169
new_field->pos_string = (char*)
zalloc
(strlen_pos+1);
238
model *new_model =
ZALLOC
(model);
265
insn *ptr =
ZALLOC
(insn);
280
insn *new_function =
ZALLOC
(insn);
302
insn *new_insn =
ZALLOC
(insn)
[
all
...]
/src/external/gpl3/gdb.old/dist/sim/common/
hw-alloc.c
54
struct hw_alloc_data *memory =
ZALLOC
(struct hw_alloc_data);
55
memory->alloc =
zalloc
(size);
64
struct hw_alloc_data *memory =
ZALLOC
(struct hw_alloc_data);
65
memory->alloc =
zalloc
(size);
sim-utils.h
27
void *
zalloc
(unsigned long size);
29
#define
ZALLOC
(TYPE) (TYPE*)
zalloc
(sizeof (TYPE))
30
#define NZALLOC(TYPE,N) (TYPE*)
zalloc
(sizeof (TYPE) * (N))
sim-module.c
141
STATE_MODULES (sd) =
ZALLOC
(struct module_list);
297
MODULE_INIT_LIST *l =
ZALLOC
(MODULE_INIT_LIST);
319
MODULE_RESUME_LIST *l =
ZALLOC
(MODULE_RESUME_LIST);
341
MODULE_SUSPEND_LIST *l =
ZALLOC
(MODULE_SUSPEND_LIST);
363
MODULE_UNINSTALL_LIST *l =
ZALLOC
(MODULE_UNINSTALL_LIST);
380
MODULE_INFO_LIST *l =
ZALLOC
(MODULE_INFO_LIST);
hw-handles.c
170
struct hw_handle_mapping *new_map =
ZALLOC
(struct hw_handle_mapping);
192
struct hw_handle_mapping *new_map =
ZALLOC
(struct hw_handle_mapping);
/src/external/gpl3/gdb/dist/sim/common/
hw-alloc.c
54
struct hw_alloc_data *memory =
ZALLOC
(struct hw_alloc_data);
55
memory->alloc =
zalloc
(size);
64
struct hw_alloc_data *memory =
ZALLOC
(struct hw_alloc_data);
65
memory->alloc =
zalloc
(size);
sim-utils.h
27
void *
zalloc
(unsigned long size);
29
#define
ZALLOC
(TYPE) (TYPE*)
zalloc
(sizeof (TYPE))
30
#define NZALLOC(TYPE,N) (TYPE*)
zalloc
(sizeof (TYPE) * (N))
sim-module.c
141
STATE_MODULES (sd) =
ZALLOC
(struct module_list);
297
MODULE_INIT_LIST *l =
ZALLOC
(MODULE_INIT_LIST);
319
MODULE_RESUME_LIST *l =
ZALLOC
(MODULE_RESUME_LIST);
341
MODULE_SUSPEND_LIST *l =
ZALLOC
(MODULE_SUSPEND_LIST);
363
MODULE_UNINSTALL_LIST *l =
ZALLOC
(MODULE_UNINSTALL_LIST);
380
MODULE_INFO_LIST *l =
ZALLOC
(MODULE_INFO_LIST);
hw-handles.c
170
struct hw_handle_mapping *new_map =
ZALLOC
(struct hw_handle_mapping);
192
struct hw_handle_mapping *new_map =
ZALLOC
(struct hw_handle_mapping);
/src/external/gpl3/gdb.old/dist/sim/igen/
misc.h
78
#define
ZALLOC
(TYPE) ((TYPE*)
zalloc
(sizeof(TYPE)))
79
#define NZALLOC(TYPE,N) ((TYPE*)
zalloc
(sizeof(TYPE) * (N)))
81
extern void *
zalloc
(long size);
ld-cache.c
61
cache_entry *new_rule =
ZALLOC
(cache_entry);
/src/external/gpl3/gdb/dist/sim/igen/
misc.h
78
#define
ZALLOC
(TYPE) ((TYPE*)
zalloc
(sizeof(TYPE)))
79
#define NZALLOC(TYPE,N) ((TYPE*)
zalloc
(sizeof(TYPE) * (N)))
81
extern void *
zalloc
(long size);
ld-cache.c
61
cache_entry *new_rule =
ZALLOC
(cache_entry);
Completed in 30 milliseconds
1
2
3
4
5
6
7
Indexes created Wed Aug 26 00:26:28 UTC 2026