HomeSort by relevance Sort by last modified time
    Searched refs:DE_NULL (Results 1 - 25 of 616) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/execserver/
xsTestProcess.hpp 44 virtual void start (const char* name, const char* params, const char* workingDir, const char* caseList) = DE_NULL;
45 virtual void terminate (void) = DE_NULL;
46 virtual void cleanup (void) = DE_NULL;
48 virtual bool isRunning (void) = DE_NULL;
49 virtual int getExitCode (void) const = DE_NULL;
51 virtual int readTestLog (deUint8* dst, int numBytes) = DE_NULL;
52 virtual int readInfoLog (deUint8* dst, int numBytes) = DE_NULL;
  /external/deqp/framework/opengl/simplereference/
sglrContext.hpp 46 virtual int getWidth (void) const = DE_NULL;
47 virtual int getHeight (void) const = DE_NULL;
49 virtual void activeTexture (deUint32 texture) = DE_NULL;
50 virtual void viewport (int x, int y, int width, int height) = DE_NULL;
52 virtual void bindTexture (deUint32 target, deUint32 texture) = DE_NULL;
53 virtual void genTextures (int numTextures, deUint32* textures) = DE_NULL;
54 virtual void deleteTextures (int numTextures, const deUint32* textures) = DE_NULL;
56 virtual void bindFramebuffer (deUint32 target, deUint32 framebuffer) = DE_NULL;
57 virtual void genFramebuffers (int numFramebuffers, deUint32* framebuffers) = DE_NULL;
58 virtual void deleteFramebuffers (int numFramebuffers, const deUint32* framebuffers) = DE_NULL;
    [all...]
  /external/deqp/executor/
xeCommLink.hpp 56 virtual void reset (void) = DE_NULL;
57 virtual CommLinkState getState (void) const = DE_NULL;
58 virtual CommLinkState getState (std::string& error) const = DE_NULL;
60 virtual void setCallbacks (StateChangedFunc stateChangedCallback, LogDataFunc testLogDataCallback, LogDataFunc infoLogDataCallback, void* userPtr) = DE_NULL;
62 virtual void startTestProcess (const char* name, const char* params, const char* workingDir, const char* caseList) = DE_NULL;
63 virtual void stopTestProcess (void) = DE_NULL;
xeTestLogParser.hpp 44 virtual void setSessionInfo (const SessionInfo& sessionInfo) = DE_NULL;
46 virtual TestCaseResultPtr startTestCaseResult (const char* casePath) = DE_NULL;
47 virtual void testCaseResultUpdated (const TestCaseResultPtr& resultData) = DE_NULL;
48 virtual void testCaseResultComplete (const TestCaseResultPtr& resultData) = DE_NULL;
xeCommLink.cpp 41 return DE_NULL;
  /external/deqp/framework/randomshaders/
rsgGeneratorState.cpp 34 , m_shaderParams (DE_NULL)
35 , m_shader (DE_NULL)
36 , m_varManager (DE_NULL)
37 , m_statementStack (DE_NULL)
rsgPrettyPrinter.cpp 32 DE_NULL, // IDENTIFIER,
81 DE_NULL, // FLOAT_LITERAL,
82 DE_NULL, // INT_LITERAL,
83 DE_NULL, // BOOL_LITERAL,
112 DE_NULL, // INDENT_INC,
113 DE_NULL, // INDENT_DEC,
  /external/deqp/external/vulkancts/framework/vulkan/
vkRefUtil.inl 4 Move<VkInstance> createInstance (const PlatformInterface& vk, const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
5 Move<VkDevice> createDevice (const InstanceInterface& vk, VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
6 Move<VkDeviceMemory> allocateMemory (const DeviceInterface& vk, VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
7 Move<VkFence> createFence (const DeviceInterface& vk, VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
8 Move<VkSemaphore> createSemaphore (const DeviceInterface& vk, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
9 Move<VkEvent> createEvent (const DeviceInterface& vk, VkDevice device, const VkEventCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
10 Move<VkQueryPool> createQueryPool (const DeviceInterface& vk, VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
11 Move<VkBuffer> createBuffer (const DeviceInterface& vk, VkDevice device, const VkBufferCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
12 Move<VkBufferView> createBufferView (const DeviceInterface& vk, VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
13 Move<VkImage> createImage (const DeviceInterface& vk, VkDevice device, const VkImageCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
    [all...]
vkDeviceUtil.cpp 51 DE_NULL,
61 DE_NULL,
65 layerNamePtrs.empty() ? DE_NULL : &layerNamePtrs[0],
67 extensionNamePtrs.empty() ? DE_NULL : &extensionNamePtrs[0],
81 return createDefaultInstance(vkPlatform, vector<string>(), vector<string>(), DE_NULL);
vkRefUtil.hpp 38 const VkAllocationCallbacks* pAllocator = DE_NULL);
43 const VkAllocationCallbacks* pAllocator = DE_NULL);
  /external/deqp/modules/gles2/
tes2Context.cpp 42 , m_renderCtx (DE_NULL)
43 , m_contextInfo (DE_NULL)
55 glw::setCurrentThreadFunctions(DE_NULL);
67 glw::setCurrentThreadFunctions(DE_NULL);
  /external/deqp/modules/gles3/
tes3Context.cpp 39 , m_renderCtx (DE_NULL)
40 , m_contextInfo (DE_NULL)
52 glw::setCurrentThreadFunctions(DE_NULL);
64 glw::setCurrentThreadFunctions(DE_NULL);
  /external/deqp/framework/egl/
egluStrUtil.inl 13 default: return DE_NULL;
24 default: return DE_NULL;
35 default: return DE_NULL;
58 default: return DE_NULL;
70 default: return DE_NULL;
107 default: return DE_NULL;
131 default: return DE_NULL;
147 default: return DE_NULL;
158 default: return DE_NULL;
168 default: return DE_NULL;
    [all...]
egluNativeWindow.cpp 41 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support eglCreateWindowSurface()", DE_NULL, __FILE__, __LINE__);
47 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support eglCreatePlatformWindowSurface()", DE_NULL, __FILE__, __LINE__);
53 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support querying the surface size", DE_NULL, __FILE__, __LINE__);
60 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support resizing the surface", DE_NULL, __FILE__, __LINE__);
66 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support querying the size of the window on the screen", DE_NULL, __FILE__, __LINE__);
72 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support readScreenPixels", DE_NULL, __FILE__, __LINE__);
79 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support changing visibility", DE_NULL, __FILE__, __LINE__);
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeTestsUtil.cpp 63 DE_NULL, // const void* pNext;
69 DE_NULL, // const deUint32* pQueueFamilyIndices;
94 DE_NULL, // const void* pNext;
106 DE_NULL, // const void* pNext;
120 DE_NULL, // const void* pNext;
123 DE_NULL, // const VkDescriptorSetLayout* pSetLayouts;
125 DE_NULL, // const VkPushConstantRange* pPushConstantRanges;
137 DE_NULL, // const void* pNext;
142 DE_NULL, // const VkPushConstantRange* pPushConstantRanges;
155 DE_NULL, // const void* pNext
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiSmokeTests.cpp 71 DE_NULL, // pNext
351 DE_NULL, // pNext
368 DE_NULL, // pNext
384 DE_NULL, // pNext
427 DE_NULL, // pInputAttachments
430 DE_NULL, // pResolveAttachments
431 DE_NULL, // depthStencilAttachment
433 DE_NULL, // pPreserveAttachments
438 DE_NULL, // pNext
445 DE_NULL, // pDependencie
    [all...]
vktApiBufferViewAccessTests.cpp 159 DE_NULL, // const void* pNext;
187 DE_NULL, // const void* pNext;
193 DE_NULL, // const deUint32* pQueueFamilyIndices;
207 DE_NULL, // const void* pNext;
245 DE_NULL, // const VkAttachmentReference* pInputAttachments;
248 DE_NULL, // const VkAttachmentReference* pResolveAttachments;
249 DE_NULL, // VkAttachmentReference depthStencilAttachment;
251 DE_NULL // const VkAttachmentReference* pPreserveAttachments;
257 DE_NULL, // const void* pNext;
264 DE_NULL // const VkSubpassDependency* pDependencies
    [all...]
vktApiCommandBuffersTests.cpp 91 DE_NULL, // const void* pNext;
96 m_commandPool = createCommandPool(m_vkd, m_device, &cmdPoolCreateInfo, DE_NULL);
101 DE_NULL, // const void* pNext;
193 DE_NULL, // const VkAttachmentReference* pInputAttachments;
196 DE_NULL, // const VkAttachmentReference* pResolveAttachments;
197 DE_NULL, // const VkAttachmentReference* depthStencilAttachment;
199 DE_NULL, // const VkAttachmentReference* pPreserveAttachments;
206 DE_NULL, // const void* pNext;
213 DE_NULL, // const VkSubpassDependency* pDependencies;
216 m_renderPass = createRenderPass(m_vkd, m_device, &renderPassCreateInfo, DE_NULL);
    [all...]
vktApiDeviceInitializationTests.cpp 62 const char* appNames[] = { "appName", DE_NULL, "", "app, name", "app(\"name\"", "app~!@#$%^&*()_+name", "app\nName", "app\r\nName" };
63 const char* engineNames[] = { "engineName", DE_NULL, "", "engine. name", "engine\"(name)", "eng~!@#$%^&*()_+name", "engine\nName", "engine\r\nName" };
76 DE_NULL, // const void* pNext;
93 DE_NULL, // const void* pNext;
110 DE_NULL, // const void* pNext;
127 DE_NULL, // const void* pNext;
143 DE_NULL, // const void* pNext;
160 DE_NULL, // const void* pNext;
164 DE_NULL, // const char*const* ppEnabledLayernames;
166 DE_NULL, // const char*const* ppEnabledExtensionNames
    [all...]
  /external/deqp/modules/gles31/
tes31Context.cpp 40 , m_renderCtx (DE_NULL)
41 , m_contextInfo (DE_NULL)
82 m_contextInfo = DE_NULL;
83 m_renderCtx = DE_NULL;
  /external/deqp/framework/delibs/depool/
dePoolHashArray.c 33 deMemPool* pool = deMemPool_createRoot(DE_NULL, 0);
51 deTestHashArray_copyToArray(hashArray, keyArray, DE_NULL);
52 deTestHashArray_copyToArray(hashArray, DE_NULL, valueArray);
65 deTestHashArray_copyToArray(hashArray, keyArray, DE_NULL);
66 deTestHashArray_copyToArray(hashArray, DE_NULL, valueArray);
  /external/deqp/framework/delibs/deutil/
deCommandLine.c 41 deMemPool* tmpPool = deMemPool_createRoot(DE_NULL, 0);
42 CharPtrArray* args = tmpPool ? CharPtrArray_create(tmpPool) : DE_NULL;
43 char* buf = DE_NULL;
53 return DE_NULL;
68 return DE_NULL;
105 return DE_NULL;
126 return DE_NULL;
  /external/deqp/framework/opengl/
gluStrUtil.inl 17 default: return DE_NULL;
46 default: return DE_NULL;
111 default: return DE_NULL;
146 default: return DE_NULL;
162 default: return DE_NULL;
196 default: return DE_NULL;
218 default: return DE_NULL;
230 default: return DE_NULL;
245 default: return DE_NULL;
257 default: return DE_NULL;
    [all...]
  /external/deqp/framework/delibs/decpp/
deDynamicLibrary.cpp 33 : m_library(DE_NULL)
deThread.hpp 56 virtual void run (void) = DE_NULL;

Completed in 666 milliseconds

1 2 3 4 5 6 7 8 91011>>