Searched defs:StoreBytes (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/brotli/src/woff2/
H A Dstore_bytes.h53 inline void StoreBytes(const uint8_t* data, size_t len, function in namespace:woff2
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1004 /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
1007 unsigned StoreBytes) {
1008 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
1014 memcpy(Dst, Src, StoreBytes);
1019 while (StoreBytes > sizeof(uint64_t)) {
1020 StoreBytes -= sizeof(uint64_t);
1022 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
1026 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
1032 const unsigned StoreBytes local
1006 StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, unsigned StoreBytes) argument
[all...]

Completed in 92 milliseconds