Home
last modified time | relevance | path

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

/Linux-v4.19/arch/sparc/lib/
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()
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()
/Linux-v4.19/arch/microblaze/lib/
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()
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()
/Linux-v4.19/lib/
Dcmpdi2.c26 const DWunion bu = { in __cmpdi2() local
30 if (au.s.high < bu.s.high) in __cmpdi2()
32 else if (au.s.high > bu.s.high) in __cmpdi2()
35 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __cmpdi2()
37 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __cmpdi2()
Ducmpdi2.c23 const DWunion bu = {.ll = b}; in __ucmpdi2() local
25 if ((unsigned int) au.s.high < (unsigned int) bu.s.high) in __ucmpdi2()
27 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high) in __ucmpdi2()
29 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __ucmpdi2()
31 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __ucmpdi2()
Duuid.c66 void uuid_gen(uuid_t *bu) in uuid_gen() argument
68 __uuid_gen_common(bu->b); in uuid_gen()
70 bu->b[6] = (bu->b[6] & 0x0F) | 0x40; in uuid_gen()
/Linux-v4.19/arch/parisc/lib/
Ducmpdi2.c15 union ull_union bu = {.ull = b}; in __ucmpdi2() local
17 if (au.ui.high < bu.ui.high) in __ucmpdi2()
19 else if (au.ui.high > bu.ui.high) in __ucmpdi2()
21 if (au.ui.low < bu.ui.low) in __ucmpdi2()
23 else if (au.ui.low > bu.ui.low) in __ucmpdi2()
/Linux-v4.19/arch/h8300/lib/
Ducmpdi2.c7 const DWunion bu = {.ll = b}; in __ucmpdi2() local
9 if ((UWtype) au.s.high < (UWtype) bu.s.high) in __ucmpdi2()
11 else if ((UWtype) au.s.high > (UWtype) bu.s.high) in __ucmpdi2()
13 if ((UWtype) au.s.low < (UWtype) bu.s.low) in __ucmpdi2()
15 else if ((UWtype) au.s.low > (UWtype) bu.s.low) in __ucmpdi2()
/Linux-v4.19/fs/ubifs/
Dfile.c619 struct bu_info *bu, int *n) in populate_page() argument
621 int i = 0, nn = *n, offs = bu->zbranch[0].offs, hole = 0, read = 0; in populate_page()
644 if (nn >= bu->cnt) { in populate_page()
647 } else if (key_block(c, &bu->zbranch[nn].key) == page_block) { in populate_page()
650 dn = bu->buf + (bu->zbranch[nn].offs - offs); in populate_page()
678 } else if (key_block(c, &bu->zbranch[nn].key) < page_block) { in populate_page()
729 static int ubifs_do_bulk_read(struct ubifs_info *c, struct bu_info *bu, in ubifs_do_bulk_read() argument
737 int allocate = bu->buf ? 0 : 1; in ubifs_do_bulk_read()
741 err = ubifs_tnc_get_bu_keys(c, bu); in ubifs_do_bulk_read()
745 if (bu->eof) { in ubifs_do_bulk_read()
[all …]
Dtnc.c1522 int ubifs_tnc_get_bu_keys(struct ubifs_info *c, struct bu_info *bu) in ubifs_tnc_get_bu_keys() argument
1526 unsigned int block = key_block(c, &bu->key); in ubifs_tnc_get_bu_keys()
1529 bu->cnt = 0; in ubifs_tnc_get_bu_keys()
1530 bu->blk_cnt = 0; in ubifs_tnc_get_bu_keys()
1531 bu->eof = 0; in ubifs_tnc_get_bu_keys()
1535 err = ubifs_lookup_level0(c, &bu->key, &znode, &n); in ubifs_tnc_get_bu_keys()
1542 if (len > bu->buf_len) { in ubifs_tnc_get_bu_keys()
1547 bu->zbranch[bu->cnt++] = znode->zbranch[n]; in ubifs_tnc_get_bu_keys()
1548 bu->blk_cnt += 1; in ubifs_tnc_get_bu_keys()
1564 if (key_inum(c, key) != key_inum(c, &bu->key) || in ubifs_tnc_get_bu_keys()
[all …]
Dsuper.c1133 if (c->bu.buf) in bu_init()
1137 c->bu.buf = kmalloc(c->max_bu_buf_len, GFP_KERNEL | __GFP_NOWARN); in bu_init()
1138 if (!c->bu.buf) { in bu_init()
1526 kfree(c->bu.buf); in mount_ubifs()
1565 kfree(c->bu.buf); in ubifs_umount()
1910 kfree(c->bu.buf); in ubifs_remount_fs()
1911 c->bu.buf = NULL; in ubifs_remount_fs()
Dubifs.h1295 struct bu_info bu; member
1621 int ubifs_tnc_get_bu_keys(struct ubifs_info *c, struct bu_info *bu);
1622 int ubifs_tnc_bulk_read(struct ubifs_info *c, struct bu_info *bu);
/Linux-v4.19/drivers/gpu/drm/i915/
Dintel_tv.c59 u16 ru, gu, bu, au; member
187 .ru = 0x0733, .gu = 0x052d, .bu = 0x05c7, .au = 0x0200,
197 .ru = 0x076a, .gu = 0x0564, .bu = 0x030d, .au = 0x0200,
207 .ru = 0x074c, .gu = 0x0546, .bu = 0x05ec, .au = 0x0200,
217 .ru = 0x0788, .gu = 0x0581, .bu = 0x0322, .au = 0x0200,
227 .ru = 0x0745, .gu = 0x053f, .bu = 0x05e1, .au = 0x0200,
237 .ru = 0x0780, .gu = 0x0579, .bu = 0x031c, .au = 0x0200,
247 .ru = 0x0733, .gu = 0x052d, .bu = 0x05c7, .au = 0x0200,
257 .ru = 0x076a, .gu = 0x0564, .bu = 0x030d, .au = 0x0200,
267 .ru = 0x0733, .gu = 0x052d, .bu = 0x05c7, .au = 0x0200,
[all …]
/Linux-v4.19/arch/sparc/math-emu/
Dmath_32.c282 #define TYPE(dummy, r, ru, b, bu, a, au) type = (au << 2) | (a << 0) | (bu << 5) | (b << 3) | (ru <… in do_one_mathemu() argument
Dmath_64.c176 #define TYPE(ftt, r, ru, b, bu, a, au) type = (au << 2) | (a << 0) | (bu << 5) | (b << 3) | (ru << … in do_mathemu() argument
/Linux-v4.19/drivers/pci/
Dsetup-bus.c637 u32 l, bu, lu; in pci_setup_bridge_mmio_pref() local
645 bu = lu = 0; in pci_setup_bridge_mmio_pref()
652 bu = upper_32_bits(region.start); in pci_setup_bridge_mmio_pref()
662 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32, bu); in pci_setup_bridge_mmio_pref()
/Linux-v4.19/drivers/hid/
Dhid-wiimote-modules.c2209 __u8 sx, sy, tb, wb, bd, bm, bp, bo, br, bb, bg, by, bu; in wiimod_guitar_in_ext() local
2254 bu = !(ext[5] & 0x01); in wiimod_guitar_in_ext()
2257 bu = !(ext[0] & 0x01); in wiimod_guitar_in_ext()
2284 bu); in wiimod_guitar_in_ext()
/Linux-v4.19/drivers/scsi/
Dgdth.h730 } bu; member
/Linux-v4.19/drivers/video/fbdev/sis/
Dsis_main.c6382 int bu = ivideo->sisfb_mode_idx; in sisfb_probe() local
6385 if(bu != ivideo->sisfb_mode_idx) { in sisfb_probe()
6387 sisbios_mode[bu].xres, in sisfb_probe()
6388 sisbios_mode[bu].yres, in sisfb_probe()
6389 sisbios_mode[bu].bpp); in sisfb_probe()