| /f-stack/freebsd/mips/mips/ |
| H A D | fp.S | 122 .word ill # 0 123 .word ill # 0 124 .word ill # 0 125 .word ill # 0 126 .word ill # 0 127 .word ill # 0 130 .word ill # 1 131 .word ill # 1 132 .word ill # 1 133 .word ill # 1 [all …]
|
| /f-stack/freebsd/libkern/ |
| H A D | memcchr.c | 47 #error Unsupported word size 64 unsigned long word; in memcchr() local 67 word = (unsigned char)c; in memcchr() 68 word |= word << 8; in memcchr() 69 word |= word << 16; in memcchr() 71 word |= word << 32; in memcchr() 85 if (*lp++ != word) in memcchr() 91 if (*lp != word) { in memcchr()
|
| H A D | bcopy.c | 61 typedef long word; /* "word" used for optimal copy speed */ typedef 63 #define wsize sizeof(word) 115 TLOOP(*(word *)dst = *(const word *)src; src += wsize; in memcpy() 141 *(word *)dst = *(const word *)src); in memcpy()
|
| /f-stack/freebsd/crypto/openssl/arm/ |
| H A D | aes-armv4.S | 61 .word 0xc66363a5, 0xf87c7c84, 0xee777799, 0xf67b7b8d 62 .word 0xfff2f20d, 0xd66b6bbd, 0xde6f6fb1, 0x91c5c554 63 .word 0x60303050, 0x02010103, 0xce6767a9, 0x562b2b7d 64 .word 0xe7fefe19, 0xb5d7d762, 0x4dababe6, 0xec76769a 65 .word 0x8fcaca45, 0x1f82829d, 0x89c9c940, 0xfa7d7d87 66 .word 0xeffafa15, 0xb25959eb, 0x8e4747c9, 0xfbf0f00b 67 .word 0x41adadec, 0xb3d4d467, 0x5fa2a2fd, 0x45afafea 68 .word 0x239c9cbf, 0x53a4a4f7, 0xe4727296, 0x9bc0c05b 69 .word 0x75b7b7c2, 0xe1fdfd1c, 0x3d9393ae, 0x4c26266a 161 .word 0x1B000000, 0x36000000, 0, 0, 0, 0, 0, 0 [all …]
|
| H A D | armv4cpuid.S | 47 .word 0xe12fff1e @ bx lr 86 .word 0xe12fff1e @ bx lr 116 .word 0xe12fff1e @ bx lr 224 .word 0xe12fff1e @ bx lr 237 .word 0xe12fff1e @ bx lr 250 .word 0xe12fff1e @ bx lr 257 .word OPENSSL_armcap_P-. 263 .word atomic_add_spinlock-.Lspinlock 269 .word 0
|
| /f-stack/freebsd/arm/arm/ |
| H A D | hypervisor-stub.S | 78 .word 0 /* Reset */ 79 .word 0 /* undev */ 80 .word 0 /* SMC */ 81 .word 0 /* PABT */ 82 .word 0 /* DABT */ 84 .word 0 /* FIQ */ 85 .word 0 /* IRQ */
|
| H A D | exception.S | 63 .word 0 64 .word 0 397 .Lreset_entry: .word reset_entry 398 .Lundefined_entry: .word undefined_entry 399 .Lswi_entry: .word swi_entry 400 .Lprefetch_abort_entry: .word prefetch_abort_entry 401 .Ldata_abort_entry: .word data_abort_entry 403 .Lirq_entry: .word irq_entry 404 .Lfiq_entry: .word fiq_entry 414 .word .fiqv [all …]
|
| H A D | locore-v6.S | 248 .word . ;\ 249 .word table 429 .word 0 432 .word _edata /* Note that these three items are */ 433 .word _ebss /* loaded with a single ldmia and */ 434 .word svcstk /* must remain in order together. */ 535 .word _C_LABEL(cpu_reset_address) 556 _C_LABEL(esym): .word _C_LABEL(end) 586 .word SYS_sigreturn 587 .word SYS_exit
|
| /f-stack/freebsd/i386/i386/ |
| H A D | mpboot.s | 221 .word 0x0 222 .word 0x0 230 .word 0xffff /* segment limit 0..15 */ 231 .word 0x0000 /* segment base 0..15 */ 239 .word 0xffff /* segment limit 0..15 */ 240 .word 0x0000 /* segment base 0..15 */ 248 .word 0xffff /* segment limit 0..15 */ 250 .word 0x0000 /* segment base 0..15 */ 258 .word 0xffff 260 .word 0x0000 /* segment base 0..15 */ [all …]
|
| H A D | copyout.c | 388 suword16(volatile void *base, int word) in suword16() argument 394 if (fast_copyout && suword16_fast_tramp(base, word, pmap_get_kcr3()) in suword16() 398 suword16_slow0, &word) != 0 ? -1 : 0); in suword16() 409 suword(volatile void *base, long word) in suword() argument 412 if ((uintptr_t)base + sizeof(word) < (uintptr_t)base || in suword() 413 (uintptr_t)base + sizeof(word) > VM_MAXUSER_ADDRESS) in suword() 415 if (fast_copyout && suword_fast_tramp(base, word, pmap_get_kcr3()) == 0) in suword() 418 suword_slow0, &word) != 0 ? -1 : 0); in suword() 422 suword32(volatile void *base, int32_t word) in suword32() argument 425 return (suword(base, word)); in suword32()
|
| /f-stack/freebsd/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | wait.h | 31 #define spl_wait_on_bit(word, bit, mode) wait_on_bit(word, bit, mode) argument 35 spl_bit_wait(void *word) in spl_bit_wait() argument 41 #define spl_wait_on_bit(word, bit, mode) \ argument 42 wait_on_bit(word, bit, spl_bit_wait, mode)
|
| /f-stack/dpdk/drivers/crypto/caam_jr/ |
| H A D | caam_jr_desc.h | 47 (descriptor)->deschdr.command.word = 0xB0801C0D; \ 53 (descriptor)->seq_out.command.word = 0xF8400000; /**/ \ 61 (descriptor)->seq_in.command.word = 0xF0400000; /**/ \ 66 (descriptor)->load_dpovrd.command.word = 0x16870004; \ 128 uint32_t word; member 172 uint32_t word; member 194 uint32_t word; member 209 uint32_t word; member 230 uint32_t word; member 246 uint32_t word; member
|
| /f-stack/freebsd/mips/include/ |
| H A D | runq.h | 48 #define RQB_FFS(word) (ffsl(word) - 1) argument 50 #define RQB_FFS(word) (ffs(word) - 1) argument
|
| /f-stack/freebsd/contrib/zlib/contrib/gcc_gvmat64/ |
| H A D | gvmat64.S | 289 movzx r12d,word ptr [r9] 290 movzx ebx, word ptr [r9 + r11 - 1] 298 cmp bx,word ptr [rsi + r8 - 1] 306 movzx r8d, word ptr [rdi + r8*2] 318 cmp bx,word ptr [rsi + r8 - 1] 326 movzx r8d, word ptr [rdi + r8*2] 337 cmp bx,word ptr [rsi + r8 - 1] 345 movzx r8d, word ptr [rdi + r8*2] 357 cmp bx,word ptr [rsi + r8 - 1] 399 cmp bx,word ptr [rsi + r8 - 1] [all …]
|
| /f-stack/dpdk/drivers/net/cxgbe/base/ |
| H A D | t4vf_hw.c | 548 u32 word = be32_to_cpu in t4vf_get_rss_glb_config() local 594 u32 word; in t4vf_get_vfres() local 613 word = be32_to_cpu(rpl.niqflint_niq); in t4vf_get_vfres() 615 vfres->niq = G_FW_PFVF_CMD_NIQ(word); in t4vf_get_vfres() 617 word = be32_to_cpu(rpl.type_to_neq); in t4vf_get_vfres() 618 vfres->neq = G_FW_PFVF_CMD_NEQ(word); in t4vf_get_vfres() 619 vfres->pmask = G_FW_PFVF_CMD_PMASK(word); in t4vf_get_vfres() 621 word = be32_to_cpu(rpl.tc_to_nexactf); in t4vf_get_vfres() 622 vfres->tc = G_FW_PFVF_CMD_TC(word); in t4vf_get_vfres() 623 vfres->nvi = G_FW_PFVF_CMD_NVI(word); in t4vf_get_vfres() [all …]
|
| /f-stack/freebsd/contrib/octeon-sdk/ |
| H A D | cvmx-spinlock.h | 197 static inline void cvmx_spinlock_bit_lock(uint32_t *word) in cvmx_spinlock_bit_lock() argument 214 : [val] "+m" (*word), [tmp] "=&r" (tmp), [sav] "=&r" (sav) in cvmx_spinlock_bit_lock() 231 static inline unsigned int cvmx_spinlock_bit_trylock(uint32_t *word) in cvmx_spinlock_bit_trylock() argument 248 : [val] "+m" (*word), [tmp] "=&r" (tmp) in cvmx_spinlock_bit_trylock() 263 static inline void cvmx_spinlock_bit_unlock(uint32_t *word) in cvmx_spinlock_bit_unlock() argument 266 *word &= ~(1UL << 31) ; in cvmx_spinlock_bit_unlock()
|
| /f-stack/freebsd/contrib/ck/include/ |
| H A D | ck_bitmap.h | 331 unsigned int word; in ck_bitmap_empty() local 333 word = ck_pr_load_uint(&bitmap->map[i]); in ck_bitmap_empty() 334 if ((word & ((1U << slop) - 1)) != 0) in ck_bitmap_empty() 362 unsigned int word; in ck_bitmap_full() local 364 word = ~ck_pr_load_uint(&bitmap->map[i]); in ck_bitmap_full() 365 if ((word & ((1U << slop) - 1)) != 0) in ck_bitmap_full() 390 unsigned int word; in ck_bitmap_count() local 392 word = ck_pr_load_uint(&bitmap->map[i]); in ck_bitmap_count() 393 count += ck_cc_popcount(word & ((1U << slop) - 1)); in ck_bitmap_count() 426 unsigned int word, xi, yi; in ck_bitmap_count_intersect() local [all …]
|
| /f-stack/freebsd/amd64/amd64/ |
| H A D | copyout.c | 93 int suword16_nosmap(volatile void *base, int word); 94 int suword16_smap(volatile void *base, int word); 102 int suword32_nosmap(volatile void *base, int32_t word); 103 int suword32_smap(volatile void *base, int32_t word); 111 int suword_nosmap(volatile void *base, long word); 112 int suword_smap(volatile void *base, long word);
|
| /f-stack/freebsd/arm/freescale/imx/ |
| H A D | imx6_ipu.c | 416 data = param->word[word].data[datapos]; in ipu_ch_param_set_value() 419 param->word[word].data[datapos] = data; in ipu_ch_param_set_value() 424 data2 = param->word[word].data[datapos + 1]; in ipu_ch_param_set_value() 427 param->word[word].data[datapos + 1] = data2; in ipu_ch_param_set_value() 444 data = param->word[word].data[datapos]; in ipu_ch_param_get_value() 450 data2 = param->word[word].data[datapos + 1]; in ipu_ch_param_get_value() 464 param->word[0].data[0], param->word[0].data[1], in ipu_print_channel() 465 param->word[0].data[2], param->word[0].data[3], in ipu_print_channel() 468 param->word[1].data[0], param->word[1].data[1], in ipu_print_channel() 469 param->word[1].data[2], param->word[1].data[3], in ipu_print_channel() [all …]
|
| /f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/ |
| H A D | eeprom.diff | 119 ah, cptr, word, compression_header_length); 120 + ath_hal_printf(ah, "%s: word = 0x%x, 0x%x, 0x%x, 0x%x\n", 122 + word[0], 123 + word[1], 124 + word[2], 125 + word[3]); 126 if (word[0] == blank && word[1] == blank && word[2] == blank && word[3] == blank) 129 + ath_hal_printf(ah, "%s: word=blank, skipping\n", __func__); 134 word, &code, &reference, &length, &major, &minor);
|
| /f-stack/dpdk/devtools/ |
| H A D | check-git-log.sh | 113 for word in $(cat $words); do 114 bad=$(echo "$headlines" | grep -iw $word | grep -v $word) 115 if [ "$word" = "Tx" ]; then 119 bad_word=$(echo $bad_line | cut -d":" -f2 | grep -io $word) 121 \"$bad_line\": $bad_word --> $word\n" && failure=true;}
|
| /f-stack/freebsd/contrib/device-tree/Bindings/dma/ |
| H A D | st,stm32-mdma.yaml | 32 0x1: half-word (16bit) 33 0x2: word (32bit) 34 0x3: double-word (64bit) 37 0x1: half-word (16bit) 38 0x2: word (32bit) 39 0x3: double-word (64bit)
|
| /f-stack/freebsd/amd64/acpica/ |
| H A D | acpi_wakecode.S | 139 .word bootcode32 - bootgdt /* index in gdt for 32 bit code */ 215 .word bootcode64 - bootgdt /* index in gdt for 64 bit code */ 281 .word bootgdtend - bootgdt /* Length */ 292 .word 0
|
| /f-stack/dpdk/drivers/bus/fslmc/mc/ |
| H A D | fsl_mc_cmd.h | 46 uint32_t word[2]; member 98 hdr->word[0] |= cpu_to_le32(cmd_flags & MC_CMD_HDR_FLAGS_MASK); in mc_encode_cmd_header() 145 iowrite32(le32_to_cpu(cmd_header->word[1]), (((uint32_t *)header) + 1)); in mc_write_command() 146 iowrite32(le32_to_cpu(cmd_header->word[0]), (uint32_t *)header); in mc_write_command()
|
| /f-stack/freebsd/arm64/include/ |
| H A D | runq.h | 39 #define RQB_FFS(word) (ffsl(word) - 1) argument
|