/openbmc/linux/lib/ |
H A D | percpu_test.c | 28 unsigned long ul = 0; in percpu_test_init() local 42 ul = 0; in percpu_test_init() 45 ul += 1UL; in percpu_test_init() 47 CHECK(ul, ulong_counter, 1); in percpu_test_init() 49 ul += -1UL; in percpu_test_init() 51 CHECK(ul, ulong_counter, 0); in percpu_test_init() 53 ul += -(unsigned long)1; in percpu_test_init() 55 CHECK(ul, ulong_counter, -1); in percpu_test_init() 57 ul = 0; in percpu_test_init() 60 ul -= 1; in percpu_test_init() [all …]
|
/openbmc/qemu/target/riscv/ |
H A D | m128_helper.c | 26 target_ulong ul, target_ulong uh, in HELPER() 36 q = int128_divu(int128_make128(ul, uh), int128_make128(vl, vh)); in HELPER() 46 target_ulong ul, target_ulong uh, in HELPER() 53 rl = ul; in HELPER() 56 r = int128_remu(int128_make128(ul, uh), int128_make128(vl, vh)); in HELPER() 66 target_ulong ul, target_ulong uh, in HELPER() 75 } else if (uh == (1ULL << (TARGET_LONG_BITS - 1)) && ul == 0 && in HELPER() 78 ql = ul; in HELPER() 81 q = int128_divs(int128_make128(ul, uh), int128_make128(vl, vh)); in HELPER() 91 target_ulong ul, target_ulong uh, in HELPER() [all …]
|
/openbmc/linux/arch/xtensa/lib/ |
H A D | ashldi3.S | 8 #define ul a3 macro 11 #define ul a2 macro 19 src uh, uh, ul 20 sll ul, ul 24 sll uh, ul 25 movi ul, 0
|
H A D | lshrdi3.S | 8 #define ul a3 macro 11 #define ul a2 macro 19 src ul, uh, ul 24 srl ul, uh
|
H A D | ashrdi3.S | 8 #define ul a3 macro 11 #define ul a2 macro 19 src ul, uh, ul 24 sra ul, uh
|
/openbmc/linux/include/asm-generic/bitops/ |
H A D | __fls.h | 18 if (!(word & (~0ul << 32))) { in __fls() 23 if (!(word & (~0ul << (BITS_PER_LONG-16)))) { in __fls() 27 if (!(word & (~0ul << (BITS_PER_LONG-8)))) { in __fls() 31 if (!(word & (~0ul << (BITS_PER_LONG-4)))) { in __fls() 35 if (!(word & (~0ul << (BITS_PER_LONG-2)))) { in __fls() 39 if (!(word & (~0ul << (BITS_PER_LONG-1)))) in __fls()
|
/openbmc/u-boot/include/asm-generic/bitops/ |
H A D | __fls.h | 17 if (!(word & (~0ul << 32))) { in __fls() 22 if (!(word & (~0ul << (BITS_PER_LONG-16)))) { in __fls() 26 if (!(word & (~0ul << (BITS_PER_LONG-8)))) { in __fls() 30 if (!(word & (~0ul << (BITS_PER_LONG-4)))) { in __fls() 34 if (!(word & (~0ul << (BITS_PER_LONG-2)))) { in __fls() 38 if (!(word & (~0ul << (BITS_PER_LONG-1)))) in __fls()
|
/openbmc/linux/tools/include/asm-generic/bitops/ |
H A D | __fls.h | 18 if (!(word & (~0ul << 32))) { in __fls() 23 if (!(word & (~0ul << (BITS_PER_LONG-16)))) { in __fls() 27 if (!(word & (~0ul << (BITS_PER_LONG-8)))) { in __fls() 31 if (!(word & (~0ul << (BITS_PER_LONG-4)))) { in __fls() 35 if (!(word & (~0ul << (BITS_PER_LONG-2)))) { in __fls() 39 if (!(word & (~0ul << (BITS_PER_LONG-1)))) in __fls()
|
/openbmc/linux/drivers/hid/amd-sfh-hid/sfh1_1/ |
H A D | amd_sfh_interface.c | 33 cmd_base.ul = 0; in amd_start_sensor() 39 writel(cmd_base.ul, privdata->mmio + AMD_C2P_MSG(0)); in amd_start_sensor() 46 cmd_base.ul = 0; in amd_stop_sensor() 53 writel(cmd_base.ul, privdata->mmio + AMD_C2P_MSG(0)); in amd_stop_sensor() 60 cmd_base.ul = 0; in amd_stop_all_sensor() 66 writel(cmd_base.ul, privdata->mmio + AMD_C2P_MSG(0)); in amd_stop_all_sensor()
|
/openbmc/linux/scripts/coccinelle/misc/ |
H A D | do_div.cocci | 68 unsigned long ul : script:python() { filter_out_safe_constants(ul) }; 76 * do_div(f, ul); 87 unsigned long ul : script:python() { filter_out_safe_constants(ul) }; 94 do_div@p(f, ul); 103 ul << r.ul; 131 ul << r.ul;
|
/openbmc/u-boot/drivers/usb/gadget/ |
H A D | core.c | 429 void urb_link_init (urb_link * ul) in urb_link_init() argument 431 if (ul) { in urb_link_init() 432 ul->prev = ul->next = ul; in urb_link_init() 445 urb_link *ul = &urb->link; in urb_detach() local 446 ul->next->prev = ul->prev; in urb_detach() 447 ul->prev->next = ul->next; in urb_detach() 448 urb_link_init (ul); in urb_detach()
|
/openbmc/linux/net/sched/ |
H A D | act_csum.c | 259 u16 ul; in tcf_csum_ipv4_udp() local 276 ul = ntohs(udph->len); in tcf_csum_ipv4_udp() 283 if (ul == 0) in tcf_csum_ipv4_udp() 285 else if ((ul >= sizeof(*udph)) && (ul <= ipl - ihl)) in tcf_csum_ipv4_udp() 286 skb->csum = csum_partial(udph, ul, 0); in tcf_csum_ipv4_udp() 290 if (ul != ipl - ihl) in tcf_csum_ipv4_udp() 293 skb->csum = csum_partial(udph, ul, 0); in tcf_csum_ipv4_udp() 297 ul, iph->protocol, in tcf_csum_ipv4_udp() 315 u16 ul; in tcf_csum_ipv6_udp() local 332 ul = ntohs(udph->len); in tcf_csum_ipv6_udp() [all …]
|
/openbmc/linux/tools/testing/selftests/net/forwarding/ |
H A D | mirror_gre_bound.sh | 116 ip link add name ul type dummy 117 ip link set dev ul master v$swp3 118 ip link set dev ul up 126 ttl 100 tos inherit dev ul 131 ttl 100 tos inherit dev ul allow-localremote 145 ip link del dev ul
|
/openbmc/linux/arch/mips/include/asm/ |
H A D | bitops.h | 340 if (!(word & (~0ul << 32))) { in __fls() 345 if (!(word & (~0ul << (BITS_PER_LONG-16)))) { in __fls() 349 if (!(word & (~0ul << (BITS_PER_LONG-8)))) { in __fls() 353 if (!(word & (~0ul << (BITS_PER_LONG-4)))) { in __fls() 357 if (!(word & (~0ul << (BITS_PER_LONG-2)))) { in __fls() 361 if (!(word & (~0ul << (BITS_PER_LONG-1)))) in __fls()
|
/openbmc/linux/drivers/hid/amd-sfh-hid/ |
H A D | amd_sfh_pcie.c | 58 cmd_base.ul = 0; in amd_start_sensor_v2() 69 writel(cmd_base.ul, privdata->mmio + AMD_C2P_MSG0); in amd_start_sensor_v2() 76 cmd_base.ul = 0; in amd_stop_sensor_v2() 84 writel(cmd_base.ul, privdata->mmio + AMD_C2P_MSG0); in amd_stop_sensor_v2() 96 writel(cmd_base.ul, privdata->mmio + AMD_C2P_MSG0); in amd_stop_all_sensor_v2() 160 writel(cmd_param.ul, privdata->mmio + AMD_C2P_MSG1); in amd_start_sensor() 161 writel(cmd_base.ul, privdata->mmio + AMD_C2P_MSG0); in amd_start_sensor() 175 writel(cmd_base.ul, privdata->mmio + AMD_C2P_MSG0); in amd_stop_sensor() 188 writel(cmd_base.ul, privdata->mmio + AMD_C2P_MSG0); in amd_stop_all_sensors()
|
H A D | amd_sfh_pcie.h | 33 u32 ul; member 64 u32 ul; member
|
/openbmc/webui-vue/tests/unit/__snapshots__/ |
H A D | AppNavigation.spec.js.snap | 11 <ul 103 <ul 130 </ul> 205 <ul 232 </ul> 289 <ul 370 </ul> 430 <ul 475 </ul> 535 <ul [all …]
|
/openbmc/linux/arch/alpha/lib/ |
H A D | checksum.c | 24 unsigned long ul; in from64to16() member 29 in_v.ul = x; in from64to16() 30 tmp_v.ul = (unsigned long) in_v.ui[0] + (unsigned long) in_v.ui[1]; in from64to16() 34 out_v.ul = (unsigned long) tmp_v.us[0] + (unsigned long) tmp_v.us[1] in from64to16()
|
/openbmc/docs/designs/ |
H A D | bios-bmc-smm-error-logging.md | 73 …ul><li>BIT0 - BMC UE reserved region “switch”<ul><li>Toggled when BMC reads a UE from the reserved… 76 …ul><li>BIT0 - BIOS UE reserved region “switch”<ul><li> Toggled when BIOS writes a UE to the reserv…
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/ |
H A D | bootstrap3-transition.css | 23 ul.configuration-list { 110 .modal-body ul.list-unstyled { 189 .popover-content > ul { 226 .jumbotron ul { 232 .jumbotron ul > li {
|
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/ |
H A D | 0001-Fix-type-mismatch-on-32bit-arches.patch | 15 return std::max(socketIds.size(), 1ul); 29 - return std::max(socketIds.size(), 1ul); 30 + return std::max(static_cast<unsigned long>(socketIds.size()), 1ul);
|
/openbmc/webui-vue/src/views/Operations/FactoryReset/ |
H A D | FactoryResetModal.vue | 12 <ul v-if="resetType == 'resetBios'" class="pl-3 mb-4"> 19 </ul> 20 <ul v-else-if="resetType == 'resetToDefaults'" class="pl-3 mb-4"> 33 </ul>
|
/openbmc/rest-dbus/resources/ |
H A D | jstree.style.css | 1 …ul{display:block;margin:0;padding:0;list-style-type:none;list-style-image:none}.jstree-node{white-…
|
/openbmc/linux/include/linux/ |
H A D | minmax.h | 101 __careful_cmp(min, (x) + 0u + 0ul + 0ull, (y) + 0u + 0ul + 0ull) 109 __careful_cmp(max, (x) + 0u + 0ul + 0ull, (y) + 0u + 0ul + 0ull)
|
/openbmc/linux/drivers/md/ |
H A D | dm-io-tracker.h | 32 iot->in_flight = 0ul; in dm_iot_init() 33 iot->idle_time = 0ul; in dm_iot_init()
|