Home
last modified time | relevance | path

Searched refs:type (Results 1 – 25 of 3333) sorted by relevance

12345678910>>...134

/openbmc/libpldm/abi/x86_64/
H A Dgcc.dump49 'type' => '174'
62 'type' => '174'
75 'type' => '162'
88 'type' => '162'
101 'type' => '150'
114 'type' => '150'
126 'type' => '150'
129 'name' => 'type',
130 'type' => '150'
134 'type'
[all...]
/openbmc/u-boot/arch/powerpc/include/asm/arch-mpc83xx/
H A Dsoc.h21 bool mpc83xx_has_sdhc(int type) in mpc83xx_has_sdhc() argument
23 return (type == SOC_MPC8308) || in mpc83xx_has_sdhc()
24 (type == SOC_MPC8309) || in mpc83xx_has_sdhc()
25 (type == SOC_MPC8379); in mpc83xx_has_sdhc()
28 bool mpc83xx_has_tsec(int type) in mpc83xx_has_tsec() argument
30 return (type == SOC_MPC8308) || in mpc83xx_has_tsec()
31 (type == SOC_MPC8313) || in mpc83xx_has_tsec()
32 (type == SOC_MPC8315) || in mpc83xx_has_tsec()
33 (type == SOC_MPC8349) || in mpc83xx_has_tsec()
34 (type == SOC_MPC8379); in mpc83xx_has_tsec()
[all …]
/openbmc/u-boot/include/fsl-mc/
H A Dfsl_dprc.h112 MC_RSP_OP(cmd, 3, 0, 8, char, obj_desc->type[0]);\
113 MC_RSP_OP(cmd, 3, 8, 8, char, obj_desc->type[1]);\
114 MC_RSP_OP(cmd, 3, 16, 8, char, obj_desc->type[2]);\
115 MC_RSP_OP(cmd, 3, 24, 8, char, obj_desc->type[3]);\
116 MC_RSP_OP(cmd, 3, 32, 8, char, obj_desc->type[4]);\
117 MC_RSP_OP(cmd, 3, 40, 8, char, obj_desc->type[5]);\
118 MC_RSP_OP(cmd, 3, 48, 8, char, obj_desc->type[6]);\
119 MC_RSP_OP(cmd, 3, 56, 8, char, obj_desc->type[7]);\
120 MC_RSP_OP(cmd, 4, 0, 8, char, obj_desc->type[8]);\
121 MC_RSP_OP(cmd, 4, 8, 8, char, obj_desc->type[9]);\
[all …]
/openbmc/qemu/fsdev/
H A Dqemu-fsdev-opts.c21 .type = QEMU_OPT_STRING,
24 .type = QEMU_OPT_STRING,
27 .type = QEMU_OPT_STRING,
30 .type = QEMU_OPT_STRING,
33 .type = QEMU_OPT_BOOL,
36 .type = QEMU_OPT_STRING,
39 .type = QEMU_OPT_STRING,
42 .type = QEMU_OPT_NUMBER,
45 .type = QEMU_OPT_NUMBER,
48 .type = QEMU_OPT_NUMBER,
[all …]
/openbmc/openbmc/poky/meta/recipes-extended/libaio/libaio/
H A Dlibaio_fix_for_mips_syscalls.patch9 @@ -76,7 +76,7 @@ type fname(atype a) \
12 return (type) __v0; \
13 - return (type) -1; \
14 + return (type) (-(__v0)); \
17 #define io_syscall2(type,fname,sname,atype,a,btype,b) \
18 @@ -100,7 +100,7 @@ type fname(atype a, btype b) \
21 return (type) __v0; \
22 - return (type) -1; \
23 + return (type) (-(__v0)); \
26 #define io_syscall3(type,fname,sname,atype,a,btype,b,ctype,c) \
[all …]
/openbmc/u-boot/api/
H A Dapi_storage.c39 int type; /* "external" type: DT_STOR_{IDE,USB,etc} */ member
55 specs[ENUM_IDE].type = DEV_TYP_STOR | DT_STOR_IDE; in dev_stor_init()
62 specs[ENUM_MMC].type = DEV_TYP_STOR | DT_STOR_MMC; in dev_stor_init()
69 specs[ENUM_SATA].type = DEV_TYP_STOR | DT_STOR_SATA; in dev_stor_init()
76 specs[ENUM_SCSI].type = DEV_TYP_STOR | DT_STOR_SCSI; in dev_stor_init()
83 specs[ENUM_USB].type = DEV_TYP_STOR | DT_STOR_USB; in dev_stor_init()
98 static int dev_stor_get(int type, int *more, struct device_info *di) in dev_stor_get() argument
106 if (specs[type].name == NULL) in dev_stor_get()
111 for (i = 0; i < specs[type].max_dev; i++) { in dev_stor_get()
113 (void *)blk_get_dev(specs[type].name, i)) { in dev_stor_get()
[all …]
/openbmc/qemu/tests/multiboot/
H A Dmmap.out10 0x0 - 0x9fc00: type 1 [entry size: 20]
11 0x9fc00 - 0xa0000: type 2 [entry size: 20]
12 0xf0000 - 0x100000: type 2 [entry size: 20]
13 0x100000 - 0x7fe0000: type 1 [entry size: 20]
14 0x7fe0000 - 0x8000000: type 2 [entry size: 20]
15 0xfffc0000 - 0x100000000: type 2 [entry size: 20]
28 0x0 - 0x9fc00: type 1 [entry size: 20]
29 0x9fc00 - 0xa0000: type 2 [entry size: 20]
30 0xf0000 - 0x100000: type 2 [entry size: 20]
31 0x100000 - 0x11a000: type 1 [entry size: 20]
[all …]
/openbmc/qemu/util/
H A Dqemu-timer.c53 QEMUClockType type; member
81 * @type: type of clock
83 * Translate a clock type into a pointer to QEMUClock object.
87 static inline QEMUClock *qemu_clock_ptr(QEMUClockType type) in qemu_clock_ptr() argument
89 return &qemu_clocks[type]; in qemu_clock_ptr()
97 QEMUTimerList *timerlist_new(QEMUClockType type, in timerlist_new() argument
102 QEMUClock *clock = qemu_clock_ptr(type); in timerlist_new()
124 static void qemu_clock_init(QEMUClockType type, QEMUTimerListNotifyCB *notify_cb) in qemu_clock_init() argument
126 QEMUClock *clock = qemu_clock_ptr(type); in qemu_clock_init()
137 qemu_clock_use_for_deadline(QEMUClockType type) qemu_clock_use_for_deadline() argument
142 qemu_clock_notify(QEMUClockType type) qemu_clock_notify() argument
158 qemu_clock_enable(QEMUClockType type,bool enabled) qemu_clock_enable() argument
178 qemu_clock_has_timers(QEMUClockType type) qemu_clock_has_timers() argument
202 qemu_clock_expired(QEMUClockType type) qemu_clock_expired() argument
251 qemu_clock_deadline_ns_all(QEMUClockType type,int attr_mask) qemu_clock_deadline_ns_all() argument
351 timer_init_full(QEMUTimer * ts,QEMUTimerListGroup * timer_list_group,QEMUClockType type,int scale,int attributes,QEMUTimerCB * cb,void * opaque) timer_init_full() argument
575 qemu_clock_run_timers(QEMUClockType type) qemu_clock_run_timers() argument
583 QEMUClockType type; timerlistgroup_init() local
591 QEMUClockType type; timerlistgroup_deinit() local
599 QEMUClockType type; timerlistgroup_run_timers() local
610 QEMUClockType type; timerlistgroup_deadline_ns() local
620 qemu_clock_get_ns(QEMUClockType type) qemu_clock_get_ns() argument
642 QEMUClockType type; init_clocks() local
660 QEMUClockType type; qemu_clock_run_all_timers() local
[all...]
/openbmc/u-boot/scripts/kconfig/
H A Dexpr.c20 e->type = E_SYMBOL; in expr_alloc_symbol()
25 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) in expr_alloc_one() argument
28 e->type = type; in expr_alloc_one()
33 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument
36 e->type = type; in expr_alloc_two()
42 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) in expr_alloc_comp() argument
45 e->type = type; in expr_alloc_comp()
74 switch (org->type) { in expr_copy()
97 fprintf(stderr, "can't copy type %d\n", e->type); in expr_copy()
111 switch (e->type) { in expr_free()
[all …]
/openbmc/qemu/include/qemu/
H A Dcoroutine-tls.h92 #define QEMU_DECLARE_CO_TLS(type, var) \ argument
93 __attribute__((noinline)) type get_##var(void); \
94 __attribute__((noinline)) void set_##var(type v); \
95 __attribute__((noinline)) type *get_ptr_##var(void);
118 #define QEMU_DEFINE_CO_TLS(type, var) \ argument
119 static __thread type co_tls_##var; \
120 type get_##var(void) { asm volatile(""); return co_tls_##var; } \
121 void set_##var(type v) { asm volatile(""); co_tls_##var = v; } \
122 type *get_ptr_##var(void) \
123 { type *ptr = &co_tls_##var; asm volatile("" : "+rm" (ptr)); return ptr; }
[all …]
H A Dthrottle-options.h38 .type = QEMU_OPT_NUMBER,\
42 .type = QEMU_OPT_NUMBER,\
46 .type = QEMU_OPT_NUMBER,\
50 .type = QEMU_OPT_NUMBER,\
54 .type = QEMU_OPT_NUMBER,\
58 .type = QEMU_OPT_NUMBER,\
62 .type = QEMU_OPT_NUMBER,\
66 .type = QEMU_OPT_NUMBER,\
70 .type = QEMU_OPT_NUMBER,\
74 .type = QEMU_OPT_NUMBER,\
[all …]
/openbmc/qemu/scripts/
H A Dcocci-macro-file.h40 #define typeof_field(type, field) typeof(((type *)0)->field) argument
45 #define QLIST_HEAD(name, type) \ argument
47 struct type *lh_first; /* first element */ \
53 #define QLIST_ENTRY(type) \ argument
55 struct type *le_next; /* next element */ \
56 struct type **le_prev; /* address of previous next element */ \
62 #define QSLIST_HEAD(name, type) \ argument
64 struct type *slh_first; /* first element */ \
70 #define QSLIST_ENTRY(type) \ argument
72 struct type *sle_next; /* next element */ \
[all …]
/openbmc/u-boot/include/
H A Dmemalign.h71 #define ALLOC_ALIGN_BUFFER_PAD(type, name, size, align, pad) \ argument
72 char __##name[ROUND(PAD_SIZE((size) * sizeof(type), pad), align) \
75 type *name = (type *)ALIGN((uintptr_t)__##name, align)
76 #define ALLOC_ALIGN_BUFFER(type, name, size, align) \ argument
77 ALLOC_ALIGN_BUFFER_PAD(type, name, size, align, 1)
78 #define ALLOC_CACHE_ALIGN_BUFFER_PAD(type, name, size, pad) \ argument
79 ALLOC_ALIGN_BUFFER_PAD(type, name, size, ARCH_DMA_MINALIGN, pad)
80 #define ALLOC_CACHE_ALIGN_BUFFER(type, name, size) \ argument
81 ALLOC_ALIGN_BUFFER(type, name, size, ARCH_DMA_MINALIGN)
88 #define DEFINE_ALIGN_BUFFER(type, name, size, align) \ argument
[all …]
/openbmc/qemu/tests/tcg/arm/
H A Dhello-arm.c12 #define __syscall_return(type, res) \ argument
14 return (type) (res); \
17 #define _syscall0(type,name) \ argument
18 type name(void) { \
24 __syscall_return(type,__res); \
27 #define _syscall1(type,name,type1,arg1) \ argument
28 type name(type1 arg1) { \
37 __syscall_return(type,__res); \
40 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
41 type name(type1 arg1,type2 arg2) { \
[all …]
/openbmc/u-boot/arch/mips/include/asm/
H A Dio.h232 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) \ argument
234 static inline void pfx##write##bwlq(type val, \
237 volatile type *__mem; \
238 type __val; \
246 if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) \
249 type __tmp; \
265 static inline type pfx##read##bwlq(const volatile void __iomem *mem) \
267 volatile type *__mem; \
268 type __val; \
272 if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) \
[all …]
/openbmc/phosphor-ipmi-flash/bmc/firmware-handler/test/
H A Dfirmware_json_unittest.cpp26 "type" : "unsupported", in TEST()
31 "type" : "systemd", in TEST()
35 "type" : "fileSystemdVerify", in TEST()
40 "type" : "reboot" in TEST()
54 "type" : "file", in TEST()
59 "type" : "superfun", in TEST()
63 "type" : "fileSystemdVerify", in TEST()
68 "type" : "reboot" in TEST()
83 "type" : "file", in TEST()
88 "type" : "systemd", in TEST()
[all …]
/openbmc/qemu/hw/core/
H A Dresettable.c23 static void resettable_phase_enter(Object *obj, void *opaque, ResetType type);
24 static void resettable_phase_hold(Object *obj, void *opaque, ResetType type);
25 static void resettable_phase_exit(Object *obj, void *opaque, ResetType type);
42 void resettable_reset(Object *obj, ResetType type) in resettable_reset() argument
44 trace_resettable_reset(obj, type); in resettable_reset()
45 resettable_assert_reset(obj, type); in resettable_reset()
46 resettable_release_reset(obj, type); in resettable_reset()
49 void resettable_assert_reset(Object *obj, ResetType type) in resettable_assert_reset() argument
51 trace_resettable_reset_assert_begin(obj, type); in resettable_assert_reset()
55 resettable_phase_enter(obj, NULL, type); in resettable_assert_reset()
[all …]
/openbmc/phosphor-snmp/test/
H A Dtest_error_notification.cpp38 EXPECT_EQ(ASN_UNSIGNED, oidList[0].type); in TEST_F()
40 EXPECT_EQ(ASN_OPAQUE_U64, oidList[1].type); in TEST_F()
41 EXPECT_EQ(ASN_INTEGER, oidList[2].type); in TEST_F()
42 EXPECT_EQ(ASN_OCTET_STR, oidList[3].type); in TEST_F()
47 auto type = getASNType<uint32_t>(); in TEST_F() local
48 EXPECT_EQ(ASN_UNSIGNED, type); in TEST_F()
50 type = getASNType<uint64_t>(); in TEST_F()
51 EXPECT_EQ(ASN_OPAQUE_U64, type); in TEST_F()
53 type = getASNType<int32_t>(); in TEST_F()
54 EXPECT_EQ(ASN_INTEGER, type); in TEST_F()
[all …]
/openbmc/u-boot/include/asm-generic/
H A Dioctl.h65 #define _IOC(dir,type,nr,size) \ argument
67 ((type) << _IOC_TYPESHIFT) | \
83 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0) argument
84 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) argument
85 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument
86 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument
87 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) argument
88 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) argument
89 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
/openbmc/dbus-sensors/
H A Dmeson.options3 type: 'feature',
9 type: 'feature',
15 type: 'feature',
21 type: 'feature',
27 type: 'feature',
33 type: 'feature',
39 type: 'feature',
45 type: 'feature',
51 type: 'feature',
57 type: 'feature',
[all …]
/openbmc/phosphor-dbus-interfaces/
H A Dmeson.options1 option('generate_md', type: 'boolean', value: true)
2 option('libphosphor_dbus', type: 'boolean', value: true)
3 option('data_com_ampere', type: 'boolean', value: true)
4 option('data_com_google', type: 'boolean', value: true)
5 option('data_com_ibm', type: 'boolean', value: true)
6 option('data_com_intel', type: 'boolean', value: true)
7 option('data_com_meta', type: 'boolean', value: true)
8 option('data_com_qualcomm', type: 'boolean', value: true)
9 option('data_org_freedesktop', type: 'boolean', value: true)
10 option('data_org_open_power', type: 'boolean', value: true)
[all …]
/openbmc/qemu/ui/
H A Dclipboard.c123 uint32_t type; in qemu_clipboard_update() local
125 .type = QEMU_CLIPBOARD_UPDATE_INFO, in qemu_clipboard_update()
130 for (type = 0; type < QEMU_CLIPBOARD_TYPE__COUNT; type++) { in qemu_clipboard_update()
136 if (info->types[type].available && !info->types[type].data) { in qemu_clipboard_update()
178 uint32_t type; in qemu_clipboard_info_unref() local
189 for (type = 0; type < QEMU_CLIPBOARD_TYPE__COUNT; type++) { in qemu_clipboard_info_unref()
190 g_free(info->types[type].data); in qemu_clipboard_info_unref()
196 QemuClipboardType type) in qemu_clipboard_request() argument
198 if (info->types[type].data || in qemu_clipboard_request()
199 info->types[type].requested || in qemu_clipboard_request()
[all …]
/openbmc/qemu/tests/unit/
H A Dtest-util-filemonitor.c45 int type; member
234 { .type = QFILE_MONITOR_TEST_OP_ADD_WATCH, in test_file_monitor_events()
236 { .type = QFILE_MONITOR_TEST_OP_ADD_WATCH, in test_file_monitor_events()
238 { .type = QFILE_MONITOR_TEST_OP_ADD_WATCH, in test_file_monitor_events()
242 { .type = QFILE_MONITOR_TEST_OP_CREATE, in test_file_monitor_events()
244 { .type = QFILE_MONITOR_TEST_OP_EVENT, in test_file_monitor_events()
247 { .type = QFILE_MONITOR_TEST_OP_EVENT, in test_file_monitor_events()
252 { .type = QFILE_MONITOR_TEST_OP_CREATE, in test_file_monitor_events()
254 { .type = QFILE_MONITOR_TEST_OP_EVENT, in test_file_monitor_events()
257 { .type = QFILE_MONITOR_TEST_OP_EVENT, in test_file_monitor_events()
[all …]
/openbmc/libmctp/
H A Dmeson.options3 type: 'array',
10 type: 'boolean',
16 type: 'boolean',
22 type: 'feature',
27 type: 'boolean',
33 type: 'feature',
38 type: 'boolean',
42 option('stdio', type: 'feature', description: 'Support logging to stdio')
43 option('syslog', type: 'feature', description: 'Support logging to syslog')
44 option('tests', type: 'feature', value: 'enabled', description: 'Build tests')
[all …]
/openbmc/openbmc/poky/meta/recipes-bsp/u-boot/
H A Du-boot.inc53 for type in ${UBOOT_CONFIG}; do
57 uboot_compile_config $i $config $type
76 type=$3
84 uboot_compile_config_copy_binary $config $type $binary
92 cp ${B}/${config}/u-boot-initial-env ${B}/${config}/u-boot-initial-env-${type}
98 type=$2
101 cp ${B}/${config}/${binary} ${B}/${config}/${UBOOT_BINARYNAME}-${type}.${UBOOT_SUFFIX}
118 for type in ${UBOOT_CONFIG}; do
122 uboot_install_config $config $type
138 for type in ${UBOOT_CONFIG}; do
[all …]

12345678910>>...134