/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
H A D | span_test.cc | 25 EXPECT_EQ(0u, empty.size_bytes()); in TYPED_TEST() 34 EXPECT_EQ(sizeof(TypeParam), singular.size_bytes()); in TYPED_TEST() 44 EXPECT_EQ(sizeof(TypeParam) * 5, five_items.size_bytes()); in TYPED_TEST()
|
H A D | span.h | 46 constexpr index_type size_bytes() const { return size_ * sizeof(T); } in size_bytes() function in v8_crdtp::span
|
H A D | cbor.cc | 258 uint64_t byte_length = static_cast<uint64_t>(in.size_bytes()); in EncodeString16() 277 static_cast<uint64_t>(in.size_bytes()), out); in EncodeString8() 318 uint64_t byte_length = static_cast<uint64_t>(in.size_bytes()); in EncodeBinary()
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_binder.c | 147 sizes[stage] = align(shaders[stage]->bt.size_bytes, binder->alignment); in iris_binder_reserve_3d() 196 unsigned size = shader->bt.size_bytes; in iris_binder_reserve_compute()
|
H A D | iris_context.h | 468 uint32_t size_bytes; member
|
H A D | iris_program.c | 1025 bt->size_bytes = next * 4; in iris_setup_binding_table() 1553 bt.size_bytes = 4; in iris_compile_tcs()
|
H A D | iris_state.c | 4466 pkt.BindingTableEntryCount = shader->bt.size_bytes / 4; \ 4680 ps.BindingTableEntryCount = shader->bt.size_bytes / 4; in iris_store_fs_state() 4747 desc.BindingTableEntryCount = MIN2(shader->bt.size_bytes / 4, 31); in iris_store_cs_state() 5076 assert(s < shader->bt.size_bytes / sizeof(uint32_t)); \ 7172 .BindingTableEntryCount = MIN2(shader->bt.size_bytes / 4, 31), in iris_upload_compute_walker()
|
/third_party/skia/src/core/ |
H A D | SkGlyphRun.cpp | 153 memcpy(buffer.utf8text, text.data(), text.size_bytes()); in makeBlob() 155 memcpy(buffer.clusters, clusters.data(), clusters.size_bytes()); in makeBlob() 158 memcpy(buffer.points(), positions.data(), positions.size_bytes()); in makeBlob() 168 memcpy(buffer.glyphs, glyphIDs.data(), glyphIDs.size_bytes()); in makeBlob()
|
/third_party/skia/src/gpu/effects/ |
H A D | GrSkSLFP.h | 279 memcpy(uniformDataPtr, val.data(), val.size_bytes()); in appendArgs() 280 uniformDataPtr += val.size_bytes(); in appendArgs() 394 checkOneUniform(uIter, uEnd, name, val.data(), val.size_bytes()); in checkArgs()
|
/third_party/rust/crates/unicode-width/scripts/ |
H A D | unicode.py | 494 size_bytes = len(table.to_bytes()) 495 print(f"Table {i} Size: {size_bytes} bytes") 496 total_size += size_bytes
|
/third_party/gn/src/base/containers/ |
H A D | span.h | 310 constexpr size_t size_bytes() const noexcept { return size() * sizeof(T); } 396 return {reinterpret_cast<const uint8_t*>(s.data()), s.size_bytes()}; 404 return {reinterpret_cast<uint8_t*>(s.data()), s.size_bytes()};
|
/third_party/skia/include/core/ |
H A D | SkSpan.h | 54 constexpr size_t size_bytes() const { return fSize * sizeof(T); } in size_bytes() function in SkSpan
|
/third_party/mesa3d/src/imagination/rogue/ |
H A D | rogue_build_data.c | 441 ASSERTED size_t size_bytes = nir_intrinsic_range(intr); in collect_ubo_data() local 442 assert(size_bytes == ROGUE_REG_SIZE_BYTES); in collect_ubo_data()
|
/third_party/ffmpeg/libavcodec/ |
H A D | av1dec.c | 394 uint32_t size = 0, size_bytes = 0; in get_tiles_info() local 412 size_bytes = s->raw_frame_header->tile_size_bytes_minus1 + 1; in get_tiles_info() 413 if (bytestream2_get_bytes_left(&gb) < size_bytes) in get_tiles_info() 416 for (int i = 0; i < size_bytes; i++) in get_tiles_info()
|
/third_party/node/tools/inspector_protocol/encoding/ |
H A D | encoding.h | 49 index_type size_bytes() const { return size_ * sizeof(T); } in size_bytes() function in v8_inspector_protocol_encoding::span
|
H A D | encoding.cc | 335 uint64_t byte_length = static_cast<uint64_t>(in.size_bytes()); in EncodeString16Tmpl() 361 static_cast<uint64_t>(in.size_bytes()), out); in EncodeString8Tmpl() 423 uint64_t byte_length = static_cast<uint64_t>(in.size_bytes()); in EncodeBinaryTmpl()
|
H A D | encoding_test.cc | 71 EXPECT_EQ(0u, empty.size_bytes()); in TYPED_TEST() 80 EXPECT_EQ(sizeof(TypeParam), singular.size_bytes()); in TYPED_TEST() 90 EXPECT_EQ(sizeof(TypeParam) * 5, five_items.size_bytes()); in TYPED_TEST()
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_context.h | 350 uint32_t size_bytes; member
|
H A D | crocus_program.c | 957 bt->size_bytes = next * 4; in crocus_setup_binding_table() 1465 bt.size_bytes = 4; in crocus_compile_tcs() 2342 bt.size_bytes = BRW_MAX_SOL_BINDINGS * 4; in crocus_compile_ff_gs()
|
H A D | crocus_state.c | 4886 pkt.BindingTableEntryCount = shader->bt.size_bytes / 4; \ 6309 ice->shaders.prog[stage]->bt.size_bytes); 6324 ice->shaders.ff_gs_prog->bt.size_bytes); 6468 ps.BindingTableEntryCount = shader->bt.size_bytes / 4; 7275 wm.BindingTableEntryCount = ice->shaders.prog[MESA_SHADER_FRAGMENT]->bt.size_bytes / 4; 8070 ice->shaders.prog[MESA_SHADER_COMPUTE]->bt.size_bytes); 8168 idd.BindingTableEntryCount = MIN2(shader->bt.size_bytes / 4, 31);
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_state_common.c | 2440 unsigned size_bytes = draws[0].count*index_size; in r600_draw_vbo() local 2441 unsigned size_dw = align(size_bytes, 4) / 4; in r600_draw_vbo()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |