Searched refs:StoreBytes (Results 1 - 4 of 4) 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
H A Dwoff2_enc.cc201 StoreBytes(table->data, table->length,
260 StoreBytes(head_table->data + 4, 4, &offset, result); // font revision
270 StoreBytes(table.dst_data, table.dst_length, &offset, result);
H A Dglyph.cc230 StoreBytes(glyph.instructions_data, glyph.instructions_size, offset, dst);
353 StoreBytes(glyph.composite_data, glyph.composite_data_size, &offset, dst);
/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 101 milliseconds