Home
last modified time | relevance | path

Searched refs:groupIndex (Results 1 - 25 of 53) sorted by relevance

123

/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/
H A DCMapFormat12.java23 private int groupStartChar(int groupIndex) { in groupStartChar() argument
25 Offset.format12Groups.offset + groupIndex * Offset.format12Groups_structLength.offset in groupStartChar()
29 private int groupEndChar(int groupIndex) { in groupEndChar() argument
31 Offset.format12Groups.offset + groupIndex * Offset.format12Groups_structLength.offset in groupEndChar()
35 private int groupStartGlyph(int groupIndex) { in groupStartGlyph() argument
37 Offset.format12Groups.offset + groupIndex * Offset.format12Groups_structLength.offset in groupStartGlyph()
67 private int groupIndex = 0; field in CMapFormat12.CharacterIterator
74 nextChar = groupStartChar(groupIndex); in CharacterIterator()
75 groupEndChar = groupEndChar(groupIndex); in CharacterIterator()
84 if (groupIndex > in hasNext()
[all...]
H A DCMapFormat13.java22 private int groupStartChar(int groupIndex) { in groupStartChar() argument
24 Offset.format13Groups.offset + groupIndex * Offset.format13Groups_structLength.offset in groupStartChar()
28 private int groupEndChar(int groupIndex) { in groupEndChar() argument
30 Offset.format13Groups.offset + groupIndex * Offset.format13Groups_structLength.offset in groupEndChar()
34 private int groupGlyph(int groupIndex) { in groupGlyph() argument
36 Offset.format13Groups.offset + groupIndex * Offset.format13Groups_structLength.offset in groupGlyph()
66 private int groupIndex = 0; field in CMapFormat13.CharacterIterator
73 nextChar = groupStartChar(groupIndex); in CharacterIterator()
74 groupEndChar = groupEndChar(groupIndex); in CharacterIterator()
83 if (groupIndex > in hasNext()
[all...]
H A DCMapFormat8.java23 private int firstChar(int groupIndex) { in firstChar() argument
25 Offset.format8Groups.offset + groupIndex * Offset.format8Group_structLength.offset in firstChar()
29 private int endChar(int groupIndex) { in endChar() argument
31 Offset.format8Groups.offset + groupIndex * Offset.format8Group_structLength.offset in endChar()
57 private int groupIndex; field in CMapFormat8.CharacterIterator
65 groupIndex = 0; in CharacterIterator()
74 while (groupIndex < numberOfGroups) { in hasNext()
76 firstCharInGroup = firstChar(groupIndex); in hasNext()
77 endCharInGroup = endChar(groupIndex); in hasNext()
87 groupIndex in hasNext()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/
H A Dext_inst.cpp172 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableNameLookup()
173 const auto& group = table->groups[groupIndex]; in spvExtInstTableNameLookup()
194 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableValueLookup()
195 const auto& group = table->groups[groupIndex]; in spvExtInstTableValueLookup()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H A Dext_inst.cpp172 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableNameLookup()
173 const auto& group = table->groups[groupIndex]; in spvExtInstTableNameLookup()
194 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableValueLookup()
195 const auto& group = table->groups[groupIndex]; in spvExtInstTableValueLookup()
/third_party/spirv-tools/source/
H A Dext_inst.cpp174 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableNameLookup()
175 const auto& group = table->groups[groupIndex]; in spvExtInstTableNameLookup()
196 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableValueLookup()
197 const auto& group = table->groups[groupIndex]; in spvExtInstTableValueLookup()
/third_party/lzma/CPP/7zip/UI/Common/
H A DHashCalc.h41 void InitDigestGroup(unsigned groupIndex) in InitDigestGroup()
43 NumSums[groupIndex] = 0; in InitDigestGroup()
44 memset(Digests[groupIndex], 0, sizeof(Digests[groupIndex])); in InitDigestGroup()
47 const Byte *GetExtraData_for_Group(unsigned groupIndex) const in GetExtraData_for_Group()
49 return Digests[groupIndex] + k_HashCalc_DigestSize_Max; in GetExtraData_for_Group()
52 unsigned GetNumExtraBytes_for_Group(unsigned groupIndex) const in GetNumExtraBytes_for_Group()
54 const Byte *p = GetExtraData_for_Group(groupIndex); in GetNumExtraBytes_for_Group()
62 void AddDigest(unsigned groupIndex, const Byte *data);
H A DHashCalc.cpp179 void CHasherState::AddDigest(unsigned groupIndex, const Byte *data) in AddDigest() argument
181 NumSums[groupIndex]++; in AddDigest()
182 AddDigests(Digests[groupIndex], data, DigestSize); in AddDigest()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DPipeline.cpp186 MaybeError PipelineBase::ValidateGetBindGroupLayout(uint32_t groupIndex) { in ValidateGetBindGroupLayout() argument
191 groupIndex >= kMaxBindGroups, in ValidateGetBindGroupLayout()
193 groupIndex, kMaxBindGroups); in ValidateGetBindGroupLayout()
201 BindGroupIndex groupIndex(groupIndexIn); in GetBindGroupLayout()
202 if (!mLayout->GetBindGroupLayoutsMask()[groupIndex]) { in GetBindGroupLayout()
205 return Ref<BindGroupLayoutBase>(mLayout->GetBindGroupLayout(groupIndex)); in GetBindGroupLayout()
H A DPipeline.h64 ResultOrError<Ref<BindGroupLayoutBase>> GetBindGroupLayout(uint32_t groupIndex);
71 BindGroupLayoutBase* APIGetBindGroupLayout(uint32_t groupIndex);
H A DComputePassEncoder.cpp386 BindGroupIndex groupIndex(groupIndexIn); in APISetBindGroup()
389 DAWN_TRY(ValidateSetBindGroup(groupIndex, group, dynamicOffsetCount, in APISetBindGroup()
394 RecordSetBindGroup(allocator, groupIndex, group, dynamicOffsetCount, in APISetBindGroup()
396 mCommandBufferState.SetBindGroup(groupIndex, group, dynamicOffsetCount, in APISetBindGroup()
H A DRenderEncoderBase.cpp391 BindGroupIndex groupIndex(groupIndexIn); in APISetBindGroup()
394 DAWN_TRY(ValidateSetBindGroup(groupIndex, group, dynamicOffsetCount, in APISetBindGroup()
398 RecordSetBindGroup(allocator, groupIndex, group, dynamicOffsetCount, in APISetBindGroup()
400 mCommandBufferState.SetBindGroup(groupIndex, group, dynamicOffsetCount, in APISetBindGroup()
H A DComputePassEncoder.h47 void APISetBindGroup(uint32_t groupIndex,
H A DRenderEncoderBase.h57 void APISetBindGroup(uint32_t groupIndex,
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DComputeProgram.cpp254 for(uint32_t groupIndex = batchID; groupIndex < groupCount; groupIndex += batchCount) in run()
256 auto modulo = groupIndex; in run()
/third_party/lzma/CPP/7zip/Archive/7z/
H A D7zUpdate.cpp1947 const unsigned groupIndex = Get_FilterGroup_for_Folder(filters, f, extractFilter); in Update() local
1949 while (groupIndex >= groups.Size()) in Update()
1952 groups[groupIndex].folderRefs.Add(rep); in Update()
2074 const unsigned groupIndex = GetGroup(filters, fm); in Update() local
2075 while (groupIndex >= groups.Size()) in Update()
2077 groups[groupIndex].Indices.Add(i); in Update()
2228 for (unsigned groupIndex = 0; groupIndex < filters.Size(); groupIndex++) in Update()
2230 const CFilterMode2 &filterMode = filters[groupIndex]; in Update()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
H A DvktRayTracingPipelineFlagsTests.cpp409 deUint32 groupIndex = 0; in createPipeline() local
424 addShader(VK_SHADER_STAGE_RAYGEN_BIT_KHR, *m_rgenModule, groupIndex++); in createPipeline()
426 createLibraryPipeline(appendPipelineLibrary)->addShader(VK_SHADER_STAGE_MISS_BIT_KHR, *m_missModule, (m_params.useLibs ? 0 : groupIndex++)); in createPipeline()
429 const deUint32 hitGroupIndex = m_params.useLibs ? 0 : groupIndex; in createPipeline()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/
H A DvktRayTracingPipelineFlagsTests.cpp405 deUint32 groupIndex = 0; in createPipeline() local
420 addShader(VK_SHADER_STAGE_RAYGEN_BIT_KHR, *m_rgenModule, groupIndex++); in createPipeline()
422 createLibraryPipeline(appendPipelineLibrary)->addShader(VK_SHADER_STAGE_MISS_BIT_KHR, *m_missModule, (m_params.useLibs ? 0 : groupIndex++)); in createPipeline()
425 const deUint32 hitGroupIndex = m_params.useLibs ? 0 : groupIndex; in createPipeline()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/
H A DvktRayQueryCullRayFlagsTests.cpp257 deUint32 groupIndex) in registerShaderModule()
267 rayTracingPipeline.addShader(shaderStage, shaderModule, groupIndex); in registerShaderModule()
250 registerShaderModule(const DeviceInterface& vkd, const VkDevice device, Context& context, RayTracingPipeline& rayTracingPipeline, VkShaderStageFlagBits shaderStage, const std::string& externalNamePart, const std::string& internalNamePart, deUint32 groupIndex) registerShaderModule() argument
H A DvktRayQueryTraversalControlTests.cpp217 deUint32 groupIndex) in registerShaderModule()
227 rayTracingPipeline.addShader(shaderStage, shaderModule, groupIndex); in registerShaderModule()
210 registerShaderModule(const DeviceInterface& vkd, const VkDevice device, Context& context, RayTracingPipeline& rayTracingPipeline, VkShaderStageFlagBits shaderStage, const std::string& externalNamePart, const std::string& internalNamePart, deUint32 groupIndex) registerShaderModule() argument
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_query/
H A DvktRayQueryCullRayFlagsTests.cpp257 deUint32 groupIndex) in registerShaderModule()
267 rayTracingPipeline.addShader(shaderStage, shaderModule, groupIndex); in registerShaderModule()
250 registerShaderModule(const DeviceInterface& vkd, const VkDevice device, Context& context, RayTracingPipeline& rayTracingPipeline, VkShaderStageFlagBits shaderStage, const std::string& externalNamePart, const std::string& internalNamePart, deUint32 groupIndex) registerShaderModule() argument
H A DvktRayQueryTraversalControlTests.cpp217 deUint32 groupIndex) in registerShaderModule()
227 rayTracingPipeline.addShader(shaderStage, shaderModule, groupIndex); in registerShaderModule()
210 registerShaderModule(const DeviceInterface& vkd, const VkDevice device, Context& context, RayTracingPipeline& rayTracingPipeline, VkShaderStageFlagBits shaderStage, const std::string& externalNamePart, const std::string& internalNamePart, deUint32 groupIndex) registerShaderModule() argument
/third_party/icu/icu4c/source/i18n/
H A Drematch.cpp5141 for (int64_t groupIndex = groupStartIdx; groupIndex < groupEndIdx; ++groupIndex,++inputIndex) {
5147 if (inputBuf[groupIndex] != inputBuf[inputIndex]) {
/third_party/node/deps/icu-small/source/i18n/
H A Drematch.cpp5141 for (int64_t groupIndex = groupStartIdx; groupIndex < groupEndIdx; ++groupIndex,++inputIndex) {
5147 if (inputBuf[groupIndex] != inputBuf[inputIndex]) {
/third_party/skia/third_party/externals/icu/source/i18n/
H A Drematch.cpp5127 for (int64_t groupIndex = groupStartIdx; groupIndex < groupEndIdx; ++groupIndex,++inputIndex) {
5133 if (inputBuf[groupIndex] != inputBuf[inputIndex]) {

Completed in 51 milliseconds

123