Home
last modified time | relevance | path

Searched refs:ir (Results 1 – 25 of 108) sorted by relevance

12345

/openbmc/qemu/linux-user/alpha/
H A Dtarget_cpu.h26 env->ir[IR_SP] = newsp; in cpu_clone_regs_child()
28 env->ir[IR_V0] = 0; in cpu_clone_regs_child()
29 env->ir[IR_A3] = 0; in cpu_clone_regs_child()
30 env->ir[IR_A4] = 1; /* OSF/1 secondary return: child */ in cpu_clone_regs_child()
41 env->ir[IR_A4] = 0; in cpu_clone_regs_parent()
52 return state->ir[IR_SP]; in get_sp_from_cpustate()
H A Dsignal.c80 __put_user(env->ir[i], &sc->sc_regs[i]); in setup_sigcontext()
104 __get_user(env->ir[i], &sc->sc_regs[i]); in restore_sigcontext()
154 env->ir[IR_RA] = r26; in setup_frame()
155 env->ir[IR_PV] = env->pc = ka->_sa_handler; in setup_frame()
156 env->ir[IR_A0] = sig; in setup_frame()
157 env->ir[IR_A1] = 0; in setup_frame()
158 env->ir[IR_A2] = frame_addr + offsetof(struct target_sigframe, sc); in setup_frame()
159 env->ir[IR_SP] = frame_addr; in setup_frame()
201 env->ir[IR_RA] = r26; in setup_rt_frame()
202 env->ir[IR_PV] = env->pc = ka->_sa_handler; in setup_rt_frame()
[all …]
/openbmc/openbmc/poky/meta/recipes-gnome/gobject-introspection/
H A Dgobject-introspection_1.84.0.bb27 MULTILIB_SCRIPTS = "${PN}-tools:${bindir}/g-ir-annotation-tool ${PN}-tools:${bindir}/g-ir-scanner"
35 # on the fly by g-ir-scanner and a native version of itself to run
50 -Dgi_cross_binary_wrapper=${B}/g-ir-scanner-qemuwrapper \
51 -Dgi_cross_ldd_wrapper=${B}/g-ir-scanner-lddwrapper \
61 sed -i -e '1s,#!.*,#!${USRBINPATH}/env python3,' ${S}/tools/g-ir-tool-template.in
68 cat > ${B}/g-ir-scanner-qemuwrapper << EOF
81 chmod +x ${B}/g-ir-scanner-qemuwrapper
83 …# Write out a wrapper for g-ir-scanner itself, which will be used when building introspection files
87 cat > ${B}/g-ir-scanner-wrapper << EOF
89 # This prevents g-ir-scanner from writing cache data to user's HOME dir
[all …]
/openbmc/libcper/tests/
H A Dfuzz_cper_buf_to_ir.c7 json_object *ir = cper_buf_to_ir(data, size); in LLVMFuzzerTestOneInput() local
8 if (ir == NULL) { in LLVMFuzzerTestOneInput()
12 int valid = schema_validate_from_file(ir, 0 /* single_section */, in LLVMFuzzerTestOneInput()
15 printf("JSON: %s\n", json_object_to_json_string(ir)); in LLVMFuzzerTestOneInput()
18 json_object_put(ir); in LLVMFuzzerTestOneInput()
H A Dir-tests.c95 json_object *ir = NULL; in cper_create_examples() local
148 ir = cper_to_ir(record); in cper_create_examples()
149 if (ir == NULL) { in cper_create_examples()
156 json_object_to_file_ext(info->json_out, ir, JSON_C_TO_STRING_PRETTY); in cper_create_examples()
157 json_object_put(ir); in cper_create_examples()
261 json_object *ir = cper_buf_to_ir(cper_bin, cper_bin_len); in cper_example_section_ir_test() local
262 if (ir == NULL) { in cper_example_section_ir_test()
281 const char *str = json_object_to_json_string(ir); in cper_example_section_ir_test()
290 ir, JSON_C_TO_STRING_PRETTY)); in cper_example_section_ir_test()
294 assert(json_object_equal(ir, expected)); in cper_example_section_ir_test()
[all …]
/openbmc/libcper/cli-app/
H A Dcper-convert.c137 json_object *ir; in cper_to_json() local
139 ir = cper_buf_single_section_to_ir((UINT8 *)fbuff, readsize); in cper_to_json()
141 ir = cper_buf_to_ir((UINT8 *)fbuff, fsize); in cper_to_json()
147 json_object_to_json_string_ext(ir, JSON_C_TO_STRING_PRETTY); in cper_to_json()
179 json_object *ir = json_object_from_file(in_file); in json_to_cper() local
180 if (ir == NULL) { in json_to_cper()
191 json_object_put(ir); in json_to_cper()
197 if (json_object_object_get(ir, "header") != NULL) { in json_to_cper()
198 ir_to_cper(ir, cper_file); in json_to_cper()
200 ir_single_section_to_cper(ir, cper_file); in json_to_cper()
[all …]
/openbmc/libcper/
H A Dir-parse.c28 void ir_to_cper(json_object *ir, FILE *out) in ir_to_cper() argument
34 ir_header_to_cper(json_object_object_get(ir, "header"), header); in ir_to_cper()
40 json_object_object_get(ir, "sectionDescriptors"); in ir_to_cper()
59 json_object *sections = json_object_object_get(ir, "sections"); in ir_to_cper()
174 json_object *ir = NULL; in ir_section_to_cper() local
182 ir = json_object_object_get(section, definition->ShortName); in ir_section_to_cper()
183 definition->ToCPER(ir, out); in ir_section_to_cper()
187 if (ir == NULL) { in ir_section_to_cper()
188 ir = json_object_object_get(section, "Unknown"); in ir_section_to_cper()
189 json_object *encoded = json_object_object_get(ir, "data"); in ir_section_to_cper()
[all …]
H A Dcper-parse.c206 json_object *ir = cper_buf_to_ir(cper_buf, bytes_read); in cper_to_ir() local
208 return ir; in cper_to_ir()
481 json_object *ir; in cper_buf_single_section_to_ir() local
494 ir = json_object_new_object(); in cper_buf_single_section_to_ir()
499 json_object_object_add(ir, "sectionDescriptor", section_descriptor_ir); in cper_buf_single_section_to_ir()
503 json_object_put(ir); in cper_buf_single_section_to_ir()
517 json_object_object_add(ir, "section", section_ir); in cper_buf_single_section_to_ir()
518 return ir; in cper_buf_single_section_to_ir()
524 json_object *ir = json_object_new_object(); in cper_single_section_to_ir() local
535 json_object_put(ir); in cper_single_section_to_ir()
[all …]
H A Dcper-utils.c103 void ir_to_uniform_struct64(json_object *ir, UINT64 *start, int len, in ir_to_uniform_struct64() argument
109 json_object_object_get(ir, names[i])); in ir_to_uniform_struct64()
115 void ir_to_uniform_struct(json_object *ir, UINT32 *start, int len, in ir_to_uniform_struct() argument
121 json_object_object_get(ir, names[i])); in ir_to_uniform_struct()
213 UINT64 ir_to_bitfield(json_object *ir, int num_fields, const char *names[]) in ir_to_bitfield() argument
218 json_object_object_get(ir, names[i]))) { in ir_to_bitfield()
508 void add_untrusted_string(json_object *ir, const char *field_name, in add_untrusted_string() argument
513 add_string_len(ir, field_name, str, fru_text_len); in add_untrusted_string()
517 void add_guid(json_object *ir, const char *field_name, EFI_GUID *guid) in add_guid() argument
523 add_string_len(ir, field_name, platform_string, in add_guid()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-navigation/geoclue/geoclue/
H A D0001-libgeoclue-don-t-try-to-use-g-ir-scanner-when-intros.patch4 Subject: [PATCH] libgeoclue: don't try to use g-ir-scanner when introspection
7 * it finds target g-ir-scanner, so gir is found(), but when it tries to call it, it fails:
9 …geoclue/2.7.0-r0/recipe-sysroot/usr/bin/g-ir-scanner-wrapper: line 5: g-ir-scanner: command not fo…
/openbmc/openbmc/meta-arm/meta-arm-systemready/recipes-test/arm-systemready-acs/
H A Darm-systemready-ir-acs.bb52 IMAGE_FILENAME = "ir-acs-live-image-generic-arm64-${PV}.wic"
54 …emready/raw/${ARM_SYSTEMREADY_IR_ACS_BRANCH}/IR/prebuilt_images/${FULL_PV}/ir-acs-live-image-gener…
55 ….arm.com/systemready/systemready-ir-template.git;protocol=https;nobranch=1;destsuffix=systemready-
59 SRCREV_sr-ir-template = "c714db178ddf72e5ae5017f15421095297d5bf0e"
/openbmc/qemu/hw/timer/
H A Dimx_gpt.c59 VMSTATE_UINT32(ir, IMXGPTState),
157 if ((s->sr & s->ir) && (s->cr & GPT_CR_EN)) { in imx_gpt_update_int()
214 if (s->ir & GPT_IR_OF1IE) { in imx_gpt_compute_next_timeout()
217 if (s->ir & GPT_IR_OF2IE) { in imx_gpt_compute_next_timeout()
220 if (s->ir & GPT_IR_OF3IE) { in imx_gpt_compute_next_timeout()
227 if ((s->ir & GPT_IR_OF1IE) && (timeout == s->ocr1)) { in imx_gpt_compute_next_timeout()
230 if ((s->ir & GPT_IR_OF2IE) && (timeout == s->ocr2)) { in imx_gpt_compute_next_timeout()
233 if ((s->ir & GPT_IR_OF3IE) && (timeout == s->ocr3)) { in imx_gpt_compute_next_timeout()
236 if ((s->ir & GPT_IR_ROVIE) && (timeout == GPT_TIMER_MAX)) { in imx_gpt_compute_next_timeout()
282 reg_value = s->ir; in imx_gpt_read()
[all …]
/openbmc/libcper/include/libcper/
H A Dcper-utils.h35 void ir_to_uniform_struct(json_object *ir, UINT32 *start, int len,
37 void ir_to_uniform_struct64(json_object *ir, UINT64 *start, int len,
50 UINT64 ir_to_bitfield(json_object *ir, int num_fields, const char *names[]);
79 void add_untrusted_string(json_object *ir, const char *field_name,
82 void add_guid(json_object *ir, const char *field_name, EFI_GUID *guid);
H A Dcper-parse.h39 void ir_to_cper(json_object *ir, FILE *out);
40 void ir_single_section_to_cper(json_object *ir, FILE *out);
/openbmc/u-boot/arch/arm/dts/
H A Drk3288-firefly.dts35 &ir {
47 ir {
48 ir_int: ir-int {
H A Drk3368-sheep.dts30 ir: ir-receiver { label
31 compatible = "gpio-ir-receiver";
239 ir {
240 ir_int: ir-int {
H A Drk3288-rock2-square.dts52 ir: ir-receiver { label
53 compatible = "gpio-ir-receiver";
143 ir {
144 ir_int: ir-int {
/openbmc/u-boot/arch/riscv/include/asm/
H A Dbarrier.h23 #define rmb() RISCV_FENCE(ir,ir)
/openbmc/qemu/hw/intc/
H A Drx_icu.c126 icu->ir[n_IRQ] = 0; in rxicu_set_irq()
135 icu->ir[n_IRQ] = 1; in rxicu_set_irq()
153 icu->ir[n_IRQ] = 0; in rxicu_ack_irq()
159 if (icu->ir[i]) { in rxicu_ack_irq()
186 return icu->ir[reg] & R_IR_IR_MASK; in icu_read()
235 icu->ir[reg] = 0; in icu_write()
349 VMSTATE_UINT8_ARRAY(ir, RXICUState, NR_IRQS),
H A Dppc-uic.c54 uint32_t ir, cr; in ppcuic_trigger_irq() local
58 ir = uic->uicsr & uic->uicer & (~uic->uiccr); in ppcuic_trigger_irq()
64 uic->uicsr & uic->uicer, ir, cr); in ppcuic_trigger_irq()
65 if (ir != 0x0000000) { in ppcuic_trigger_irq()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/v4l2apps/
H A Dv4l-utils_1.28.1.bb48 PACKAGES =+ "media-ctl ir-keytable rc-keymaps libv4l libv4l-dev qv4l2 qvidcap"
64 FILES:ir-keytable = "${bindir}/ir-keytable ${base_libdir}/udev/rules.d/*-infrared.rules"
65 RDEPENDS:ir-keytable += "${VIRTUAL-RUNTIME_ir-keytable-keymaps}"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/poppler/
H A Dpoppler_25.04.0.bb45 # poppler macro uses pkg-config to check for g-ir runtimes. Something
48 sed -i 's: ${bindir}/g-ir: ${STAGING_BINDIR}/g-ir:' ${B}/build.ninja
/openbmc/openbmc/poky/meta/recipes-sato/webkit/webkitgtk/
H A D0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch27 find_program(GI_SCANNER_EXE NAMES ${_GI_SCANNER_EXE} g-ir-scanner)
28 find_program(GI_COMPILER_EXE NAMES ${_GI_COMPILER_EXE} g-ir-compiler)
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/webkitgtk/webkitgtk3/
H A D0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch27 find_program(GI_SCANNER_EXE NAMES ${_GI_SCANNER_EXE} g-ir-scanner)
28 find_program(GI_COMPILER_EXE NAMES ${_GI_COMPILER_EXE} g-ir-compiler)
/openbmc/openbmc/meta-arm/meta-arm-bsp/dynamic-layers/meta-arm-systemready/recipes-test/arm-systemready-acs/
H A Darm-systemready-ir-acs.bbappend1 include arm-systemready-ir-acs-${MACHINE}.inc

12345