Home
last modified time | relevance | path

Searched refs:CFX_GifLocalScreenDescriptor (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/fxcodec/gif/
Dcfx_gifcontext_unittest.cpp171 uint8_t lsd[sizeof(CFX_GifLocalScreenDescriptor)]; in TEST()
172 memset(&lsd, 0, sizeof(CFX_GifLocalScreenDescriptor)); in TEST()
173 context.SetInputBuffer(lsd, sizeof(CFX_GifLocalScreenDescriptor)); in TEST()
178 EXPECT_EQ(sizeof(CFX_GifLocalScreenDescriptor), context.skip_size_); in TEST()
186 uint8_t lsd[sizeof(CFX_GifLocalScreenDescriptor)] = {0x0A, 0x00, 0x00, 0x0F, in TEST()
188 context.SetInputBuffer(lsd, sizeof(CFX_GifLocalScreenDescriptor)); in TEST()
193 EXPECT_EQ(sizeof(CFX_GifLocalScreenDescriptor), context.skip_size_); in TEST()
201 uint8_t lsd[sizeof(CFX_GifLocalScreenDescriptor)] = {0x0A, 0x00, 0x00, 0x0F, in TEST()
203 context.SetInputBuffer(lsd, sizeof(CFX_GifLocalScreenDescriptor)); in TEST()
213 uint8_t lsd[sizeof(CFX_GifLocalScreenDescriptor)]; in TEST()
[all …]
Dcfx_gif.cpp22 static_assert(sizeof(CFX_GifLocalScreenDescriptor) == 7,
Dcfx_gif.h62 } CFX_GifLocalScreenDescriptor; typedef
Dcfx_gifcontext.cpp384 CFX_GifLocalScreenDescriptor* lsd = nullptr; in ReadLogicalScreenDescriptor()