/third_party/ffmpeg/libavcodec/ |
D | qpeg.c | 47 int filled = 0; in qpeg_decode_intra() local 85 int step = FFMIN(run - i, width - filled); in qpeg_decode_intra() 86 memset(dst+filled, p, step); in qpeg_decode_intra() 87 filled += step; in qpeg_decode_intra() 89 if (filled >= width) { in qpeg_decode_intra() 90 filled = 0; in qpeg_decode_intra() 107 int step = FFMIN(copy, width - filled); in qpeg_decode_intra() 108 bytestream2_get_bufferu(&qctx->buffer, dst + filled, step); in qpeg_decode_intra() 109 filled += step; in qpeg_decode_intra() 111 if (filled >= width) { in qpeg_decode_intra() [all …]
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
D | DrawIndexedIndirectTests.cpp | 123 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 130 Test({3, 1, 0, 0, 0}, 0, 0, filled, notFilled); in TEST_P() 133 Test({3, 1, 3, 0, 0}, 0, 0, notFilled, filled); in TEST_P() 136 Test({6, 1, 0, 0, 0}, 0, 0, filled, filled); in TEST_P() 150 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 154 Test({3, 1, 0, 4, 0}, 0, 0, notFilled, filled); in TEST_P() 157 Test({3, 1, 3, 4, 0}, 0, 0, filled, notFilled); in TEST_P() 165 Test({3, 1, 0, unsignedNegFour, 0}, 6 * sizeof(uint32_t), 0, filled, notFilled); in TEST_P() 168 Test({3, 1, 3, unsignedNegFour, 0}, 6 * sizeof(uint32_t), 0, notFilled, filled); in TEST_P() 179 RGBA8 filled(0, 255, 0, 255); in TEST_P() local [all …]
|
D | DrawIndexedTests.cpp | 127 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 133 Test(3, 1, 0, 0, 0, 0, filled, notFilled); in TEST_P() 135 Test(3, 1, 3, 0, 0, 0, notFilled, filled); in TEST_P() 137 Test(6, 1, 0, 0, 0, 0, filled, filled); in TEST_P() 143 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 147 Test(3, 1, 0, 4, 0, 0, notFilled, filled); in TEST_P() 149 Test(3, 1, 3, 4, 0, 0, filled, notFilled); in TEST_P() 153 Test(3, 1, 0, -4, 0, 6 * sizeof(uint32_t), filled, notFilled); in TEST_P() 155 Test(3, 1, 3, -4, 0, 6 * sizeof(uint32_t), notFilled, filled); in TEST_P()
|
D | DrawIndirectTests.cpp | 92 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 99 Test({3, 1, 0, 0}, 0, filled, notFilled); in TEST_P() 102 Test({3, 1, 3, 0}, 0, notFilled, filled); in TEST_P() 105 Test({6, 1, 0, 0}, 0, filled, filled); in TEST_P() 109 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 117 Test({3, 1, 0, 0, 3, 1, 3, 0}, 0, filled, notFilled); in TEST_P() 120 Test({3, 1, 0, 0, 3, 1, 3, 0}, 4 * sizeof(uint32_t), notFilled, filled); in TEST_P()
|
D | DestroyTests.cpp | 97 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 102 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, 1, 3); in TEST_P() 109 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 113 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, 1, 3); in TEST_P() 121 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, 1, 3); in TEST_P() 133 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 138 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, 1, 3); in TEST_P() 145 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 149 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, 1, 3); in TEST_P()
|
D | DrawTests.cpp | 90 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 96 Test(3, 1, 0, 0, filled, notFilled); in TEST_P() 98 Test(3, 1, 3, 0, notFilled, filled); in TEST_P() 100 Test(6, 1, 0, 0, filled, filled); in TEST_P()
|
D | BindGroupTests.cpp | 228 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 231 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, min, min); in TEST_P() 232 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, max, min); in TEST_P() 233 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, min, max); in TEST_P() 334 RGBA8 filled(0, 255, 0, 255); in TEST_P() local 337 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, min, min); in TEST_P() 338 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, max, min); in TEST_P() 339 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, min, max); in TEST_P() 422 RGBA8 filled(255, 255, 0, 255); in TEST_P() local 425 EXPECT_PIXEL_RGBA8_EQ(filled, renderPass.color, min, min); in TEST_P() [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_bitmask.c | 59 unsigned filled; member 80 bm->filled = 0; in util_bitmask_create() 140 assert(bm->filled <= bm->size); in util_bitmask_filled_set() 143 if (index == bm->filled) { in util_bitmask_filled_set() 144 ++bm->filled; in util_bitmask_filled_set() 145 assert(bm->filled <= bm->size); in util_bitmask_filled_set() 157 assert(bm->filled <= bm->size); in util_bitmask_filled_unset() 160 if (index < bm->filled) in util_bitmask_filled_unset() 161 bm->filled = index; in util_bitmask_filled_unset() 175 word = bm->filled / UTIL_BITMASK_BITS_PER_WORD; in util_bitmask_add() [all …]
|
D | u_handle_table.c | 54 unsigned filled; member 77 ht->filled = 0; in handle_table_create() 164 while(ht->filled < ht->size) { in handle_table_add() 165 if(!ht->objects[ht->filled]) in handle_table_add() 167 ++ht->filled; in handle_table_add() 170 index = ht->filled; in handle_table_add() 183 ++ht->filled; in handle_table_add() 255 if(index < ht->filled) in handle_table_remove() 256 ht->filled = index; in handle_table_remove()
|
/third_party/libabigail/doc/vizualization/graph/gv/ |
D | sa-base.gv | 5 …Node1 [label="base",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcol… 7 …Node2 [label="A",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$struc… 9 …Node3 [label="D1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 12 …Node4 [label="Dd1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 14 …Node5 [label="Dd2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 18 …Node6 [label="B",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$struc… 22 …Node7 [label="C1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 24 …Node8 [label="D2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 26 …Node9 [label="Dd3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 29 …Node10 [label="D3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… [all …]
|
D | sa-C3.gv | 5 …Node1 [label="C3",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolor… 7 …Node2 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 11 …Node3 [label="D3v",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 13 …Node4 [label="Dd4",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 16 …Node5 [label="D5v1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 18 …Node6 [label="Dd5",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 20 …Node7 [label="D5v2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st…
|
D | sa-DD4.gv | 5 …Node1 [label="Dd4",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolo… 7 …Node2 [label="D2v",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 9 …Node3 [label="C2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 11 …Node4 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 16 …Node5 [label="D3v",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 18 …Node6 [label="C3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru…
|
D | sa-DD5.gv | 5 …Node1 [label="Dd5",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolo… 7 …Node2 [label="D5v1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 9 …Node3 [label="C3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 11 …Node4 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 15 …Node5 [label="D5v2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st…
|
D | sa-A.gv | 5 …Node1 [label="A",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolor=… 7 …Node2 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 11 …Node3 [label="D1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 14 …Node4 [label="Dd1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 16 …Node5 [label="Dd2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
|
D | sa-DD3.gv | 5 …Node1 [label="Dd3",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolo… 7 …Node2 [label="D2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 9 …Node3 [label="C1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 11 …Node4 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 16 …Node5 [label="D3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru…
|
D | sa-C1.gv | 5 …Node1 [label="C1",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolor… 7 …Node2 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 11 …Node3 [label="D2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 13 …Node4 [label="Dd3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 16 …Node5 [label="D3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru…
|
D | sa-DD2.gv | 5 …Node1 [label="Dd2",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolo… 7 …Node2 [label="A",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$struc… 9 …Node3 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 13 …Node4 [label="D4v",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 15 …Node5 [label="C4",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru…
|
D | sa-D5v2.gv | 5 …Node1 [label="D5v2",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcol… 7 …Node2 [label="C3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 9 …Node3 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 13 …Node4 [label="Dd5",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
|
D | sa-D5v1.gv | 5 …Node1 [label="D5v1",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcol… 7 …Node2 [label="C3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 9 …Node3 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 13 …Node4 [label="Dd5",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
|
D | sa-D4v.gv | 5 …Node1 [label="D4v",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolo… 7 …Node2 [label="C4",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 9 …Node3 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 14 …Node4 [label="Dd2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
|
D | sa-D2v.gv | 5 …Node1 [label="D2v",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolo… 7 …Node2 [label="C2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 9 …Node3 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 14 …Node4 [label="Dd4",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
|
D | sa-C2.gv | 5 …Node1 [label="C2",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolor… 7 …Node2 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 11 …Node3 [label="D2v",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str… 13 …Node4 [label="Dd4",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
|
D | sa-D2.gv | 5 …Node1 [label="D2",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolor… 7 …Node2 [label="C1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 9 …Node3 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 14 …Node4 [label="Dd3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
|
D | sa-D3v.gv | 5 …Node1 [label="D3v",height=0.2,width=0.4,color="black", fillcolor="grey75", style="filled" fontcolo… 7 …Node2 [label="C3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru… 9 …Node3 [label="base",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$st… 14 …Node4 [label="Dd4",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
|
/third_party/fsverity-utils/lib/ |
D | compute_digest.c | 21 u32 filled; member 34 memset(&cur->data[cur->filled], 0, block_size - cur->filled); in hash_one_block() 39 libfsverity_hash_final(hash, &next->data[next->filled]); in hash_one_block() 41 next->filled += hash->alg->digest_size; in hash_one_block() 42 cur->filled = 0; in hash_one_block() 49 return block->filled + hash->alg->digest_size > block_size; in block_is_full() 184 buffers[-1].filled = min(block_size, file_size - offset); in compute_root_hash() 186 err = read_fn(fd, buffers[-1].data, buffers[-1].filled); in compute_root_hash() 209 if (buffers[level].filled != 0) { in compute_root_hash() 222 if (WARN_ON(buffers[num_levels].filled != hash->alg->digest_size)) { in compute_root_hash()
|