| /third_party/vk-gl-cts/modules/glshared/ |
| H A D | glsInteractionTestUtil.cpp | 251 std::fill(DE_ARRAY_BEGIN(quad.depth), DE_ARRAY_END(quad.depth), depth);
|
| /third_party/vk-gl-cts/framework/delibs/decpp/ |
| H A D | dePoolArray.cpp | 318 std::fill(arr.begin(), arr.end(), -1); in iteratorTest()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
| H A D | APFloat.cpp | 354 where the decimal point and exponent are optional, fill out the 741 void IEEEFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill) { 748 // Set the significand bits to the fill. 749 if (!fill || fill->getNumWords() < numParts) 751 if (fill) { 752 APInt::tcAssign(significand, fill->getRawData(), 753 std::min(fill->getNumWords(), numParts)); 839 "fill than integerPartWidth"); 4324 void DoubleAPFloat::makeNaN(bool SNaN, bool Neg, const APInt *fill) { [all...] |
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
| H A D | ProgramD3D.cpp | 297 mShaderRegisterIndexes.fill(GL_INVALID_INDEX); 371 mShaderRegisterIndexes.fill(GL_INVALID_INDEX); in D3DInterfaceBlock() 378 mUseStructuredBuffers.fill(false); in D3DUniformBlock() 379 mByteWidths.fill(0u); in D3DUniformBlock() 380 mStructureByteStrides.fill(0u); in D3DUniformBlock() 3023 mComputeAtomicCounterBufferRegisterIndices.fill({}); 3034 mUsedShaderSamplerRanges.fill({0, 0}); 3040 mAttribLocationToD3DSemantic.fill(-1);
|
| /kernel/linux/linux-5.10/drivers/isdn/hardware/mISDN/ |
| H A D | avmfritz.c | 98 u8 fill; member 106 u8 fill; 453 p = bch->fill; in hdlc_fill_fifo()
|
| /kernel/linux/linux-6.6/drivers/isdn/hardware/mISDN/ |
| H A D | avmfritz.c | 98 u8 fill; member 106 u8 fill; 453 p = bch->fill; in hdlc_fill_fifo()
|
| /third_party/ffmpeg/libavfilter/ |
| H A D | vf_ciescope.c | 64 int fill; member 122 { "fill", "fill with CIE colors", OFFSET(fill), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS }, 1116 /* Scan the image line by line and fill the tongue outline in fill_in_tongue() 1244 if (s->fill) in draw_background()
|
| /third_party/backends/testsuite/backend/genesys/ |
| H A D | tests_image.cpp | 83 auto reset = [&]() { std::fill(data.begin(), data.end(), 0); }; in test_set_pixel_to_row() 246 auto reset = [&]() { std::fill(data.begin(), data.end(), 0); }; in test_set_raw_pixel_to_row() 415 auto reset = [&]() { std::fill(data.begin(), data.end(), 0); }; in test_set_raw_channel_to_row()
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
| H A D | MutableCodePointTrie.java | 242 Arrays.fill(data, block, limit, value); in writeBlock() 263 Arrays.fill(data, block + start, block + limit, value); in fillBlock() 750 Arrays.fill(table, 0, newLength, 0); in init()
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
| H A D | MutableCodePointTrie.java | 237 Arrays.fill(data, block, limit, value); in writeBlock() 257 Arrays.fill(data, block + start, block + limit, value); in fillBlock() 742 Arrays.fill(table, 0, newLength, 0); in init()
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
| H A D | vktShaderCommonFunctionTests.cpp | 585 std::fill((int*)values[0] + scalarSize*0, (int*)values[0] + scalarSize*1, +1); in getInputValues() 586 std::fill((int*)values[0] + scalarSize*1, (int*)values[0] + scalarSize*2, -1); in getInputValues() 587 std::fill((int*)values[0] + scalarSize*2, (int*)values[0] + scalarSize*3, 0); in getInputValues()
|
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/ |
| H A D | vktShaderCommonFunctionTests.cpp | 585 std::fill((int*)values[0] + scalarSize*0, (int*)values[0] + scalarSize*1, +1); in getInputValues() 586 std::fill((int*)values[0] + scalarSize*1, (int*)values[0] + scalarSize*2, -1); in getInputValues() 587 std::fill((int*)values[0] + scalarSize*2, (int*)values[0] + scalarSize*3, 0); in getInputValues()
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
| H A D | VertexArrayGL.cpp | 113 mForcedStreamingAttributesFirstOffsets.fill(0); in VertexArrayGL() 122 mForcedStreamingAttributesFirstOffsets.fill(0); in VertexArrayGL() 607 mForcedStreamingAttributesFirstOffsets.fill(0); in recoverForcedStreamingAttributesForDrawArraysInstanced()
|
| /third_party/python/Objects/ |
| H A D | unicodeobject.c | 2723 Py_ssize_t length, fill, arglen; in unicode_fromformat_write_str() local 2747 fill = width - length; in unicode_fromformat_write_str() 2748 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, ' ') == -1) in unicode_fromformat_write_str() 2750 writer->pos += fill; in unicode_fromformat_write_str() 2798 Py_ssize_t fill; in unicode_fromformat_arg() local 2938 fill = width - precision; in unicode_fromformat_arg() 2940 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, fillchar) == -1) in unicode_fromformat_arg() 2942 writer->pos += fill; in unicode_fromformat_arg() 2945 fill = precision - len; in unicode_fromformat_arg() 2946 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, ' in unicode_fromformat_arg() 10284 pad(PyObject *self, Py_ssize_t left, Py_ssize_t right, Py_UCS4 fill) pad() argument 13592 Py_ssize_t fill; unicode_zfill_impl() local 14997 Py_UCS4 fill; unicode_format_arg_output() local [all...] |
| /kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnx2x/ |
| H A D | bnx2x_init_ops.h | 84 static void bnx2x_init_fill(struct bnx2x *bp, u32 addr, int fill, in bnx2x_init_fill() argument 91 memset(GUNZIP_BUF(bp), (u8)fill, buf_len); in bnx2x_init_fill()
|
| /kernel/linux/linux-6.6/drivers/net/ethernet/broadcom/bnx2x/ |
| H A D | bnx2x_init_ops.h | 84 static void bnx2x_init_fill(struct bnx2x *bp, u32 addr, int fill, in bnx2x_init_fill() argument 91 memset(GUNZIP_BUF(bp), (u8)fill, buf_len); in bnx2x_init_fill()
|
| /third_party/glslang/SPIRV/ |
| H A D | hex_float.h | 709 const auto saved_fill = os.fill(); in operator <<() 721 os.fill(saved_fill); in operator <<()
|
| /third_party/backends/backend/genesys/ |
| H A D | image_pipeline.cpp | 720 std::fill(out_data, out_data + get_row_bytes(), 0); in get_next_row_data() 749 std::fill(out_data + x_src_width * bpp, in get_next_row_data()
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
| H A D | BytesTrieTest.java | 554 Arrays.fill(intBytes0, (byte)0); in TestDelta() 555 Arrays.fill(intBytes1, (byte)1); in TestDelta()
|
| /third_party/mesa3d/src/gallium/frontends/clover/core/ |
| H A D | kernel.cpp | 358 const uint8_t fill = (sign_ext && msb(v) ? ~0 : 0); in extend() local 359 T w(n, fill); in extend()
|
| /third_party/skia/third_party/externals/angle2/src/common/ |
| H A D | PackedEnums.h | 113 void fill(const T &u) { mPrivateData.fill(u); } in fill() function in angle::PackedEnumMap
|
| H A D | FastVector.h | 133 std::fill(begin(), end(), value); in FastVector() 389 std::fill(mData + mSize, mData + count, value); in resize()
|
| /third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
| H A D | CodedOutputStreamTest.java | 456 Arrays.fill(data, 0, length2, (byte) 2); in testWriteToByteBuffer() 707 Arrays.fill(result, c); in fullString()
|
| /third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
| H A D | FramebufferTest.cpp | 3079 gData.fill(GLColor::red); in TEST_P() 3082 gData.fill(GLColor::green); in TEST_P() 3085 gData.fill(GLColor::blue); in TEST_P() 3147 gData.fill(GLColor::red); in TEST_P() 3150 gData.fill(GLColor::green); in TEST_P() 3153 gData.fill(GLColor::blue); in TEST_P() 3262 gData.fill(GLColor::blue); in TEST_P() 3313 gData.fill(GLColor::blue); in TEST_P() 3378 gData.fill(GLColor::blue); in TEST_P() 3389 gData.fill(GLColo in TEST_P() [all...] |
| /third_party/ffmpeg/libavcodec/ |
| H A D | dvbsubdec.c | 1153 int fill; in dvbsub_parse_region_segment() local 1176 fill = ((*buf++) >> 3) & 1; in dvbsub_parse_region_segment() 1206 fill = 1; in dvbsub_parse_region_segment() 1231 if (fill) { in dvbsub_parse_region_segment()
|