| /src/sys/external/bsd/acpica/dist/include/ |
| acbuffer.h | 163 /* First 32-bit dword, bits 0:32 */ 165 #define ACPI_PLD_GET_REVISION(dword) ACPI_GET_BITS (dword, 0, ACPI_7BIT_MASK) 166 #define ACPI_PLD_SET_REVISION(dword,value) ACPI_SET_BITS (dword, 0, ACPI_7BIT_MASK, value) /* Offset 0, Len 7 */ 168 #define ACPI_PLD_GET_IGNORE_COLOR(dword) ACPI_GET_BITS (dword, 7, ACPI_1BIT_MASK) 169 #define ACPI_PLD_SET_IGNORE_COLOR(dword,value) ACPI_SET_BITS (dword, 7, ACPI_1BIT_MASK, value) /* Offset 7, Len 1 */ 171 #define ACPI_PLD_GET_RED(dword) ACPI_GET_BITS (dword, 8, ACPI_8BIT_MASK [all...] |
| /src/sys/external/bsd/gnu-efi/dist/lib/ia32/ |
| math.c | 52 mov eax, dword ptr Operand[0] 53 mov edx, dword ptr Operand[4] 67 mov dword ptr Result[0], eax 68 mov dword ptr Result[4], edx 87 mov eax, dword ptr Operand[0] 88 mov edx, dword ptr Operand[4] 102 mov dword ptr Result[0], eax 103 mov dword ptr Result[4], edx 123 mov eax, dword ptr Multiplicand[0] 125 mov dword ptr Result[0], ea [all...] |
| /src/sys/external/bsd/gnu-efi/dist/lib/x86_64/ |
| math.c | 52 mov eax, dword ptr Operand[0] 53 mov edx, dword ptr Operand[4] 67 mov dword ptr Result[0], eax 68 mov dword ptr Result[4], edx 87 mov eax, dword ptr Operand[0] 88 mov edx, dword ptr Operand[4] 102 mov dword ptr Result[0], eax 103 mov dword ptr Result[4], edx 123 mov eax, dword ptr Multiplicand[0] 125 mov dword ptr Result[0], ea [all...] |
| /src/sys/arch/mips/rmi/ |
| rmixl_spl.S | 64 .dword RMIXL_SOFT_INT_MASK /* IPL_NONE */ 65 .dword RMIXL_SOFT_INT_MASK_1 /* IPL_SOFT{CLOCK,BIO} */ 66 .dword 0 /* IPL_SOFT{NET,SERIAL} */ 67 .dword 0 /* IPL_VM */ 68 .dword 0 /* IPL_SCHED */ 69 .dword 0 /* IPL_DDB */ 70 .dword 0 /* IPL_HIGH */
|
| /src/sys/external/bsd/gnu-efi/dist/gnuefi/ |
| crt0-efi-mips64el.S | 142 .dword _gp 143 .dword _DYNAMIC 144 .dword _relocate
|
| /src/sys/dev/pci/ |
| oboereg.h | 114 typedef unsigned int dword; typedef 117 typedef dword Paddr;
|
| if_wmreg.h | 1623 #define INVM_DWORD_TO_RECORD_TYPE(dword) ((dword) & 0x7) 1624 #define INVM_DWORD_TO_WORD_ADDRESS(dword) (((dword) & 0x0000FE00) >> 9) 1625 #define INVM_DWORD_TO_WORD_DATA(dword) (((dword) & 0xFFFF0000) >> 16)
|
| if_wm.c | 4966 /* word_addr is in DWORD */ 14718 * size - Size of data to read, 1=byte 2=word, 4=dword 14860 * Reads a dword from the NVM using the ICH8 flash access registers. 14952 uint32_t dword = 0; local 14984 /* but we must read dword aligned, so mask ... */ 14985 rv = wm_read_ich8_dword(sc, act_offset & ~0x3, &dword); 14993 data[i] = (uint16_t)(dword & 0xFFFF); 14995 data[i] = (uint16_t)((dword >> 16) & 0xFFFF); 15225 uint32_t dword; local 15236 dword = CSR_READ(sc, WM_INVM_DATA_REG(61)) [all...] |
| mpii.c | 1160 * dword count. 1188 mpii_handshake_recv_dword(struct mpii_softc *sc, u_int32_t *dword) 1190 u_int16_t *words = (u_int16_t *)dword; 1210 /* get the first dword so we can read the length out of the header. */
|
| /src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
| intel_memory_region.c | 269 u32 dword, 272 return igt_gpu_fill_dw(ce, vma, dword * sizeof(u32), 276 static int igt_cpu_check(struct drm_i915_gem_object *obj, u32 dword, u32 val) 290 ptr += dword; 294 dword, *ptr, val); 355 u32 dword = offset_in_page(rng) / 4; local 362 err = igt_gpu_write_dw(ce, vma, dword, rng); 366 err = igt_cpu_check(obj, dword, rng); 536 u32 dword; local 559 dword = igt_random_offset(&prng, offset [all...] |
| /src/sys/dev/pci/ixgbe/ |
| if_fdir.c | 94 union ixgbe_atr_hash_dword input = {.dword = 0}; 95 union ixgbe_atr_hash_dword common = {.dword = 0};
|
| ixgbe_82599.c | 1485 * @common: compressed common input dword 1490 * defines, and computing two keys at once since the hashed dword stream 1500 flow_vm_vlan = IXGBE_NTOHL(input.dword); 1502 /* generate common hash dword */ 1503 hi_hash_dword = IXGBE_NTOHL(common.dword); 1505 /* low dword is word swapped version of common */ 1515 * apply flow ID/VM pool/VLAN ID bits to lo hash dword, we had to 1552 * @input: unique input dword 1553 * @common: compressed common input dword 1649 /* generate common hash dword */ [all...] |
| ixgbe_type.h | 3259 u8 pad; /* end spacing to ensure length is mult. of dword */ 3273 /* These need to be dword aligned */ 3666 __be32 dword; member in union:ixgbe_atr_hash_dword
|
| /src/sys/external/bsd/acpica/dist/include/platform/ |
| acwin.h | 171 __asm lock cmpxchg dword ptr [ecx], edx \ 193 __asm lock cmpxchg dword ptr [ecx], edx \
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/ |
| huge_pages.c | 993 __cpu_check_shmem(struct drm_i915_gem_object *obj, u32 dword, u32 val) 1009 if (ptr[dword] != val) { 1011 n, dword, ptr[dword], val); 1025 static int __cpu_check_vmap(struct drm_i915_gem_object *obj, u32 dword, u32 val) 1039 ptr += dword; 1043 dword, *ptr, val); 1055 static int cpu_check(struct drm_i915_gem_object *obj, u32 dword, u32 val) 1058 return __cpu_check_shmem(obj, dword, val); 1060 return __cpu_check_vmap(obj, dword, val) 1175 u32 dword = offset_in_page(num) \/ 4; local [all...] |
| /src/sys/dev/ic/ |
| adwlib.h | 933 #define ADW_WRITE_DWORD_REGISTER(iot, ioh, reg_off, dword) \ 934 bus_space_write_4((iot), (ioh), (reg_off), (dword)) 966 #define ADW_WRITE_DWORD_LRAM(iot, ioh, addr, dword) \ 970 (u_int16_t) ((dword) & 0xFFFF)); \ 973 (u_int16_t) ((dword >> 16) & 0xFFFF)); \
|
| /src/sys/arch/mips/include/ |
| asm.h | 465 #define PTR_WORD .dword 518 #define INT_WORD .dword 564 #define LONG_WORD .dword
|
| /src/sys/arch/riscv/include/ |
| asm.h | 183 #define PTR_WORD .dword
|
| /src/sys/external/bsd/drm2/dist/drm/i915/ |
| i915_cmd_parser.c | 159 * Describes command checks where a particular dword is masked and 373 * It is always 1 dword though, so just treat it as fixed length. 1276 u32 dword; local 1297 dword = cmd[desc->bits[i].offset] & 1300 if (dword != desc->bits[i].expected) { 1305 dword, engine->name);
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
| cmd_parser.c | 125 /* Bit definition for dword 0 */ 384 #define DWORD_FIELD(dword, end, start) \ 385 FIELD_GET(GENMASK(end, start), cmd_val(s, dword)) 442 * Note: length is in DWord 448 /* valid length in DWord */
|