Searched refs:store_size (Results 1 – 10 of 10) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | Hashing.h | 389 size_t store_size = sizeof(value) - offset; 390 if (buffer_ptr + store_size > buffer_end) 393 memcpy(buffer_ptr, value_data + offset, store_size); 394 buffer_ptr += store_size;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | Hashing.h | 387 size_t store_size = sizeof(value) - offset; 388 if (buffer_ptr + store_size > buffer_end) 391 memcpy(buffer_ptr, value_data + offset, store_size); 392 buffer_ptr += store_size;
|
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/ |
D | gstnvdec.c | 1357 guint size = nalu->size, store_size; in gst_nvdec_store_h264_nal() local 1361 store_size = GST_H264_MAX_SPS_COUNT; in gst_nvdec_store_h264_nal() 1365 store_size = GST_H264_MAX_PPS_COUNT; in gst_nvdec_store_h264_nal() 1372 if (id >= store_size) { in gst_nvdec_store_h264_nal() 1490 guint size = nalu->size, store_size; in gst_nvdec_store_h265_nal() local 1494 store_size = GST_H265_MAX_VPS_COUNT; in gst_nvdec_store_h265_nal() 1498 store_size = GST_H265_MAX_SPS_COUNT; in gst_nvdec_store_h265_nal() 1502 store_size = GST_H265_MAX_PPS_COUNT; in gst_nvdec_store_h265_nal() 1509 if (id >= store_size) { in gst_nvdec_store_h265_nal()
|
/third_party/mesa3d/src/intel/compiler/ |
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()
|
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()
|
D | brw_eu.h | 94 int store_size; member
|
/third_party/gstreamer/gstplugins_bad/gst/videoparsers/ |
D | gsth265parse.c | 458 guint size = nalu->size, store_size; in gst_h265_parser_store_nal() local 461 store_size = GST_H265_MAX_VPS_COUNT; in gst_h265_parser_store_nal() 465 store_size = GST_H265_MAX_SPS_COUNT; in gst_h265_parser_store_nal() 469 store_size = GST_H265_MAX_PPS_COUNT; in gst_h265_parser_store_nal() 475 if (id >= store_size) { in gst_h265_parser_store_nal()
|
D | gsth264parse.c | 522 guint size = nalu->size, store_size; in gst_h264_parser_store_nal() local 525 store_size = GST_H264_MAX_SPS_COUNT; in gst_h264_parser_store_nal() 529 store_size = GST_H264_MAX_PPS_COUNT; in gst_h264_parser_store_nal() 535 if (id >= store_size) { in gst_h264_parser_store_nal()
|
/third_party/mesa3d/src/compiler/nir/ |
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/ |
D | code-stub-assembler.cc | 3629 TNode<IntPtrT> store_size = IntPtrAdd( in AllocateNameDictionaryWithCapacity() local 3633 UncheckedCast<NameDictionary>(Allocate(store_size, flags)); in AllocateNameDictionaryWithCapacity() 3670 result_word, IntPtrSub(store_size, IntPtrConstant(kHeapObjectTag))); in AllocateNameDictionaryWithCapacity()
|