Home
last modified time | relevance | path

Searched refs:bu (Results 1 – 25 of 49) sorted by relevance

12

/openbmc/linux/arch/sparc/lib/
H A Ducmpdi2.c8 const DWunion bu = {.ll = b}; in __ucmpdi2() local
10 if ((unsigned int) au.s.high < (unsigned int) bu.s.high) in __ucmpdi2()
12 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high) in __ucmpdi2()
14 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __ucmpdi2()
16 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __ucmpdi2()
H A Dcmpdi2.c11 const DWunion bu = { in __cmpdi2() local
15 if (au.s.high < bu.s.high) in __cmpdi2()
17 else if (au.s.high > bu.s.high) in __cmpdi2()
20 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __cmpdi2()
22 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __cmpdi2()
/openbmc/linux/arch/microblaze/lib/
H A Dcmpdi2.c11 const DWunion bu = { in __cmpdi2() local
15 if (au.s.high < bu.s.high) in __cmpdi2()
17 else if (au.s.high > bu.s.high) in __cmpdi2()
20 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __cmpdi2()
22 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __cmpdi2()
H A Ducmpdi2.c9 const DWunion bu = {.ll = b}; in __ucmpdi2() local
11 if ((unsigned int) au.s.high < (unsigned int) bu.s.high) in __ucmpdi2()
13 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high) in __ucmpdi2()
15 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __ucmpdi2()
17 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __ucmpdi2()
/openbmc/linux/lib/
H A Ducmpdi2.c11 const DWunion bu = {.ll = b}; in __ucmpdi2() local
13 if ((unsigned int) au.s.high < (unsigned int) bu.s.high) in __ucmpdi2()
15 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high) in __ucmpdi2()
17 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __ucmpdi2()
19 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __ucmpdi2()
H A Dcmpdi2.c14 const DWunion bu = { in __cmpdi2() local
18 if (au.s.high < bu.s.high) in __cmpdi2()
20 else if (au.s.high > bu.s.high) in __cmpdi2()
23 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __cmpdi2()
25 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __cmpdi2()
H A Duuid.c68 void uuid_gen(uuid_t *bu) in uuid_gen() argument
70 __uuid_gen_common(bu->b); in uuid_gen()
72 bu->b[6] = (bu->b[6] & 0x0F) | 0x40; in uuid_gen()
/openbmc/linux/arch/parisc/lib/
H A Ducmpdi2.c16 union ull_union bu = {.ull = b}; in __ucmpdi2() local
18 if (au.ui.high < bu.ui.high) in __ucmpdi2()
20 else if (au.ui.high > bu.ui.high) in __ucmpdi2()
22 if (au.ui.low < bu.ui.low) in __ucmpdi2()
24 else if (au.ui.low > bu.ui.low) in __ucmpdi2()
/openbmc/linux/fs/ubifs/
H A Dfile.c601 struct bu_info *bu, int *n) in populate_page() argument
603 int i = 0, nn = *n, offs = bu->zbranch[0].offs, hole = 0, read = 0; in populate_page()
626 if (nn >= bu->cnt) { in populate_page()
629 } else if (key_block(c, &bu->zbranch[nn].key) == page_block) { in populate_page()
632 dn = bu->buf + (bu->zbranch[nn].offs - offs); in populate_page()
660 } else if (key_block(c, &bu->zbranch[nn].key) < page_block) { in populate_page()
711 static int ubifs_do_bulk_read(struct ubifs_info *c, struct bu_info *bu, in ubifs_do_bulk_read() argument
719 int allocate = bu->buf ? 0 : 1; in ubifs_do_bulk_read()
723 err = ubifs_tnc_get_bu_keys(c, bu); in ubifs_do_bulk_read()
727 if (bu->eof) { in ubifs_do_bulk_read()
[all …]
H A Dtnc.c1552 int ubifs_tnc_get_bu_keys(struct ubifs_info *c, struct bu_info *bu) in ubifs_tnc_get_bu_keys() argument
1556 unsigned int block = key_block(c, &bu->key); in ubifs_tnc_get_bu_keys()
1559 bu->cnt = 0; in ubifs_tnc_get_bu_keys()
1560 bu->blk_cnt = 0; in ubifs_tnc_get_bu_keys()
1561 bu->eof = 0; in ubifs_tnc_get_bu_keys()
1565 err = ubifs_lookup_level0(c, &bu->key, &znode, &n); in ubifs_tnc_get_bu_keys()
1572 if (len > bu->buf_len) { in ubifs_tnc_get_bu_keys()
1577 bu->zbranch[bu->cnt++] = znode->zbranch[n]; in ubifs_tnc_get_bu_keys()
1578 bu->blk_cnt += 1; in ubifs_tnc_get_bu_keys()
1594 if (key_inum(c, key) != key_inum(c, &bu->key) || in ubifs_tnc_get_bu_keys()
[all …]
/openbmc/u-boot/fs/ubifs/
H A Dtnc.c1502 int ubifs_tnc_get_bu_keys(struct ubifs_info *c, struct bu_info *bu) in ubifs_tnc_get_bu_keys() argument
1506 unsigned int block = key_block(c, &bu->key); in ubifs_tnc_get_bu_keys()
1509 bu->cnt = 0; in ubifs_tnc_get_bu_keys()
1510 bu->blk_cnt = 0; in ubifs_tnc_get_bu_keys()
1511 bu->eof = 0; in ubifs_tnc_get_bu_keys()
1515 err = ubifs_lookup_level0(c, &bu->key, &znode, &n); in ubifs_tnc_get_bu_keys()
1522 if (len > bu->buf_len) { in ubifs_tnc_get_bu_keys()
1527 bu->zbranch[bu->cnt++] = znode->zbranch[n]; in ubifs_tnc_get_bu_keys()
1528 bu->blk_cnt += 1; in ubifs_tnc_get_bu_keys()
1544 if (key_inum(c, key) != key_inum(c, &bu->key) || in ubifs_tnc_get_bu_keys()
[all …]
/openbmc/u-boot/arch/nios2/lib/
H A Dlibgcc.c133 const DWunion bu = {.ll = b}; in __cmpdi2() local
135 if (au.s.high < bu.s.high) in __cmpdi2()
137 else if (au.s.high > bu.s.high) in __cmpdi2()
139 if ((UWtype) au.s.low < (UWtype) bu.s.low) in __cmpdi2()
141 else if ((UWtype) au.s.low > (UWtype) bu.s.low) in __cmpdi2()
430 const DWunion bu = {.ll = b}; in __ucmpdi2() local
432 if ((UWtype) au.s.high < (UWtype) bu.s.high) in __ucmpdi2()
434 else if ((UWtype) au.s.high > (UWtype) bu.s.high) in __ucmpdi2()
436 if ((UWtype) au.s.low < (UWtype) bu.s.low) in __ucmpdi2()
438 else if ((UWtype) au.s.low > (UWtype) bu.s.low) in __ucmpdi2()
/openbmc/qemu/tests/tcg/i386/
H A Dtest-i386-fprem.c173 const union float80u bu = {.d = b}; in do_fprem() local
182 bu.ieee.negative, bu.ieee.exponent, bu.ieee.one, in do_fprem()
183 bu.ieee_nan.quiet_nan, (unsigned long long)bu.ieee.mantissa, in do_fprem()
/openbmc/openbmc-test-automation/systest/
H A Dtest_boot_acceptance.robot16 # HTX_MDT_PROFILE MDT profile to be executed (e.g. "mdt.bu, net.mdt, etc")
17 # default is "mdt.bu".
22 # HTX runs mdt.bu and doesn't log errors during the acceptance execution.
31 # mdt.bu:
58 ${HTX_MDT_PROFILE} mdt.bu
H A Dnetwork_stability_test.robot3 ... By default running HTX mdt.bu profile for stress test.
45 Run Keyword If '${HTX_MDT_PROFILE}' == 'mdt.bu'
/openbmc/qemu/tests/tcg/tricore/asm/
H A Dtest_ld_bu.S12 TEST_LD(ld.bu, 1, 0xff, test_data + 4, [+AREG_ADDR]4) # pre_inc
13 TEST_LD(ld.bu, 2, 0xad, test_data + 4, [AREG_ADDR+]4) # post_inc
/openbmc/linux/arch/arm/mach-at91/
H A Dpm.c129 struct at91_pm_bu *bu; member
479 soc_pm.bu->suspended = 1; in at91_pm_begin()
480 else if (soc_pm.bu) in at91_pm_begin()
481 soc_pm.bu->suspended = 0; in at91_pm_begin()
562 soc_pm.bu->ddr_phy_calibration[0] = modified_gray_code[index]; in at91_suspend_finish()
566 soc_pm.bu->ddr_phy_calibration[0] |= modified_gray_code[index]; in at91_suspend_finish()
570 soc_pm.bu->ddr_phy_calibration[0] |= modified_gray_code[index]; in at91_suspend_finish()
574 soc_pm.bu->ddr_phy_calibration[0] |= modified_gray_code[index]; in at91_suspend_finish()
582 soc_pm.bu->ddr_phy_calibration[i] = in at91_suspend_finish()
1080 soc_pm.bu = (void *)gen_pool_alloc(sram_pool, sizeof(struct at91_pm_bu)); in at91_pm_backup_init()
[all …]
/openbmc/linux/drivers/gpu/drm/i915/display/
H A Dintel_tv.c68 u16 ru, gu, bu, au; member
196 .ru = 0x0733, .gu = 0x052d, .bu = 0x05c7, .au = 0x0200,
206 .ru = 0x076a, .gu = 0x0564, .bu = 0x030d, .au = 0x0200,
216 .ru = 0x074c, .gu = 0x0546, .bu = 0x05ec, .au = 0x0200,
226 .ru = 0x0788, .gu = 0x0581, .bu = 0x0322, .au = 0x0200,
236 .ru = 0x0745, .gu = 0x053f, .bu = 0x05e1, .au = 0x0200,
246 .ru = 0x0780, .gu = 0x0579, .bu = 0x031c, .au = 0x0200,
256 .ru = 0x0733, .gu = 0x052d, .bu = 0x05c7, .au = 0x0200,
266 .ru = 0x076a, .gu = 0x0564, .bu = 0x030d, .au = 0x0200,
276 .ru = 0x0733, .gu = 0x052d, .bu = 0x05c7, .au = 0x0200,
[all …]
/openbmc/openbmc/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/
H A D14_cidr_support.patch9 .IP \(bu
13 +.IP \(bu
H A D15_match_clarify.patch12 .IP \(bu
/openbmc/openbmc-test-automation/lib/
H A Dhtx_resource.robot15 ${HTX_MDT_PROFILE} mdt.bu
/openbmc/linux/drivers/net/pse-pd/
H A DKconfig21 example for basic implementation of PoDL (802.3bu) specification.
/openbmc/qemu/contrib/gitdm/
H A Dgroup-map-academics21 bu.edu
/openbmc/qemu/tests/tcg/loongarch64/system/
H A Dboot.S40 ld.bu t0, t0, 0
/openbmc/linux/arch/loongarch/lib/
H A Dunaligned.S38 2: ld.bu t3, a0, 0

12