Home
last modified time | relevance | path

Searched refs:get (Results 526 - 550 of 11667) sorted by relevance

1...<<21222324252627282930>>...467

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineBindPointTests.cpp321 set = makeDescriptorSet(vkd, device, pool.get(), layout); in makePoolAndSet()
466 colorAttachmentView = makeImageView(vkd, device, colorAttachment->get(), imageViewType, imageFormat, subresourceRange); in iterate()
471 const auto cmdBufferPtr = allocateCommandBuffer(vkd, device, cmdPool.get(), VK_COMMAND_BUFFER_LEVEL_PRIMARY); in iterate()
472 const auto cmdBuffer = cmdBufferPtr.get(); in iterate()
487 if (hasGraphics) graphicsPipelineLayout = PipelineLayoutWrapper(m_params.pipelineConstructionType, vkd, device, graphicsSetLayout.get()); in iterate()
488 if (hasCompute) computePipelineLayout = PipelineLayoutWrapper(m_params.pipelineConstructionType, vkd, device, computeSetLayout.get()); in iterate()
489 if (hasRayTracing) rayTracingPipelineLayout = PipelineLayoutWrapper(m_params.pipelineConstructionType, vkd, device, rayTracingSetLayout.get()); in iterate()
497 if (hasGraphics) vertShader = ShaderWrapper(vkd, device, m_context.getBinaryCollection().get("vert"), 0u); in iterate()
498 if (hasGraphics) fragShader = ShaderWrapper(vkd, device, m_context.getBinaryCollection().get("frag"), 0u); in iterate()
499 if (hasCompute) compShader = ShaderWrapper(vkd, device, m_context.getBinaryCollection().get("com in iterate()
[all...]
H A DvktPipelineShaderModuleIdentifierTests.cpp561 DE_ASSERT(pipelineToRun.get() < pipelineCount); in BaseParams()
1347 generateSources(programCollection, m_params.get()); in initPrograms()
1443 ? getShaderModuleIdentifier(vkd1, device1, shaderModule1.get()) in runTest()
1448 ? getShaderModuleIdentifier(vkd2, device2, shaderModule2.get()) in runTest()
1550 vkd.reset(new DeviceDriver(vkp, instance, device.get(), context.getUsedApiVersion())); in DeviceHelper()
1552 allocator.reset(new SimpleAllocator(*vkd, device.get(), getPhysicalDeviceMemoryProperties(vki, physicalDevice))); in DeviceHelper()
1566 const auto dev2 = (m_params->differentDevices ? helper->device.get() : device); in iterate()
1586 const auto paramsPtr = dynamic_cast<Params*>(m_params.get()); in createInstance()
1672 , m_createAndUseIdsParams (dynamic_cast<const CreateAndUseIdsInstance::Params*>(m_params.get())) in CreateAndUseIdsCase()
1781 return m_moduleIdCreateInfo.get(); in getModuleIdCreateInfo()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp39 CurCodeSize = MaybeVBR.get(); in EnterSubBlock()
51 word_t NumWords = MaybeNum.get(); in EnterSubBlock()
84 return BitCodeAbbrevOp::DecodeChar6(Res.get()); in readAbbreviatedField()
98 unsigned Code = MaybeCode.get(); in skipRecord()
101 return MaybeVBR.get(); in skipRecord()
102 unsigned NumElts = MaybeVBR.get(); in skipRecord()
125 Code = MaybeCode.get(); in skipRecord()
146 unsigned NumElts = MaybeNum.get(); in skipRecord()
185 unsigned NumElts = MaybeNum.get(); in skipRecord()
212 uint32_t Code = MaybeCode.get(); in readRecord()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DTinyPtrVector.h70 Val = new VecTy(*RHS.Val.template get<VecTy*>()); in operator =()
76 Val.template get<VecTy*>()->clear(); in operator =()
77 Val.template get<VecTy*>()->push_back(RHS.front()); in operator =()
79 *Val.template get<VecTy*>() = *RHS.Val.template get<VecTy*>(); in operator =()
142 return *Val.template get<VecTy*>(); in operator ArrayRef()
151 return *Val.template get<VecTy*>(); in operator MutableArrayRef()
177 return Val.template get<VecTy*>()->size(); in size()
189 return Val.template get<VecTy *>()->begin(); in begin()
196 return Val.template get<VecT in end()
[all...]
/third_party/rust/crates/clap/src/error/
H A Dformat.rs70 if let Some(valid) = error.get(ContextKind::SuggestedSubcommand) { in format_error()
78 if let Some(valid) = error.get(ContextKind::SuggestedArg) { in format_error()
86 if let Some(valid) = error.get(ContextKind::SuggestedValue) { in format_error()
94 let suggestions = error.get(ContextKind::Suggested); in format_error()
107 let usage = error.get(ContextKind::Usage); in format_error()
128 let invalid_arg = error.get(ContextKind::InvalidArg); in write_dynamic_context()
129 let prior_arg = error.get(ContextKind::PriorArg); in write_dynamic_context()
167 let invalid_arg = error.get(ContextKind::InvalidArg); in write_dynamic_context()
178 let invalid_arg = error.get(ContextKind::InvalidArg); in write_dynamic_context()
179 let invalid_value = error.get(ContextKin in write_dynamic_context()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DChineseTest.java106 int y = cal.get(Calendar.EXTENDED_YEAR); in TestMapping()
107 int m = cal.get(Calendar.MONTH)+1; // 0-based -> 1-based in TestMapping()
108 int L = cal.get(Calendar.IS_LEAP_MONTH); in TestMapping()
109 int d = cal.get(Calendar.DAY_OF_MONTH); in TestMapping()
163 if (cal.get(Calendar.DAY_OF_MONTH) == 0) { in TestZeroDOM()
165 cal.get(Calendar.EXTENDED_YEAR) + "/" + in TestZeroDOM()
166 cal.get(Calendar.MONTH) + in TestZeroDOM()
167 (cal.get(Calendar.IS_LEAP_MONTH)==1?"(leap)":"") + in TestZeroDOM()
168 "/" + cal.get(Calendar.DAY_OF_MONTH)); in TestZeroDOM()
372 int month = cal.get(Calenda in TestResolution()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
H A DChineseTest.java109 int y = cal.get(Calendar.EXTENDED_YEAR); in TestMapping()
110 int m = cal.get(Calendar.MONTH)+1; // 0-based -> 1-based in TestMapping()
111 int L = cal.get(Calendar.IS_LEAP_MONTH); in TestMapping()
112 int d = cal.get(Calendar.DAY_OF_MONTH); in TestMapping()
166 if (cal.get(Calendar.DAY_OF_MONTH) == 0) { in TestZeroDOM()
168 cal.get(Calendar.EXTENDED_YEAR) + "/" + in TestZeroDOM()
169 cal.get(Calendar.MONTH) + in TestZeroDOM()
170 (cal.get(Calendar.IS_LEAP_MONTH)==1?"(leap)":"") + in TestZeroDOM()
171 "/" + cal.get(Calendar.DAY_OF_MONTH)); in TestZeroDOM()
375 int month = cal.get(Calenda in TestResolution()
[all...]
/third_party/skia/src/sksl/
H A DSkSLDehydrator.cpp243 if (symbols.fOwnedSymbols[i].get() == p.second) { in write()
257 this->write(expr.get()); in writeExpressionSpan()
267 this->write(b.left().get()); in write()
269 this->write(b.right().get()); in write()
342 this->write(f.base().get()); in write()
354 this->write(a.get()); in write()
361 this->write(i.base().get()); in write()
362 this->write(i.index().get()); in write()
389 this->write(p.operand().get()); in write()
396 this->write(p.operand().get()); in write()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64SIMDInstrOpt.cpp282 OriginalMCID = &TII->get(AArch64::FMLAv4i32_indexed); in shouldExitEarly()
283 ReplInstrMCID.push_back(&TII->get(AArch64::DUPv4i32lane)); in shouldExitEarly()
284 ReplInstrMCID.push_back(&TII->get(AArch64::FMLAv4f32)); in shouldExitEarly()
296 OriginalMCID = &TII->get(I.OrigOpc); in shouldExitEarly()
298 ReplInstrMCID.push_back(&TII->get(Repl)); in shouldExitEarly()
360 DupMCID = &TII->get(AArch64::DUPv4i32lane); in optimizeVectElement()
361 MulMCID = &TII->get(AArch64::FMLAv4f32); in optimizeVectElement()
364 DupMCID = &TII->get(AArch64::DUPv4i32lane); in optimizeVectElement()
365 MulMCID = &TII->get(AArch64::FMLSv4f32); in optimizeVectElement()
368 DupMCID = &TII->get(AArch6 in optimizeVectElement()
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dincaltst.cpp188 int32_t tz1 = cal.get(UCAL_ZONE_OFFSET,status); in quasiGregorianTest()
189 int32_t tz2 = grego -> get (UCAL_ZONE_OFFSET, status); in quasiGregorianTest()
224 int e = cal.get(UCAL_ERA, status); in quasiGregorianTest()
225 int y = cal.get(UCAL_YEAR, status); in quasiGregorianTest()
231 logln((UnicodeString)"OK: " + D + " => " + cal.get(UCAL_ERA, status) + ":" + in quasiGregorianTest()
232 cal.get(UCAL_YEAR, status) + "/" + in quasiGregorianTest()
233 (cal.get(UCAL_MONTH, status)+1) + "/" + cal.get(UCAL_DATE, status) + " (" + UnicodeString(cal.getType()) + ")"); in quasiGregorianTest()
235 errln((UnicodeString)"Fail: (millis to fields)" + D + " => " + cal.get(UCAL_ERA, status) + ":" + in quasiGregorianTest()
236 cal.get(UCAL_YEA in quasiGregorianTest()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/dynamic_state/
H A DvktDynamicStateInheritanceTests.cpp386 , m_colorViewInfo{ VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO, NULL, 0, m_colorImage.get(), VK_IMAGE_VIEW_TYPE_2D, in InheritanceTestInstance()
388 , m_depthViewInfo{ VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO, NULL, 0, m_depthImage.get(), VK_IMAGE_VIEW_TYPE_2D,
452 VkImageView attachmentViews[2] = { m_colorView.get(), m_depthView.get() }; in createImageView()
457 m_renderPass.get(), in createImageView()
463 m_vertModule = vk::createShaderModule(m_vk, dev, m_context.getBinaryCollection().get("vert"), 0u); in createImageView()
464 m_geomModule = vk::createShaderModule(m_vk, dev, m_context.getBinaryCollection().get("geom"), 0u); in createImageView()
465 m_fragModule = vk::createShaderModule(m_vk, dev, m_context.getBinaryCollection().get("frag"), 0u); in createImageView()
488 m_cmdPool.get(), in createImageView()
523 m_renderPass.get(), in startRenderCmds()
[all...]
/third_party/typescript/tests/baselines/reference/
H A Dgiant.js11 g -> get
24 public get pgF()
28 private get rgF()
36 static get tgF()
88 public get pgF()
92 private get rgF()
100 static get tgF()
167 public get pgF()
171 private get rgF()
179 static get tg
[all...]
H A DexportsAndImports3-es6.js67 Object.defineProperty(exports, "v", { enumerable: true, get: function () { return t1_1.v1; } });
68 Object.defineProperty(exports, "f", { enumerable: true, get: function () { return t1_1.f1; } });
69 Object.defineProperty(exports, "C", { enumerable: true, get: function () { return t1_1.C1; } });
70 Object.defineProperty(exports, "E", { enumerable: true, get: function () { return t1_1.E1; } });
71 Object.defineProperty(exports, "M", { enumerable: true, get: function () { return t1_1.M1; } });
72 Object.defineProperty(exports, "a", { enumerable: true, get: function () { return t1_1.a1; } });
78 Object.defineProperty(exports, "v", { enumerable: true, get: function () { return t1_1.v1; } });
79 Object.defineProperty(exports, "f", { enumerable: true, get: function () { return t1_1.f1; } });
80 Object.defineProperty(exports, "C", { enumerable: true, get: function () { return t1_1.C1; } });
81 Object.defineProperty(exports, "E", { enumerable: true, get
[all...]
H A DcomputedPropertyNames17_ES6.js4 get [b]() { return 0;}
6 get [[]]() { return 0; }
8 static get [undefined]() { return 0; }
15 get [b]() { return 0; }
17 get [[]]() { return 0; }
19 static get [undefined]() { return 0; }
/third_party/json/tests/src/
H A Dunit-udt.cpp175 a.m_val = j.template get<int>(); in from_json()
181 n.m_val = j.template get<std::string>(); in from_json()
187 const auto str = j.template get<std::string>(); in from_json()
203 p.m_age = j["age"].template get<age>(); in from_json()
204 p.m_name = j["name"].template get<name>(); in from_json()
205 p.m_country = j["country"].template get<country>(); in from_json()
210 a.m_val = j.get<std::string>(); in from_json()
215 c.m_person = j["person"].get<person>(); in from_json()
216 c.m_address = j["address"].get<address>(); in from_json()
221 cb.m_book_name = j["name"].get<nam in from_json()
[all...]
/third_party/node/src/crypto/
H A Dcrypto_sig.cc61 if (EVP_PKEY_id(pkey.get()) == EVP_PKEY_RSA || in ValidateDSAParameters()
62 EVP_PKEY_id(pkey.get()) == EVP_PKEY_RSA2 || in ValidateDSAParameters()
63 EVP_PKEY_id(pkey.get()) == EVP_PKEY_RSA_PSS) { in ValidateDSAParameters()
83 if (!EVP_DigestFinal_ex(mdctx.get(), m, &m_len)) in ValidateDSAParameters()
86 int signed_sig_len = EVP_PKEY_size(pkey.get()); in ValidateDSAParameters()
94 EVPKeyCtxPointer pkctx(EVP_PKEY_CTX_new(pkey.get(), nullptr)); in ValidateDSAParameters()
96 EVP_PKEY_sign_init(pkctx.get()) && in ValidateDSAParameters()
97 ApplyRSAOptions(pkey, pkctx.get(), padding, pss_salt_len) && in ValidateDSAParameters()
98 EVP_PKEY_CTX_set_signature_md(pkctx.get(), EVP_MD_CTX_md(mdctx.get())) in ValidateDSAParameters()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/
H A DvktMeshShaderApiTestsEXT.cpp443 colorBufferView = makeImageView(vkd, device, colorBuffer->get(), VK_IMAGE_VIEW_TYPE_2D, format, colorSRR); in iterate()
476 const auto descriptorSet = makeDescriptorSet(vkd, device, descriptorPool.get(), setLayout.get()); in iterate()
483 const auto descriptorBufferInfo = makeDescriptorBufferInfo(blockSizesBuffer->get(), 0ull, blockSizesBufferSize); in iterate()
485 updateBuilder.writeSingle(descriptorSet.get(), location, VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, &descriptorBufferInfo); in iterate()
492 const auto pipelineLayout = makePipelineLayout(vkd, device, 1u, &setLayout.get(), static_cast<uint32_t>(pcRanges.size()), de::dataOrNull(pcRanges)); in iterate()
505 const auto framebuffer = makeFramebuffer(vkd, device, renderPass.get(), colorBufferView.get(), extent.width, extent.height); in iterate()
514 taskModule = createShaderModule(vkd, device, binaries.get("task")); in iterate()
515 meshModule = createShaderModule(vkd, device, binaries.get("mes in iterate()
[all...]
H A DvktMeshShaderMiscTestsEXT.cpp120 return taskCount.get(); in drawCount()
290 const auto colorView = makeImageView(vkd, device, colorImage.get(), VK_IMAGE_VIEW_TYPE_2D, imageFormat, colorSRR); in iterate()
308 const auto meshShader = createShaderModule(vkd, device, binaries.get("mesh")); in iterate()
309 const auto fragShader = createShaderModule(vkd, device, binaries.get("frag")); in iterate()
313 taskShader = createShaderModule(vkd, device, binaries.get("task")); in iterate()
319 const auto framebuffer = makeFramebuffer(vkd, device, renderPass.get(), colorView.get(), imageExtent.width, imageExtent.height); in iterate()
351 const auto pipeline = makeGraphicsPipeline(vkd, device, pipelineLayout.get(), in iterate()
352 taskShader.get(), meshShader.get(), fragShade in iterate()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/
H A DvktMeshShaderApiTestsEXT.cpp443 colorBufferView = makeImageView(vkd, device, colorBuffer->get(), VK_IMAGE_VIEW_TYPE_2D, format, colorSRR); in iterate()
476 const auto descriptorSet = makeDescriptorSet(vkd, device, descriptorPool.get(), setLayout.get()); in iterate()
483 const auto descriptorBufferInfo = makeDescriptorBufferInfo(blockSizesBuffer->get(), 0ull, blockSizesBufferSize); in iterate()
485 updateBuilder.writeSingle(descriptorSet.get(), location, VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, &descriptorBufferInfo); in iterate()
492 const auto pipelineLayout = makePipelineLayout(vkd, device, 1u, &setLayout.get(), static_cast<uint32_t>(pcRanges.size()), de::dataOrNull(pcRanges)); in iterate()
505 const auto framebuffer = makeFramebuffer(vkd, device, renderPass.get(), colorBufferView.get(), extent.width, extent.height); in iterate()
514 taskModule = createShaderModule(vkd, device, binaries.get("task")); in iterate()
515 meshModule = createShaderModule(vkd, device, binaries.get("mes in iterate()
[all...]
H A DvktMeshShaderMiscTestsEXT.cpp120 return taskCount.get(); in drawCount()
290 const auto colorView = makeImageView(vkd, device, colorImage.get(), VK_IMAGE_VIEW_TYPE_2D, imageFormat, colorSRR); in iterate()
308 const auto meshShader = createShaderModule(vkd, device, binaries.get("mesh")); in iterate()
309 const auto fragShader = createShaderModule(vkd, device, binaries.get("frag")); in iterate()
313 taskShader = createShaderModule(vkd, device, binaries.get("task")); in iterate()
319 const auto framebuffer = makeFramebuffer(vkd, device, renderPass.get(), colorView.get(), imageExtent.width, imageExtent.height); in iterate()
351 const auto pipeline = makeGraphicsPipeline(vkd, device, pipelineLayout.get(), in iterate()
352 taskShader.get(), meshShader.get(), fragShade in iterate()
[all...]
/third_party/skia/tests/
H A DMallocPixelRefTest.cpp29 REPORTER_ASSERT(reporter, nullptr == pr.get()); in DEF_TEST()
38 REPORTER_ASSERT(reporter, nullptr == pr.get()); in DEF_TEST()
47 REPORTER_ASSERT(reporter, nullptr == pr.get()); in DEF_TEST()
53 auto pr = sk_make_sp<SkPixelRef>(info.width(), info.height(), memory.get(), rowBytes); in DEF_TEST()
54 REPORTER_ASSERT(reporter, pr.get() != nullptr); in DEF_TEST()
55 REPORTER_ASSERT(reporter, memory.get() == pr->pixels()); in DEF_TEST()
60 REPORTER_ASSERT(reporter, pr.get() != nullptr); in DEF_TEST()
68 REPORTER_ASSERT(reporter, pr.get() != nullptr); in DEF_TEST()
75 SkMakePixelRefWithProc(info.width(), info.height(), rowBytes, memory.get(), in DEF_TEST()
77 REPORTER_ASSERT(reporter, pr.get() ! in DEF_TEST()
[all...]
/third_party/skia/infra/bots/recipe_modules/builder_name_schema/
H A Dbuilder_name_schema.py92 role = parts.get(role_key)
95 s = BUILDER_NAME_SCHEMA.get(role)
101 for key in s.get('keys', []):
102 value = parts.get(key)
108 recurse_roles = s.get('recurse_roles', [])
111 sub_role = parts.get(sub_role_key)
124 for key in s.get('optional_keys', []):
125 if parts.get(key):
153 schema = BUILDER_NAME_SCHEMA.get(role)
160 for key in schema.get('key
[all...]
/third_party/skia/infra/bots/recipe_modules/vars/
H A Dapi.py21 # Otherwise, we can't get to the CIPD packages, caches, and isolates which
38 self.default_env.get('PATH', '%(PATH)s'),
44 self.m.properties.get('swarm_out_dir', 'tmp'))
54 self.configuration = self.builder_cfg.get('configuration', CONFIG_DEBUG)
55 arch = (self.builder_cfg.get('arch') or self.builder_cfg.get('target_arch'))
56 if ('Win' in self.builder_cfg.get('os', '') and arch == 'x86_64'):
60 if len(self.builder_cfg.get('extra_config', '')) > 0:
67 self.patch_storage = self.m.properties.get('patch_storage', 'gerrit')
71 if (self.m.properties.get('patch_issu
[all...]
/third_party/mesa3d/src/panfrost/bifrost/
H A Dbifrost_isa.py62 if cond.attrib.get('alias', False) and not aliased:
92 if mod.attrib.get('pseudo', False) and not include_pseudo:
96 start = mod.attrib.get('start', None)
109 default = mod.attrib.get('default', 'none' if 'none' in opts else None)
120 name = node.get('name')
123 ex[0][1] = node.get('start')
132 'staging': ins.attrib.get('staging', '').split('=')[0],
133 'staging_count': ins.attrib.get('staging', '=0').split('=')[1],
134 'dests': int(ins.attrib.get('dests', '1')),
135 'unused': ins.attrib.get('unuse
[all...]
/third_party/skia/third_party/externals/spirv-tools/test/opt/loop_optimizations/
H A Dlcssa.cpp139 LoopDescriptor ld{context.get(), f}; in TEST_F()
143 LoopUtils Util(context.get(), loop); in TEST_F()
146 Match(text, context.get()); in TEST_F()
225 LoopDescriptor ld{context.get(), f}; in TEST_F()
229 LoopUtils Util(context.get(), loop); in TEST_F()
232 Match(text, context.get()); in TEST_F()
324 LoopDescriptor ld{context.get(), f}; in TEST_F()
328 LoopUtils Util(context.get(), loop); in TEST_F()
331 Match(text, context.get()); in TEST_F()
417 LoopDescriptor ld{context.get(), in TEST_F()
[all...]

Completed in 30 milliseconds

1...<<21222324252627282930>>...467