/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | calendar.cpp | 293 // to get the default calendar type for the locale's region in getCalendarTypeForLocale() 527 fprintf(stderr, "Cloning a %s calendar with tz=%ld\n", ((Calendar*)instance)->getType(), ((Calendar*)instance)->get(UCAL_ZONE_OFFSET, status2)); in cloneInstance() 553 fprintf(stderr, "New default calendar has tz=%d\n", ((Calendar*)nc)->get(UCAL_ZONE_OFFSET, status2)); in handleDefault() 891 u = getCalendarService(success)->get(aLocale, LocaleKey::KIND_ANY, &actualLoc, success); in makeInstance() 926 c = (Calendar*)getCalendarService(success)->get(l, LocaleKey::KIND_ANY, &actualLoc2, success); in makeInstance() 1191 Calendar::get(UCalendarDateFields field, UErrorCode& status) const in get() function in Calendar 1281 int32_t year = get(UCAL_EXTENDED_YEAR, status); in getRelatedYear() 1803 // To get around this problem we don't use fields; we manipulate in roll() 1846 int32_t era = get(UCAL_ERA, status); in roll() 2028 // the start of the year, and get th in roll() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMLoadStoreOptimizer.cpp | 139 /// A set of MachineInstrs that fulfill (nearly all) conditions to get 550 BuildMI(MBB, MBBI, DL, TII->get(ARM::tSUBi8), Base) in UpdateBaseRegUses() 571 BuildMI(MBB, MBBI, DL, TII->get(ARM::tSUBi8), Base) in UpdateBaseRegUses() 741 BuildMI(MBB, InsertBefore, DL, TII->get(ARM::tMOVSr), NewBase) in CreateLoadStoreMulti() 744 BuildMI(MBB, InsertBefore, DL, TII->get(ARM::tMOVr), NewBase) in CreateLoadStoreMulti() 754 BuildMI(MBB, InsertBefore, DL, TII->get(BaseOpc), NewBase) in CreateLoadStoreMulti() 759 BuildMI(MBB, InsertBefore, DL, TII->get(BaseOpc), NewBase) in CreateLoadStoreMulti() 765 BuildMI(MBB, InsertBefore, DL, TII->get(BaseOpc), NewBase) in CreateLoadStoreMulti() 804 MIB = BuildMI(MBB, InsertBefore, DL, TII->get(Opcode)); in CreateLoadStoreMulti() 816 MIB = BuildMI(MBB, InsertBefore, DL, TII->get(Opcod in CreateLoadStoreMulti() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_query/ |
H A D | vktRayQueryWatertightnessTests.cpp | 169 VkBuffer result = (buffer.get() == DE_NULL) ? DE_NULL : buffer->get(); in getVkBuffer() 836 if (0 != (shaders & VK_SHADER_STAGE_VERTEX_BIT)) m_vertShaderModule = createShaderModule(vkd, device, collection.get("vert"), 0); in initConfiguration() 837 if (0 != (shaders & VK_SHADER_STAGE_GEOMETRY_BIT)) m_geomShaderModule = createShaderModule(vkd, device, collection.get("geom"), 0); in initConfiguration() 838 if (0 != (shaders & VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT)) m_tescShaderModule = createShaderModule(vkd, device, collection.get("tesc"), 0); in initConfiguration() 839 if (0 != (shaders & VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT)) m_teseShaderModule = createShaderModule(vkd, device, collection.get("tese"), 0); in initConfiguration() 840 if (0 != (shaders & VK_SHADER_STAGE_FRAGMENT_BIT)) m_fragShaderModule = createShaderModule(vkd, device, collection.get("frag"), 0); in initConfiguration() 856 m_pipelineLayout = makePipelineLayout (vkd, device, m_descriptorSetLayout.get()); in initConfiguration() 884 vkd.cmdBindDescriptorSets(cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *m_pipelineLayout, 0, 1, &m_descriptorSet.get(), 0, DE_NULL); in fillCommandBuffer() 886 vkd.cmdBindVertexBuffers(cmdBuffer, 0u, 1u, &m_vertexBuffer.get(), in fillCommandBuffer() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_shading_rate/ |
H A D | vktFragmentShadingRateBasic.cpp | 26 * fragment shader does an atomic add to a memory location to get a unique 803 // Combine rate 0 and 1, get a mask of possible clamped rates in Simulate() 1402 [](const Move<VkDescriptorSetLayout>& elem) { return elem.get(); }); in iterate() 1417 const Unique<VkShaderModule> cs (createShaderModule(vk, device, m_context.getBinaryCollection().get("comp"), 0)); in iterate() 1532 const auto mainDescriptorSet = descriptorSets.front().get(); in iterate() 1600 descriptorSets.front().get(), // dstSet in iterate() 1659 const auto extraBufferInfo = makeDescriptorBufferInfo(vertexBuffer->get(), 0ull, vertexBufferSize); in iterate() 1664 descriptorSets.back().get(), // dstSet in iterate() 1994 Move<VkShaderModule> fragShader = createShaderModule(vk, device, binaries.get("frag"), 0); in iterate() 2001 meshShader = createShaderModule(vk, device, binaries.get("mes in iterate() [all...] |
/third_party/vk-gl-cts/external/amber/src/src/amberscript/ |
H A D | parser.cc | 342 buf = color_buf.get(); in Parse() 598 r = ParsePipelineAttach(pipeline.get()); in ParsePipelineBody() 600 r = ParsePipelineShaderOptimizations(pipeline.get()); in ParsePipelineBody() 602 r = ParsePipelineFramebufferSize(pipeline.get()); in ParsePipelineBody() 604 r = ParsePipelineViewport(pipeline.get()); in ParsePipelineBody() 606 r = ParsePipelineBind(pipeline.get()); in ParsePipelineBody() 608 r = ParsePipelineVertexData(pipeline.get()); in ParsePipelineBody() 610 r = ParsePipelineIndexData(pipeline.get()); in ParsePipelineBody() 612 r = ParsePipelineSet(pipeline.get()); in ParsePipelineBody() 614 r = ParsePipelineShaderCompileOptions(pipeline.get()); in ParsePipelineBody() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | DebugInfoMetadata.h | 37 // Helper macros for defining get() overrides. 51 static CLASS *get(LLVMContext &Context, DEFINE_MDNODE_GET_UNPACK(FORMAL)) { \ 70 explicit operator bool() const { return get(); } in operator bool() 71 explicit operator MDTuple *() const { return get(); } in operator MDTuple *() 73 MDTuple *get() const { return const_cast<MDTuple *>(N); } in get() function in llvm::DITypeRefArray 74 MDTuple *operator->() const { return get(); } in operator ->() 75 MDTuple &operator*() const { return *get(); } in operator *() 144 return MDString::get(Context, S); 323 return getOperand(0).get(); in getRawCountNode() 925 BaseType, SizeInBits, AlignInBits, OffsetInBits, Flags, Elements.get(), in getImpl() [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/drivers/net/mlxsw/ |
H A D | rtnetlink.sh | 365 ip -6 route get fibmatch 2001:db8:1::2 dev br0.10 370 ip -6 route get fibmatch 2001:db8:1::2 dev br0.10 375 ip -6 route get fibmatch 2001:db8:1::2 dev br0.10 380 ip -6 route get fibmatch 2001:db8:1::2 dev br0.10 410 ip -6 route get fibmatch 2001:db8:1::2 dev bond1 413 ip -6 route get fibmatch 2001:db8:2::2 dev bond1.10 418 ip -6 route get fibmatch 2001:db8:1::2 dev bond1 421 ip -6 route get fibmatch 2001:db8:2::2 dev bond1.10 426 ip -6 route get fibmatch 2001:db8:1::2 dev bond1 429 ip -6 route get fibmatc [all...] |
/kernel/linux/linux-5.10/sound/pci/ice1712/ |
H A D | pontis.c | 65 * get the current register value of WM codec 539 .get = wm_dac_vol_get, 549 .get = wm_adc_vol_get, 557 .get = wm_adc_mux_get, 565 .get = wm_adc_mux_get, 573 .get = wm_bypass_get, 580 .get = wm_chswap_get, 587 .get = cs_source_get, 595 .get = pontis_gpio_mask_get, 602 .get [all...] |
/kernel/linux/linux-6.6/sound/pci/ice1712/ |
H A D | pontis.c | 65 * get the current register value of WM codec 539 .get = wm_dac_vol_get, 549 .get = wm_adc_vol_get, 557 .get = wm_adc_mux_get, 565 .get = wm_adc_mux_get, 573 .get = wm_bypass_get, 580 .get = wm_chswap_get, 587 .get = cs_source_get, 595 .get = pontis_gpio_mask_get, 602 .get [all...] |
/third_party/elfio/elfio/ |
H A D | elfio.hpp | 398 is_offset_in_section( offset, sec.get() ) ) { 399 return sec.get(); 448 section* new_section = sections_.back().get(); 474 segment* new_segment = segments_.back().get(); 586 segment* seg = segments_.back().get(); 699 worklist.emplace_back( seg.get() ); 970 sec = parent->sections_[index].get(); 983 sec = it.get(); 998 section* string_table( parent->sections_[str_index].get() ); 1055 return parent->segments_[index].get(); [all...] |
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
H A D | CollationIterator.java | 73 long get(int i) { return buffer[i]; } in get() method in CollationIterator.CEBuffer 217 if(ceBuffer.get(i) != o.ceBuffer.get(i)) { return false; } in equals() 243 return ceBuffer.get(cesIndex++); in nextCE() 309 return ceBuffer.get(--ceBuffer.length); in previousCE() 340 return ceBuffer.get(--ceBuffer.length); in previousCE() 348 return ceBuffer.get(i); in getCE() 665 return ceBuffer.get(cesIndex++); in nextCEFromCE32() 866 // We did get a match after skipping one or more combining marks, in nextCE32FromDiscontiguousContraction() 935 assert(ceBuffer.get(ceBuffe in previousCEUnsafe() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/ |
H A D | CollationIterator.java | 75 long get(int i) { return buffer[i]; } in get() method in CollationIterator.CEBuffer 219 if(ceBuffer.get(i) != o.ceBuffer.get(i)) { return false; } in equals() 245 return ceBuffer.get(cesIndex++); in nextCE() 311 return ceBuffer.get(--ceBuffer.length); in previousCE() 342 return ceBuffer.get(--ceBuffer.length); in previousCE() 350 return ceBuffer.get(i); in getCE() 667 return ceBuffer.get(cesIndex++); in nextCEFromCE32() 868 // We did get a match after skipping one or more combining marks, in nextCE32FromDiscontiguousContraction() 937 assert(ceBuffer.get(ceBuffe in previousCEUnsafe() [all...] |
/third_party/node/deps/v8/src/api/ |
H A D | api-natives.cc | 224 Handle<AccessorInfo> accessor(AccessorInfo::cast(array->get(i)), isolate); in ConfigureInstance() 240 auto name = handle(Name::cast(properties->get(i++)), isolate); in ConfigureInstance() 241 Object bit = properties->get(i++); in ConfigureInstance() 248 auto prop_data = handle(properties->get(i++), isolate); in ConfigureInstance() 254 auto getter = handle(properties->get(i++), isolate); in ConfigureInstance() 255 auto setter = handle(properties->get(i++), isolate); in ConfigureInstance() 264 PropertyDetails details(Smi::cast(properties->get(i++))); in ConfigureInstance() 269 static_cast<v8::Intrinsic>(Smi::ToInt(properties->get(i++))); in ConfigureInstance() 300 Handle<Object> object{fast_cache.get(serial_number), isolate}; in ProbeInstantiationsCache() 364 DCHECK(!fast_cache.get(serial_numbe in UncacheTemplateInstantiation() [all...] |
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/ |
H A D | RangeTree.java | 179 // If we can terminate we get an additional match count for the sequence that reaches us, but in Node() 180 // we may get more for longer sequences matched by nodes we link to. in Node() 183 Edge e = edges.get(n); in Node() 225 /** Helper to get the target node from an edge index (rather than a digit value). */ 227 return (n != 0xF) ? edges.get(n).target : null; in targetFromJumpTableIndex() 235 return (jumpTableIndex != 0xF) ? edges.get(jumpTableIndex) : null; in find() 393 Node referent = get(); in equals() 394 return referent != null && referent.equals(((WeakNodeRef) obj).get()); in equals() 481 // If we get to the end of the prefix, just return whatever's left in the range. in apply() 541 WeakNodeRef existingRef = interningMap.get(re in intern() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassUnusedAttachmentTests.cpp | 495 submitCommandsAndWait(vk, vkDevice, m_context.getUniversalQueue(), cmdBuffer.get()); in UnusedAttachmentTestInstance() 627 &m_descriptorSetLayoutSubpass0.get(), // const VkDescriptorSetLayout* pSetLayouts; in UnusedAttachmentTestInstance() 662 &m_descriptorSetLayoutSubpass1.get(), // const VkDescriptorSetLayout* pSetLayouts; in UnusedAttachmentTestInstance() 696 &m_descriptorSetLayoutSubpass1.get(), // const VkDescriptorSetLayout* pSetLayouts in UnusedAttachmentTestInstance() 725 m_vertexShaderModule = createShaderModule(vk, vkDevice, m_context.getBinaryCollection().get("color_vert"), 0); in UnusedAttachmentTestInstance() 726 m_fragmentShaderModuleSubpass0 = createShaderModule(vk, vkDevice, m_context.getBinaryCollection().get("color_frag_sb0"), 0); in UnusedAttachmentTestInstance() 727 m_fragmentShaderModuleSubpass1 = createShaderModule(vk, vkDevice, m_context.getBinaryCollection().get("color_frag_sb1"), 0); in UnusedAttachmentTestInstance() 874 vk.cmdBindVertexBuffers(*m_cmdBuffer, 0, 1, &m_vertexBuffer.get(), &vertexBufferOffset); in createCommandBuffer() 878 vk.cmdBindDescriptorSets(*m_cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *m_pipelineLayoutSubpass1, 0, 1, &m_descriptorSetSubpass1.get(), 0, DE_NULL); in createCommandBuffer() 891 submitCommandsAndWait(vk, vkDevice, queue, m_cmdBuffer.get()); in iterate() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shader_object/ |
H A D | vktShaderObjectCreateTests.cpp | 72 const auto& vert = binaries.get("vert"); in iterate() 73 const auto& tesc = binaries.get("tesc"); in iterate() 74 const auto& tese = binaries.get("tese"); in iterate() 75 const auto& geom = binaries.get("geom"); in iterate() 76 const auto& frag = binaries.get("frag"); in iterate() 77 const auto& comp = binaries.get("comp"); in iterate() 100 vk::VkDescriptorSetLayout* setLayout = const_cast<vk::VkDescriptorSetLayout*>(&descriptorSetLayout.get()); in iterate() 218 const auto& mesh = binaries.get("mesh"); in iterate() 219 const auto& task = binaries.get("task"); in iterate() 528 const auto& src = binaries.get(getShaderNam in iterate() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/ |
H A D | vktTessellationShaderInputOutputTests.cpp | 125 .setShader (vk, device, VK_SHADER_STAGE_VERTEX_BIT, context.getBinaryCollection().get("vert"), DE_NULL) in runTest() 126 .setShader (vk, device, VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT, context.getBinaryCollection().get("tesc"), DE_NULL) in runTest() 127 .setShader (vk, device, VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT, context.getBinaryCollection().get("tese"), DE_NULL) in runTest() 128 .setShader (vk, device, VK_SHADER_STAGE_FRAGMENT_BIT, context.getBinaryCollection().get("frag"), DE_NULL) in runTest() 164 vk.cmdBindVertexBuffers(*cmdBuffer, 0u, 1u, &vertexBuffer.get(), &vertexBufferOffset); in runTest() 974 addFunctionCaseWithPrograms(group.get(), caseName, in createShaderInputOutputTests() 1006 addFunctionCaseWithPrograms(group.get(), cases[caseNdx].caseName, in createShaderInputOutputTests() 1025 addFunctionCaseWithPrograms(group.get(), cases[caseNdx].caseName, in createShaderInputOutputTests() 1031 addFunctionCaseWithPrograms(group.get(), "barrier", Barrier::initPrograms, Barrier::test); in createShaderInputOutputTests() 1066 addFunctionCaseWithPrograms(group.get(), testNam in createShaderInputOutputTests() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/wsi/ |
H A D | vktWsiColorSpaceTests.cpp | 408 submitCommandsAndWait(vkd, device, queue, commandBuffer.get()); in getPixel() 542 imageReadySemaphore.get(), in colorspaceCompareTest() 566 &imageReadySemaphore.get(), in colorspaceCompareTest() 569 &commandBuffer.get(), in colorspaceCompareTest() 571 &renderingCompleteSemaphore.get() in colorspaceCompareTest() 578 &renderingCompleteSemaphore.get(), in colorspaceCompareTest() 580 &swapchain.get(), in colorspaceCompareTest() 585 renderer.recordFrame(commandBuffer.get(), imageNdx, 0); in colorspaceCompareTest() 593 referenceColorspacePixel = getPixel(vkd, device, devHelper.queue, commandPool.get(), in colorspaceCompareTest() 600 if (referenceColorspacePixel == getPixel(vkd, device, devHelper.queue, commandPool.get(), in colorspaceCompareTest() [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
H A D | Image11.cpp | 389 ASSERT(rt11->getTexture().get()); in copyFromFramebuffer() 493 deviceContext->ResolveSubresource(resolveTex.get(), 0, textureHelper.get(), in copyWithoutConversion() 496 deviceContext->CopySubresourceRegion(stagingTexture->get(), stagingSubresourceIndex, in copyWithoutConversion() 498 resolveTex.get(), 0, &srcBox); in copyWithoutConversion() 502 deviceContext->CopySubresourceRegion(stagingTexture->get(), stagingSubresourceIndex, in copyWithoutConversion() 504 textureHelper.get(), sourceSubResource, &srcBox); in copyWithoutConversion() 648 mRenderer->mapResource(context, stagingTexture->get(), subresourceIndex, mapType, 0, map)); in map() 653 deviceContext->Unmap(mStagingTexture.get(), mStagingSubresource); in map() 672 deviceContext->Unmap(mStagingTexture.get(), mStagingSubresourc in unmap() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | SafeStack.cpp | 293 assert(V == UI.get()); in IsSafeStackAlloca() 349 if (A->get() == V) in IsSafeStackAlloca() 546 ConstantInt::get(IntPtrTy, ~uint64_t(FrameAlignment - 1))), in moveStaticAllocasToUnsafeStack() 555 ConstantInt::get(Int32Ty, -Offset)); in moveStaticAllocasToUnsafeStack() 574 ConstantInt::get(Int32Ty, -Offset)); in moveStaticAllocasToUnsafeStack() 610 ConstantInt::get(Int32Ty, -Offset)); in moveStaticAllocasToUnsafeStack() 633 IRB.CreateGEP(Int8Ty, BasePointer, ConstantInt::get(Int32Ty, -FrameSize), in moveStaticAllocasToUnsafeStack() 654 Value *Size = IRB.CreateMul(ArraySize, ConstantInt::get(IntPtrTy, TySize)); in moveDynamicAllocasToUnsafeStack() 667 IRB.CreateAnd(SP, ConstantInt::get(IntPtrTy, ~uint64_t(Align - 1))), in moveDynamicAllocasToUnsafeStack() 777 IRB.SetCurrentDebugLocation(DebugLoc::get(S in run() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
H A D | MCExpr.cpp | 633 // the InSet flag is set to get the current difference anyway (used for in EvaluateSymbolicAdd() 665 Res = MCValue::get(A, B, Result_Cst); in EvaluateSymbolicAdd() 709 Res = MCValue::get(cast<MCConstantExpr>(this)->getValue()); in evaluateAsRelocatableImpl() 742 Res = MCValue::get(SRE, nullptr, 0); in evaluateAsRelocatableImpl() 758 Res = MCValue::get(!Value.getConstant()); in evaluateAsRelocatableImpl() 766 Res = MCValue::get(Value.getSymB(), Value.getSymA(), in evaluateAsRelocatableImpl() 772 Res = MCValue::get(~Value.getConstant()); in evaluateAsRelocatableImpl() 795 Res = MCValue::get((L->isEqualTo(R)) ? -1 : 0); in evaluateAsRelocatableImpl() 798 Res = MCValue::get((R->isEqualTo(R)) ? 0 : -1); in evaluateAsRelocatableImpl() 869 Res = MCValue::get(Resul in evaluateAsRelocatableImpl() [all...] |
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | WebGLFramebufferTest.cpp | 232 GLint uniformLoc = glGetUniformLocation(program.get(), essl1_shaders::ColorUniform()); in testDepthStencilDepthStencil() 276 drawUByteColorQuad(program.get(), uniformLoc, GLColor::green); in testDepthStencilDepthStencil() 278 drawUByteColorQuad(program.get(), uniformLoc, GLColor::red); in testDepthStencilDepthStencil() 308 drawUByteColorQuad(program.get(), uniformLoc, GLColor::green); in testDepthStencilDepthStencil() 310 drawUByteColorQuad(program.get(), uniformLoc, GLColor::red); in testDepthStencilDepthStencil() 594 testRenderingAndReading(program.get()); in testUsingIncompleteFramebuffer() 602 testRenderingAndReading(program.get()); in testUsingIncompleteFramebuffer() 611 testRenderingAndReading(program.get()); in testUsingIncompleteFramebuffer() 825 glBindTexture(GL_TEXTURE_2D, depthTexture.get()); in TEST_P() 831 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, depthTexture.get(), in TEST_P() [all...] |
/third_party/skia/src/gpu/ |
H A D | GrResourceProvider.cpp | 108 tmpTexels.get(), in createTexture() 481 data = temp.get(); in createPatternedIndexBuffer() 490 if (temp.get()) { in createPatternedIndexBuffer() 499 this->assignUniqueKeyToResource(*key, buffer.get()); in createPatternedIndexBuffer() 637 this->assignUniqueKeyToResource(sbKey, keyedStencil.get()); in attachStencilAttachment() 686 this->assignUniqueKeyToResource(key, msaaAttachment.get()); in getDiscardableMSAAAttachment() 795 outLevel->fPixels = data->get(); in prepare_level() 799 return GrConvertPixels( GrPixmap(dstInfo, data->get(), tempRB), in prepare_level() 848 SkAssertResult(fGpu->writePixels(texture.get(), in writePixels() 852 tmpTexels.get(), in writePixels() [all...] |
/third_party/skia/src/codec/ |
H A D | SkRawCodec.cpp | 258 data = SkData::MakeSubset(data.get(), 0, bytesRead); 276 data = SkData::MakeSubset(data.get(), 0, newSize); 292 return SkStreamCopy(&fStreamBuffer, fStream.get()); in bufferMoreData() 307 const size_t bytesRead = fStream->read(tempBuffer.get(), sizeToRead); in bufferMoreData() 311 return fStreamBuffer.write(tempBuffer.get(), bytesRead); in bufferMoreData() 381 data = SkData::MakeSubset(data.get(), 0, bytesRead); 555 SkPiexStream piexStream(fStream.get()); in initFromPiex() 572 fDngStream = std::make_unique<SkDngStream>(fStream.get()); in readDng() 630 SkPiexStream piexStream(rawStream.get()); in MakeFromStream() 667 if (!SkDngImage::IsTiffHeaderValid(rawStream.get())) { in MakeFromStream() [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/ |
H A D | Font.java | 327 private Map<Integer, ? extends Table> tables; // these get set in the builder 410 return (T) this.tables.get(tag); in getTable() 483 Table table = this.tables.get(tag); in buildTableHeadersForSerialization() 744 Table.Builder<? extends Table> builder = this.tableBuilders.get(tag); in getTableBuilder() 834 Table.Builder<? extends Table> builder = getTableBuilder(record, tableData.get(record)); in buildAllTableBuilders() 899 (FontHeaderTable.Builder) builderMap.get(Tag.head); in interRelateBuilders() 901 (HorizontalHeaderTable.Builder) builderMap.get(Tag.hhea); in interRelateBuilders() 903 (MaximumProfileTable.Builder) builderMap.get(Tag.maxp); in interRelateBuilders() 905 (LocaTable.Builder) builderMap.get(Tag.loca); in interRelateBuilders() 907 (HorizontalMetricsTable.Builder) builderMap.get(Ta in interRelateBuilders() [all...] |