Home
last modified time | relevance | path

Searched refs:size (Results 11151 - 11175 of 41759) sorted by relevance

1...<<441442443444445446447448449450>>...1671

/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/reduce/
H A Dremove_unused_struct_member_test.cpp65 ASSERT_EQ(1, ops.size()); in TEST()
147 ASSERT_EQ(1, ops.size()); in TEST()
233 ASSERT_EQ(0, ops.size()); in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
H A Dast.js113 let size = 1;
115 size += param.length();
117 return size;
/third_party/skia/third_party/externals/icu/source/samples/legacy/
H A Dnewcol.cpp16 * tab size: 8 (not used)
74 extern "C" void test_current(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[][32]) { in test_current() argument
82 for(i = 0; i<size; i++) { in test_current()
84 fprintf(stderr, "For i=%d, size of sortkey is %d\n", i, keySize); in test_current()
90 qsort(data, size, maxlen*sizeof(UChar), compare_current); in test_current()
H A Doldcol.cpp16 * tab size: 8 (not used)
90 extern "C" void test_legacy(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[4][32]) { in test_legacy() argument
99 for(i = 0; i<size; i++) { in test_legacy()
101 fprintf(stderr, "For i=%d, size of sortkey is %d\n", i, keySize); in test_legacy()
107 qsort(data, size, maxlen*sizeof(UChar), compare_legacy); in test_legacy()
/third_party/skia/src/sksl/
H A DSkSLPool.cpp63 void* Pool::AllocMemory(size_t size) { in AllocMemory() argument
67 void* ptr = memPool->allocate(size); in AllocMemory()
73 void* ptr = ::operator new(size); in AllocMemory()
/third_party/skia/src/utils/
H A DSkTextUtils.cpp13 void SkTextUtils::Draw(SkCanvas* canvas, const void* text, size_t size, SkTextEncoding encoding, in Draw() argument
17 SkScalar width = font.measureText(text, size, encoding); in Draw()
24 canvas->drawTextBlob(SkTextBlob::MakeFromText(text, size, font, encoding), x, y, paint); in Draw()
/third_party/skia/src/sksl/ir/
H A DSkSLConstructorCompound.cpp26 if (type.isScalar() && args.size() == 1 && args.front()->type() == type) { in Make()
55 ? arg->as<ConstructorCompound>().arguments().size() in Make()
61 if (fields > args.size()) { in Make()
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
H A DBufferD3D12.h49 uint64_t size);
61 MaybeError MapAsyncImpl(wgpu::MapMode mode, size_t offset, size_t size) override;
78 uint64_t size = 0);
/third_party/skia/third_party/externals/dawn/src/dawn_wire/server/
H A DServerQueue.cpp52 uint64_t size) { in DoQueueWriteBuffer()
61 if (size > std::numeric_limits<size_t>::max()) { in DoQueueWriteBuffer()
68 "Data size too large for write texture."); in DoQueueWriteBuffer()
72 static_cast<size_t>(size)); in DoQueueWriteBuffer()
96 "Data size too large for write texture."); in DoQueueWriteTexture()
48 DoQueueWriteBuffer(ObjectId queueId, ObjectId bufferId, uint64_t bufferOffset, const uint8_t* data, uint64_t size) DoQueueWriteBuffer() argument
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
H A DQueueGL.cpp45 size_t size) { in WriteBufferImpl()
48 ToBackend(buffer)->EnsureDataInitializedAsDestination(bufferOffset, size); in WriteBufferImpl()
51 gl.BufferSubData(GL_ARRAY_BUFFER, bufferOffset, size, data); in WriteBufferImpl()
42 WriteBufferImpl(BufferBase* buffer, uint64_t bufferOffset, const void* data, size_t size) WriteBufferImpl() argument
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/client/
H A DClientHandlers.cpp56 const volatile char* Client::HandleCommandsImpl(const volatile char* commands, size_t size) { in HandleCommandsImpl() argument
57 DeserializeBuffer deserializeBuffer(commands, size); in HandleCommandsImpl()
64 return commands + size; in HandleCommandsImpl()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DCommandEncoder.h49 uint64_t size);
62 void APIClearBuffer(BufferBase* destination, uint64_t destinationOffset, uint64_t size);
77 uint64_t size);
/third_party/skia/third_party/externals/angle2/util/
H A Drandom_utils.h45 return elements[randomIntBetween(0, static_cast<int>(elements.size()) - 1)]; in randomSelect()
51 return elements.at(randomIntBetween(0, static_cast<int>(elements.size()) - 1)); in randomSelect()
61 for (size_t i = 0; i < data->size(); ++i) in FillVectorWithRandomUBytes()
/third_party/skia/third_party/externals/dawn/src/common/
H A Dityp_span.h26 // It stores the size and pointer to first element. It has the restriction that
36 constexpr span(Value* data, Index size) : mData(data), mSize(size) { in span() argument
92 Index size() const { in size() function in ityp::span
/third_party/skia/third_party/externals/dawn/src/dawn_wire/client/
H A DQueue.cpp57 size_t size) { in WriteBuffer()
65 cmd.size = size; in WriteBuffer()
54 WriteBuffer(WGPUBuffer cBuffer, uint64_t bufferOffset, const void* data, size_t size) WriteBuffer() argument
/third_party/openssl/util/perl/TLSProxy/
H A DCertificateRequest.pm55 my ($type, $size) = unpack("nn", $extension_data);
56 my $extdata = substr($extension_data, 4, $size);
57 $extension_data = substr($extension_data, 4 + $size);
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/
H A Dmerger.cc38 int32_t num_fonts = fonts->size(); in Merger()
81 font_info->chars_to_glyph_ids()->size(), in MergeFontInfos()
82 font_info->resolved_glyph_ids()->size()); in MergeFontInfos()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h33 StringOffset.insert(std::make_pair(Str, AggregateString.size())); in GetOrAddStringOffset()
52 for (unsigned i = 0, e = AggregateString.size(); i != e; ++i) { in EmitString()
64 assert(i + 1 < AggregateString.size() && "Incomplete escape sequence!"); in EmitString()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DUnifyFunctionExitNodes.cpp66 } else if (UnreachableBlocks.size() == 1) { in runOnFunction()
83 } else if (ReturningBlocks.size() == 1) { in runOnFunction()
100 PN = PHINode::Create(F.getReturnType(), ReturningBlocks.size(), in runOnFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DProgram.cpp35 assert(Redirects.empty() || Redirects.size() == 3); in ExecuteAndWait()
56 assert(Redirects.empty() || Redirects.size() == 3); in ExecuteNoWait()
70 StringRefArgs.reserve(Args.size()); in commandLineFitsWithinSystemLimits()
H A DStringExtras.cpp22 size_t N = s2.size(), M = s1.size(); in StrInStrNoCase()
61 for (unsigned i = 0, e = Name.size(); i != e; ++i) { in printEscapedString()
/third_party/skia/third_party/externals/tint/src/ast/
H A Darray.cc27 // Returns the string representation of an array size expression.
28 std::string SizeExprToString(const Expression* size, in SizeExprToString() argument
30 if (auto* ident = size->As<IdentifierExpression>()) { in SizeExprToString()
33 if (auto* literal = size->As<IntLiteralExpression>()) { in SizeExprToString()
37 // expression for array size. in SizeExprToString()
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dparser_impl_case_body_test.cc29 EXPECT_EQ(e->statements.size(), 0u); in TEST_F()
41 ASSERT_EQ(e->statements.size(), 2u); in TEST_F()
61 ASSERT_EQ(e->statements.size(), 1u); in TEST_F()
H A Dparser_impl_struct_body_decl_test.cc30 ASSERT_EQ(m.value.size(), 1u); in TEST_F()
35 EXPECT_EQ(mem->decorations.size(), 0u); in TEST_F()
43 ASSERT_EQ(m.value.size(), 0u); in TEST_F()
61 [[size(nan)]] a : i32; in TEST_F()
67 "3:10: expected signed integer literal for size decoration"); in TEST_F()
H A Dparser_impl_struct_member_decoration_decl_test.cc28 EXPECT_EQ(decos.value.size(), 0u); in TEST_F()
37 EXPECT_EQ(decos.value.size(), 0u); in TEST_F()
42 auto p = parser("[[size(4)]]"); in TEST_F()
47 ASSERT_EQ(decos.value.size(), 1u); in TEST_F()
54 auto p = parser("[[size(nan)]]"); in TEST_F()
60 "1:8: expected signed integer literal for size decoration"); in TEST_F()
64 auto p = parser("[[size(4)"); in TEST_F()
73 auto p = parser("[[size(4)"); in TEST_F()

Completed in 19 milliseconds

1...<<441442443444445446447448449450>>...1671