Searched refs:mem32 (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/arm/arm/ |
H A D | stdatomic.c | 194 uint32_t *mem32; \ 198 mem32 = round_to_word(mem); \ 213 : "=&r" (old.v32), "=m" (*mem32), "=&r" (temp1), \ 215 : "r" (val32.v32), "r" (negmask.v32), "m" (*mem32)); \ 227 uint32_t *mem32; \ 231 mem32 = round_to_word(mem); \ 253 : "=&r" (old), "=m" (*mem32), "=&r" (temp1), \ 256 "r" (posmask.v32), "r" (negmask), "m" (*mem32)); \ 267 uint32_t *mem32; \ 271 mem32 = round_to_word(mem); \ [all …]
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/ |
H A D | xxhash.c | 593 XXH_memcpy((BYTE*)(state->mem32) + state->memsize, input, len); in XXH32_update_endian() 599 XXH_memcpy((BYTE*)(state->mem32) + state->memsize, input, 16-state->memsize); in XXH32_update_endian() 600 { const U32* p32 = state->mem32; in XXH32_update_endian() 631 XXH_memcpy(state->mem32, p, (size_t)(bEnd-p)); in XXH32_update_endian() 652 const BYTE * p = (const BYTE*)state->mem32; in XXH32_digest_endian() 653 const BYTE* const bEnd = (const BYTE*)(state->mem32) + state->memsize; in XXH32_digest_endian()
|
H A D | xxhash.h | 259 unsigned mem32[4]; /* buffer defined as U32 for alignment */ member
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/ |
H A D | XtensaInstrInfo.td | 215 def L32I : Load_RRI8<0x02, "l32i", load, addr_ish4, mem32>; 234 def S32I : Store_II8<0x06, "s32i", store, addr_ish4, mem32>; 254 def LEA_ADD : RRI8_Inst<0x02, (outs AR:$t), (ins mem32:$addr),
|
H A D | XtensaOperands.td | 154 def mem32 : mem<offset8m32> {
|
/freebsd/sys/contrib/zstd/lib/common/ |
H A D | xxhash.h | 973 …XXH32_hash_t mem32[4]; /*!< Internal buffer for partial reads. Treated as unsigned char[16]. */ member 2162 XXH_memcpy((xxh_u8*)(state->mem32) + state->memsize, input, len); in XXH32_update() 2168 XXH_memcpy((xxh_u8*)(state->mem32) + state->memsize, input, 16-state->memsize); in XXH32_update() 2169 { const xxh_u32* p32 = state->mem32; in XXH32_update() 2192 XXH_memcpy(state->mem32, p, (size_t)(bEnd-p)); in XXH32_update() 2217 return XXH32_finalize(h32, (const xxh_u8*)state->mem32, state->memsize, XXH_aligned); in XXH32_digest()
|