Home
last modified time | relevance | path

Searched refs:error (Results 1 – 25 of 8253) sorted by relevance

12345678910>>...331

/external/libcxx/test/std/depr/depr.c.headers/
Dinttypes_h.pass.cpp16 #error INT8_MIN not defined
20 #error INT16_MIN not defined
24 #error INT32_MIN not defined
28 #error INT64_MIN not defined
32 #error INT8_MAX not defined
36 #error INT16_MAX not defined
40 #error INT32_MAX not defined
44 #error INT64_MAX not defined
48 #error UINT8_MAX not defined
52 #error UINT16_MAX not defined
[all …]
Dfloat_h.pass.cpp17 #error FLT_ROUNDS not defined
21 #error FLT_EVAL_METHOD not defined
25 #error FLT_RADIX not defined
30 #error FLT_HAS_SUBNORM not defined
34 #error DBL_HAS_SUBNORM not defined
38 #error LDBL_HAS_SUBNORM not defined
43 #error FLT_MANT_DIG not defined
47 #error DBL_MANT_DIG not defined
51 #error LDBL_MANT_DIG not defined
55 #error DECIMAL_DIG not defined
[all …]
/external/libcxx/test/std/input.output/file.streams/c.files/
Dcinttypes.pass.cpp16 #error INT8_MIN not defined
20 #error INT16_MIN not defined
24 #error INT32_MIN not defined
28 #error INT64_MIN not defined
32 #error INT8_MAX not defined
36 #error INT16_MAX not defined
40 #error INT32_MAX not defined
44 #error INT64_MAX not defined
48 #error UINT8_MAX not defined
52 #error UINT16_MAX not defined
[all …]
/external/OpenCL-CTS/test_conformance/compiler/
Dtest_compile.cpp162 int error; in test_large_single_compile() local
190 error = create_single_kernel_helper_create_program(context, &program, numLines, lines); in test_large_single_compile()
191 if( program == NULL || error != CL_SUCCESS ) in test_large_single_compile()
193 …ng test program with %d lines! (%s in %s:%d)", numLines, IGetErrorString( error ), __FILE__, __LIN… in test_large_single_compile()
197 error = clReleaseProgram( program ); in test_large_single_compile()
198 test_error( error, "Unable to release a program object" ); in test_large_single_compile()
204 error = clBuildProgram( program, 1, &deviceID, NULL, NULL, NULL ); in test_large_single_compile()
205 test_error( error, "Unable to build a long program" ); in test_large_single_compile()
208 error = clReleaseProgram( program ); in test_large_single_compile()
209 test_error( error, "Unable to release a program object" ); in test_large_single_compile()
[all …]
Dtest_build_options.cpp71 cl_int error; in get_result_from_program() local
72 clKernelWrapper kernel = clCreateKernel( program, "sample_test", &error ); in get_result_from_program()
73 test_error( error, "Unable to create kernel from program" ); in get_result_from_program()
76 …tream = clCreateBuffer( context, (cl_mem_flags)(CL_MEM_READ_WRITE), sizeof(cl_int), NULL, &error ); in get_result_from_program()
77 test_error( error, "Unable to create test buffer" ); in get_result_from_program()
79 error = clSetKernelArg( kernel, 0, sizeof( outStream ), &outStream ); in get_result_from_program()
80 test_error( error, "Unable to set kernel argument" ); in get_result_from_program()
84 error = clEnqueueNDRangeKernel( queue, kernel, 1, NULL, threads, NULL, 0, NULL, NULL ); in get_result_from_program()
85 test_error( error, "Unable to execute test kernel" ); in get_result_from_program()
87error = clEnqueueReadBuffer( queue, outStream, true, 0, sizeof( cl_int ), outValue, 0, NULL, NULL … in get_result_from_program()
[all …]
Dtest_build_helpers.cpp67 int error; in test_load_program_source() local
77 context, 1, sample_kernel_code_single_line, &line_length, &error); in test_load_program_source()
78 test_error( error, "Unable to create reference program" ); in test_load_program_source()
81 error = clGetProgramInfo( program, CL_PROGRAM_SOURCE, 0, NULL, &length ); in test_load_program_source()
82 test_error( error, "Unable to get length of first program source" ); in test_load_program_source()
94 error = clGetProgramInfo( program, CL_PROGRAM_SOURCE, length, buffer, NULL ); in test_load_program_source()
95 test_error( error, "Unable to get buffer of first program source" ); in test_load_program_source()
111 int error; in test_load_multistring_source() local
128 line_lengths, &error); in test_load_multistring_source()
136 error = clBuildProgram( program, 1, &deviceID, NULL, NULL, NULL ); in test_load_multistring_source()
[all …]
/external/libcxx/test/std/diagnostics/errno/
Dcerrno.pass.cpp16 #error E2BIG not defined
20 #error EACCES not defined
24 #error EACCES not defined
28 #error EADDRINUSE not defined
32 #error EADDRNOTAVAIL not defined
36 #error EAFNOSUPPORT not defined
40 #error EAGAIN not defined
44 #error EALREADY not defined
48 #error EBADF not defined
52 #error EBADMSG not defined
[all …]
/external/OpenCL-CTS/test_conformance/clcpp/api/
Dtest_dtors.hpp79 int error = CL_SUCCESS; in AUTO_TEST_CASE() local
92 error = create_opencl_kernel( in AUTO_TEST_CASE()
96 RETURN_ON_ERROR(error) in AUTO_TEST_CASE()
97 return error; in AUTO_TEST_CASE()
100 error = create_opencl_kernel( in AUTO_TEST_CASE()
104 RETURN_ON_ERROR(error) in AUTO_TEST_CASE()
107 error = create_opencl_kernel( in AUTO_TEST_CASE()
111 RETURN_ON_ERROR(error) in AUTO_TEST_CASE()
117 …eBuffer(context, (cl_mem_flags)(CL_MEM_READ_WRITE), sizeof(cl_uint) * output.size(), NULL, &error); in AUTO_TEST_CASE()
118 RETURN_ON_CL_ERROR(error, "clCreateBuffer") in AUTO_TEST_CASE()
[all …]
Dtest_spec_consts.hpp87 int error = CL_SUCCESS; in AUTO_TEST_CASE() local
110error = create_opencl_kernel(context, &program, &kernel, kernel_test_spec_consts_defaults, "test_s… in AUTO_TEST_CASE()
111 RETURN_ON_ERROR(error) in AUTO_TEST_CASE()
112 return error; in AUTO_TEST_CASE()
115error = create_opencl_kernel(context, &program, &kernel, kernel_test_spec_consts_defaults, "test_s… in AUTO_TEST_CASE()
116 RETURN_ON_ERROR(error) in AUTO_TEST_CASE()
121error = create_opencl_kernel(context, &program, &kernel, kernel_test_spec_consts_defaults, "test_s… in AUTO_TEST_CASE()
122 RETURN_ON_ERROR(error) in AUTO_TEST_CASE()
127 …teBuffer(context, (cl_mem_flags)(CL_MEM_READ_WRITE), sizeof(cl_int) * output.size(), NULL, &error); in AUTO_TEST_CASE()
128 RETURN_ON_CL_ERROR(error, "clCreateBuffer") in AUTO_TEST_CASE()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DSymbolRecordMapping.cpp15 #define error(X) \ macro
22 error(IO.mapInteger(Gap.GapStartOffset)); in operator ()()
23 error(IO.mapInteger(Gap.Range)); in operator ()()
31 error(IO.mapInteger(Range.OffsetStart)); in mapLocalVariableAddrRange()
32 error(IO.mapInteger(Range.ISectStart)); in mapLocalVariableAddrRange()
33 error(IO.mapInteger(Range.Range)); in mapLocalVariableAddrRange()
38 error(IO.beginRecord(MaxRecordLength - sizeof(RecordPrefix))); in visitSymbolBegin()
43 error(IO.padToAlignment(alignOf(Container))); in visitSymbolEnd()
44 error(IO.endRecord()); in visitSymbolEnd()
50 error(IO.mapInteger(Block.Parent)); in visitKnownRecord()
[all …]
/external/clang/test/Headers/
Dfloat.c19 #error "Mandatory macro FLT_RADIX is missing."
21 #error "Mandatory macro FLT_RADIX is invalid."
26 #error "Mandatory macro FLT_MANT_DIG is missing."
28 #error "Mandatory macro FLT_MANT_DIG is invalid."
31 #error "Mandatory macro DBL_MANT_DIG is missing."
33 #error "Mandatory macro DBL_MANT_DIG is invalid."
36 #error "Mandatory macro LDBL_MANT_DIG is missing."
38 #error "Mandatory macro LDBL_MANT_DIG is invalid."
41 #error "Mandatory macros {FLT,DBL,LDBL}_MANT_DIG are invalid."
47 #error "Mandatory macro FLT_DECIMAL_DIG is missing."
[all …]
/external/llvm/test/MC/Mips/micromips32r6/
Dinvalid.s4 …addiur1sp $7, 260 # CHECK: :[[@LINE]]:17: error: expected both 8-bit unsigned immediate and…
5 …addiur1sp $7, 241 # CHECK: :[[@LINE]]:17: error: expected both 8-bit unsigned immediate and…
6 addiur1sp $8, 240 # CHECK: :[[@LINE]]:13: error: invalid operand for instruction
7 addiur2 $9, $7, -1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
8 …addiur2 $6, $7, 10 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: immediate operand value out of ran…
9 addius5 $2, -9 # CHECK: :[[@LINE]]:15: error: expected 4-bit signed immediate
10 addius5 $2, 8 # CHECK: :[[@LINE]]:15: error: expected 4-bit signed immediate
11 …addiusp 1032 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: immediate operand value out of ran…
12 align $4, $2, $3, -1 # CHECK: :[[@LINE]]:21: error: expected 2-bit unsigned immediate
13 align $4, $2, $3, 4 # CHECK: :[[@LINE]]:21: error: expected 2-bit unsigned immediate
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/micromips32r6/
Dinvalid.s4 …addiur1sp $7, 260 # CHECK: :[[@LINE]]:17: error: expected both 8-bit unsigned immediate and…
5 …addiur1sp $7, 241 # CHECK: :[[@LINE]]:17: error: expected both 8-bit unsigned immediate and…
6 addiur1sp $8, 240 # CHECK: :[[@LINE]]:13: error: invalid operand for instruction
7 addiur2 $9, $7, -1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
8 …addiur2 $6, $7, 10 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: immediate operand value out of ran…
9 addius5 $2, -9 # CHECK: :[[@LINE]]:15: error: expected 4-bit signed immediate
10 addius5 $2, 8 # CHECK: :[[@LINE]]:15: error: expected 4-bit signed immediate
11 …addiusp 1032 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: immediate operand value out of ran…
12 align $4, $2, $3, -1 # CHECK: :[[@LINE]]:21: error: expected 2-bit unsigned immediate
13 align $4, $2, $3, 4 # CHECK: :[[@LINE]]:21: error: expected 2-bit unsigned immediate
[all …]
/external/llvm/test/MC/Mips/micromips64r6/
Dinvalid.s4 …addiur1sp $7, 260 # CHECK: :[[@LINE]]:17: error: expected both 8-bit unsigned immediate and…
5 …addiur1sp $7, 241 # CHECK: :[[@LINE]]:17: error: expected both 8-bit unsigned immediate and…
6 addiur1sp $8, 240 # CHECK: :[[@LINE]]:13: error: invalid operand for instruction
7 addiur2 $9, $7, -1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
8 …addiur2 $6, $7, 10 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: immediate operand value out of ran…
9 addius5 $2, -9 # CHECK: :[[@LINE]]:15: error: expected 4-bit signed immediate
10 addius5 $2, 8 # CHECK: :[[@LINE]]:15: error: expected 4-bit signed immediate
11 …addiusp 1032 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: immediate operand value out of ran…
12 align $4, $2, $3, -1 # CHECK: :[[@LINE]]:21: error: expected 2-bit unsigned immediate
13 align $4, $2, $3, 4 # CHECK: :[[@LINE]]:21: error: expected 2-bit unsigned immediate
[all …]
/external/freetype/src/base/
Dftmm.c42 FT_Error error; in ft_face_get_mm_service() local
50 error = FT_ERR( Invalid_Argument ); in ft_face_get_mm_service()
59 error = FT_Err_Ok; in ft_face_get_mm_service()
62 return error; in ft_face_get_mm_service()
70 FT_Error error; in ft_face_get_mvar_service() local
78 error = FT_ERR( Invalid_Argument ); in ft_face_get_mvar_service()
87 error = FT_Err_Ok; in ft_face_get_mvar_service()
90 return error; in ft_face_get_mvar_service()
100 FT_Error error; in FT_Get_Multi_Master() local
109 error = ft_face_get_mm_service( face, &service ); in FT_Get_Multi_Master()
[all …]
/external/OpenCL-CTS/test_conformance/SVM/
Dtest_shared_address_space_coarse_grain.cpp21 cl_int error = CL_SUCCESS; in create_linked_lists_on_host() local
28 …s, CL_TRUE, CL_MAP_READ | CL_MAP_WRITE, 0, sizeof(Node)*ListLength*numLists, 0, NULL,NULL, &error); in create_linked_lists_on_host()
29 test_error2(error, pNodes, "clEnqMapBuffer failed"); in create_linked_lists_on_host()
34error = clEnqueueSVMMap(cmdq, CL_TRUE, CL_MAP_READ | CL_MAP_WRITE, pNodes2, sizeof(Node)*ListLengt… in create_linked_lists_on_host()
35 test_error2(error, pNodes, "clEnqueueSVMMap failed"); in create_linked_lists_on_host()
42 error = clEnqueueUnmapMemObject(cmdq, nodes, pNodes, 0,NULL,NULL); in create_linked_lists_on_host()
43 test_error(error, "clEnqueueUnmapMemObject failed."); in create_linked_lists_on_host()
47 error = clEnqueueSVMUnmap(cmdq, pNodes2, 0, NULL, NULL); in create_linked_lists_on_host()
48 test_error(error, "clEnqueueSVMUnmap failed."); in create_linked_lists_on_host()
51 error = clFinish(cmdq); in create_linked_lists_on_host()
[all …]
Dtest_migrate.cpp54 cl_int error = clWaitForEvents(n, evs); in wait_and_release() local
55 if (error == CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST) { in wait_and_release()
58error = clGetEventInfo(evs[i], CL_EVENT_COMMAND_EXECUTION_STATUS, sizeof(cl_int), &e, NULL); in wait_and_release()
59 test_error(error, "clGetEventInfo failed"); in wait_and_release()
66 test_error(error, "clWaitForEvents failed"); in wait_and_release()
69 error = clReleaseEvent(evs[i]); in wait_and_release()
70 test_error(error, "clReleaseEvent failed"); in wait_and_release()
94 cl_int error; in test_svm_migrate() local
96error = create_cl_objects(deviceID, &sources[0], &context, &program, &queues[0], &num_devices, CL_… in test_svm_migrate()
97 if (error) in test_svm_migrate()
[all …]
Dtest_shared_sub_buffers.cpp73 cl_int error = CL_SUCCESS; in create_linked_lists_on_host_sb() local
77 …s, CL_TRUE, CL_MAP_READ | CL_MAP_WRITE, 0, sizeof(Node)*ListLength*numLists, 0, NULL,NULL, &error); in create_linked_lists_on_host_sb()
78 test_error2(error, pNodes, "clEnqueueMapBuffer failed"); in create_linked_lists_on_host_sb()
80 …2, CL_TRUE, CL_MAP_READ | CL_MAP_WRITE, 0, sizeof(Node)*ListLength*numLists, 0, NULL,NULL, &error); in create_linked_lists_on_host_sb()
81 test_error2(error, pNodes2, "clEnqueueMapBuffer failed"); in create_linked_lists_on_host_sb()
85 error = clEnqueueUnmapMemObject(cmdq, nodes, pNodes, 0,NULL,NULL); in create_linked_lists_on_host_sb()
86 test_error(error, "clEnqueueUnmapMemObject failed"); in create_linked_lists_on_host_sb()
87 error = clEnqueueUnmapMemObject(cmdq, nodes2, pNodes2, 0,NULL,NULL); in create_linked_lists_on_host_sb()
88 test_error(error, "clEnqueueUnmapMemObject failed"); in create_linked_lists_on_host_sb()
89 error = clFinish(cmdq); in create_linked_lists_on_host_sb()
[all …]
/external/OpenCL-CTS/test_conformance/events/
Dtest_events.cpp40 int error; in create_and_execute_kernel() local
47 error = get_max_common_work_group_size( inContext, *outKernel, threads[0], &localThreads[0] ); in create_and_execute_kernel()
48 test_error( error, "Unable to get work group size to use" ); in create_and_execute_kernel()
50 …CreateBuffer(inContext, (cl_mem_flags)(CL_MEM_READ_WRITE), sizeof(cl_float) * 1000, NULL, &error); in create_and_execute_kernel()
51 test_error( error, "Creating test array failed" ); in create_and_execute_kernel()
52 …clCreateBuffer(inContext, (cl_mem_flags)(CL_MEM_READ_WRITE), sizeof(cl_int) * 1000, NULL, &error); in create_and_execute_kernel()
53 test_error( error, "Creating test array failed" ); in create_and_execute_kernel()
56 error = clSetKernelArg( *outKernel, 0, sizeof( streams[0] ), &streams[0] ); in create_and_execute_kernel()
57 test_error( error, "Unable to set kernel arguments" ); in create_and_execute_kernel()
58 error = clSetKernelArg( *outKernel, 1, sizeof( streams[1] ), &streams[1] ); in create_and_execute_kernel()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/micromips/
Dinvalid.s4 …addiur1sp $7, 260 # CHECK: :[[@LINE]]:17: error: expected both 8-bit unsigned immediate and mult…
5 …addiur1sp $7, 241 # CHECK: :[[@LINE]]:17: error: expected both 8-bit unsigned immediate and mult…
6 addiur1sp $8, 240 # CHECK: :[[@LINE]]:13: error: invalid operand for instruction
7 addius5 $2, -9 # CHECK: :[[@LINE]]:15: error: expected 4-bit signed immediate
8 addius5 $2, 8 # CHECK: :[[@LINE]]:15: error: expected 4-bit signed immediate
9 break -1 # CHECK: :[[@LINE]]:9: error: expected 10-bit unsigned immediate
10 break 1024 # CHECK: :[[@LINE]]:9: error: expected 10-bit unsigned immediate
11 break -1, 5 # CHECK: :[[@LINE]]:9: error: expected 10-bit unsigned immediate
12 break 1024, 5 # CHECK: :[[@LINE]]:9: error: expected 10-bit unsigned immediate
13 break 7, -1 # CHECK: :[[@LINE]]:12: error: expected 10-bit unsigned immediate
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/virt/
Dinvalid.s10 mfgc0 # CHECK: :[[@LINE]]:3: error: too few operands for instruction
11 mfgc0 0 # CHECK: :[[@LINE]]:9: error: invalid operand for instruction
12 mfgc0 $4 # CHECK: :[[@LINE]]:3: error: too few operands for instruction
13 mfgc0 0, $4 # CHECK: :[[@LINE]]:9: error: invalid operand for instruction
14 mfgc0 0, $4, $5 # CHECK: :[[@LINE]]:9: error: invalid operand for instruction
15 mfgc0 $4, 0, $5 # CHECK: :[[@LINE]]:13: error: invalid operand for instruction
16 mfgc0 $4, $5, 8 # CHECK: :[[@LINE]]:17: error: expected 3-bit unsigned immediate
17 mfgc0 $4, $5, -1 # CHECK: :[[@LINE]]:17: error: expected 3-bit unsigned immediate
18 mfgc0 $4, $5, 0($4) # CHECK: :[[@LINE]]:18: error: invalid operand for instruction
19 mtgc0 # CHECK: :[[@LINE]]:3: error: too few operands for instruction
[all …]
/external/llvm/test/MC/SystemZ/
Dinsn-bad.s5 #CHECK: error: invalid operand
7 #CHECK: error: invalid operand
13 #CHECK: error: invalid operand
15 #CHECK: error: invalid operand
21 #CHECK: error: invalid operand
23 #CHECK: error: invalid operand
29 #CHECK: error: invalid operand
31 #CHECK: error: invalid operand
37 #CHECK: error: invalid operand
39 #CHECK: error: invalid operand
[all …]
/external/libcxx/test/std/language.support/support.limits/c.limits/
Dcfloat.pass.cpp17 #error FLT_ROUNDS not defined
21 #error FLT_EVAL_METHOD not defined
25 #error FLT_RADIX not defined
30 #error FLT_HAS_SUBNORM not defined
34 #error DBL_HAS_SUBNORM not defined
38 #error LDBL_HAS_SUBNORM not defined
43 #error FLT_MANT_DIG not defined
47 #error DBL_MANT_DIG not defined
51 #error LDBL_MANT_DIG not defined
55 #error DECIMAL_DIG not defined
[all …]
/external/OpenCL-CTS/test_conformance/api/
Dtest_clone_kernel.cpp111 int error; in test_image_arg_shallow_clone() local
142 img = clCreateImage(context, CL_MEM_READ_WRITE, &img_format, &imageDesc, NULL, &error); in test_image_arg_shallow_clone()
143 test_error( error, "clCreateImage failed." ); in test_image_arg_shallow_clone()
150 sampler = clCreateSamplerWithProperties(context, properties, &error); in test_image_arg_shallow_clone()
151 test_error( error, "clCreateSamplerWithProperties failed." ); in test_image_arg_shallow_clone()
153 error = clSetKernelArg(kernel_write, 1, sizeof(int) * 4, color); in test_image_arg_shallow_clone()
154 error += clSetKernelArg(kernel_write, 0, sizeof(cl_mem), &img); in test_image_arg_shallow_clone()
155 test_error( error, "clSetKernelArg failed." ); in test_image_arg_shallow_clone()
157 error = clEnqueueNDRangeKernel(queue, kernel_write, 1, NULL, &ndrange1, NULL, 0, NULL, NULL); in test_image_arg_shallow_clone()
158 test_error( error, "clEnqueueNDRangeKernel failed." ); in test_image_arg_shallow_clone()
[all …]
/external/llvm/test/MC/Mips/micromips/
Dinvalid.s4 …addiur1sp $7, 260 # CHECK: :[[@LINE]]:17: error: expected both 8-bit unsigned immediate and mult…
5 …addiur1sp $7, 241 # CHECK: :[[@LINE]]:17: error: expected both 8-bit unsigned immediate and mult…
6 addiur1sp $8, 240 # CHECK: :[[@LINE]]:13: error: invalid operand for instruction
7 addius5 $2, -9 # CHECK: :[[@LINE]]:15: error: expected 4-bit signed immediate
8 addius5 $2, 8 # CHECK: :[[@LINE]]:15: error: expected 4-bit signed immediate
9 break -1 # CHECK: :[[@LINE]]:9: error: expected 10-bit unsigned immediate
10 break 1024 # CHECK: :[[@LINE]]:9: error: expected 10-bit unsigned immediate
11 break -1, 5 # CHECK: :[[@LINE]]:9: error: expected 10-bit unsigned immediate
12 break 1024, 5 # CHECK: :[[@LINE]]:9: error: expected 10-bit unsigned immediate
13 break 7, -1 # CHECK: :[[@LINE]]:12: error: expected 10-bit unsigned immediate
[all …]

12345678910>>...331