ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/OpenCL/errstr.h
Revision: 1.3
Committed: Sat Apr 21 18:22:55 2012 UTC (12 years ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_97, rel-0_98, rel-0_99
Changes since 1.2: +27 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 const_iv(SUCCESS)
2 root 1.2 #ifdef CL_DEVICE_NOT_FOUND
3 root 1.1 const_iv(DEVICE_NOT_FOUND)
4 root 1.2 #endif
5     #ifdef CL_DEVICE_NOT_AVAILABLE
6 root 1.1 const_iv(DEVICE_NOT_AVAILABLE)
7 root 1.2 #endif
8     #ifdef CL_COMPILER_NOT_AVAILABLE
9 root 1.1 const_iv(COMPILER_NOT_AVAILABLE)
10 root 1.2 #endif
11     #ifdef CL_MEM_OBJECT_ALLOCATION_FAILURE
12 root 1.1 const_iv(MEM_OBJECT_ALLOCATION_FAILURE)
13 root 1.2 #endif
14     #ifdef CL_OUT_OF_RESOURCES
15 root 1.1 const_iv(OUT_OF_RESOURCES)
16 root 1.2 #endif
17     #ifdef CL_OUT_OF_HOST_MEMORY
18 root 1.1 const_iv(OUT_OF_HOST_MEMORY)
19 root 1.2 #endif
20     #ifdef CL_PROFILING_INFO_NOT_AVAILABLE
21 root 1.1 const_iv(PROFILING_INFO_NOT_AVAILABLE)
22 root 1.2 #endif
23     #ifdef CL_MEM_COPY_OVERLAP
24 root 1.1 const_iv(MEM_COPY_OVERLAP)
25 root 1.2 #endif
26     #ifdef CL_IMAGE_FORMAT_MISMATCH
27 root 1.1 const_iv(IMAGE_FORMAT_MISMATCH)
28 root 1.2 #endif
29     #ifdef CL_IMAGE_FORMAT_NOT_SUPPORTED
30 root 1.1 const_iv(IMAGE_FORMAT_NOT_SUPPORTED)
31 root 1.2 #endif
32     #ifdef CL_BUILD_PROGRAM_FAILURE
33 root 1.1 const_iv(BUILD_PROGRAM_FAILURE)
34 root 1.2 #endif
35     #ifdef CL_MAP_FAILURE
36 root 1.1 const_iv(MAP_FAILURE)
37 root 1.2 #endif
38     #ifdef CL_MISALIGNED_SUB_BUFFER_OFFSET
39 root 1.1 const_iv(MISALIGNED_SUB_BUFFER_OFFSET)
40 root 1.2 #endif
41     #ifdef CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST
42 root 1.1 const_iv(EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST)
43 root 1.2 #endif
44 root 1.3 #ifdef CL_COMPILE_PROGRAM_FAILURE
45     const_iv(COMPILE_PROGRAM_FAILURE)
46     #endif
47     #ifdef CL_LINKER_NOT_AVAILABLE
48     const_iv(LINKER_NOT_AVAILABLE)
49     #endif
50     #ifdef CL_LINK_PROGRAM_FAILURE
51     const_iv(LINK_PROGRAM_FAILURE)
52     #endif
53     #ifdef CL_DEVICE_PARTITION_FAILED
54     const_iv(DEVICE_PARTITION_FAILED)
55     #endif
56     #ifdef CL_KERNEL_ARG_INFO_NOT_AVAILABLE
57     const_iv(KERNEL_ARG_INFO_NOT_AVAILABLE)
58     #endif
59 root 1.2 #ifdef CL_INVALID_VALUE
60 root 1.1 const_iv(INVALID_VALUE)
61 root 1.2 #endif
62     #ifdef CL_INVALID_DEVICE_TYPE
63 root 1.1 const_iv(INVALID_DEVICE_TYPE)
64 root 1.2 #endif
65     #ifdef CL_INVALID_PLATFORM
66 root 1.1 const_iv(INVALID_PLATFORM)
67 root 1.2 #endif
68     #ifdef CL_INVALID_DEVICE
69 root 1.1 const_iv(INVALID_DEVICE)
70 root 1.2 #endif
71     #ifdef CL_INVALID_CONTEXT
72 root 1.1 const_iv(INVALID_CONTEXT)
73 root 1.2 #endif
74     #ifdef CL_INVALID_QUEUE_PROPERTIES
75 root 1.1 const_iv(INVALID_QUEUE_PROPERTIES)
76 root 1.2 #endif
77     #ifdef CL_INVALID_COMMAND_QUEUE
78 root 1.1 const_iv(INVALID_COMMAND_QUEUE)
79 root 1.2 #endif
80     #ifdef CL_INVALID_HOST_PTR
81 root 1.1 const_iv(INVALID_HOST_PTR)
82 root 1.2 #endif
83     #ifdef CL_INVALID_MEM_OBJECT
84 root 1.1 const_iv(INVALID_MEM_OBJECT)
85 root 1.2 #endif
86     #ifdef CL_INVALID_IMAGE_FORMAT_DESCRIPTOR
87 root 1.1 const_iv(INVALID_IMAGE_FORMAT_DESCRIPTOR)
88 root 1.2 #endif
89     #ifdef CL_INVALID_IMAGE_SIZE
90 root 1.1 const_iv(INVALID_IMAGE_SIZE)
91 root 1.2 #endif
92     #ifdef CL_INVALID_SAMPLER
93 root 1.1 const_iv(INVALID_SAMPLER)
94 root 1.2 #endif
95     #ifdef CL_INVALID_BINARY
96 root 1.1 const_iv(INVALID_BINARY)
97 root 1.2 #endif
98     #ifdef CL_INVALID_BUILD_OPTIONS
99 root 1.1 const_iv(INVALID_BUILD_OPTIONS)
100 root 1.2 #endif
101     #ifdef CL_INVALID_PROGRAM
102 root 1.1 const_iv(INVALID_PROGRAM)
103 root 1.2 #endif
104     #ifdef CL_INVALID_PROGRAM_EXECUTABLE
105 root 1.1 const_iv(INVALID_PROGRAM_EXECUTABLE)
106 root 1.2 #endif
107     #ifdef CL_INVALID_KERNEL_NAME
108 root 1.1 const_iv(INVALID_KERNEL_NAME)
109 root 1.2 #endif
110     #ifdef CL_INVALID_KERNEL_DEFINITION
111 root 1.1 const_iv(INVALID_KERNEL_DEFINITION)
112 root 1.2 #endif
113     #ifdef CL_INVALID_KERNEL
114 root 1.1 const_iv(INVALID_KERNEL)
115 root 1.2 #endif
116     #ifdef CL_INVALID_ARG_INDEX
117 root 1.1 const_iv(INVALID_ARG_INDEX)
118 root 1.2 #endif
119     #ifdef CL_INVALID_ARG_VALUE
120 root 1.1 const_iv(INVALID_ARG_VALUE)
121 root 1.2 #endif
122     #ifdef CL_INVALID_ARG_SIZE
123 root 1.1 const_iv(INVALID_ARG_SIZE)
124 root 1.2 #endif
125     #ifdef CL_INVALID_KERNEL_ARGS
126 root 1.1 const_iv(INVALID_KERNEL_ARGS)
127 root 1.2 #endif
128     #ifdef CL_INVALID_WORK_DIMENSION
129 root 1.1 const_iv(INVALID_WORK_DIMENSION)
130 root 1.2 #endif
131     #ifdef CL_INVALID_WORK_GROUP_SIZE
132 root 1.1 const_iv(INVALID_WORK_GROUP_SIZE)
133 root 1.2 #endif
134     #ifdef CL_INVALID_WORK_ITEM_SIZE
135 root 1.1 const_iv(INVALID_WORK_ITEM_SIZE)
136 root 1.2 #endif
137     #ifdef CL_INVALID_GLOBAL_OFFSET
138 root 1.1 const_iv(INVALID_GLOBAL_OFFSET)
139 root 1.2 #endif
140     #ifdef CL_INVALID_EVENT_WAIT_LIST
141 root 1.1 const_iv(INVALID_EVENT_WAIT_LIST)
142 root 1.2 #endif
143     #ifdef CL_INVALID_EVENT
144 root 1.1 const_iv(INVALID_EVENT)
145 root 1.2 #endif
146     #ifdef CL_INVALID_OPERATION
147 root 1.1 const_iv(INVALID_OPERATION)
148 root 1.2 #endif
149     #ifdef CL_INVALID_GL_OBJECT
150 root 1.1 const_iv(INVALID_GL_OBJECT)
151 root 1.2 #endif
152     #ifdef CL_INVALID_BUFFER_SIZE
153 root 1.1 const_iv(INVALID_BUFFER_SIZE)
154 root 1.2 #endif
155     #ifdef CL_INVALID_MIP_LEVEL
156 root 1.1 const_iv(INVALID_MIP_LEVEL)
157 root 1.2 #endif
158     #ifdef CL_INVALID_GLOBAL_WORK_SIZE
159 root 1.1 const_iv(INVALID_GLOBAL_WORK_SIZE)
160 root 1.2 #endif
161     #ifdef CL_INVALID_PROPERTY
162 root 1.1 const_iv(INVALID_PROPERTY)
163 root 1.2 #endif
164 root 1.3 #ifdef CL_INVALID_IMAGE_DESCRIPTOR
165     const_iv(INVALID_IMAGE_DESCRIPTOR)
166     #endif
167     #ifdef CL_INVALID_COMPILER_OPTIONS
168     const_iv(INVALID_COMPILER_OPTIONS)
169     #endif
170     #ifdef CL_INVALID_LINKER_OPTIONS
171     const_iv(INVALID_LINKER_OPTIONS)
172     #endif
173     #ifdef CL_INVALID_DEVICE_PARTITION_COUNT
174     const_iv(INVALID_DEVICE_PARTITION_COUNT)
175     #endif
176 root 1.2 #ifdef CL_PLATFORM_NOT_FOUND_KHR
177     const_iv(PLATFORM_NOT_FOUND_KHR)
178     #endif
179     #ifdef CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR
180     const_iv(INVALID_GL_SHAREGROUP_REFERENCE_KHR)
181     #endif
182     #ifdef CL_INVALID_D3D10_DEVICE_KHR
183     const_iv(INVALID_D3D10_DEVICE_KHR)
184     #endif
185     #ifdef CL_INVALID_D3D10_RESOURCE_KHR
186     const_iv(INVALID_D3D10_RESOURCE_KHR)
187     #endif
188     #ifdef CL_D3D10_RESOURCE_ALREADY_ACQUIRED_KHR
189     const_iv(D3D10_RESOURCE_ALREADY_ACQUIRED_KHR)
190     #endif
191     #ifdef CL_D3D10_RESOURCE_NOT_ACQUIRED_KHR
192     const_iv(D3D10_RESOURCE_NOT_ACQUIRED_KHR)
193     #endif