/external/rust/crates/ppv-lite86/src/ |
D | types.rs | 109 + StoreBytes 143 + StoreBytes 154 + StoreBytes 251 V: StoreBytes, in read_le() argument 259 V: StoreBytes, in read_be() argument 277 pub trait StoreBytes { interface
|
D | soft.rs | 175 impl<W: StoreBytes + BSwap + Copy, G> StoreBytes for x2<W, G> { 368 impl<W: StoreBytes + BSwap + Copy> StoreBytes for x4<W> {
|
D | generic.rs | 545 impl StoreBytes for u32x4_generic { 571 impl StoreBytes for u64x2_generic {
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 1020 unsigned StoreBytes) { in StoreIntToMemory() argument 1021 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory() 1027 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory() 1032 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory() 1033 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory() 1035 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory() 1039 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory() 1045 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); in StoreValueToMemory() local 1052 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory() 1065 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory() [all …]
|
/external/llvm-project/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 1020 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); in StoreValueToMemory() local 1027 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory() 1040 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory() 1041 memset(&(Ptr->PointerVal), 0, StoreBytes); in StoreValueToMemory() 1063 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr); in StoreValueToMemory()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 1024 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); in StoreValueToMemory() local 1031 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory() 1044 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory() 1045 memset(&(Ptr->PointerVal), 0, StoreBytes); in StoreValueToMemory() 1066 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr); in StoreValueToMemory()
|
/external/llvm-project/llvm/lib/Support/ |
D | APInt.cpp | 3065 unsigned StoreBytes) { in StoreIntToMemory() argument 3066 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory() 3072 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory() 3077 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory() 3078 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory() 3080 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory() 3084 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APInt.cpp | 3066 unsigned StoreBytes) { in StoreIntToMemory() argument 3067 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory() 3073 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory() 3078 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory() 3079 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory() 3081 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory() 3085 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()
|
/external/rust/crates/rand_chacha/src/ |
D | guts.rs | 15 use ppv_lite86::{vec128_storage, ArithOps, BitOps32, LaneWords4, MultiLane, StoreBytes, Vec4};
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | APInt.h | 2293 void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APInt.h | 2282 void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes);
|
/external/rust/crates/ppv-lite86/src/x86_64/ |
D | sse2.rs | 74 impl<S3, S4, NI> StoreBytes for $vec<S3, S4, NI> impl
|