Searched refs:store_size (Results 1 - 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | Hashing.h | 389 size_t store_size = sizeof(value) - offset; in store_and_advance() local 390 if (buffer_ptr + store_size > buffer_end) in store_and_advance() 393 memcpy(buffer_ptr, value_data + offset, store_size); in store_and_advance() 394 buffer_ptr += store_size; in store_and_advance()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | Hashing.h | 387 size_t store_size = sizeof(value) - offset; in store_and_advance() local 388 if (buffer_ptr + store_size > buffer_end) in store_and_advance() 391 memcpy(buffer_ptr, value_data + offset, store_size); in store_and_advance() 392 buffer_ptr += store_size; in store_and_advance()
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_eu.c | 333 p->store_size = 1024; in brw_init_codegen() 334 p->store = rzalloc_array(mem_ctx, brw_inst, p->store_size); in brw_init_codegen() 401 p->store_size = (start_offset + sb.st_size) / sizeof(brw_inst); in brw_try_override_assembly()
|
H A D | brw_eu_emit.c | 654 if (p->store_size < new_nr_insn) { in brw_append_insns() 655 p->store_size = util_next_power_of_two(new_nr_insn * sizeof(brw_inst)); in brw_append_insns() 656 p->store = reralloc(p->mem_ctx, p->store, brw_inst, p->store_size); in brw_append_insns()
|
H A D | brw_eu.h | 94 int store_size; member
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_io.c | 1730 const unsigned store_size = (value->bit_size / 8) * store->num_components; in build_explicit_io_store() local 1731 nir_push_if(b, addr_is_in_bounds(b, addr, addr_format, store_size)); in build_explicit_io_store()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 3629 TNode<IntPtrT> store_size = IntPtrAdd( 3633 UncheckedCast<NameDictionary>(Allocate(store_size, flags)); 3670 result_word, IntPtrSub(store_size, IntPtrConstant(kHeapObjectTag)));
|
Completed in 30 milliseconds