Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp1007 unsigned StoreBytes) { in StoreIntToMemory() argument
1008 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory()
1014 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory()
1019 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory()
1020 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory()
1022 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory()
1026 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()
1032 const unsigned StoreBytes = getDataLayout()->getTypeStoreSize(Ty); in StoreValueToMemory() local
1039 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory()
1052 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory()
[all …]
/external/chromium_org/third_party/brotli/src/woff2/
Dwoff2_enc.cc201 StoreBytes(table->data, table->length, in ConvertTTFToWOFF2()
260 StoreBytes(head_table->data + 4, 4, &offset, result); // font revision in ConvertTTFToWOFF2()
270 StoreBytes(table.dst_data, table.dst_length, &offset, result); in ConvertTTFToWOFF2()
Dstore_bytes.h53 inline void StoreBytes(const uint8_t* data, size_t len, in StoreBytes() function
Dglyph.cc230 StoreBytes(glyph.instructions_data, glyph.instructions_size, offset, dst); in StoreInstructions()
353 StoreBytes(glyph.composite_data, glyph.composite_data_size, &offset, dst); in StoreGlyph()