/openbmc/qemu/subprojects/packagefiles/berkeley-softfloat-3/ |
H A D | meson.build | 1 project('berkeley-softfloat-3', 'c', 21 ], native: false, language: 'c') 27 sfdir / 's_eq128.c', 28 sfdir / 's_le128.c', 29 sfdir / 's_lt128.c', 30 sfdir / 's_shortShiftLeft128.c', 31 sfdir / 's_shortShiftRight128.c', 32 sfdir / 's_shortShiftRightJam64.c', 33 sfdir / 's_shortShiftRightJam64Extra.c', 34 sfdir / 's_shortShiftRightJam128.c', [all …]
|
/openbmc/qemu/tests/data/qobject/ |
H A D | qdict.txt | 4 11d.c: 17874 14 21142.c: 8591 15 21285.c: 11721 16 2860_main_dev.c: 33854 17 2860_rtmp_init.c: 26170 18 2870_main_dev.c: 39352 19 2870_rtmp_init.c: 51247 26 3780i.c: 21485 31 3c359.c: 60161 34 3c501.c: 23869 [all …]
|
/openbmc/qemu/subprojects/packagefiles/berkeley-testfloat-3/ |
H A D | meson.build | 1 project('berkeley-testfloat-3', 'c', 25 ] + meson.get_compiler('c').get_supported_arguments('-Wno-ignored-pragmas'), 26 native: false, language: 'c') 29 tfdir / 'genCases_ui32.c', 30 tfdir / 'genCases_ui64.c', 31 tfdir / 'genCases_i32.c', 32 tfdir / 'genCases_i64.c', 33 tfdir / 'genCases_f16.c', 34 tfdir / 'genCases_f32.c', 35 tfdir / 'genCases_f64.c', [all …]
|
/openbmc/u-boot/fs/ubifs/ |
H A D | master.c | 5 * Copyright (C) 2006-2008 Nokia Corporation. 22 * @c: UBIFS file-system description object 29 static int scan_for_master(struct ubifs_info *c) in scan_for_master() argument 37 sleb = ubifs_scan(c, lnum, 0, c->sbuf, 1); in scan_for_master() 46 memcpy(c->mst_node, snod->node, snod->len); in scan_for_master() 53 sleb = ubifs_scan(c, lnum, 0, c->sbuf, 1); in scan_for_master() 65 if (memcmp((void *)c->mst_node + UBIFS_CH_SZ, in scan_for_master() 69 c->mst_offs = offs; in scan_for_master() 78 ubifs_err(c, "unexpected node type %d master LEB %d:%d", in scan_for_master() 86 * @c: UBIFS file-system description object [all …]
|
H A D | lpt_commit.c | 5 * Copyright (C) 2006-2008 Nokia Corporation. 28 static int dbg_populate_lsave(struct ubifs_info *c); 33 * @c: UBIFS file-system description object 91 * @c: UBIFS file-system description object 95 static int get_cnodes_to_commit(struct ubifs_info *c) in get_cnodes_to_commit() argument 100 if (!c->nroot) in get_cnodes_to_commit() 103 if (!test_bit(DIRTY_CNODE, &c->nroot->flags)) in get_cnodes_to_commit() 106 c->lpt_cnext = first_dirty_cnode(c->nroot); in get_cnodes_to_commit() 107 cnode = c->lpt_cnext; in get_cnodes_to_commit() 116 cnode->cnext = c->lpt_cnext; in get_cnodes_to_commit() [all …]
|
H A D | super.c | 5 * Copyright (C) 2006-2008 Nokia Corporation. 119 /* from fs/inode.c */ 196 * @c: UBIFS file-system description object 204 static int validate_inode(struct ubifs_info *c, const struct inode *inode) in validate_inode() argument 209 if (inode->i_size > c->max_inode_sz) { in validate_inode() 210 ubifs_err(c, "inode is too large (%lld)", in validate_inode() 216 ubifs_err(c, "unknown compression type %d", ui->compr_type); in validate_inode() 230 ubifs_warn(c, "inode %lu uses '%s' compression, but it was not compiled in", in validate_inode() 234 err = dbg_check_dir(c, inode); in validate_inode() 243 struct ubifs_info *c = sb->s_fs_info; in ubifs_iget() local [all …]
|
H A D | sb.c | 5 * Copyright (C) 2006-2008 Nokia Corporation. 65 * @c: UBIFS file-system description object 70 static int create_default_filesystem(struct ubifs_info *c) in create_default_filesystem() argument 85 /* Some functions called from here depend on the @c->key_len filed */ in create_default_filesystem() 86 c->key_len = UBIFS_SK_LEN; in create_default_filesystem() 92 if (c->leb_cnt < 0x7FFFFFFF / DEFAULT_JNL_PERCENT) in create_default_filesystem() 94 jnl_lebs = c->leb_cnt * DEFAULT_JNL_PERCENT / 100; in create_default_filesystem() 96 jnl_lebs = (c->leb_cnt / 100) * DEFAULT_JNL_PERCENT; in create_default_filesystem() 100 if (jnl_lebs * c->leb_size > DEFAULT_MAX_JNL) in create_default_filesystem() 101 jnl_lebs = DEFAULT_MAX_JNL / c->leb_size; in create_default_filesystem() [all …]
|
/openbmc/linux/fs/ubifs/ |
H A D | master.c | 5 * Copyright (C) 2006-2008 Nokia Corporation. 17 * @c: UBIFS file-system description object 24 int ubifs_compare_master_node(struct ubifs_info *c, void *m1, void *m2) in ubifs_compare_master_node() argument 52 * @c: UBIFS file-system description object 64 static int mst_node_check_hash(const struct ubifs_info *c, in mst_node_check_hash() argument 71 crypto_shash_tfm_digest(c->hash_tfm, node + sizeof(struct ubifs_ch), in mst_node_check_hash() 75 if (ubifs_check_hash(c, expected, calc)) in mst_node_check_hash() 83 * @c: UBIFS file-system description object 90 static int scan_for_master(struct ubifs_info *c) in scan_for_master() argument 98 sleb = ubifs_scan(c, lnum, 0, c->sbuf, 1); in scan_for_master() [all …]
|
H A D | super.c | 5 * Copyright (C) 2006-2008 Nokia Corporation. 65 * @c: UBIFS file-system description object 73 static int validate_inode(struct ubifs_info *c, const struct inode *inode) in validate_inode() argument 78 if (inode->i_size > c->max_inode_sz) { in validate_inode() 79 ubifs_err(c, "inode is too large (%lld)", in validate_inode() 85 ubifs_err(c, "unknown compression type %d", ui->compr_type); in validate_inode() 98 if (!ubifs_compr_present(c, ui->compr_type)) { in validate_inode() 99 ubifs_warn(c, "inode %lu uses '%s' compression, but it was not compiled in", in validate_inode() 100 inode->i_ino, ubifs_compr_name(c, ui->compr_type)); in validate_inode() 103 err = dbg_check_dir(c, inode); in validate_inode() [all …]
|
H A D | sb.c | 5 * Copyright (C) 2006-2008 Nokia Corporation. 54 static int get_default_compressor(struct ubifs_info *c) in get_default_compressor() argument 56 if (ubifs_compr_present(c, UBIFS_COMPR_ZSTD)) in get_default_compressor() 59 if (ubifs_compr_present(c, UBIFS_COMPR_LZO)) in get_default_compressor() 62 if (ubifs_compr_present(c, UBIFS_COMPR_ZLIB)) in get_default_compressor() 70 * @c: UBIFS file-system description object 75 static int create_default_filesystem(struct ubifs_info *c) in create_default_filesystem() argument 94 /* Some functions called from here depend on the @c->key_len filed */ in create_default_filesystem() 95 c->key_len = UBIFS_SK_LEN; in create_default_filesystem() 101 if (c->leb_cnt < 0x7FFFFFFF / DEFAULT_JNL_PERCENT) in create_default_filesystem() [all …]
|
H A D | lpt_commit.c | 5 * Copyright (C) 2006-2008 Nokia Corporation. 21 static int dbg_populate_lsave(struct ubifs_info *c); 25 * @c: UBIFS file-system description object 30 static struct ubifs_cnode *first_dirty_cnode(const struct ubifs_info *c, struct ubifs_nnode *nnode) in first_dirty_cnode() argument 32 ubifs_assert(c, nnode); in first_dirty_cnode() 56 * @c: UBIFS file-system description object 61 static struct ubifs_cnode *next_dirty_cnode(const struct ubifs_info *c, struct ubifs_cnode *cnode) in next_dirty_cnode() argument 66 ubifs_assert(c, cnode); in next_dirty_cnode() 76 return first_dirty_cnode(c, (struct ubifs_nnode *)cnode); in next_dirty_cnode() 84 * @c: UBIFS file-system description object [all …]
|
/openbmc/linux/Documentation/admin-guide/media/ |
H A D | ipu3_rcb.svg | 9 …C 5.519531 -1.15625 6.15625 -1.316406 6.59375 -1.640625 C 7.039062 -1.960938 7.265625 -2.441406 7.… 12 …C 6.4375 -9.5 7.398438 -9.109375 8.078125 -8.328125 C 8.753906 -7.546875 9.09375 -6.363281 9.09375… 15 …C 2.015625 -9.160156 2.609375 -9.273438 3.203125 -9.359375 C 3.796875 -9.441406 4.351562 -9.484375… 18 …C 7.015625 -2.644531 6.878906 -2.914062 6.609375 -3.125 C 6.335938 -3.34375 6 -3.53125 5.59375 -3.… 21 …C 9.203125 -3.910156 9.097656 -3.25 8.890625 -2.65625 C 8.679688 -2.0625 8.390625 -1.550781 8.0156… 24 …C 3.503906 -9.25 4.878906 -9.484375 6.265625 -9.484375 C 6.691406 -9.484375 7.097656 -9.460938 7.4… 33 …C 3.878906 0.09375 3.644531 0.0859375 3.375 0.078125 C 3.113281 0.0664062 2.847656 0.0507812 2.578… 36 …C 9.203125 -5.054688 9.054688 -4.082031 8.765625 -3.28125 C 8.484375 -2.476562 8.09375 -1.828125 7… 39 …C 8.84375 -0.203125 8.4375 -0.0859375 7.875 0.046875 C 7.320312 0.191406 6.664062 0.265625 5.90625… 42 …C 8.734375 -0.253906 8.234375 -0.0625 7.703125 0.0625 C 7.179688 0.195312 6.617188 0.265625 6.0156… [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/ |
H A D | adbd.mk | 6 adbd_SRC_FILES += adb.c 7 adbd_SRC_FILES += fdevent.c 8 adbd_SRC_FILES += transport.c 9 adbd_SRC_FILES += transport_local.c 10 adbd_SRC_FILES += transport_usb.c 11 adbd_SRC_FILES += adb_auth_client.c 12 adbd_SRC_FILES += sockets.c 13 adbd_SRC_FILES += services.c 14 adbd_SRC_FILES += file_sync_service.c 15 adbd_SRC_FILES += jdwp_service.c [all …]
|
/openbmc/linux/Documentation/userspace-api/media/ |
H A D | conf_nitpick.py | 23 ("c:func", "clock_gettime"), 24 ("c:func", "close"), 25 ("c:func", "container_of"), 26 ("c:func", "copy_from_user"), 27 ("c:func", "copy_to_user"), 28 ("c:func", "determine_valid_ioctls"), 29 ("c:func", "ERR_PTR"), 30 ("c:func", "i2c_new_client_device"), 31 ("c:func", "ioctl"), 32 ("c:func", "IS_ERR"), [all …]
|
/openbmc/qemu/util/ |
H A D | meson.build | 1 util_ss.add(files('osdep.c', 'cutils.c', 'unicode.c', 'qemu-timer-common.c')) 2 util_ss.add(files('thread-context.c'), numa) 4 util_ss.add(files('atomic64.c')) 7 util_ss.add(files('aio-posix.c')) 8 util_ss.add(files('fdmon-poll.c')) 10 util_ss.add(files('fdmon-epoll.c')) 12 util_ss.add(files('compatfd.c')) 13 util_ss.add(files('event_notifier-posix.c')) 14 util_ss.add(files('mmap-alloc.c')) 19 util_ss.add(files('oslib-posix.c'), freebsd_dep) [all …]
|
/openbmc/qemu/hw/misc/ |
H A D | meson.build | 1 system_ss.add(when: 'CONFIG_APPLESMC', if_true: files('applesmc.c')) 2 system_ss.add(when: 'CONFIG_EDU', if_true: files('edu.c')) 3 system_ss.add(when: 'CONFIG_FW_CFG_DMA', if_true: files('vmcoreinfo.c')) 4 system_ss.add(when: 'CONFIG_ISA_DEBUG', if_true: files('debugexit.c')) 5 system_ss.add(when: 'CONFIG_ISA_TESTDEV', if_true: files('pc-testdev.c')) 6 system_ss.add(when: 'CONFIG_PCI_TESTDEV', if_true: files('pci-testdev.c')) 7 system_ss.add(when: 'CONFIG_UNIMP', if_true: files('unimp.c')) 8 system_ss.add(when: 'CONFIG_EMPTY_SLOT', if_true: files('empty_slot.c')) 9 system_ss.add(when: 'CONFIG_LED', if_true: files('led.c')) 10 system_ss.add(when: 'CONFIG_PVPANIC_COMMON', if_true: files('pvpanic.c')) [all …]
|
/openbmc/linux/tools/power/cpupower/po/ |
H A D | cs.po | 4 # Copyright (C) 2007 kavol 23 #: utils/idle_monitor/nhm_idle.c:36 27 #: utils/idle_monitor/nhm_idle.c:43 31 #: utils/idle_monitor/nhm_idle.c:51 35 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70 39 #: utils/idle_monitor/snb_idle.c:33 43 #: utils/idle_monitor/snb_idle.c:40 47 #: utils/idle_monitor/snb_idle.c:47 51 #: utils/idle_monitor/amd_fam14h_idle.c:56 55 #: utils/idle_monitor/amd_fam14h_idle.c:63 [all …]
|
H A D | it.po | 2 # Copyright (C) 2004-2009 20 #: utils/idle_monitor/nhm_idle.c:36 24 #: utils/idle_monitor/nhm_idle.c:43 28 #: utils/idle_monitor/nhm_idle.c:51 32 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70 36 #: utils/idle_monitor/snb_idle.c:33 40 #: utils/idle_monitor/snb_idle.c:40 44 #: utils/idle_monitor/snb_idle.c:47 48 #: utils/idle_monitor/amd_fam14h_idle.c:56 52 #: utils/idle_monitor/amd_fam14h_idle.c:63 [all …]
|
H A D | pt.po | 2 # Copyright (C) 2008 THE cpufrequtils'S COPYRIGHT HOLDER 18 #: utils/idle_monitor/nhm_idle.c:36 22 #: utils/idle_monitor/nhm_idle.c:43 26 #: utils/idle_monitor/nhm_idle.c:51 30 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70 34 #: utils/idle_monitor/snb_idle.c:33 38 #: utils/idle_monitor/snb_idle.c:40 42 #: utils/idle_monitor/snb_idle.c:47 46 #: utils/idle_monitor/amd_fam14h_idle.c:56 50 #: utils/idle_monitor/amd_fam14h_idle.c:63 [all …]
|
H A D | fr.po | 2 # Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER 20 #: utils/idle_monitor/nhm_idle.c:36 24 #: utils/idle_monitor/nhm_idle.c:43 28 #: utils/idle_monitor/nhm_idle.c:51 32 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70 36 #: utils/idle_monitor/snb_idle.c:33 40 #: utils/idle_monitor/snb_idle.c:40 44 #: utils/idle_monitor/snb_idle.c:47 48 #: utils/idle_monitor/amd_fam14h_idle.c:56 52 #: utils/idle_monitor/amd_fam14h_idle.c:63 [all …]
|
H A D | de.po | 3 # Copyright (C) 2004-2009 Dominik Brodowski <linux@dominikbrodowski.net> 20 #: utils/idle_monitor/nhm_idle.c:36 24 #: utils/idle_monitor/nhm_idle.c:43 28 #: utils/idle_monitor/nhm_idle.c:51 32 #: utils/idle_monitor/nhm_idle.c:58 utils/idle_monitor/amd_fam14h_idle.c:70 36 #: utils/idle_monitor/snb_idle.c:33 40 #: utils/idle_monitor/snb_idle.c:40 44 #: utils/idle_monitor/snb_idle.c:47 48 #: utils/idle_monitor/amd_fam14h_idle.c:56 52 #: utils/idle_monitor/amd_fam14h_idle.c:63 [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/hddtemp/hddtemp/ |
H A D | hddtemp.db | 6 # a temperature sensor (you can set the unit to C or F). 46 "ExcelStor Technology J3.0" 194 C "ExcelStor Technology 3xy (xy GB)" 47 "ExcelStor Technology J6.0" 194 C "ExcelStor Technology 6xy (xy GB)" 48 "ExcelStor Technology J680" 194 C "ExcelStor Technology J680 (80 GB)" 49 "ExcelStor Technology J860" 194 C "ExcelStor Technology J860 (60 GB)" 50 "ExcelStor Technology J880" 194 C "ExcelStor Technology J880 (80 GB)" 57 "FUJITSU MHM2100AT" 0 C "Fujitsu MHM2100AT" 59 "FUJITSU MHN2150AT" 194 C "Fujitsu MHN2150AT" 60 "FUJITSU MHN2200AT" 194 C "Fujitsu MHN2200AT" 61 "FUJITSU MHN2300AT" 194 C "Fujitsu MHN2300AT" [all …]
|
/openbmc/qemu/tests/qtest/libqos/ |
H A D | meson.build | 2 '../libqtest.c', 3 '../libqmp.c', 5 'qgraph.c', 6 'qos_external.c', 7 'pci.c', 8 'fw_cfg.c', 9 'libqos-malloc.c', 10 'libqos.c', 11 'sdhci-cmd.c', 14 'malloc-spapr.c', [all …]
|
/openbmc/qemu/hw/ppc/ |
H A D | meson.build | 3 'ppc.c', 4 'ppc_booke.c', 6 ppc_ss.add(when: 'CONFIG_FDT_PPC', if_true: files('fdt.c')) 7 ppc_ss.add(when: 'CONFIG_FW_CFG_PPC', if_true: files('fw_cfg.c')) 11 'spapr.c', 12 'spapr_caps.c', 13 'spapr_vio.c', 14 'spapr_events.c', 15 'spapr_hcall.c', 16 'spapr_nested.c', [all …]
|
/openbmc/openbmc/poky/documentation/template/ |
H A D | ohand-color.svg | 69 …C 40.282,50.633 33.439,57.477 33.439,65.888 L 33.439,81.142 L 41.066,81.142 L 41.066,65.888 C 41.0… 74 …C 26.942,50.557 33.819,57.435 33.819,65.888 C 33.819,74.344 26.942,81.223 18.486,81.223 C 10.032,8… 78 …C 94.074,87.605 87.233,80.763 78.822,80.763 C 70.41,80.763 63.567,87.605 63.567,96.016 C 63.567,10… 82 …C 124.088,87.496 117.293,80.762 108.949,80.762 C 100.59,80.762 93.783,87.52 93.697,95.856 L 93.693… 86 …C 63.833,87.497 57.037,80.761 48.693,80.761 C 48.682,80.761 48.671,80.763 48.658,80.763 C 48.382,8… 90 …C 178.539,50.633 176.832,52.341 176.832,54.447 L 176.832,65.887 C 176.832,70.092 173.41,73.513 169… 94 …C 124.088,57.371 117.293,50.633 108.949,50.633 C 100.592,50.633 93.783,57.393 93.697,65.731 L 93.6… 98 …C 148.41,80.761 146.703,82.469 146.703,84.575 L 146.703,96.015 C 146.703,100.22 143.283,103.643 13… 102 …d="M 82.625,77.345 C 82.625,75.247 80.923,73.547 78.826,73.547 L 78.826,81.142 C 80.922,81.142 82.… 106 …d="M 90.252,69.685 C 92.35,69.685 94.048,67.987 94.048,65.888 L 86.453,65.888 C 86.453,67.986 88.1… [all …]
|