HomeSort by: relevance | last modified time | path
    Searched defs:val32 (Results 1 - 16 of 16) sorted by relevancy

  /src/sys/arch/evbppc/wii/dev/
viio.h 40 uint32_t val32; member in union:vi_regs::__anon3a008b4a010a
  /src/sys/arch/amd64/amd64/
kobj_machdep.c 77 Elf32_Addr *where32, val32; local in function:kobj_reloc
133 val32 = (Elf32_Addr)(addr + addend - (Elf64_Addr)where);
134 memcpy(where32, &val32, sizeof(val32));
142 val32 = (Elf32_Addr)(addr + addend);
144 memcpy(where32, &val32, sizeof(val32));
  /src/tests/modules/ufetchstore/
common.h 48 uint32_t val32; member in union:ufetchstore_test_args::__anon226e2151010a
t_ufetchstore.c 193 *res = args.val32;
248 .val32 = val,
278 .val32 = new,
312 uint32_t val32[sizeof(long) / 4]; member in union:memory_cell::__anon8b7b0c82010a
429 ATF_REQUIRE_EQ(do_ufetch_32(&cell.val32[index32], &res), 0);
754 ATF_REQUIRE_EQ(do_ustore_32(&cell.val32[index32], test_pattern32), 0);
  /src/sys/dev/fdt/
fdt_spi.c 193 uint32_t val32; local in function:fdtbus_spi_get_transfer_mode
206 if (of_getprop_uint32(node, "spi-max-frequency", &val32) == 0) {
207 args->max_frequency = val32;
220 if (of_getprop_uint32(node, "spi-cs-setup-delay-ns", &val32) == 0) {
221 args->cs_setup_delay_ns = val32;
223 if (of_getprop_uint32(node, "spi-cs-hold-delay-ns", &val32) == 0) {
224 args->cs_hold_delay_ns = val32;
226 if (of_getprop_uint32(node, "spi-cs-inactive-delay-ns", &val32) == 0) {
227 args->cs_inact_delay_ns = val32;
231 if (of_getprop_uint32(node, "spi-rx-bus-width", &val32) == 0)
    [all...]
  /src/sbin/newfs_v7fs/
main.c 162 uint32_t (*val32)(uint32_t) = fs->val.conv32; local in function:make_freeblocklist
175 (*val32)(fb->freeblock[i + 1]));
186 fb->freeblock[i] = (*val32)(j);
197 return (*val32)(fb->freeblock[0]);
  /src/sys/arch/arm/nxp/
imx6_platform.c 188 u_int val32; local in function:imx6sx_platform_bootstrap
232 val32 = 0;
233 of_getprop_uint32(intc_node, "phandle", &val32);
235 val32);
238 val32 = 0;
241 of_getprop_uint32(clks_node, "phandle", &val32);
242 clkval[0] = cpu_to_fdt32(val32);
  /src/lib/libc/citrus/
citrus_csmapper.c 111 uint32_t val32; local in function:find_best_pivot_pvdb
134 ret = get32(&r2, &val32);
137 norm = val32;
148 ret = get32(&r2, &val32);
151 norm += val32;
  /src/sys/arch/amd64/stand/prekern/
elf.c 197 Elf32_Addr *where32, val32; local in function:elf_apply_reloc
242 val32 = (Elf32_Addr)(addr + addend - (Elf64_Addr)where);
243 *where32 = val32;
249 val32 = (Elf32_Addr)(addr + addend);
251 *where32 = val32;
  /src/sys/dev/i2c/
am2315.c 363 uint32_t val32; local in function:am2315_refresh
425 val32 = buf[2] << 8 | buf[3];
426 val32 = val32 * 100000;
428 device_xname(sc->sc_dev), val32));
429 edata->value_cur = val32;
435 val32 = buf[2] << 8 | buf[3];
437 val32 = 273150000 - (val32 * 100000);
439 val32 = (val32 * 100000) + 273150000
    [all...]
  /src/tests/modules/
t_ufetchstore.c 193 *res = args.val32;
248 .val32 = val,
278 .val32 = new,
312 uint32_t val32[sizeof(long) / 4]; member in union:memory_cell::__anon36d1cb47010a
429 ATF_REQUIRE_EQ(do_ufetch_32(&cell.val32[index32], &res), 0);
754 ATF_REQUIRE_EQ(do_ustore_32(&cell.val32[index32], test_pattern32), 0);
  /src/sys/dev/usb/
if_gscan.c 614 uint32_t val32; local in function:gscan_attach
647 val32 = htole32(0x0000beef);
649 &val32, sizeof(val32));
  /src/sys/kern/
sys_futex.c 2050 uint32_t val32; local in function:futex_fetch_robust_entry
2052 error = ufetch_32((uint32_t *)uaddr, &val32);
2054 val = val32;
  /src/sys/dev/pci/
if_bnx.c 1656 uint32_t cmd, val32; local in function:bnx_nvram_write_dword
1674 memcpy(&val32, val, 4);
1675 val32 = htobe32(val32);
1676 REG_WR(sc, BNX_NVM_WRITE, val32);
  /src/sys/dev/ic/
bwivar.h 300 uint32_t val32; member in union:bwi_fw_iv::__anon3ba07745010a
bwi.c 2250 uint32_t val32; local in function:bwi_mac_fw_load_iv
2252 if (iv_img_size < sizeof(iv->iv_val.val32)) {
2254 "invalid IV image, val32\n");
2257 iv_img_size -= sizeof(iv->iv_val.val32);
2258 sz += sizeof(iv->iv_val.val32);
2260 val32 = be32toh(iv->iv_val.val32);
2261 CSR_WRITE_4(sc, ofs, val32);

Completed in 28 milliseconds