Searched refs:descSize (Results 1 - 11 of 11) sorted by relevance
/third_party/elfio/elfio/ |
H A D | elfio_note.hpp | 63 Elf_Word& descSize ) const in get_note() 75 descSize = convertor( *(const Elf_Word*)( pData + sizeof( namesz ) ) ); in get_note() 80 (Elf_Xword)namesz + descSize > max_name_size ) { in get_note() 84 if ( 0 == descSize ) { in get_note() 100 Elf_Word descSize ) in add_note() 108 Elf_Word descSizeConv = convertor( descSize ); in add_note() 119 if ( desc != nullptr && descSize != 0 ) { in add_note() 120 buffer.append( desc, descSize ); in add_note() 121 if ( descSize % align != 0 ) { in add_note() 122 buffer.append( pad, (size_t)align - descSize in add_note() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiToolingInfoTests.cpp | 197 size_t descSize = strnlen(deviceToolPropertiesEXTArray[i].description, VK_MAX_DESCRIPTION_SIZE); in validateToolsProperties() local 204 result = result && ((descSize > 0) && (descSize < VK_MAX_DESCRIPTION_SIZE)); in validateToolsProperties()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
H A D | vktApiToolingInfoTests.cpp | 197 size_t descSize = strnlen(deviceToolPropertiesEXTArray[i].description, VK_MAX_DESCRIPTION_SIZE); in validateToolsProperties() local 204 result = result && ((descSize > 0) && (descSize < VK_MAX_DESCRIPTION_SIZE)); in validateToolsProperties()
|
/third_party/elfio/examples/c_wrapper/ |
H A D | c_example.c | 157 Elf_Word descSize = 128; in main() local 159 &descSize ); in main() 160 // printf( "[%4d] %s %08x\n", i, name, descSize ); in main()
|
H A D | elfio_c_wrapper.cpp | 361 Elf_Word* descSize ) in elfio_note_get_note() 364 bool ret = pnote->get_note( index, *type, name_str, *desc, *descSize ); in elfio_note_get_note() 374 Elf_Word descSize ) in elfio_note_add_note() 376 pnote->add_note( type, name, desc, descSize ); in elfio_note_add_note()
|
H A D | elfio_c_wrapper.h | 263 Elf_Word* descSize ); 268 Elf_Word descSize );
|
/third_party/elfio/c_wrapper/ |
H A D | elfio_c_wrapper.cpp | 360 Elf_Word* descSize ) in elfio_note_get_note() 363 bool ret = pnote->get_note( index, *type, name_str, *desc, *descSize ); in elfio_note_get_note() 373 Elf_Word descSize ) in elfio_note_add_note() 375 pnote->add_note( type, name, desc, descSize ); in elfio_note_add_note()
|
H A D | elfio_c_wrapper.h | 265 Elf_Word* descSize ); 270 Elf_Word descSize );
|
/third_party/skia/src/core/ |
H A D | SkScalerContext.cpp | 1166 size_t descSize = sizeof(rec); in calculate_size_and_flatten() local 1173 descSize += effectBuffer->bytesWritten(); in calculate_size_and_flatten() 1176 descSize += SkDescriptor::ComputeOverhead(entryCount); in calculate_size_and_flatten() 1177 return descSize; in calculate_size_and_flatten()
|
/third_party/elfio/tests/ |
H A D | ELFIOTest.cpp | 192 Elf_Word descSize; in checkNote() local 194 ASSERT_EQ( notes.get_note( index, type, name, desc, descSize ), true ); in checkNote() 197 EXPECT_EQ( descSize, descSize_ ); in checkNote()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | SecondaryCommandBuffer.h | 926 size_t descSize = descriptorSetCount * sizeof(VkDescriptorSet); in bindDescriptorSets() local 930 CommandID::BindDescriptorSets, descSize + offsetSize, &writePtr); in bindDescriptorSets() 938 writePtr = storePointerParameter(writePtr, descriptorSets, descSize); in bindDescriptorSets()
|
Completed in 12 milliseconds