Home
last modified time | relevance | path

Searched defs:f (Results 1 – 25 of 399) sorted by relevance

12345678910>>...16

/openbmc/qemu/include/migration/
H A Dqemu-file-types.h42 static inline unsigned int qemu_get_ubyte(QEMUFile *f) in qemu_get_ubyte()
55 static inline void qemu_put_be64s(QEMUFile *f, const uint64_t *pv) in qemu_put_be64s()
60 static inline void qemu_put_be32s(QEMUFile *f, const uint32_t *pv) in qemu_put_be32s()
65 static inline void qemu_put_be16s(QEMUFile *f, const uint16_t *pv) in qemu_put_be16s()
70 static inline void qemu_put_8s(QEMUFile *f, const uint8_t *pv) in qemu_put_8s()
75 static inline void qemu_get_be64s(QEMUFile *f, uint64_t *pv) in qemu_get_be64s()
80 static inline void qemu_get_be32s(QEMUFile *f, uint32_t *pv) in qemu_get_be32s()
85 static inline void qemu_get_be16s(QEMUFile *f, uint16_t *pv) in qemu_get_be16s()
90 static inline void qemu_get_8s(QEMUFile *f, uint8_t *pv) in qemu_get_8s()
96 static inline void qemu_put_sbe16(QEMUFile *f, int v) in qemu_put_sbe16()
[all …]
/openbmc/qemu/migration/
H A Dqemu-file.c71 int qemu_file_shutdown(QEMUFile *f) in qemu_file_shutdown() argument
113 QEMUFile *f; in qemu_file_new_impl() local
130 QEMUFile *qemu_file_get_return_path(QEMUFile *f) in qemu_file_get_return_path()
153 int qemu_file_get_error_obj(QEMUFile *f, Error **errp) in qemu_file_get_error_obj()
201 void qemu_file_set_error_obj(QEMUFile *f, int ret, Error *err) in qemu_file_set_error_obj()
218 int qemu_file_get_error(QEMUFile *f) in qemu_file_get_error()
226 void qemu_file_set_error(QEMUFile *f, int ret) in qemu_file_set_error()
231 static bool qemu_file_is_writable(QEMUFile *f) in qemu_file_is_writable()
236 static void qemu_iovec_release_ram(QEMUFile *f) in qemu_iovec_release_ram()
271 bool qemu_file_is_seekable(QEMUFile *f) in qemu_file_is_seekable()
[all …]
H A Dvmstate-types.c25 static int get_bool(QEMUFile *f, void *pv, size_t size, in get_bool()
33 static int put_bool(QEMUFile *f, void *pv, size_t size, in put_bool()
49 static int get_int8(QEMUFile *f, void *pv, size_t size, in get_int8()
57 static int put_int8(QEMUFile *f, void *pv, size_t size, in put_int8()
73 static int get_int16(QEMUFile *f, void *pv, size_t size, in get_int16()
81 static int put_int16(QEMUFile *f, void *pv, size_t size, in put_int16()
97 static int get_int32(QEMUFile *f, void *pv, size_t size, in get_int32()
105 static int put_int32(QEMUFile *f, void *pv, size_t size, in put_int32()
122 static int get_int32_equal(QEMUFile *f, void *pv, size_t size, in get_int32_equal()
149 static int get_int32_le(QEMUFile *f, void *pv, size_t size, in get_int32_le()
[all …]
H A Drdma.h47 int rdma_registration_handle(QEMUFile *f) { return 0; } in rdma_registration_handle()
49 int rdma_registration_start(QEMUFile *f, uint64_t flags) { return 0; } in rdma_registration_start()
51 int rdma_registration_stop(QEMUFile *f, uint64_t flags) { return 0; } in rdma_registration_stop()
53 int rdma_block_notification_handle(QEMUFile *f, const char *name) { return 0; } in rdma_block_notification_handle()
55 int rdma_control_save_page(QEMUFile *f, ram_addr_t block_offset, in rdma_control_save_page()
H A Dsavevm.c183 void timer_put(QEMUFile *f, QEMUTimer *ts) in timer_put()
191 void timer_get(QEMUFile *f, QEMUTimer *ts) in timer_get()
208 static int get_timer(QEMUFile *f, void *pv, size_t size, in get_timer()
216 static int put_timer(QEMUFile *f, void *pv, size_t size, in put_timer()
417 static int get_capability(QEMUFile *f, void *pv, size_t size, in get_capability()
438 static int put_capability(QEMUFile *f, void *pv, size_t size, in put_capability()
966 static int vmstate_load(QEMUFile *f, SaveStateEntry *se) in vmstate_load()
975 static void vmstate_save_old_style(QEMUFile *f, SaveStateEntry *se, in vmstate_save_old_style()
997 static void save_section_header(QEMUFile *f, SaveStateEntry *se, in save_section_header()
1019 static void save_section_footer(QEMUFile *f, SaveStateEntry *se) in save_section_footer()
[all …]
H A Dblock-dirty-bitmap.c359 static uint32_t qemu_get_bitmap_flags(QEMUFile *f) in qemu_get_bitmap_flags()
372 static void qemu_put_bitmap_flags(QEMUFile *f, uint32_t flags) in qemu_put_bitmap_flags()
380 static void send_bitmap_header(QEMUFile *f, DBMSaveState *s, in send_bitmap_header()
409 static void send_bitmap_start(QEMUFile *f, DBMSaveState *s, in send_bitmap_start()
417 static void send_bitmap_complete(QEMUFile *f, DBMSaveState *s, in send_bitmap_complete()
423 static void send_bitmap_bits(QEMUFile *f, DBMSaveState *s, in send_bitmap_bits()
691 static void bulk_phase_send_chunk(QEMUFile *f, DBMSaveState *s, in bulk_phase_send_chunk()
706 static void bulk_phase(QEMUFile *f, DBMSaveState *s, bool limit) in bulk_phase()
730 static int dirty_bitmap_save_iterate(QEMUFile *f, void *opaque) in dirty_bitmap_save_iterate()
747 static int dirty_bitmap_save_complete(QEMUFile *f, void *opaque) in dirty_bitmap_save_complete()
[all …]
/openbmc/qemu/target/hexagon/
H A Dhex_common.py340 def decl_reg_num(self, f, regno): argument
448 def decl_tcg(self, f, tag, regno): argument
453 def log_write(self, f, tag): argument
457 def analyze_write(self, f, tag, regno): argument
464 def decl_tcg(self, f, tag, regno): argument
469 def analyze_read(self, f, regno): argument
475 def decl_tcg(self, f, tag, regno): argument
479 def analyze_read(self, f, regno): argument
485 def decl_tcg(self, f, tag, regno): argument
497 def log_write(self, f, tag): argument
[all …]
/openbmc/u-boot/examples/standalone/
H A Dstubs.c18 #define EXPORT_FUNC(f, a, x, ...) \ argument
31 #define EXPORT_FUNC(f, a, x, ...) \ argument
46 #define EXPORT_FUNC(f, a, x, ...) \ argument
59 #define EXPORT_FUNC(f, a, x, ...) \ argument
76 #define EXPORT_FUNC(f, a, x, ...) \ argument
92 #define EXPORT_FUNC(f, a, x, ...) \ argument
105 #define EXPORT_FUNC(f, a, x, ...) \ argument
121 #define EXPORT_FUNC(f, a, x, ...) \ argument
136 #define EXPORT_FUNC(f, a, x, ...) \ argument
148 #define EXPORT_FUNC(f, a, x, ...) \ argument
[all …]
/openbmc/qemu/include/qemu/
H A Dfutex.h35 static inline void qemu_futex_wake_all(void *f) in qemu_futex_wake_all()
40 static inline void qemu_futex_wake_single(void *f) in qemu_futex_wake_single()
45 static inline void qemu_futex_wait(void *f, unsigned val) in qemu_futex_wait()
61 static inline void qemu_futex_wake_all(void *f) in qemu_futex_wake_all()
66 static inline void qemu_futex_wake_single(void *f) in qemu_futex_wake_single()
71 static inline void qemu_futex_wait(void *f, unsigned val) in qemu_futex_wait()
/openbmc/phosphor-logging/lib/include/phosphor-logging/lg2/
H A Dconversion.hpp93 static auto log_convert(const char* h, log_flag<Fs...> f, V v) in log_convert()
110 static auto log_convert(const char* h, log_flag<Fs...> f, V v) in log_convert()
126 static auto log_convert(const char* h, log_flag<Fs...> f, V v) in log_convert()
146 static auto log_convert(const char* h, log_flag<Fs...> f, V v) in log_convert()
166 static auto log_convert(const char* h, log_flag<Fs...> f, V v) in log_convert()
186 static auto log_convert(const char* h, log_flag<Fs...> f, const V& v) in log_convert()
227 static auto log_convert(const char* h, log_flag<Fs...> f, V v) in log_convert()
251 static auto log_convert(const char* h, log_flag<Fs...> f, V&& v) in log_convert()
271 static auto log_convert(const char* h, log_flag<Fs...> f, V&& v) in log_convert()
290 static auto log_convert(const char* h, log_flag<Fs...> f, V&& v) in log_convert()
[all …]
/openbmc/qemu/tests/unit/
H A Dtest-opts-visitor.c36 setup_fixture(OptsVisitorFixture *f, gconstpointer test_data) in setup_fixture()
54 teardown_fixture(OptsVisitorFixture *f, gconstpointer test_data) in teardown_fixture()
63 void (*test_func)(OptsVisitorFixture *f, gconstpointer test_data), in add_test()
73 expect_ok(OptsVisitorFixture *f, gconstpointer test_data) in expect_ok()
81 expect_fail(OptsVisitorFixture *f, gconstpointer test_data) in expect_fail()
96 test_value(OptsVisitorFixture *f, gconstpointer test_data) in test_value()
135 expect_i64_min(OptsVisitorFixture *f, gconstpointer test_data) in expect_i64_min()
145 expect_i64_max(OptsVisitorFixture *f, gconstpointer test_data) in expect_i64_max()
155 expect_zero(OptsVisitorFixture *f, gconstpointer test_data) in expect_zero()
165 expect_u64_max(OptsVisitorFixture *f, gconstpointer test_data) in expect_u64_max()
H A Dtest-cutils.c301 char f = 'X'; in test_qemu_strtoi_correct() local
315 char f = 'X'; in test_qemu_strtoi_null() local
330 char f = 'X'; in test_qemu_strtoi_empty() local
345 char f = 'X'; in test_qemu_strtoi_whitespace() local
360 char f = 'X'; in test_qemu_strtoi_invalid() local
375 char f = 'X'; in test_qemu_strtoi_trailing() local
390 char f = 'X'; in test_qemu_strtoi_octal() local
413 char f = 'X'; in test_qemu_strtoi_decimal() local
437 char f = 'X'; in test_qemu_strtoi_hex() local
470 char f = 'X'; in test_qemu_strtoi_max() local
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/parse/
H A D__init__.py50 def cached_mtime(f): argument
56 def cached_mtime_noerror(f): argument
65 def check_mtime(f, mtime): argument
74 def update_mtime(f): argument
84 def update_cache(f): argument
93 def mark_dependency(d, f): argument
102 def check_dependency(d, f): argument
191 def inner(f): argument
209 def inner(f): argument
/openbmc/bmcweb/http/routing/
H A Dwebsocketrule.hpp57 self_t& onopen(Func f) in onopen()
64 self_t& onmessage(Func f) in onmessage()
71 self_t& onmessageex(Func f) in onmessageex()
78 self_t& onclose(Func f) in onclose()
85 self_t& onerror(Func f) in onerror()
H A Dsserule.hpp43 self_t& onopen(Func f) in onopen()
50 self_t& onclose(Func f) in onclose()
/openbmc/u-boot/scripts/dtc/
H A Dtreesource.c49 static void write_prefix(FILE *f, int level) in write_prefix()
64 static void write_propval_string(FILE *f, struct data val) in write_propval_string()
137 static void write_propval_cells(FILE *f, struct data val) in write_propval_cells()
167 static void write_propval_bytes(FILE *f, struct data val) in write_propval_bytes()
195 static void write_propval(FILE *f, struct property *prop) in write_propval()
236 static void write_tree_source_node(FILE *f, struct node *tree, int level) in write_tree_source_node()
266 void dt_to_source(FILE *f, struct dt_info *dti) in dt_to_source()
/openbmc/qemu/include/system/
H A Dos-posix.h87 static inline void qemu_flockfile(FILE *f) in qemu_flockfile()
92 static inline void qemu_funlockfile(FILE *f) in qemu_funlockfile()
H A Dos-wasm.h90 static inline void qemu_flockfile(FILE *f) in qemu_flockfile()
95 static inline void qemu_funlockfile(FILE *f) in qemu_funlockfile()
/openbmc/qemu/target/sparc/
H A Dmachine.c52 static int get_psr(QEMUFile *f, void *opaque, size_t size, in get_psr()
66 static int put_psr(QEMUFile *f, void *opaque, size_t size, in put_psr()
85 static int get_fsr(QEMUFile *f, void *opaque, size_t size, in get_fsr()
95 static int put_fsr(QEMUFile *f, void *opaque, size_t size, in put_fsr()
112 static int get_xcc(QEMUFile *f, void *opaque, size_t size, in get_xcc()
128 static int put_xcc(QEMUFile *f, void *opaque, size_t size, in put_xcc()
/openbmc/qemu/target/avr/
H A Dmachine.c25 static int get_sreg(QEMUFile *f, void *opaque, size_t size, in get_sreg()
36 static int put_sreg(QEMUFile *f, void *opaque, size_t size, in put_sreg()
52 static int get_segment(QEMUFile *f, void *opaque, size_t size, in get_segment()
63 static int put_segment(QEMUFile *f, void *opaque, size_t size, in put_segment()
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dchecksum.py26 def cached_mtime(self, f): argument
31 def cached_mtime_noerror(self, f): argument
39 def update_mtime(self, f): argument
55 def get_checksum(self, f): argument
83 def checksum_file(f): argument
/openbmc/phosphor-fan-presence/presence/test/
H A Dfallbacktest.cpp77 Fallback f{fan, sensors}; in TEST() local
110 Fallback f{fan, sensors}; in TEST() local
156 Fallback f{fan, sensors}; in TEST() local
195 Fallback f{fan, sensors}; in TEST() local
228 Fallback f{fan, sensors}; in TEST() local
/openbmc/qemu/target/riscv/
H A Dinternals.h93 static inline uint64_t nanbox_s(CPURISCVState *env, float32 f) in nanbox_s()
103 static inline float32 check_nanbox_s(CPURISCVState *env, uint64_t f) in check_nanbox_s()
119 static inline uint64_t nanbox_h(CPURISCVState *env, float16 f) in nanbox_h()
129 static inline float16 check_nanbox_h(CPURISCVState *env, uint64_t f) in check_nanbox_h()
145 static inline float16 check_nanbox_bf16(CPURISCVState *env, uint64_t f) in check_nanbox_bf16()
/openbmc/telemetry/src/utils/
H A Dtransform.hpp17 inline auto transform(const Container& container, Functor&& f) in transform()
35 inline auto transform(const Container<Args...>& container, Functor&& f) in transform()
/openbmc/u-boot/arch/sandbox/include/asm/
H A Dgetopt.h38 #define _SANDBOX_CMDLINE_OPT(f, s, ha, h) \ argument
65 #define SANDBOX_CMDLINE_OPT(f, ha, h) _SANDBOX_CMDLINE_OPT(f, 0, ha, h) argument
70 #define SANDBOX_CMDLINE_OPT_SHORT(f, s, ha, h) _SANDBOX_CMDLINE_OPT(f, s, ha, h) argument

12345678910>>...16