Searched refs:inputA (Results 1 - 5 of 5) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
H A D | arrayFrom.js | 13 const inputA: A[] = []; 16 const inputARand = getEither(inputA, inputALike); 19 const result1: A[] = Array.from(inputA); 20 const result2: A[] = Array.from(inputA.values()); 21 const result3: B[] = Array.from(inputA.values()); // expect error 42 var inputA = [];
variable 45 var inputARand = getEither(inputA, inputALike);
47 var result1 = Array.from(inputA);
48 var result2 = Array.from(inputA.values());
49 var result3 = Array.from(inputA [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/ |
H A D | vktComputeCooperativeMatrixTests.cpp | 542 css << "layout(set=0, binding=4) buffer Params { InputA inputA; InputB inputB; InputC inputC; Output outputO; } params;\n"; in initPrograms() 546 css << "layout(set=0, binding=0) coherent buffer InputA { " << typeStrA << " x[]; } inputA;\n"; in initPrograms() 607 css << " InputA inputA = params.inputA;\n"; in initPrograms() 639 "inputA", in initPrograms() 683 css << " coopMatLoad" << suffix << "(matA, inputA.x, element0, " << loadStrides[0] << ", " << colMajor << ");\n" in initPrograms() 1345 double inputA, output; in iterate() local 1349 case VK_COMPONENT_TYPE_UINT8_KHR: inputA = getDataConvertedToT<uint8_t>(ptrs[0], dataTypes[0], i); break; in iterate() 1350 case VK_COMPONENT_TYPE_UINT16_KHR: inputA = getDataConvertedToT<uint16_t>(ptrs[0], dataTypes[0], i); break; in iterate() 1351 case VK_COMPONENT_TYPE_UINT32_KHR: inputA in iterate() 1394 float inputA = getDataFloat(ptrs[0], dataTypes[0], i); iterate() local 1526 deUint32 inputA = getDataInt(ptrs[0], dataTypes[0], i); iterate() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/compute/ |
H A D | vktComputeCooperativeMatrixTests.cpp | 351 css << "layout(set=0, binding=4) buffer Params { InputA inputA; InputB inputB; InputC inputC; Output outputO; } params;\n"; in initPrograms() 355 css << "layout(set=0, binding=0) coherent buffer InputA { " << typeStrA << " x[]; } inputA;\n"; in initPrograms() 396 css << " InputA inputA = params.inputA;\n"; in initPrograms() 428 "inputA", in initPrograms() 465 css << " coopMatLoadNV(matA, inputA.x, element0, " << strides[0] << ", " << colMajor << ");\n" in initPrograms() 1001 float inputA = getDataFloat(ptrs[0], dataTypes[0], i); in iterate() local 1020 if (output != inputA) in iterate() 1027 if (output != inputA + inputB) in iterate() 1031 if (output != inputA in iterate() 1114 deUint32 inputA = getDataInt(ptrs[0], dataTypes[0], i); iterate() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmVariablePointersTests.cpp | 641 vector<float> inputA (numFloats, 0); 663 // inputA is of type outer_struct. 667 // inputA and inputB are of the same size. When testing variable pointers pointing to 668 // two different input buffers, we use inputA and inputB. 670 // inputC is twice the size of inputA. When testing the VariablePointersStorageBuffer capability, 676 // Populate the first input (inputA) to contain: {0, 4, ... , 252} 679 // Note that the first half of inputC is the same as inputA and the second half is the same as inputB. 682 inputA[i] = 4*float(i) / 255; 684 inputC[i] = inputA[i]; 694 // 1. inputA o [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmVariablePointersTests.cpp | 642 vector<float> inputA (numFloats, 0); 664 // inputA is of type outer_struct. 668 // inputA and inputB are of the same size. When testing variable pointers pointing to 669 // two different input buffers, we use inputA and inputB. 671 // inputC is twice the size of inputA. When testing the VariablePointersStorageBuffer capability, 677 // Populate the first input (inputA) to contain: {0, 4, ... , 252} 680 // Note that the first half of inputC is the same as inputA and the second half is the same as inputB. 683 inputA[i] = 4*float(i) / 255; 685 inputC[i] = inputA[i]; 695 // 1. inputA o [all...] |
Completed in 8 milliseconds