| /openbmc/qemu/tests/tcg/tricore/c/ |
| H A D | crt0-tc2x.S | 179 mov.d %d1,%a3 180 extr.u %d1,%d1,6,16 #; get CSA index 181 or %d1,%d1,%d0 #; add segment number 182 mtcr $lcx,%d1 #; initialize LCX 186 mov.d %d1,%a4 #; %d1 = current CSA address 187 extr.u %d1,%d1,6,16 #; get CSA index 188 or %d1,%d1,%d0 #; add segment number 189 st.w [%a3],%d1 #; store "nextCSA" pointer 194 mov.d %d1,%a4 #; %d1 = current CSA address 195 extr.u %d1,%d1,6,16 #; get CSA index [all …]
|
| /openbmc/u-boot/board/freescale/m54451evb/ |
| H A D | sbf_dram_init.S | 25 move.l #0x13, %d1 33 add.l #1, %d1 41 or.l %d1, (%a1) 44 or.l %d1, (%a2) 63 move.l #1000, %d1 82 move.l #500, %d1 85 move.l #(CONFIG_SYS_SDRAM_CTRL), %d1 86 and.l #0x7FFFFFFF, %d1 88 or.l #0x10000C00, %d1 90 move.l %d1, (%a2) [all …]
|
| /openbmc/u-boot/board/freescale/m54455evb/ |
| H A D | sbf_dram_init.S | 25 move.l #0x13, %d1 33 add.l #1, %d1 41 or.l %d1, (%a1) 44 or.l %d1, (%a2) 69 move.l #1000, %d1 86 move.l #500, %d1 89 move.l #(CONFIG_SYS_SDRAM_CTRL), %d1 90 and.l #0x7FFFFFFF, %d1 92 or.l #0x10000C00, %d1 94 move.l %d1, (%a2) [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/uw-imap/uw-imap/ |
| H A D | 0001-Fix-Wincompatible-function-pointer-types.patch | 35 -int mh_numsort (const void *d1,const void *d2); 37 +int mh_numsort (const struct dirent **d1,const struct dirent **d2); 51 * Returns: negative if d1 < d2, 0 if d1 == d2, postive if d1 > d2 54 -int mh_numsort (const void *d1,const void *d2) 55 +int mh_numsort (const struct dirent **d1,const struct dirent **d2) 57 return atoi ((*(struct direct **) d1)->d_name) - 77 -int mix_msgfsort (const void *d1,const void *d2); 79 +int mix_msgfsort (const struct dirent **d1,const struct dirent **d2); 102 * Returns: -1 if d1 < d2, 0 if d1 == d2, 1 d1 > d2 105 -int mix_msgfsort (const void *d1,const void *d2) [all …]
|
| /openbmc/u-boot/fs/yaffs2/ |
| H A D | yaffs_ecc.c | 138 unsigned char d0, d1, d2; /* deltas */ in yaffs_ecc_correct() local 141 d1 = read_ecc[1] ^ test_ecc[1]; in yaffs_ecc_correct() 144 if ((d0 | d1 | d2) == 0) in yaffs_ecc_correct() 148 ((d1 ^ (d1 >> 1)) & 0x55) == 0x55 && in yaffs_ecc_correct() 157 if (d1 & 0x80) in yaffs_ecc_correct() 159 if (d1 & 0x20) in yaffs_ecc_correct() 161 if (d1 & 0x08) in yaffs_ecc_correct() 163 if (d1 & 0x02) in yaffs_ecc_correct() 186 if ((hweight8(d0) + hweight8(d1) + hweight8(d2)) == 1) { in yaffs_ecc_correct()
|
| /openbmc/openbmc-tools/dbus-vis/ |
| H A D | boost_handler_timeline_vis.js | 27 const d1 = desc.substr(idx0 + 2); 29 while (idx1 + 1 < d1.length && 30 ((d1[idx1] >= '0' && d1[idx1] <= '9') || 31 (d1[idx1] >= 'A' && d1[idx1] <= 'F') || 32 (d1[idx1] >= 'a' && d1[idx1] <= 'f'))) { 35 return desc.substr(0, idx0) + d1.substr(idx1)
|
| /openbmc/u-boot/lib/ |
| H A D | tiny-printf.c | 90 unsigned int d3, d2, d1, d0; in put_dec_trunc() local 91 d1 = (q >> 4) & 0xf; in put_dec_trunc() 95 d0 = 6 * (d3 + d2 + d1) + (q & 0xf); in put_dec_trunc() 99 d1 = q + 9 * d3 + 5 * d2 + d1; in put_dec_trunc() 100 if (d1 != 0) { in put_dec_trunc() 101 q = (d1 * 0xcd) >> 11; in put_dec_trunc() 102 d1 = d1 - 10 * q; in put_dec_trunc() 103 *buf++ = d1 + '0'; /* next digit */ in put_dec_trunc()
|
| H A D | vsprintf.c | 53 unsigned d3, d2, d1, d0; in put_dec_trunc() local 54 d1 = (q>>4) & 0xf; in put_dec_trunc() 58 d0 = 6*(d3 + d2 + d1) + (q & 0xf); in put_dec_trunc() 62 d1 = q + 9*d3 + 5*d2 + d1; in put_dec_trunc() 63 if (d1 != 0) { in put_dec_trunc() 64 q = (d1 * 0xcd) >> 11; in put_dec_trunc() 65 d1 = d1 - 10*q; in put_dec_trunc() 66 *buf++ = d1 + '0'; /* next digit */ in put_dec_trunc() 91 unsigned d3, d2, d1, d0; in put_dec_full() local 92 d1 = (q>>4) & 0xf; in put_dec_full() [all …]
|
| /openbmc/sdeventplus/test/utility/ |
| H A D | sdbus.cpp | 31 int d1 = 0, d2 = 0; in TEST_F() local 32 source::Exit(event, [&](source::EventBase&) { d1 = 1; }).set_floating(true); in TEST_F() 40 EXPECT_EQ(1, d1); in TEST_F()
|
| /openbmc/u-boot/arch/m68k/cpu/mcf5227x/ |
| H A D | start.S | 135 move.l #0x13, %d1 143 add.l #1, %d1 149 or.l %d1, (%a1) 152 or.l %d1, (%a2) 274 move.b %d1, (%a0) /* read, copy to dst */ 286 move.b %d1, (%a4) /* read, copy to dst */ 317 move.b (%a3), %d1 432 move.l %a0, %d1 433 add.l #(_ebss - CONFIG_SYS_MONITOR_BASE),%d1 436 cmp.l %a1,%d1 [all …]
|
| /openbmc/qemu/scripts/ |
| H A D | symlink-install-tree.py | 11 def destdir_join(d1: str, d2: str) -> str: 12 if not d1: 15 return str(PurePath(d1, *PurePath(d2).parts[1:]))
|
| /openbmc/u-boot/arch/nios2/lib/ |
| H A D | libgcc.c | 152 UWtype d0, d1, n0, n1, n2; in __udivmoddi4() local 157 d1 = dd.s.high; in __udivmoddi4() 162 if (d1 == 0) in __udivmoddi4() 196 if (d1 == 0) in __udivmoddi4() 272 if (d1 > n1) in __udivmoddi4() 291 count_leading_zeros (bm, d1); in __udivmoddi4() 302 if (n1 > d1 || n0 >= d0) in __udivmoddi4() 305 sub_ddmmss (n1, n0, n1, n0, d1, d0); in __udivmoddi4() 326 d1 = (d1 << bm) | (d0 >> b); in __udivmoddi4() 332 udiv_qrnnd (q0, n1, n2, n1, d1); in __udivmoddi4() [all …]
|
| /openbmc/u-boot/arch/m68k/cpu/mcf5445x/ |
| H A D | start.S | 260 move.b %d1, (%a0) /* read, copy to dst */ 272 move.b %d1, (%a4) /* read, copy to dst */ 302 move.b (%a3), %d1 325 or.l #0x00000040, %d1 326 move.l %d1, (%a1) 377 move.l #0x2000, %d1 405 move.l #0x200, %d1 439 subq.l #1, %d1 561 move.l %a0, %d1 562 add.l #(_ebss - CONFIG_SYS_MONITOR_BASE),%d1 [all …]
|
| /openbmc/qemu/tests/tcg/s390x/ |
| H A D | per.S | 38 larl %r1, d1 40 j1: j d1 42 d1: label
|
| /openbmc/u-boot/arch/m68k/cpu/mcf523x/ |
| H A D | start.S | 197 move.l %a0, %d1 198 add.l #(_ebss - CONFIG_SYS_MONITOR_BASE),%d1 201 cmp.l %a1,%d1 215 move.l (%a1),%d1 216 sub.l #_start,%d1 217 add.l %a0,%d1 218 move.l %d1,(%a1)+
|
| /openbmc/u-boot/arch/m68k/cpu/mcf547x_8x/ |
| H A D | start.S | 200 move.l %a0, %d1 201 add.l #(_ebss - CONFIG_SYS_MONITOR_BASE),%d1 204 cmp.l %a1,%d1 218 move.l (%a1),%d1 219 sub.l #_start,%d1 220 add.l %a0,%d1 221 move.l %d1,(%a1)+
|
| /openbmc/u-boot/arch/m68k/cpu/mcf530x/ |
| H A D | start.S | 196 move.l %a0, %d1 197 add.l #(_ebss - CONFIG_SYS_MONITOR_BASE), %d1 200 cmp.l %a1,%d1 216 move.l (%a1),%d1 217 sub.l #_start, %d1 218 add.l %a0,%d1 219 move.l %d1,(%a1)+
|
| /openbmc/qemu/util/ |
| H A D | bitops.c | 45 unsigned long d1, d2, d3; in find_next_bit() local 47 d1 = *(p+1); in find_next_bit() 53 if (d1 | d2 | d3) { in find_next_bit()
|
| H A D | host-utils.c | 284 Int128 d0, d1, q0, q1, r1, r0, m; in udiv256_qrnnd() local 288 d1 = int128_make64(int128_gethi(d)); in udiv256_qrnnd() 290 r1 = int128_remu(n1, d1); in udiv256_qrnnd() 291 q1 = int128_divu(n1, d1); in udiv256_qrnnd() 309 r0 = int128_remu(r1, d1); in udiv256_qrnnd() 310 q0 = int128_divu(r1, d1); in udiv256_qrnnd()
|
| /openbmc/u-boot/arch/m68k/cpu/mcf532x/ |
| H A D | start.S | 212 move.l %a0, %d1 213 add.l #(_ebss - CONFIG_SYS_MONITOR_BASE),%d1 216 cmp.l %a1,%d1 230 move.l (%a1),%d1 231 sub.l #_start,%d1 232 add.l %a0,%d1 233 move.l %d1,(%a1)+
|
| /openbmc/qemu/target/arm/tcg/ |
| H A D | crypto_helper.c | 174 uint64_t d0, d1; in HELPER() local 177 d1 = n[0] ^ d[1] ^ m[1]; in HELPER() 179 d[1] = d1; in HELPER() 439 uint64_t d1 = rd[1]; in HELPER() local 441 d1 += S1_512(rm[1]) + cho512(rm[1], rn[0], rn[1]); in HELPER() 442 d0 += S1_512(d1 + rm[0]) + cho512(d1 + rm[0], rm[1], rn[0]); in HELPER() 445 rd[1] = d1; in HELPER() 456 uint64_t d1 = rd[1]; in HELPER() local 458 d1 += S0_512(rm[0]) + maj512(rn[0], rm[1], rm[0]); in HELPER() 459 d0 += S0_512(d1) + maj512(d1, rm[0], rm[1]); in HELPER() [all …]
|
| /openbmc/u-boot/arch/m68k/cpu/mcf52x2/ |
| H A D | start.S | 275 move.l %a0, %d1 276 add.l #(_ebss - CONFIG_SYS_MONITOR_BASE),%d1 279 cmp.l %a1,%d1 293 move.l (%a1),%d1 294 sub.l #_start,%d1 295 add.l %a0,%d1 296 move.l %d1,(%a1)+
|
| /openbmc/u-boot/test/ |
| H A D | unicode_ut.c | 37 static const char d1[] = {0x55, 0x2d, 0x42, 0x6f, 0x6f, 0x74, 0x00}; variable 197 ut_asserteq(6, utf8_utf16_strlen(d1)); in unicode_test_utf8_utf16_strlen() 213 ut_asserteq(3, utf8_utf16_strnlen(d1, 3)); in unicode_test_utf8_utf16_strnlen() 214 ut_asserteq(6, utf8_utf16_strnlen(d1, 13)); in unicode_test_utf8_utf16_strnlen() 254 utf8_utf16_strcpy(&pos, d1); in unicode_test_utf8_utf16_strcpy() 300 utf8_utf16_strncpy(&pos, d1, 4); in unicode_test_utf8_utf16_strncpy() 445 ut_asserteq_str(d1, buf); in unicode_test_utf16_utf8_strcpy() 492 ut_assert(!strncmp(buf, d1, 4)); in unicode_test_utf16_utf8_strncpy()
|
| /openbmc/qemu/tests/qtest/ |
| H A D | m48t59-test.c | 84 struct tm d1, d2; in tm_cmp() local 86 memcpy(&d1, lhs, sizeof(d1)); in tm_cmp() 89 a = mktime(&d1); in tm_cmp()
|
| /openbmc/u-boot/arch/x86/lib/ |
| H A D | string.c | 135 int d0, d1, d2, d3, d4, d5; in memmove() local 284 : "=&c" (d0), "=&S" (d1), "=&D" (d2), in memmove()
|