/third_party/uboot/u-boot-2020.01/drivers/ata/ |
D | fsl_sata.c | 94 u32 val32; in init_sata() local 176 val32 = in_le32(®->hcontrol); in init_sata() 177 val32 &= ~HCONTROL_ONOFF; in init_sata() 178 val32 |= HCONTROL_FORCE_OFFLINE; in init_sata() 179 out_le32(®->hcontrol, val32); in init_sata() 188 val32 = in_le32(®->hcontrol); in init_sata() 189 val32 |= HCONTROL_HDR_SNOOP; in init_sata() 190 out_le32(®->hcontrol, val32); in init_sata() 193 val32 = in_le32(®->hcontrol); in init_sata() 194 val32 &= ~HCONTROL_INT_EN_ALL; in init_sata() [all …]
|
D | fsl_ahci.c | 113 u32 val32; in init_sata() local 191 val32 = in_le32(®->hcontrol); in init_sata() 192 val32 &= ~HCONTROL_ONOFF; in init_sata() 193 val32 |= HCONTROL_FORCE_OFFLINE; in init_sata() 194 out_le32(®->hcontrol, val32); in init_sata() 203 val32 = in_le32(®->hcontrol); in init_sata() 204 val32 |= HCONTROL_HDR_SNOOP; in init_sata() 205 out_le32(®->hcontrol, val32); in init_sata() 208 val32 = in_le32(®->hcontrol); in init_sata() 209 val32 &= ~HCONTROL_INT_EN_ALL; in init_sata() [all …]
|
/third_party/musl/src/time/ |
D | timer_gettime.c | 17 long val32[4]; in timer_gettime() local 18 r = __syscall(SYS_timer_gettime, t, val32); in timer_gettime() 20 val->it_interval.tv_sec = val32[0]; in timer_gettime() 21 val->it_interval.tv_nsec = val32[1]; in timer_gettime() 22 val->it_value.tv_sec = val32[2]; in timer_gettime() 23 val->it_value.tv_nsec = val32[3]; in timer_gettime()
|
/third_party/musl/compat/time32/ |
D | timerfd_gettime32.c | 5 int __timerfd_gettime32(int t, struct itimerspec32 *val32) in __timerfd_gettime32() argument 11 val32->it_interval.tv_sec = old.it_interval.tv_sec; in __timerfd_gettime32() 12 val32->it_interval.tv_nsec = old.it_interval.tv_nsec; in __timerfd_gettime32() 13 val32->it_value.tv_sec = old.it_value.tv_sec; in __timerfd_gettime32() 14 val32->it_value.tv_nsec = old.it_value.tv_nsec; in __timerfd_gettime32()
|
D | timer_gettime32.c | 4 int __timer_gettime32(timer_t t, struct itimerspec32 *val32) in __timer_gettime32() argument 10 val32->it_interval.tv_sec = old.it_interval.tv_sec; in __timer_gettime32() 11 val32->it_interval.tv_nsec = old.it_interval.tv_nsec; in __timer_gettime32() 12 val32->it_value.tv_sec = old.it_value.tv_sec; in __timer_gettime32() 13 val32->it_value.tv_nsec = old.it_value.tv_nsec; in __timer_gettime32()
|
D | timerfd_settime32.c | 5 int __timerfd_settime32(int t, int flags, const struct itimerspec32 *restrict val32, struct itimers… in __timerfd_settime32() argument 9 .it_interval.tv_sec = val32->it_interval.tv_sec, in __timerfd_settime32() 10 .it_interval.tv_nsec = val32->it_interval.tv_nsec, in __timerfd_settime32() 11 .it_value.tv_sec = val32->it_value.tv_sec, in __timerfd_settime32() 12 .it_value.tv_nsec = val32->it_value.tv_nsec}), in __timerfd_settime32()
|
D | timer_settime32.c | 4 int __timer_settime32(timer_t t, int flags, const struct itimerspec32 *restrict val32, struct itime… in __timer_settime32() argument 8 .it_interval.tv_sec = val32->it_interval.tv_sec, in __timer_settime32() 9 .it_interval.tv_nsec = val32->it_interval.tv_nsec, in __timer_settime32() 10 .it_value.tv_sec = val32->it_value.tv_sec, in __timer_settime32() 11 .it_value.tv_nsec = val32->it_value.tv_nsec}), in __timer_settime32()
|
/third_party/uboot/u-boot-2020.01/board/imgtec/malta/ |
D | malta.c | 170 u32 val32; in pci_init_board() local 204 pci_read_config_dword(bdf, PCI_CFG_PIIX4_GENCFG, &val32); in pci_init_board() 205 val32 |= PCI_CFG_PIIX4_GENCFG_SERIRQ; in pci_init_board() 206 pci_write_config_dword(bdf, PCI_CFG_PIIX4_GENCFG, val32); in pci_init_board() 219 val32 |= PCI_COMMAND_MASTER | PCI_COMMAND_IO; in pci_init_board() 220 pci_write_config_dword(bdf, PCI_COMMAND, val32); in pci_init_board()
|
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/ |
D | pesparse.c | 53 guint32 val32; in mpegts_parse_pes_header() local 62 val32 = GST_READ_UINT32_BE (data); in mpegts_parse_pes_header() 65 if (G_UNLIKELY ((val32 & 0xffffff00) != 0x00000100)) in mpegts_parse_pes_header() 74 res->stream_id = val32 & 0x000000ff; in mpegts_parse_pes_header() 188 val32 = GST_READ_UINT32_BE (data); in mpegts_parse_pes_header() 191 if (G_UNLIKELY ((val32 & 0x80000100) != 0x80000100)) in mpegts_parse_pes_header() 193 res->ES_rate = ((val32 >> 9) & 0x003fffff) * 50; in mpegts_parse_pes_header() 407 GST_WARNING ("Wrong packet start code 0x%x != 0x000001xx", val32); in mpegts_parse_pes_header() 428 GST_WARNING ("Invalid ES_rate markers 0x%0x", val32); in mpegts_parse_pes_header()
|
/third_party/uboot/u-boot-2020.01/lib/zstd/ |
D | mem.h | 80 ZSTD_STATIC void ZSTD_writeLE32(void *memPtr, U32 val32) { put_unaligned_le32(val32, memPtr); } in ZSTD_writeLE32() argument 106 ZSTD_STATIC void ZSTD_writeBE32(void *memPtr, U32 val32) { put_unaligned_be32(val32, memPtr); } in ZSTD_writeBE32() argument
|
/third_party/uboot/u-boot-2020.01/drivers/pci/ |
D | pci.c | 70 u32 val32; \ 72 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) { \ 77 *val = (val32 >> ((offset & (int)off_mask) * 8)); \ 87 u32 val32, mask, ldata, shift; \ 89 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0)\ 95 val32 = (val32 & ~mask) | ldata; \ 97 if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0)\
|
/third_party/uboot/u-boot-2020.01/drivers/net/fm/ |
D | eth.c | 133 u32 val32 = in_be32((void *)base); in muram_readw() local 139 ret = (u16)(val32 & 0x0000ffff); in muram_readw() 141 ret = (u16)((val32 & 0xffff0000) >> 16); in muram_readw() 150 u32 val32; in muram_writew() local 155 val32 = (org32 & 0xffff0000) | val; in muram_writew() 157 val32 = (org32 & 0x0000ffff) | ((u32)val << 16); in muram_writew() 159 out_be32((void *)base, val32); in muram_writew()
|
/third_party/libdrm/amdgpu/ |
D | amdgpu_device.c | 297 uint32_t *val32 = (uint32_t*)value; in amdgpu_query_sw_info() local 302 *val32 = (dev->vamgr_high_32.va_max - 1) >> 32; in amdgpu_query_sw_info() 304 *val32 = (dev->vamgr_32.va_max - 1) >> 32; in amdgpu_query_sw_info()
|
/third_party/uboot/u-boot-2020.01/test/dm/ |
D | test-fdt.c | 787 u32 val32; in dm_test_read_int() local 793 ut_assertok(dev_read_u32(dev, "int-value", &val32)); in dm_test_read_int() 794 ut_asserteq(1234, val32); in dm_test_read_int() 796 ut_asserteq(-EINVAL, dev_read_u32(dev, "missing", &val32)); in dm_test_read_int() 800 ut_asserteq(1234, val32); in dm_test_read_int()
|
/third_party/bounds_checking_function/src/ |
D | output.inl | 199 SecUnsignedInt32 val32 = number; local 203 *(attr->text.str) = g_itoaLowerDigits[val32 % SECUREC_RADIX_OCTAL]; 204 val32 /= SECUREC_RADIX_OCTAL; 205 } while (val32 != 0); 215 SecUnsignedInt32 val32 = number; local 219 *(attr->text.str) = g_itoaLowerDigits[val32 % SECUREC_RADIX_DECIMAL]; 220 val32 /= SECUREC_RADIX_DECIMAL; 221 } while (val32 != 0); 230 SecUnsignedInt32 val32 = number; local 233 *(attr->text.str) = attr->digits[val32 % SECUREC_RADIX_HEX]; [all …]
|
/third_party/libunwind/include/ |
D | libunwind-x86.h | 57 struct { uint8_t b[4]; } val32; member
|
/third_party/uboot/u-boot-2020.01/drivers/bios_emulator/ |
D | besys.c | 424 u32 val32; in BE_accessReg() local 450 &val32); in BE_accessReg() 451 return val32; in BE_accessReg()
|
/third_party/uboot/u-boot-2020.01/cmd/ |
D | pci.c | 65 u32 val32; in pci_read_config() local 78 pci_read_config_dword(dev, offset, &val32); in pci_read_config() 79 return val32; in pci_read_config()
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | cnumtst.c | 1425 int32_t val32; in TestInt64Format() local 1444 val32 = unum_parse(fmt, result, u_strlen(result), &parsepos, &status); in TestInt64Format() 1447 } else if (val32 != INT32_MAX) { in TestInt64Format() 1448 log_err("parse didn't pin return value, got: %d\n", val32); in TestInt64Format() 1476 val32 = unum_parse(fmt, result, u_strlen(result), &parsepos, &status); in TestInt64Format() 1479 } else if (val32 != INT32_MIN) { in TestInt64Format() 1480 log_err("parse didn't pin return value, got: %d\n", val32); in TestInt64Format() 1508 val32 = unum_parse(fmt, result, u_strlen(result), &parsepos, &status); in TestInt64Format() 1511 } else if (val32 != INT32_MAX) { in TestInt64Format() 1512 log_err("parse didn't pin return value, got: %d\n", val32); in TestInt64Format()
|
/third_party/uboot/u-boot-2020.01/drivers/net/ |
D | rtl8169.c | 101 #define RTL_W32(reg, val32) writel((val32), ioaddr + (reg)) argument
|
/third_party/flutter/skia/third_party/externals/spirv-tools/source/comp/ |
D | markv_codec.cpp | 852 int32_t val32 = val; in DecodeLiteralNumber() local 853 std::memcpy(&word, &val32, 4); in DecodeLiteralNumber()
|