Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1026 unsigned StoreBytes) { in StoreIntToMemory() argument
1033 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory()
1038 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory()
1039 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory()
1041 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory()
1045 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()
1051 const unsigned StoreBytes = getDataLayout().getTypeStoreSize(Ty); in StoreValueToMemory() local
1058 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory()
1071 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory()
1072 memset(&(Ptr->PointerVal), 0, StoreBytes); in StoreValueToMemory()
[all …]