Home
last modified time | relevance | path

Searched refs:real (Results 1 – 25 of 874) sorted by relevance

12345678910>>...35

/openbmc/qemu/tests/fp/
H A Dfp-test-log2.c25 static void compare(ufloat64 test, ufloat64 real, ufloat64 soft, bool exact) in compare() argument
30 if (real.i == soft.i) { in compare()
33 msb = 63 - __builtin_clzll(real.i ^ soft.i); in compare()
36 if (real.i > soft.i) { in compare()
37 ulp = real.i - soft.i; in compare()
39 ulp = soft.i - real.i; in compare()
51 test.i, test.d, soft.i, soft.d, real.i, real.d); in compare()
57 (int)(soft.i >> 52) - (int)(real.i >> 52)); in compare()
69 ufloat64 test, real, soft; in main() local
77 real.d = -__builtin_inf(); in main()
[all …]
/openbmc/linux/fs/overlayfs/
H A Dfile.c104 static int ovl_real_fdget_meta(const struct file *file, struct fd *real, in ovl_real_fdget_meta() argument
111 real->flags = 0; in ovl_real_fdget_meta()
112 real->file = file->private_data; in ovl_real_fdget_meta()
128 if (unlikely(file_inode(real->file) != d_inode(realpath.dentry))) { in ovl_real_fdget_meta()
129 real->flags = FDPUT_FPUT; in ovl_real_fdget_meta()
130 real->file = ovl_open_realfile(file, &realpath); in ovl_real_fdget_meta()
132 return PTR_ERR_OR_ZERO(real->file); in ovl_real_fdget_meta()
136 if (unlikely((file->f_flags ^ real->file->f_flags) & ~OVL_OPEN_FLAGS)) in ovl_real_fdget_meta()
137 return ovl_change_flags(real->file, file->f_flags); in ovl_real_fdget_meta()
142 static int ovl_real_fdget(const struct file *file, struct fd *real) in ovl_real_fdget() argument
[all …]
H A Dexport.c385 struct dentry *real, in ovl_lookup_real_one() argument
402 parent = dget_parent(real); in ovl_lookup_real_one()
412 take_dentry_name_snapshot(&name, real); in ovl_lookup_real_one()
427 } else if (ovl_dentry_real_at(this, layer->idx) != real) { in ovl_lookup_real_one()
440 real, layer->idx, connected, err); in ovl_lookup_real_one()
446 struct dentry *real,
453 struct dentry *real, in ovl_lookup_real_inode() argument
465 inode = ovl_lookup_inode(sb, real, !layer->idx); in ovl_lookup_real_inode()
477 if (!this && layer->idx && ofs->indexdir && !WARN_ON(!d_is_dir(real))) { in ovl_lookup_real_inode()
478 index = ovl_lookup_index(ofs, NULL, real, false); in ovl_lookup_real_inode()
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/
H A Drdist-6.1.5-bb-build.patch10 doc/Makefile.real | 4 +++-
11 src/Makefile.real | 1 +
44 diff --git a/doc/Makefile.real b/doc/Makefile.real
46 --- a/doc/Makefile.real
47 +++ b/doc/Makefile.real
61 diff --git a/src/Makefile.real b/src/Makefile.real
63 --- a/src/Makefile.real
64 +++ b/src/Makefile.real
H A Drdist-6.1.5-fix-parallel-build.patch16 src/Makefile.real | 2 +-
19 diff --git a/src/Makefile.real b/src/Makefile.real
21 --- a/src/Makefile.real
22 +++ b/src/Makefile.real
H A Drdist-6.1.5-makefile-add-ldflags.patch7 diff --git a/src/Makefile.real b/src/Makefile.real
9 --- a/src/Makefile.real
10 +++ b/src/Makefile.real
/openbmc/linux/scripts/
H A DMakefile.lib53 real-search = $(foreach m, $1, $(if $(call suffix-search, $m, $2, $3 -), $(call suffix-search, $m, …
62 real-obj-y := $(call real-search, $(obj-y), .o, -objs -y)
63 real-obj-m := $(call real-search, $(obj-m), .o, -objs -y -m)
85 real-dtb-y := $(call real-search, $(dtb-y), .dtb, -dtbs)
99 real-obj-y := $(addprefix $(obj)/,$(real-obj-y))
100 real-obj-m := $(addprefix $(obj)/,$(real-obj-m))
103 real-dtb-y := $(addprefix $(obj)/, $(real-dtb-y))
213 part-of-module = $(if $(filter $(basename $@).o, $(real-obj-m)),y)
320 cmd_ld = $(LD) $(ld_flags) $(real-prereqs) -o $@
326 cmd_ar = rm -f $@; $(AR) cDPrsT $@ $(real-prereqs)
[all …]
H A DMakefile.build72 subdir-builtin := $(sort $(filter %/built-in.a, $(real-obj-y)))
248 cmd_mod = printf '%s\n' $(call real-search, $*.o, .o, -objs -y -m) | \
362 targets += $(filter-out $(subdir-builtin), $(real-obj-y))
363 targets += $(filter-out $(subdir-modorder), $(real-obj-m))
364 targets += $(real-dtb-y) $(lib-y) $(always-y)
399 $(if $(real-prereqs), printf "$(obj)/%s " $(patsubst $(obj)/%,%,$(real-prereqs)) | xargs) \
402 $(obj)/built-in.a: $(real-obj-y) FORCE
413 cmd_modules_order = { $(foreach m, $(real-prereqs), \
/openbmc/linux/Documentation/mm/
H A Dactive_mm.rst30 - we have "real address spaces" and "anonymous address spaces". The
38 this category, but even "real" threads can temporarily say that for
44 - "tsk->mm" points to the "real address space". For an anonymous process,
46 really doesn't _have_ a real address space at all.
52 The rule is that for a process with a real address space (ie tsk->mm is
53 non-NULL) the active_mm obviously always has to be the same as the real
62 "mm_users" counter that is how many "real address space users" there are,
64 users) plus one if there are any real users.
66 Usually there is at least one real user, but it could be that the real
70 gets scheduled away in favour of a real thread, the "zombie" mm gets
[all …]
/openbmc/linux/drivers/char/agp/
H A Dati-agp.c46 unsigned long *real; member
60 page_map->real = (unsigned long *) __get_free_page(GFP_KERNEL); in ati_create_page_map()
61 if (page_map->real == NULL) in ati_create_page_map()
64 set_memory_uc((unsigned long)page_map->real, 1); in ati_create_page_map()
65 err = map_page_into_agp(virt_to_page(page_map->real)); in ati_create_page_map()
67 free_page((unsigned long)page_map->real); in ati_create_page_map()
70 page_map->remapped = page_map->real; in ati_create_page_map()
83 unmap_page_from_agp(virt_to_page(page_map->real)); in ati_free_page_map()
84 set_memory_wb((unsigned long)page_map->real, 1); in ati_free_page_map()
85 free_page((unsigned long) page_map->real); in ati_free_page_map()
[all …]
H A Dsworks-agp.c33 unsigned long *real; member
52 page_map->real = (unsigned long *) __get_free_page(GFP_KERNEL); in serverworks_create_page_map()
53 if (page_map->real == NULL) { in serverworks_create_page_map()
57 set_memory_uc((unsigned long)page_map->real, 1); in serverworks_create_page_map()
58 page_map->remapped = page_map->real; in serverworks_create_page_map()
69 set_memory_wb((unsigned long)page_map->real, 1); in serverworks_free_page_map()
70 free_page((unsigned long) page_map->real); in serverworks_free_page_map()
83 if (entry->real != NULL) { in serverworks_free_gatt_pages()
159 writel(virt_to_phys(serverworks_private.scratch_dir.real) | 1, page_dir.remapped+i); in serverworks_create_gatt_table()
169 agp_bridge->gatt_table_real = (u32 *)page_dir.real; in serverworks_create_gatt_table()
[all …]
H A Damd-k7-agp.c27 unsigned long *real; member
41 page_map->real = (unsigned long *) __get_free_page(GFP_KERNEL); in amd_create_page_map()
42 if (page_map->real == NULL) in amd_create_page_map()
45 set_memory_uc((unsigned long)page_map->real, 1); in amd_create_page_map()
46 page_map->remapped = page_map->real; in amd_create_page_map()
58 set_memory_wb((unsigned long)page_map->real, 1); in amd_free_page_map()
59 free_page((unsigned long) page_map->real); in amd_free_page_map()
72 if (entry->real != NULL) in amd_free_gatt_pages()
144 agp_bridge->gatt_table_real = (u32 *)page_dir.real; in amd_create_gatt_table()
146 agp_bridge->gatt_bus_addr = virt_to_phys(page_dir.real); in amd_create_gatt_table()
[all …]
/openbmc/linux/Documentation/core-api/
H A Ddebug-objects.rst21 debugobjects is not changing the data structure of the real object so it
53 Each of these functions takes the address of the real object and a
70 This function is called whenever the initialization function of a real
73 When the real object is already tracked by debugobjects it is checked,
78 problem before the real initialization of the object happens. E.g. it
82 When the real object is not yet tracked by debugobjects, debugobjects
83 allocates a tracker object for the real object and sets the tracker
93 This function is called whenever the initialization function of a real
96 When the real object is already tracked by debugobjects it is checked,
101 problem before the real initialization of the object happens. E.g. it
[all …]
/openbmc/linux/Documentation/dev-tools/kunit/api/
H A Dfunctionredirection.rst39 Static stubs are a way of redirecting calls to one function (the "real"
42 It works by adding a macro to the "real" function which checks to see if a test
48 1. Add the KUNIT_STATIC_STUB_REDIRECT() macro to the start of the "real"
53 function, followed by all of the arguments passed to the real function.
62 /* real implementation */
67 These functions should have the same function signature as the real function.
87 the real function, and the replacement function. You can call this several
99 4. Call (perhaps indirectly) the real function.
101 Once the redirection is activated, any call to the real function will call
115 original behaviour of the 'real' function) using
[all …]
/openbmc/linux/lib/
H A Dtest_hexdump.c129 char real[TEST_HEXDUMP_BUF_SIZE]; in test_hexdump() local
133 memset(real, FILL_CHAR, sizeof(real)); in test_hexdump()
134 hex_dump_to_buffer(data_b, len, rowsize, groupsize, real, sizeof(real), in test_hexdump()
141 if (memcmp(test, real, TEST_HEXDUMP_BUF_SIZE)) { in test_hexdump()
143 pr_err("Result: '%s'\n", real); in test_hexdump()
/openbmc/u-boot/scripts/
H A DMakefile.build145 $(real-objs-m) : part-of-module := y
146 $(real-objs-m:.o=.i) : part-of-module := y
147 $(real-objs-m:.o=.s) : part-of-module := y
148 $(real-objs-m:.o=.lst): part-of-module := y
150 $(real-objs-m) : quiet_modtag := [M]
151 $(real-objs-m:.o=.i) : quiet_modtag := [M]
152 $(real-objs-m:.o=.s) : quiet_modtag := [M]
153 $(real-objs-m:.o=.lst): quiet_modtag := [M]
301 $(real-objs-m) : modkern_aflags := $(KBUILD_AFLAGS_MODULE) $(AFLAGS_MODULE)
302 $(real-objs-m:.o=.s): modkern_aflags := $(KBUILD_AFLAGS_MODULE) $(AFLAGS_MODULE)
[all …]
H A DMakefile.lib70 real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) …
71 real-objs-m := $(foreach m, $(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs))…
83 real-objs-y := $(addprefix $(obj)/,$(real-objs-y))
84 real-objs-m := $(addprefix $(obj)/,$(real-objs-m))
/openbmc/openbmc/poky/meta/recipes-devtools/perl/files/
H A D0001-Somehow-this-module-breaks-through-the-perl-wrapper-.patch5 declares perl binary to be 'perl.real'. This patch forces it back to perl.
21 + # Getting MakeMaker.pm use perl wrapper instead of 'perl.real' directly
22 + $name =~ s/perl\.real/perl/ if ($name =~ /perl\.real/);
/openbmc/qemu/tests/multiboot/
H A Dmmap.out19 real mmap end: 0x9090
36 real mmap end: 0x9078
54 real mmap end: 0x9090
73 real mmap end: 0x90a8
92 real mmap end: 0x90a8
/openbmc/linux/drivers/parport/
H A Ddaisy.c69 static struct parport *clone_parport(struct parport *real, int muxport) in clone_parport() argument
71 struct parport *extra = parport_register_port(real->base, in clone_parport()
72 real->irq, in clone_parport()
73 real->dma, in clone_parport()
74 real->ops); in clone_parport()
76 extra->portnum = real->portnum; in clone_parport()
77 extra->physport = real; in clone_parport()
79 real->slaves[muxport-1] = extra; in clone_parport()
/openbmc/u-boot/drivers/rtc/
H A DKconfig11 Enable drver model for real-time-clock drivers. The RTC uclass
20 Enable drver model for real-time-clock drivers. The RTC uclass
29 Enable drver model for real-time-clock drivers. The RTC uclass
102 This is a widely used real-time clock chip originally by Motorola
103 and now available from NXP. It includes a battery-backed real-time
111 It is a serial (I2C) real-time clock (RTC) with alarm.
/openbmc/openbmc/poky/scripts/
H A Dtask-time118 real = elapsed_time(task_info) variable
132 int(real//60), real%60,
/openbmc/linux/Documentation/arch/parisc/
H A Ddebugging.rst12 A lot of the assembly code currently runs in real mode, which means
22 When real-mode code tries to access non-existent memory, you'll get
26 the I/O range); the System Responder address is the address real-mode
31 get translated to a physical address before real-mode code tried to
/openbmc/linux/drivers/md/persistent-data/
H A Ddm-transaction-manager.c92 struct dm_transaction_manager *real; member
173 tm->real = NULL; in dm_tm_create()
186 struct dm_transaction_manager *dm_tm_create_non_blocking_clone(struct dm_transaction_manager *real) in dm_tm_create_non_blocking_clone() argument
193 tm->real = real; in dm_tm_create_non_blocking_clone()
338 int r = dm_bm_read_try_lock(tm->real->bm, b, v, blk); in dm_tm_read_lock()
341 prefetch_add(&tm->real->prefetches, b); in dm_tm_read_lock()
/openbmc/u-boot/drivers/usb/emul/
H A DKconfig5 Since sandbox does not have access to a real USB bus, it is possible
7 stack on sandbox without needing a real device, or any host machine

12345678910>>...35