Home
last modified time | relevance | path

Searched refs:StoreBytes (Results 1 – 12 of 12) sorted by relevance

/external/rust/crates/ppv-lite86/src/
Dtypes.rs109 + StoreBytes
143 + StoreBytes
154 + StoreBytes
251 V: StoreBytes, in read_le() argument
259 V: StoreBytes, in read_be() argument
277 pub trait StoreBytes { trait
Dsoft.rs175 impl<W: StoreBytes + BSwap + Copy, G> StoreBytes for x2<W, G> {
368 impl<W: StoreBytes + BSwap + Copy> StoreBytes for x4<W> {
Dgeneric.rs545 impl StoreBytes for u32x4_generic {
571 impl StoreBytes for u64x2_generic {
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp1020 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/
DExecutionEngine.cpp1020 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/
DExecutionEngine.cpp1024 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/
DAPInt.cpp3065 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/
DAPInt.cpp3066 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/
Dguts.rs15 use ppv_lite86::{vec128_storage, ArithOps, BitOps32, LaneWords4, MultiLane, StoreBytes, Vec4};
/external/llvm-project/llvm/include/llvm/ADT/
DAPInt.h2293 void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h2282 void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes);
/external/rust/crates/ppv-lite86/src/x86_64/
Dsse2.rs74 impl<S3, S4, NI> StoreBytes for $vec<S3, S4, NI> impl