/third_party/python/Tools/peg_generator/pegen/ |
H A D | parser.py | 99 # previous result. For an explanation why this works, see 116 result = method(self) 123 f"{fill}Recursive {method_name} at {mark} depth {depth}: {result!s:.200} to {endmark}" 125 if not result: 133 self._cache[key] = lastresult, lastmark = result, endmark
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_windows_events.py | 95 self.assertEqual(f.result(), b'') 165 # result should be False at timeout 172 self.assertFalse(fut.result()) 180 # result should be True immediately 187 self.assertTrue(fut.result()) 234 # First wait for f to complete to avoid a "future's result was never
|
/third_party/openssl/Configurations/ |
H A D | gentemplate.pm | 74 my @result = map { $_ =~ /(\.a)?$/; $` } @_; 75 return @result if wantarray; 76 return $result[0]; 304 # return them together with the result of a recursive call. 316 # If it is, collect the result of a recursive call, or if that returns 317 # an empty list, the element itself. Return the result.
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiBufferViewCreateTests.cpp | 298 VkResult result = VK_ERROR_OUT_OF_HOST_MEMORY; in createTestBuffer() local 318 result = vk.allocateMemory(vkDevice, &memoryAllocateInfo, (VkAllocationCallbacks*)DE_NULL, &rawMemory); in createTestBuffer() 320 if (result != VK_SUCCESS) in createTestBuffer()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
H A D | vktImageTransfer.cpp | 111 const auto result = vki.getPhysicalDeviceImageFormatProperties(physicalDevice, m_params.imageFormat, m_params.imageType, VK_IMAGE_TILING_OPTIMAL, VK_IMAGE_USAGE_TRANSFER_SRC_BIT | VK_IMAGE_USAGE_TRANSFER_DST_BIT, 0u, &formatProperties); in checkSupport() local 112 if (result != VK_SUCCESS) in checkSupport() 114 if (result == VK_ERROR_FORMAT_NOT_SUPPORTED) in checkSupport()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
H A D | vktApiBufferViewCreateTests.cpp | 299 VkResult result = VK_ERROR_OUT_OF_HOST_MEMORY; in createTestBuffer() local 319 result = vk.allocateMemory(vkDevice, &memoryAllocateInfo, (VkAllocationCallbacks*)DE_NULL, &rawMemory); in createTestBuffer() 321 if (result != VK_SUCCESS) in createTestBuffer()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
H A D | vktImageTransfer.cpp | 106 const auto result = vki.getPhysicalDeviceImageFormatProperties(physicalDevice, m_params.imageFormat, m_params.imageType, VK_IMAGE_TILING_OPTIMAL, VK_IMAGE_USAGE_TRANSFER_SRC_BIT | VK_IMAGE_USAGE_TRANSFER_DST_BIT, 0u, &formatProperties); in checkSupport() local 107 if (result != VK_SUCCESS) in checkSupport() 109 if (result == VK_ERROR_FORMAT_NOT_SUPPORTED) in checkSupport()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
H A D | RendererGL.cpp | 289 GLint64 result = 0; in getTimestamp() local 290 mFunctions->getInteger64v(GL_TIMESTAMP, &result); in getTimestamp() 291 return result; in getTimestamp()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Buffer.cpp | 306 angle::Result Buffer::unmap(const Context *context, GLboolean *result) in unmap() argument 310 *result = GL_FALSE; in unmap() 311 ANGLE_TRY(mImpl->unmap(context, result)); in unmap()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngineBindings.cpp | 378 bool result = Functions.FinalizeMemory(Opaque, &errMsgCString); in finalizeMemory() local 379 assert((result || !errMsgCString) && in finalizeMemory() 386 return result; in finalizeMemory()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/ |
H A D | ittnotify_config.h | 266 long result; in __TBB_machine_fetchadd4() local 268 : "=r"(result),"=m"(*(long*)ptr) in __TBB_machine_fetchadd4() 271 return result; in __TBB_machine_fetchadd4()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cIncompleteTextureAccessTests.cpp | 82 * @return Iteration result. 418 glw::GLfloat result[4] = { 7.f, 7.f, 7.f, 7.f }; in Check() local 421 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_FLOAT, result); in Check() 427 if (de::abs(configuration.expected_result[i] - result[i]) > 0.0125 /* precision */) in Check()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/ |
H A D | esextcTessellationShaderPrimitiveCoverage.cpp | 690 /* Verify result data */ in verifyDrawBufferContents() 691 bool result = true; in verifyDrawBufferContents() local 716 result = false; in verifyDrawBufferContents() 722 return result; in verifyDrawBufferContents() 727 * Sets the test result to QP_TEST_RESULT_FAIL if the test failed, QP_TEST_RESULT_PASS otherwise.
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcShaderIntegerMixTests.cpp | 61 qpTestResult result = test(); in iterate() local 63 m_testCtx.setTestResult(result, qpGetTestResultName(result)); in iterate() 482 * The first time, use_vs_data is false, and the mix() result in test() 484 * use_vs_data is true, and the mix() result from the vertex in test()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | entity_db.py | 242 result = self._byEntity.get(entity) 243 if result: 244 return result
|
/third_party/vk-gl-cts/external/amber/src/src/amberscript/ |
H A D | parser_image_test.cc | 342 std::vector<float> result = {0.11f, 0.12f, 0.21f, 0.22f, in TEST_F() local 346 for (size_t i = 0; i < result.size(); ++i) { in TEST_F() 347 EXPECT_FLOAT_EQ(result[i], values[i]); in TEST_F()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | function.cpp | 285 auto& result = cfg_constructs_.back(); 287 new_construct.type())] = &result; 288 return result;
|
/third_party/skia/third_party/externals/spirv-tools/test/val/ |
H A D | val_layout_test.cpp | 208 spv_result_t result; in TEST_P() local 210 ASSERT_EQ(pred(order), result = ValidateInstructions(env)) in TEST_P() local 211 << "Actual: " << spvResultToString(result) in TEST_P()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | RobustBufferAccessBehaviorTest.cpp | 120 GLenum result = glGetError(); in runIndexOutOfRangeTests() local 124 if (result == GL_INVALID_OPERATION) in runIndexOutOfRangeTests() 133 EXPECT_GLENUM_EQ(GL_NO_ERROR, result); in runIndexOutOfRangeTests() 146 // buffer object and will not result in GL interruption or termination when 159 // buffer object and will not result in GL interruption or termination when
|
H A D | SRGBTextureTest.cpp | 364 // Discard result, we are only checking that we don't try to reinterpret to an unsupported in TEST_P() 606 std::array<GLColor, drawWidth * drawHeight> result; in TEST_P() 607 glReadPixels(0, 0, drawWidth, drawHeight, GL_RGBA, GL_UNSIGNED_BYTE, result.data()); in TEST_P() 611 return result; in TEST_P()
|
/third_party/skia/samplecode/ |
H A D | SampleSimpleStroker.cpp | 116 // Appends path in reverse to result 117 static void appendPathReversed(const PathRecorder& path, PathRecorder* result); 173 // Walk inner path in reverse, appending to result in getFillPath() 304 void SkPathStroker2::appendPathReversed(const PathRecorder& path, PathRecorder* result) { in appendPathReversed() argument 316 result->lineTo(points[j - 1]); in appendPathReversed() 432 // The correct result 437 // Simple stroker result
|
/third_party/skia/src/codec/ |
H A D | SkBmpRLECodec.cpp | 47 Result result = this->prepareToDecode(dstInfo, opts); in onGetPixels() local 48 if (kSuccess != result) { in onGetPixels() 49 return result; in onGetPixels()
|
/third_party/skia/src/gpu/vk/ |
H A D | GrVkRenderPass.cpp | 307 VkResult result; in Create() local 309 GR_VK_CALL_RESULT(gpu, result, CreateRenderPass(gpu->device(), in Create() 313 if (result != VK_SUCCESS) { in Create()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | fuzzer_context.cpp | 419 auto result = protobufs::TransformationAddSynonym::SynonymType_descriptor() in GetRandomSynonymType() local 422 assert(protobufs::TransformationAddSynonym::SynonymType_IsValid(result) && in GetRandomSynonymType() 423 "|result| is not a value of SynonymType"); in GetRandomSynonymType() 424 return static_cast<protobufs::TransformationAddSynonym::SynonymType>(result); in GetRandomSynonymType()
|
H A D | fuzzer_util.h | 73 // branch from |bb_from_id| to |bb_to_id|. |bool_id| must be a result id of 82 // Requires that |bool_id| is a valid result id of either OpConstantTrue or 88 // valid. |condition_value| above is equal to |true| if |bool_id| is a result id 117 // |transformation_context| is used to verify that the result id of |inst| 206 // Returns the result id of an instruction of the form: 217 // Returns the function with result id |function_id|, or |nullptr| if no such 247 // is no such result id. 299 // has result id |result_id|. Updates module's id bound to accommodate for 339 // with result id |function_id|. 343 // Removes an OpFunctionParameter instruction with result i 518 uint32_t result; FloatToWord() local [all...] |